feat: show room prices in room assignment form field

This commit is contained in:
Björn Fromme
2026-03-16 12:00:55 +01:00
parent 5b75a165ce
commit e1bfe9b93c
22 changed files with 193 additions and 92 deletions
@@ -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;