{% load static %} {% load dbsetting %} {{ title }}
{{ type }} #: {{ object.id }}
Datum: {{ object.created }}
Empfänger:
{% if object.billing_address.company %}{{ object.billing_address.company }}
{% endif %} {{ object.billing_address.full_name }}
{{ object.billing_address.street }}
{{ object.billing_address.zip }} {{ object.billing_address.city }}
{{ object.billing_address.country.name }}{% if object.billing_address.vat_id %}
UID: {{ object.billing_address.vat_id }}{% endif %}
Absender: {% dbsetting "billing.provider.name" "" %}
{% dbsetting "billing.provider.street" "" %}
{% dbsetting "billing.provider.zip" "" %} {% dbsetting "billing.provider.city" "" %}
{% dbsetting "billing.provider.country" "" %}{% dbsetting "billing.provider.vat_id" "" as vat_id %}{% if vat_id %}
UID: {{ vat_id }}{% endif %}

{{ title }}

{% for item in object.invoiceitem_set.all %} {% endfor %}
Produkt Beschreibung Anzahl Einzelpreis Gesamtpreis
{{ item.name }} {{ item.description }} {{ item.count }} {{ object.currency }} {{ item.net_each }} {{ object.currency }} {{ item.net_total }}
Zwischensumme {{ object.currency }} {{ object.price_net }}
{{ object.tax_rate }}% USt {{ object.currency }} {{ object.tax }}
Gesamtsumme {{ object.currency }} {{ object.price_gross }}
{% for payment in object.invoicepayment_set.all %} {% endfor %} {% if not object.is_paid %} {% endif %}
Zahlungsmethode Zahlungs-ID Zahlungsdatum Betrag
{{ payment.gateway }} {{ payment.gateway_id }} {{ payment.timestamp }} {{ object.currency }} {{ payment.amount }}
Offener Betrag {{ object.currency }} {{ object.balance }}
Weitere Informationen
{% autoescape off %}{{ bottom_tip }}{% endautoescape %}