Diverse ticketlose Änderungen
- E-Mail-Link im Header - Raumnummer und -typ sowie Aufteilung der Reisenden für die Bestätigungsmail - Es werden nur noch die Raumtypen zur Auswahl angeboten, die für die gewählte Reise verfügbar sind - PDF-Herunterladen an entsprechenden Stellen angefügt - Vorauswahl von Räumen und Abflugort entfernt - Geburtstage werden nicht mehr validiert git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3344 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
dc0a69413f
commit
0246f5b2ff
15 changed files with 207 additions and 94 deletions
|
|
@ -555,6 +555,27 @@ class BookingRequest
|
|||
// falls man es braucht, nachziehen und oder umstrukturieren (booking.html.twig)
|
||||
}
|
||||
|
||||
public function getOccupiedRooms()
|
||||
{
|
||||
$allRooms = [];
|
||||
for($i = 0; $i < $this->singleRoomCount; $i++)
|
||||
{
|
||||
$allRooms[] = $this->singleRooms[$i];
|
||||
//$allRooms = array_push($allRooms, $this->singleRooms[$i]);
|
||||
}
|
||||
for($i = 0; $i < $this->doubleRoomCount; $i++)
|
||||
{
|
||||
$allRooms[] = $this->doubleRooms[$i];
|
||||
//$allRooms = array_push($allRooms, $this->doubleRooms[$i]);
|
||||
}
|
||||
for($i = 0; $i < $this->tripleRoomCount; $i++)
|
||||
{
|
||||
$allRooms[] = $this->tripleRooms[$i];
|
||||
//$allRooms = array_push($allRooms, $this->tripleRooms[$i]);
|
||||
}
|
||||
return $allRooms;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
public function addTraveler(Traveler $traveler)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue