{% extends 'common/base.html' %} {% load static %} {% block title %}Sales Report{% endblock %} {% block content %}

Sales Report

Reset
Export Excel Download PDF
{% if sales %} {% for sale in sales %} {% endfor %}
# Order ID Date Customer Status Total
{{ forloop.counter }} {{ sale.order_id }} {{ sale.date|date:"d M, Y" }} {{ sale.customer_name }} {{ sale.status }} {{ sale.total_amount|floatformat:2 }}
Total: {{ grand_total|floatformat:2 }}
{% else %}

No sales found for the selected filters.

{% endif %}
{% endblock %}