{{ seller.address }}
VAT: {{ seller.vat }}
{{ customer.name }}
{{ customer.address }}
| Description | Qty | Unit | Amount |
|---|---|---|---|
| {{ item.description }} | {{ item.qty | number }} | {{ item.unit | currency(invoice.currency) }} | {{ (item.qty * item.unit) | currency(invoice.currency) }} |
| Subtotal | {{ invoice.subtotal | currency(invoice.currency) }} | ||
| VAT ({{ invoice.tax_rate | percent }}) | {{ invoice.tax | currency(invoice.currency) }} | ||
| Total due | {{ invoice.total | currency(invoice.currency) }} | ||
{{ invoice.terms | default("Payment due within 14 days.") }}