The Recurring Invoices page (Documentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/fa/recurring-invoices) lists all recurring invoice templates for the organization and provides controls to activate, pause, or delete them.
Overview
The Recurring Invoices list displays all recurring invoice templates scoped to the current organization. The page shows summary statistics — active template count, paused template count, and the next scheduled generation date — followed by a filterable table. Templates can be filtered by status (active, paused, or all) and by customer. Each template row links to the recurring invoice detail page.
Who it’s for
Requires permission:fa.recurring_invoices.view.
Before you start
- At least one customer must exist in the system.
- You need the
fa.recurring_invoices.viewpermission to view the list. - To create a new template, you need
fa.recurring_invoices.create. - To pause or delete, you need
fa.recurring_invoices.edit.
Steps
View recurring invoice templates- Navigate to
/fa/recurring-invoices. - Use the Status and Customer filters to narrow the list.
- Click a template row to open its detail page.
- Click New (requires
fa.recurring_invoices.create). - Complete the creation form and save.
- Locate the template in the list.
- Use the Pause or Resume action to toggle the template status.
Key concepts
- Template: A recurring invoice definition that drives automatic invoice generation on a scheduled basis.
- Active / Paused: Status values observed in code (
status === 'active'or'paused'). - Next generation date: The
next_generation_datefield on each template; the list sorts by this field to surface the soonest upcoming invoice.
Related
Finance & Revenue
Finance & Revenue core overview.
Governance & parity
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/fa.tsx
- src/cores/fa/pages/RecurringInvoicesPage.tsx
- src/cores/fa/hooks/useRecurringInvoices.ts
- src/cores/fa/components/RecurringInvoicesTable.tsx