{% extends "ui/templates/base/layout.html" %} {% block content %}
Create, issue and print GST-ready client invoices with SAC and tax breakup.
Showing billing records for active FY: {{ active_financial_year or 'All Years' }}
| Invoice No | Date | FY | Client | Amount | Received/TDS | Balance | Status | |
|---|---|---|---|---|---|---|---|---|
| {{ row.invoice_no }} | {{ row.invoice_date }} | {{ row.financial_year or '-' }} | {{ row.client.client_name if row.client else row.client_id }} | ₹ {{ '%.2f'|format(row.total_amount or 0) }} | ₹ {{ '%.2f'|format((row.amount_received or 0) + (row.tds_deducted or 0)) }} | ₹ {{ '%.2f'|format(row.balance_amount or row.total_amount or 0) }} | {{ row.status }} | |
| No invoices found. | ||||||||