| Description | Quantity | Unit price | {% if has_vat %}VAT % | {% endif %} {% if has_wht %}WHT % | {% endif %}Amount EX TAX ({{ invoice_currency }}) |
|---|---|---|---|---|---|
| {{ item.description }} | {{ item.quantity }} | {{ "{0:,.2f}".format(item.amount) }} | {% if has_vat %}{% if item.vat_rate is string %} {{ item.vat_rate }} {% else %} {{ "{0:,.2f}".format(item.vat_rate).rstrip('0').rstrip('.') }}% {% endif %} | {% endif %} {% if has_wht %}{% if item.wht_rate is string %} {{ item.wht_rate }} {% else %} {{ "{0:,.2f}".format(item.wht_rate).rstrip('0').rstrip('.') }}% {% endif %} | {% endif %}{{ "{0:,.2f}".format(item.amount_ex_tax) }} |
| Subtotal | {{ "{0:,.2f}".format(subtotal_amount) }} | ||||