{% load i18n %}
{% trans 'Product' %} | {% trans 'Store Cause' %} | {% trans 'Project' %} | {% trans 'Qty' %} | {% trans 'Price' %} | {% trans 'Fee' %} | {% trans 'Disc.' %} | {% trans 'Ddt' %} | {% trans 'Total' %} | {% trans 'Vat' %} | {% for r in pr.rows.all %}
---|---|---|---|---|---|---|---|---|---|
{{ r.get_description }} | {{ r.store_cause }} | {{ r.project }} | {{ r.quantity }} | {{ r.price }} | {{ r.fee }} | {{ r.discount }} | {{ r.icon_ddt|safe }} | {{ r.total|floatformat:2 }} | {{ r.vat.code }} |
{% trans 'Cod. VAT' %} | {% trans 'VAT Name' %} | {% trans 'Total Income' %} | {% trans '% IVA' %} | {% for v in pr.vattotalrows.all %}
---|---|---|---|
{{ v.vat.code }} | {{ v.vat.name }} | {{ v.total_income|floatformat:2 }} | {{ v.total_vat|floatformat:2 }} |
{% trans 'Totals' %} | |
---|---|
{% trans 'Total Income' %} | {{ pr.totals.income|floatformat:2 }} |
{% trans 'Total Fee' %} | {{ pr.totals.fee|floatformat:2 }} |
{% trans 'Total Discount' %} | {{ pr.totals.discount|floatformat:2 }} |
{% trans 'Total Vat' %} | {{ pr.totals.vat|floatformat:2 }} |
{% trans 'Total' %} | {{ pr.totals.total|floatformat:2 }} |