fix: use correct number of booked rooms

This commit is contained in:
Björn Fromme
2025-03-24 10:57:05 +01:00
parent 1b2fc78e8a
commit edc965dfa7
@@ -163,7 +163,7 @@ class BookingDataProcessor
'@idverpflegung' => $room->boardId,
'@anreise' => $room->dateFrom ? $room->dateFrom->format('d.m.Y') : null,
'@abreise' => $room->dateTo ? $room->dateTo->format('d.m.Y') : null,
'@anzahl' => count($room->mapping),
'@anzahl' => $room->totalCount,
'@zuordnung' => implode(',', $room->mapping),
];
}