Edit Payment Plan provides a form for updating an existing payment plan’s details, including name, customer, linked invoice, amount, installment count, payment frequency, and dates. 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/:id/edit.
Overview
The Edit Payment Plan page is accessible at/fa/payment-plans/:id/edit and requires permission fa.payment_plans.edit. The component (PaymentPlanEditPage) fetches the existing plan via usePaymentPlan(id, organizationId). It renders PaymentPlanForm pre-populated with current values. On submit, useUpdatePaymentPlan is called with updated fields: plan_name, customer_id, invoice_id, total_amount, number_of_installments, payment_frequency, start_date, end_date, and updated_by. On success the page navigates to /fa/payment-plans/:id. The breadcrumb shows Edit <plan_number>.
Who it’s for
Requires permissionfa.payment_plans.edit.
Before you start
- You must have
fa.payment_plans.editpermission. - The payment plan must be in a status that permits editing (SME: confirm).
Steps
- Navigate to the Receivables Hub (
/fa/receivables?tab=payment-plans) and open the payment plan. - Click Edit to go to
/fa/payment-plans/:id/edit. - Update the relevant fields in
PaymentPlanForm. - Click Save to submit.
- On success, the page navigates to the payment plan detail.
Key concepts
| Concept | Description |
|---|---|
PaymentPlanForm | Shared form for payment plan create and edit workflows |
usePaymentPlan | Hook fetching the existing plan, scoped to organizationId |
useUpdatePaymentPlan | Mutation hook persisting payment plan edits |
payment_frequency | SME: confirm allowed values and billing cadence |
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/PaymentPlanEditPage.tsx