{% extends "base.html" %} {% block page_heading %}Invoice {{ sale.invoice_number }}{% endblock %} {% block content %}
New Invoice Download PDF QR Code

Smart Business Billing

Inventory & Billing Management System

INVOICE

#{{ sale.invoice_number }}

{{ sale.sale_date }}

Bill To:
{{ sale.customer_name or 'Walk-in Customer' }}
{% if sale.phone %}{{ sale.phone }}
{% endif %} {% if sale.address %}{{ sale.address }}{% endif %}
QR
{% for item in items %} {% endfor %}
#ProductQtyRateGSTAmount
{{ 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!

{% if sale.payment_status != 'paid' %}
Record Payment

Status: {{ sale.payment_status }} ยท Paid: {{ sale.paid_amount|currency }}

{% endif %} {% endblock %}