Musterstraße 123
12345 Musterstadt
Deutschland
Tel: +49 123 456789
E-Mail: [email protected]
Web: www.ihrefirma.de
Rechnungsnummer: {{ invoice.invoiceNumber }}
Rechnungsdatum: {{ invoice.invoiceDate|date('d.m.Y') }}
Fälligkeitsdatum: {{ invoice.dueDate|date('d.m.Y') }}
Status:
{% if invoice.status == 'pending' %}Ausstehend
{% elseif invoice.status == 'paid' %}Bezahlt
{% elseif invoice.status == 'overdue' %}Überfällig
{% elseif invoice.status == 'cancelled' %}Storniert
{% endif %}
{{ invoice.customer.name }}
{% if invoice.customer.company %}{{ invoice.customer.company }}
{% endif %}
{{ invoice.customer.email }}
{% if invoice.customer.address %}{{ invoice.customer.address }}
{% endif %}
{% if invoice.customer.phone %}Tel: {{ invoice.customer.phone }}{% endif %}
| Beschreibung | Menge | Einzelpreis | Gesamt |
|---|---|---|---|
| {{ item.description }} | {{ item.quantity }} | {{ item.unitPrice|number_format(2, ',', '.') }}€ | {{ (item.quantity * item.unitPrice)|number_format(2, ',', '.') }}€ |
| Gesamt: | {{ invoice.totalAmount|number_format(2, ',', '.') }}€ | ||
{{ invoice.notes }}