diff --git a/application/api/model/Room.php b/application/api/model/Room.php index 6157d43..411bbc9 100644 --- a/application/api/model/Room.php +++ b/application/api/model/Room.php @@ -1141,7 +1141,7 @@ class Room extends Model $room_label = $res['data']['label_id'] ?? 0; $room_type = $res['data']['type_id'] ?? 0; $apply_type = 0; - if($room_label == 1 && ($room_type == 1 || $room_type == 3 || $room_type == 4 || $room_type == 8)){ + if($room_label == 1 && ($room_type == 1 || $room_type == 3 || $room_type == 4 || $room_type == 8 || $room_type == 9)){ $apply_type = 1; }elseif ($room_label == 2 && ($room_type == 1 || $room_type == 3 || $room_type == 4 || $room_type == 8)){ $apply_type = 2;