{% extends "ui/templates/base/layout.html" %} {% block content %}

Generate Audit Firm Platform Bills

Generate draft SaaS invoices for Audit Firm subscriptions. Duplicate invoices for the same subscription and period are skipped.

Back to Audit Firm Subscriptions
{% if generated or skipped %}
Generated: {{ generated }} · Skipped: {{ skipped }}
{% if errors %} {% endif %} {% if invoices %}
{% for invoice in invoices %}{{ invoice.invoice_no }}{% endfor %}
{% endif %}
{% endif %}

Optional usage rates

Base subscription amount comes from the subscription. Add usage rates only when you want to charge extra by count.

Select Audit Firm subscriptions
{% for row in rows %} {% set sub = row.subscription %} {% else %} {% endfor %}
Select Audit Firm Subscription Plan Base Usage Count
{{ sub.account.display_name if sub.account else '-' }} {{ sub.subscription_code }} {{ sub.plan.name if sub.plan else '-' }} {{ '%.2f'|format(sub.amount or 0) }} Clients: {{ row.usage.clients }} · Employees: {{ row.usage.employees }} · Consultants: {{ row.usage.consultants }} · Branches: {{ row.usage.branches }}
No Audit Firm subscriptions available.
{% endblock %}