Buchungsübersicht

{# Travel Information #}

Reiseinformationen

Reise: {{ bookingCreateDto.travel.label }}
Zeitraum: {{ bookingCreateDto.travel.dateFrom|date('d.m.Y') }} - {{ bookingCreateDto.travel.dateTo|date('d.m.Y') }}
Hotel: {{ bookingCreateDto.travel.hotel.name }}
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, ',', '.') }}
{% 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 %} {# Total Section #} {% if pricingData.grandTotal is defined and pricingData.grandTotal > 0 %}
Gesamtpreis: €{{ pricingData.grandTotal|number_format(2, ',', '.') }}
{% endif %}