{% extends "base.html" %} {% block page_heading %}Daily Sales Report{% endblock %} {% block content %} Back
{{ total|currency }}
Total Sales on {{ date }}
{% for s in sales %} {% else %} {% endfor %}
InvoiceCustomerTimeSubtotalGSTTotalStatus
{{ s.invoice_number }} {{ s.customer_name or 'Walk-in' }} {{ s.sale_date }} {{ s.subtotal|currency }} {{ s.gst_amount|currency }} {{ s.total_amount|currency }} {{ s.payment_status }}
No sales on this date.
{% endblock %}