{% load i18n %} {% for row in original.invoicerows.all %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{% trans "Product" %} {% trans "Vat" %} {% trans "Store Cause" %} {% trans "Quantity" %} {% trans "Price" %} {% trans "Fee" %} {% trans "Discount" %} {% trans "E" %} {% trans "D" %}
{{ row.product.name }} {{ row.vat }} {{ row.store_cause }} {{ row.quantity }} {{ row.price }} {{ row.fee }} {{ row.total_discount }}
{% trans "Total Income" %} {{ row.invoice.total_income }}
{% trans "Invoice Total" %} {{ row.invoice.totals.total}}
{% endif %} {% endfor %}