{% extends "ui/templates/base/layout.html" %} {% block content %} {% include "modules/clients/templates/clients/_client_tabs.html" %}
Issued on {{ invoice.invoice_date.strftime('%d-%m-%Y') if invoice.invoice_date else '-' }}{% if invoice.due_date %} • Due {{ invoice.due_date.strftime('%d-%m-%Y') }}{% endif %}
| Description | SAC | Taxable | GST | Total |
|---|---|---|---|---|
| {{ line.description }} | {{ line.sac_code or '-' }} | ₹ {{ '%.2f'|format(line.taxable_amount or 0) }} | ₹ {{ '%.2f'|format((line.cgst_amount or 0) + (line.sgst_amount or 0) + (line.igst_amount or 0)) }} | ₹ {{ '%.2f'|format(line.line_total or 0) }} |