/fa/receivables?tab=payment-plans; the legacy /fa/payment-plans route redirects there). It supports filtering by status and customer, displays summary cards, and provides actions to create, submit for approval, and delete plans.
Who it’s for
Access follows your organization’s role and module configuration. The Payment Plans tab within the AR hub is accessible to users who can reach/fa/receivables. Viewing a plan requires fa.payment_plans.view; creating requires fa.payment_plans.create; editing requires fa.payment_plans.edit.
Finding a plan
- Navigate to Finance & Revenue → Accounts Receivable → Payment Plans, or go to
/fa/receivables?tab=payment-plans. - Use filters (status, customer) and search to locate plans.
- Select a plan to view its details.
- Use New Payment Plan to create a plan.
Viewing a payment plan
Selecting a plan opens its detail view at/fa/payment-plans/:id (permission: fa.payment_plans.view): plan header fields (customer, total amount, paid amount, status), a progress bar, and tabbed views including the installment schedule. Available actions — submit for approval, approve/reject, cancel, delete, edit — depend on the plan’s current status.
- Review the plan summary: customer, total, amount paid, and status.
- View the installment schedule in the installments tab.
- Use action buttons to submit for approval, approve/reject, cancel, or edit as appropriate for the plan’s current status.
draft → pending_approval → approved → active → completed (or cancelled / defaulted).
Installment statuses — pending, paid, partial, overdue, skipped.
Progress bar — Reflects the proportion of total_paid to total plan amount.
Creating a payment plan
The New Payment Plan form (/fa/payment-plans/new, permission: fa.payment_plans.create) creates a structured repayment agreement; the platform generates installment records automatically on save.
Before you start: confirm the customer record exists, and know the total amount, number of installments, payment frequency, and start date. An optional linked invoice may be provided.
- From the Payment Plans tab, select New Payment Plan, or go to
/fa/payment-plans/new. - Complete the form fields: plan name, customer, invoice (optional), total amount, number of installments, payment frequency, and start date.
- Optionally enter an end date.
- Select Create. The plan is saved as
draftand installments are generated automatically. - You are redirected to the plan’s detail view to review the installment schedule.
Editing a payment plan
The edit form (/fa/payment-plans/:id/edit, permission: fa.payment_plans.edit) updates an existing plan’s name, customer, linked invoice, amount, installment count, payment frequency, and dates. The plan must be in a status that permits editing.
- Open the payment plan and click Edit.
- Update the relevant fields.
- Click Save. On success you return to the plan’s detail view.
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/PaymentPlansPage.tsx
- src/cores/fa/pages/ReceivablesHubPage.tsx
- src/cores/fa/pages/PaymentPlanDetailPage.tsx
- src/cores/fa/pages/PaymentPlanCreatePage.tsx
- src/cores/fa/pages/PaymentPlanEditPage.tsx
- src/cores/fa/hooks/usePaymentPlans.ts
- src/cores/fa/components/PaymentPlanApprovalDialog.tsx
- src/cores/fa/components/PaymentPlanForm.tsx