feat: show room prices in room assignment form field
This commit is contained in:
@@ -130,7 +130,7 @@ class SingleRoomTypeConditionTest extends TestCase
|
||||
|
||||
foreach ($rooms as $roomData) {
|
||||
$roomSelection = new RoomSelectionDto();
|
||||
$roomSelection->roomId = $roomData['roomId'];
|
||||
$roomSelection->id = $roomData['roomId'];
|
||||
$roomSelection->quantity = $roomData['quantity'];
|
||||
$bookingDto->roomSelections[] = $roomSelection;
|
||||
}
|
||||
|
||||
@@ -331,8 +331,8 @@ class ParticipantAssignedRoomFieldHandlerTest extends TestCase
|
||||
private function createRoomSelection(int $roomId, string $label, int $capacity, int $quantity): RoomSelectionDto
|
||||
{
|
||||
$selection = new RoomSelectionDto();
|
||||
$selection->roomId = $roomId;
|
||||
$selection->roomLabel = $label;
|
||||
$selection->id = $roomId;
|
||||
$selection->label = $label;
|
||||
$selection->capacity = $capacity;
|
||||
$selection->quantity = $quantity;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user