COMPANY

Invoice {{ number }} : {{ title }}

Date : {{ date | date_format: MM/dd/yyyy }}

To : {{ client }}
{{ address }}


{% for item in items %} {% /for %}
Item Price Quantity ET Total Taxes Total
{{ item.title }} {{ item.amount }} {{ item.quantity }} {{ item.totalWithoutTaxes }} {% if item.taxesRate %}{{ item.taxesName }} {{ item.taxesRate }}{% /if %} {{ item.total }}

ET total : {{ amountWithoutTaxes }}

{% for tax in taxesDetails %}

{{ tax.name }} {{ tax.rate }} : {{ tax.amount }}

{% /for %}

Total : {{ amount }}