{% extends "base.html" %} {% block page_heading %}Invoice {{ sale.invoice_number }}{% endblock %} {% block content %}
Inventory & Billing Management System
#{{ sale.invoice_number }}
{{ sale.sale_date }}
| # | Product | Qty | Rate | GST | Amount |
|---|---|---|---|---|---|
| {{ loop.index }} | {{ item.product_name }} | {{ item.quantity }} | {{ item.unit_price|currency }} | {{ item.gst_amount|currency }} | {{ item.line_total|currency }} |
| Subtotal | {{ sale.subtotal|currency }} | ||||
| GST Total | {{ sale.gst_amount|currency }} | ||||
| Discount | {{ sale.discount|currency }} | ||||
| Grand Total | {{ sale.total_amount|currency }} | ||||
Thank you for your business!
Status: {{ sale.payment_status }} ยท Paid: {{ sale.paid_amount|currency }}