Factuur {{ number }} : {{ title }}
Datum: {{ date | date_format: dd/MM/yyyy }}
Aan: {{ client }}
{{ address }}
Item | Prijs | Hoeveelheid | Netto | BTW | Totaal |
---|---|---|---|---|---|
{{ item.title }} | {{ item.amount }} | {{ item.quantity }} | {{ item.totalWithoutTaxes }} | {% if item.taxesRate %}{{ item.taxesName }} {{ item.taxesRate }}{% /if %} | {{ item.total }} |
Netto: {{ amountWithoutTaxes }}
{% for tax in taxesDetails %}{{ tax.name }} {{ tax.rate }}: {{ tax.amount }}
{% /for %}Totaal: {{ amount }}