{% extends 'core/base.html' %} {% load static %} {% block title %}Sales by Item Summary - SwiftPOS{% endblock %} {% block topbar_title %} Sales by Item Summary {% endblock %} {% block content %}

Sales by Items

Detailed breakdown of products sold and margins.

to
{% for item in report_data %} {% empty %} {% endfor %}
Item name SKU Category Items sold Gross sales Refunds Discounts Net sales Cost of goods Gross profit Margin Taxes
{{ item.item_name }} {{ item.sku }} {{ item.category }} {{ item.quantity }} {{ item.gross_sales|floatformat:2 }} {{ item.refunds|floatformat:2 }} {{ item.discounts|floatformat:2 }} {{ item.net_sales|floatformat:2 }} {{ item.cost_of_goods|floatformat:2 }} {{ item.gross_profit|floatformat:2 }} {{ item.margin|floatformat:2 }}% {{ item.taxes|floatformat:2 }}
No sales data found for the selected dates.
{% endblock %}