{% extends 'layout.html.twig' %} {% block title %}Buchung bestätigen{% endblock %} {% block content %}

Neue Buchung

{% if bookingCreateDto.bookingStatus == 'A' %}

Achtung: Buchung auf Anfrage

Diese Buchung erfolgt auf Anfrage. Nach der Absendung wird deine Anfrage geprüft. Du erhältst anschließend eine verbindliche Buchungsbestätigung oder eine Absage per E-Mail.

{% endif %}
{% include '_partials/_flashes.html.twig' %}

Buchung bestätigen

{# Travel Summary #}

Reise

Reiseziel
{{ bookingCreateDto.travel.label }}
Zeitraum
{{ bookingCreateDto.travel.dateFrom|date('d.m.Y') }} - {{ bookingCreateDto.travel.dateTo|date('d.m.Y') }}
{# Rooms Summary #}

Zimmer / Unterkünfte

{% if pricingData.rooms is not empty %} {% endif %}
{# Participants Summary #}

Teilnehmer ({{ participantsCount }})

{% for participant in bookingCreateDto.participants %}

{{ participant.firstName }} {{ participant.lastName }} {% if loop.first %}(Anmelder){% endif %}

{# Personal Data #} {% if participant.dateOfBirth %}
Geburtsdatum
{{ participant.dateOfBirth|date('d.m.Y') }}
{% endif %} {% if participant.gender %}
Geschlecht
{{ participant.gender == 'M' ? 'Männlich' : 'Weiblich' }}
{% endif %} {% if participant.email %}
E-Mail
{{ participant.email }}
{% endif %} {% if participant.mobile %}
Telefon
{{ participant.mobile }}
{% endif %} {% if participant.nationality %}
Nationalität
{{ participant.nationality }}
{% endif %} {# Address #} {% if participant.address and (participant.address.street or participant.address.city) %}
Adresse
{% if participant.address.street %}{{ participant.address.street }}
{% endif %} {% if participant.address.postCode or participant.address.city %} {{ participant.address.postCode }} {{ participant.address.city }}
{% endif %} {% if participant.address.country %}{{ participant.address.country }}{% endif %}
{% endif %} {# Room Assignment #} {% set assignedRoom = bookingCreateDto.travel.getRoomById(participant.assignedRoomId) %} {% if assignedRoom %}
Zimmer
{{ assignedRoom.label }}
{% endif %} {# Room Remarks #} {% if participant.remarksRoom %}
Zimmerwunsch
{{ participant.remarksRoom }}
{% endif %} {# Transportation Services #} {% if participant.transportationOutbound %}
Anreise
{{ participant.transportationOutbound.label }}
{% endif %} {% if participant.transportationInbound %}
Abreise
{{ participant.transportationInbound.label }}
{% endif %} {# Pickup Location #} {% if participant.pickup %}
Zu- und Ausstieg
{{ participant.pickup.label }}
{% endif %} {# Parking & License Plate #} {% if participant.parking %}
Parkplatz
Ja
{% endif %} {% if participant.licensePlate %}
Kennzeichen
{{ participant.licensePlate }}
{% endif %} {# Board Services #} {% if participant.board is not empty %}
Verpflegung
    {% for boardItem in participant.board %}
  • {{ boardItem.label }}
  • {% endfor %}
{% endif %} {# Ski Pass #} {% if participant.skiPass %}
Skipass
{{ participant.skiPass.label }}
{% endif %} {# Rentals #} {% if participant.rentals is not empty %}
Ausrüstung
    {% for rental in participant.rentals %}
  • {{ rental.label }}
  • {% endfor %}
{% endif %} {# Rental Insurance #} {% if participant.rentalInsuranceSelected and participant.rentalInsurance %}
Leihmaterial-Versicherung
{{ participant.rentalInsurance.label }}
{% endif %} {# Body Dimensions (if rentals selected) #} {% if participant.rentals is not empty %} {% if participant.height or participant.weight or participant.shoeSize %}
Körpermaße
{% if participant.height %}Größe: {{ participant.height }} cm{% endif %} {% if participant.weight %}{% if participant.height %}, {% endif %}Gewicht: {{ participant.weight }} kg{% endif %} {% if participant.shoeSize %}{% if participant.height or participant.weight %}, {% endif %}Schuhgröße: {{ participant.shoeSize }}{% endif %}
{% endif %} {% endif %} {# Courses #} {% if participant.courses is not empty %}
Kurse
    {% for course in participant.courses %}
  • {{ course.label }}
  • {% endfor %}
{% endif %} {# Additional Services #} {% if participant.additionalServices is not empty %}
Zusatzleistungen
    {% for service in participant.additionalServices %}
  • {{ service.label }}
  • {% endfor %}
{% endif %} {# Insurance #} {% if participant.insurance %}
Reiseversicherung
{{ participant.insurance.label }}
{% endif %}
{% endfor %}
{# Payment Summary #}

Zahlungsart

Gewählte Zahlungsart
{% if bookingCreateDto.paymentMethod == constant('App\\BusProNet\\Constants::PAYMENT_METHOD_DEBIT') %} Lastschrift (Einzugsermächtigungsverfahren) {% else %} Überweisung {% endif %}
{% if bookingCreateDto.paymentMethod == constant('App\\BusProNet\\Constants::PAYMENT_METHOD_DEBIT') and bookingCreateDto.bankAccount %}
IBAN
{{ bookingCreateDto.bankAccount.iban }}
Kontoinhaber
{{ bookingCreateDto.bankAccount.accountHolder }}
{% endif %}
{# Confirmation Form #} {{ form_start(form, { 'attr': { 'novalidate': 'novalidate', 'hx-post': path('app_booking_create_step_4'), 'hx-target': '#form-wrapper', 'hx-select': '#form-wrapper', 'hx-swap': 'outerHTML' } }) }}
{{ form_row(form.confirmationAccepted, { 'label_attr': {'class': 'text-base font-semibold'} }) }}
Zurück
{{ form_end(form) }}
{% endblock %}