{% extends "ui/templates/base/layout.html" %} {% block content %}
{{ invoice.account.display_name if invoice.account else invoice.account_id }} • {{ invoice.status }}
| Description | Charge | Taxable | Tax | Total |
|---|---|---|---|---|
| {{ line.description }} | {{ line.charge_type }} | ₹ {{ '%.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) }} |