{% load i18n %}
{% trans 'Sale' %}
{% for item in sale_items %} {% endfor %}
{% trans 'Action' %} {% trans 'Date' %} {% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Price' %} {% trans 'Subtotal (Retail)' %}
{{ item.invoice.get_type_display }} {{ item.invoice.created }} {{ item.product_name }} {{ item.qty }} {{ item.price_with_discount|stringformat:".2f" }} {{ item.subtotal_with_discount|stringformat:".2f" }}
{% trans 'Arrival' %}
{% for item in arrival_items %} {% endfor %}
{% trans 'Action' %} {% trans 'Date' %} {% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Price' %} {% trans 'Subtotal (Retail)' %}
{{ item.invoice.get_type_display }} {{ item.invoice.created }} {{ item.product_name }} {{ item.qty }} {{ item.price|stringformat:".2f" }} {{ item.subtotal|stringformat:".2f" }}