Buchungsübersicht

{# Inquiry booking notification #} {% if bookingCreateDto is defined and bookingCreateDto.isInquiryBooking() %}
Anfragebuchung: Diese Reise ist ausgebucht. Ihre Buchung wird als Anfrage verarbeitet.
{% endif %} {# Mutability information (edit mode only) #} {% if mutableData is defined %}

Aktualisierung möglich bis

{% endif %} {# Travel Information #}
{% if cmsData.hotel.images is defined %} {{ cmsData.hotel.images.resized.s[0].alt }} {% endif %}
Reise: {{ bookingCreateDto.travel.label }}
{% if cmsData.region is defined %}
Gebiet: {{ cmsData.region.name }}
{% endif %} {% if cmsData.country is defined %}
Land: {{ cmsData.country.name }}
{% endif %}
Zeitraum: {{ bookingCreateDto.travel.dateFrom|date('d.m.Y') }} - {{ bookingCreateDto.travel.dateTo|date('d.m.Y') }}
Unterkunft: {{ bookingCreateDto.travel.hotel.name }}{% if cmsData.hotel.address is defined %}, {{ cmsData.hotel.address | replace({"\n": ', '}) }}{% endif %}
Anzahl Teilnehmer: {{ participantCount }}
{# Rooms Section #} {% if pricingData.rooms is not empty %}

Unterkunft

{% for roomPricing in pricingData.rooms %}
{{ roomPricing.quantity }}x {{ roomPricing.label }} {% if assignmentCounts is defined and assignmentCounts[roomPricing.roomId] is defined %} {{ assignmentCounts[roomPricing.roomId] }} belegt {% endif %}
€{{ roomPricing.totalPrice|number_format(2, ',', '.') }}
€{{ roomPricing.unitPrice|number_format(2, ',', '.') }} pro Person
{% endfor %}
{% endif %} {# Services Section #} {% if pricingData.services is not empty %}

Leistungen

{% for serviceGroup in pricingData.services %}
{{ serviceGroup.groupName }}
{% for servicePricing in serviceGroup.services %}
{{ servicePricing.participantCount }}x {{ servicePricing.label }} €{{ servicePricing.totalPrice|number_format(2, ',', '.') }}
{% endfor %}
{% endfor %}
{% endif %} {# Surcharges Section (Edit mode only) #} {% if pricingData.surcharges is defined and pricingData.surcharges is not empty %}

Zuschläge

{% for surchargePricing in pricingData.surcharges %}
{{ surchargePricing.participantCount }}x {{ surchargePricing.label }} €{{ surchargePricing.totalPrice|number_format(2, ',', '.') }}
{% endfor %}
{% endif %} {# Total Section #} {% if pricingData.grandTotal is defined and pricingData.grandTotal > 0 %}
Gesamtpreis: €{{ pricingData.grandTotal|number_format(2, ',', '.') }}
{% endif %}