{% load static %}
{{ branch.address_line1 }}
Cell: {{ branch.phone }}
Email: {{ branch.email }}
{{ branch.state.upper }}, {{ branch.pincode }}
| Invoice No: {{ sales.inv_no }} | INVOICE | Date: {{ sales.inv_date|date:"d-m-Y" }} {{ sales.time|time:"H:i" }} |
Supply Store: {{ store_name }} | Phone: {{ store_phone }}
{% elif sales.customer_id and sales.customer_id != 0 %}Customer Name: {{ customer_name }} | Phone: {{ customer_phone }}
{% endif %}| Item Name | Rate | Qty | Disc | CGST | SGST | Amt | ||
|---|---|---|---|---|---|---|---|---|
| {{ item.display_name }} | {{ item.rate|floatformat:2 }} | {{ item.quantity }} | {{ item.discount_amount|default:0|floatformat:2 }} | {{ item.tax_cgst|default:0|floatformat:2 }} | {{ item.tax_sgst|default:0|floatformat:2 }} | {{ item.amount|floatformat:2 }} | ||
| No items found. | ||||||||
| Total: | {{ total_amount|floatformat:2 }} | |||||||
| CGST: | {{ sales.total_cgst|floatformat:2 }} | |||||||
| SGST: | {{ sales.total_sgst|floatformat:2 }} | |||||||
| Disc: | {{ sales.total_discount|floatformat:2 }} | |||||||
| Cash: | {{ sales.cash|floatformat:2 }} | |||||||
| Bank: | {{ sales.bank|floatformat:2 }} | |||||||
| Balance: | {{ sales.balance|floatformat:2 }} | |||||||