|
{{ invoice['customer.company']|default(invoice['customer.name']) }} {{ invoice['customer.address']|nl2br }} {% set country = invoice['customer.country']|country_name(invoice['invoice.language']) %} {% if country not in invoice['customer.address'] %} {{ country }} {% endif %} |
{% set classLeft = 'text-left' %}
{% set classRight = 'text-right text-nowrap padding-left' %}
|
{{ invoice['customer.invoice_text']|md2html }}
{% endif %}| {{ 'description'|trans }} | {{ 'unit_price'|trans }} | {{ 'amount'|trans }} | {{ 'total_rate'|trans }} |
|---|---|---|---|
| {% if invoiceLineItem['entry.description'] is not empty %} {{ invoiceLineItem['entry.description']|nl2br }} {% else %} {% if invoiceLineItem['entry.activity'] is defined %} {{ invoiceLineItem['entry.activity'] }} / {% endif %} {{ invoiceLineItem['entry.project'] }} {% endif %} | {{ invoiceLineItem['entry.rate'] }} | {{ invoiceLineItem['entry.amount'] }} | {{ invoiceLineItem['entry.total'] }} |
| {{ 'invoice.subtotal'|trans }} | {{ invoice['invoice.subtotal'] }} | ||
| {{ 'invoice.tax'|trans }} ({{ invoice['invoice.vat'] }}%) | {{ invoice['invoice.tax'] }} | ||
| {{ 'invoice.total'|trans }} | {{ invoice['invoice.total'] }} | ||