{% extends 'layout_admin.html.twig' %}
{% block content %}
| 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) }} |
| {{ discount.label }} {{ discount.percent }} % | – {{ (discount.amount / 100) | format_currency(currency) }} |
| Zwischensumme | {{ (priceBreakdown.discountSubtotal / 100) | format_currency(currency) }} |
| {{ priceBreakdown.totalDiscountDetails.label }} | – {{ (priceBreakdown.totalDiscountDetails.amount / 100) | format_currency(currency) }} |
| Gesamtpreis nach Rabatt | {{ (priceBreakdown.discountedTotal / 100) | format_currency(currency) }} |
{{ booking.remarks | nl2br }}
Das Angebot wurde dem Kunden noch nicht zugestellt. Beim Versand wird der Zugangslink erzeugt und die Buchung wartet anschließend auf die Annahme durch den Kunden.
Die Buchung des Kunden ist eingegangen, aber es wurde noch keine Bestätigung verschickt.
Ein Zugangslink wird beim Versand des Angebots erzeugt.
{% elseif accessLink %}Gültig bis {{ accessLinkExpiresAt | date('d.m.Y') }} {% if accessLinkExpiresAt < date() %} (abgelaufen) {% endif %}
{% else %}Der Zugangslink wird beim Versand des Angebots erzeugt.
{% endif %}