{% load i18n %}
{% trans 'Product' %} | {% trans 'Store Cause' %} | {% trans 'Qty' %} | {% trans 'Price' %} | {% trans 'Fee' %} | {% trans 'Disc.' %} | {% trans 'Com' %} | {% trans 'Total' %} | {% trans 'Vat' %} | {% for r in qs_cus %}
---|---|---|---|---|---|---|---|---|
{{ r.get_description }} | {{ r.store_cause }} | {{ r.quantity }} | {{ r.price }} | {{ r.fee }} | {{ r.discount }} | {{ r.icon_com|safe }} | {{ r.total|floatformat:2 }} | {{ r.vat.code }} |
{% trans 'Totals' %} | |
---|---|
{% trans 'Total Income' %} | {{ project.get_cus_total.total_income|floatformat:2 }} |
{% trans 'Total Fee' %} | {{ project.get_cus_total.total_income|floatformat:2 }} |
{% trans 'Total Discount' %} | {{ project.get_cus_total.total_discount|floatformat:2 }} |
{% trans 'Total' %} | {{ project.get_cus_total.total|floatformat:2 }} |
{% trans 'Product' %} | {% trans 'Store Cause' %} | {% trans 'Qty' %} | {% trans 'Price' %} | {% trans 'Fee' %} | {% trans 'Disc.' %} | {% trans 'Com' %} | {% trans 'Total' %} | {% trans 'Vat' %} | {% for r in qs_sup %}
---|---|---|---|---|---|---|---|---|
{{ r.get_description }} | {{ r.store_cause }} | {{ r.quantity }} | {{ r.price }} | {{ r.fee }} | {{ r.discount }} | {{ r.icon_com|safe }} | {{ r.total|floatformat:2 }} | {{ r.vat.code }} |
{% trans 'Totals' %} | |
---|---|
{% trans 'Total Income' %} | {{ project.get_sup_total.total_income|floatformat:2 }} |
{% trans 'Total Fee' %} | {{ project.get_sup_total.total_income|floatformat:2 }} |
{% trans 'Total Discount' %} | {{ project.get_sup_total.total_discount|floatformat:2 }} |
{% trans 'Total' %} | {{ project.get_sup_total.total|floatformat:2 }} |