Total Bills
{{ billing_total_count or 0 }}
Open Bills
{{ billing_open_count or 0 }}
Outstanding
₹ {{ '%.2f'|format(billing_outstanding_amount or 0) }}

Invoices & Payments

View bills, receipts and payment options.

Open Billing
{% for invoice in billing_invoices[:8] if billing_invoices is defined %} {% else %} {% endfor %}
InvoiceDateStatusBalanceAction
{{ invoice.invoice_no }} {{ invoice.invoice_date.strftime('%d-%m-%Y') if invoice.invoice_date else '-' }} {{ invoice.status }} ₹ {{ '%.2f'|format(invoice.balance_amount or 0) }} View{% if invoice.balance_amount and invoice.balance_amount > 0 %}|Pay{% endif %}
No invoices found.