{% load i18n %} {% for row in original.rows.all %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{% trans "Project" %} {% trans "Product" %} {% trans "Description" %} {% trans "Unit" %} {% trans "Quantity" %} {% trans "Price" %} {% trans "Discount" %} 1 {% trans "Discount" %} 2 {% trans "Fee" %} 1 {% trans "Discount" %} 2 {% trans "Row Total" %} {% trans "E" %} {% trans "D" %}
{{ row.project.name }} {{ row.product.name }} {{ row.product.short_description}} {{ row.m_unit }} {{ row.quantity }} {{ row.price }} {{ row.perc_discount1 }} {{ row.perc_discount2 }} {{ row.fee }} {{ row.total_discount }} {{ row.get_total }}
{% trans "Total Income" %} {{ row.procedure.totals.income|floatformat:2 }}
{% trans "Total Discount" %} {{ row.procedure.totals.discount|floatformat:2 }}
{% trans "Total Fee" %} {{ row.procedure.totals.fee|floatformat:2 }}
{% trans "Procedure Total" %} {{ row.procedure.totals.total_no_vat|floatformat:2 }}
{% trans "Total VAT" %} {{ row.procedure.totals.vat|floatformat:2 }}
{% trans "Total" %} {{ row.procedure.totals.total|floatformat:2 }}
{% endif %} {% endfor %}