The New Payment Plan page lets authorized users create a structured repayment agreement for a customer, with the platform automatically generating installment records on save. Route: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/payment-plans/new.
Overview
Navigating to/fa/payment-plans/new renders a form backed by useCreatePaymentPlan. On successful submission the platform sets plan status to draft, generates installment records (generateInstallments: true), and redirects to the new plan’s detail page at /fa/payment-plans/:id.
Who it’s for
Requires permissionfa.payment_plans.create.
Before you start
- Confirm the correct customer record exists in the system.
- Know the total amount, number of installments, payment frequency, and start date.
- An optional linked invoice (
invoice_id) may be provided.
Steps
- Navigate to Finance & Revenue → Accounts Receivable → Payment Plans and select New Payment Plan, or go directly 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 (or the submit button). The plan is saved as
draftand installments are generated automatically. - You are redirected to the Payment Plan Details page to review the installment schedule.
Key concepts
Draft status — Plans are created indraft status. Submission for approval or activation is handled from the detail page.
Automatic installment generation — The generateInstallments: true flag causes the hook to create individual installment records for the plan on creation.
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/PaymentPlanCreatePage.tsx
- src/cores/fa/hooks/usePaymentPlans.ts
- src/cores/fa/components/PaymentPlanForm.tsx