{% extends 'layout_admin.html.twig' %} {% block content %} {{ booking.type.label }} · {{ booking.status.label }} {{ booking.groupName }}

Kontakt

Gruppenname
{{ booking.groupName }}
Anrede
{{ booking.salutation | default('–') }}
Name
{{ booking.firstName }} {{ booking.lastName }}
E-Mail
{{ booking.email }}
Telefon
{{ booking.phone | default('–') }}
Adresse
{% if booking.street %} {{ booking.street }}
{{ booking.zip }} {{ booking.city }} {% else %} – {% endif %}

Reisedaten

Gruppenhaus
{{ booking.accommodation.name }}
Anreise
{{ booking.dateFrom | date('d.m.Y') }}
Abreise
{{ booking.dateTo | date('d.m.Y') }}
Nächte
{{ booking.nights }}
Anzahl Personen
{{ booking.paxCount }}
{% if booking.minorsCount > 0 %}
davon Kinder (0–3 Jahre)
{{ booking.minorsCount }}
{% endif %} {% if booking.childrenCount > 0 %}
davon Kinder (4–{{ booking.accommodation.maxAdolescentAge }} Jahre)
{{ booking.childrenCount }}
{% endif %}
Art
{{ booking.type.label }}
Status
{{ booking.status.label }}
{% if booking.acceptedAt is not null %}
Angenommen am
{{ booking.acceptedAt | date('d.m.Y, H:i') }}
{% endif %}
{% if booking.boardServiceLabel or booking.additionalServices | length > 0 %}

Gebuchte Leistungen

{% if booking.boardServiceLabel %}
Verpflegung
{{ booking.boardServiceLabel }}
{% endif %} {% for service in booking.additionalServices %}
{{ loop.first ? 'Zusatzleistungen' : '' }}
{{ service.label }}
{% endfor %}
{% endif %} {% if priceBreakdown is not null %}

Preise

{% set currency = booking.pricingCurrency ?? priceBreakdown.currency %} {% if priceBreakdown.basePrice > 0 %} {% endif %} {% if priceBreakdown.additionalPersonsPrice > 0 %} {% endif %} {% if priceBreakdown.shortTermSurcharge > 0 %} {% endif %} {% if priceBreakdown.boardPrice > 0 %} {% endif %} {% if priceBreakdown.undersubscriptionSurcharge > 0 %} {% endif %} {% for service in priceBreakdown.serviceDetails %} {% if service.price > 0 %} {% endif %} {% endfor %} {% if priceBreakdown.runningCosts > 0 %} {% endif %} {% if booking.accommodationDiscount is not null or booking.boardServiceDiscount is not null or booking.additionalServicesDiscount is not null %} {% if booking.accommodationDiscount is not null %} {% set accommodationDiscountAmount = ((priceBreakdown.basePrice + priceBreakdown.additionalPersonsPrice) * booking.accommodationDiscount / 100) | round %} {% endif %} {% if booking.boardServiceDiscount is not null %} {% set boardDiscountAmount = (priceBreakdown.boardPrice * booking.boardServiceDiscount / 100) | round %} {% endif %} {% if booking.additionalServicesDiscount is not null %} {% set servicesDiscountAmount = (priceBreakdown.servicesPrice * booking.additionalServicesDiscount / 100) | round %} {% endif %} {% endif %}
Basispreis für {{ priceBreakdown.includedPax }} Pers. {{ (priceBreakdown.basePrice / 100) | format_currency(currency) }}
Aufpreis Personenzahl für {{ priceBreakdown.effectivePax - priceBreakdown.includedPax }} Pers. {{ (priceBreakdown.additionalPersonsPrice / 100) | format_currency(currency) }}
Aufpreis Kurzzeit {{ (priceBreakdown.shortTermSurcharge / 100) | format_currency(currency) }}
Verpflegung {{ (priceBreakdown.boardPrice / 100) | format_currency(currency) }}
Verpflegungs-Aufschlag für Gruppen unter {{ priceBreakdown.undersubscriptionThreshold }} Personen {{ (priceBreakdown.undersubscriptionSurcharge / 100) | format_currency(currency) }}
{{ service.label }} {{ (service.price / 100) | format_currency(currency) }}
Strom- und Abfallgebühren {{ (priceBreakdown.runningCosts / 100) | format_currency(currency) }}
Gesamtpreis zzgl. ortsabhängiger Gebühren {{ (priceBreakdown.total / 100) | format_currency(currency) }}
Rabatt Unterkunft {{ booking.accommodationDiscount }} % – {{ (accommodationDiscountAmount / 100) | format_currency(currency) }}
Rabatt Verpflegung {{ booking.boardServiceDiscount }} % – {{ (boardDiscountAmount / 100) | format_currency(currency) }}
Rabatt Zusatzleistungen {{ booking.additionalServicesDiscount }} % – {{ (servicesDiscountAmount / 100) | format_currency(currency) }}
Gesamtpreis nach Rabatt {{ ((booking.totalPrice ?? priceBreakdown.total) / 100) | format_currency(currency) }}
{% endif %} {% if booking.remarks %}

Bemerkungen

{{ booking.remarks | nl2br }}

{% endif %}
Eingegangen: {{ booking.createdAt | date('d.m.Y, H:i') }} {% if booking.updatedAt is not null and booking.updatedAt != booking.createdAt %} · Aktualisiert: {{ booking.updatedAt | date('d.m.Y, H:i') }} {% endif %}

Zugangslink

{% if accessLink %}

Gültig bis {{ accessLinkExpiresAt | date('d.m.Y') }} {% if accessLinkExpiresAt < date() %} (abgelaufen) {% endif %}

{% else %}

Es wurde noch kein Zugangslink generiert.

{% endif %}
{% if accessLink %} {% endif %}
zurück bearbeiten
{% endblock %}