-
{% if metadata.type == "invoice" %} {% trans "Sold by" %} {% else %} {% trans "Refunded by" %} {% endif %}
{{ order.seller.address|linebreaksbr }} -
{% if metadata.type == "invoice" %} {% trans "Billed to" %} {% else %} {% trans "Refunded to" %} {% endif %}
{{ order.customer.name }}
{{ order.customer.address|linebreaksbr }}
{% trans "Product" %} | {% trans "Price" %} | {% trans "VAT" %} ({{ order.amount.vat }}%) | {% trans "Total" %} |
---|---|---|---|
{{ order.product.name }} {{ order.product.description }} |
{{ order.amount.subtotal|floatformat:2 }} {{ currency }} | {{ order.amount.vat_amount|floatformat:2 }} {{ currency }} | {{ order.amount.total|floatformat:2 }} {{ currency }} |
- {% trans "Subtotal" %} {{order.amount.subtotal|floatformat:2 }} {{ currency }}
- {% trans "Sales Tax VAT" %} {{ order.amount.vat }}% {{ order.amount.vat_amount|floatformat:2 }} {{ currency }}
- {% trans "Total" %} {{order.amount.total|floatformat:2 }} {{ currency }}