{% extends "ui/templates/base/layout.html" %} {% block content %} {% include "modules/clients/templates/clients/_client_tabs.html" %}
Client Portal
View invoices issued by your audit firm, download receipts and use Pay Now for pending bills.
Active FY: {{ active_financial_year or 'All Years' }}
Draft and cancelled invoices are not shown in the client portal.
| Invoice | Date | FY | Due Date | Total | Balance | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ row.invoice_no }} | {{ row.invoice_date.strftime('%d-%m-%Y') if row.invoice_date else '-' }} | {{ row.due_date.strftime('%d-%m-%Y') if row.due_date else '-' }} | ₹ {{ '%.2f'|format(row.total_amount or 0) }} | ₹ {{ '%.2f'|format(row.balance_amount or 0) }} | {{ row.status.replace('_', ' ') }} | {% if row.balance_amount and row.balance_amount > 0 %}Pay Now{% else %}View{% endif %} | |
| No invoices found. | |||||||