{% extends "ui/templates/base/layout.html" %} {% block content %} {% include "modules/clients/templates/clients/_client_tabs.html" %}

Client Portal

My Bills & Payments

View invoices issued by your audit firm, download receipts and use Pay Now for pending bills.

Active FY: {{ active_financial_year or 'All Years' }}

{% if billing_latest_due_invoice %} Pay Latest Due {% endif %}
Outstanding
₹ {{ '%.2f'|format(billing_outstanding_amount or 0) }}
{{ billing_open_count or 0 }} open bill(s)
Total Invoices
{{ billing_total_count or 0 }}
Issued by firm
Paid
{{ billing_paid_count or 0 }}
Completed payments

Invoices

Draft and cancelled invoices are not shown in the client portal.

{% for row in rows %} {% else %} {% endfor %}
Invoice DateFY 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.
{% endblock %}