The Application Details screen displays a single financial assistance application and its current workflow state at routeDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/pm/financial-assistance/:applicationId.
Overview
The page loads a single application record viauseFinancialAssistanceDetail. It displays three date cards — Effective From, Effective Through, and Decision Date — plus any Decision Notes stored on the record. The status badge reflects the status field using labels from FINANCIAL_ASSISTANCE_STATUS_LABELS. When the application is in pending status, users with the pm.financial_assistance.review permission see a Review button that opens a FinancialAssistanceReviewDialog.
Who it’s for
Requires permissionpm.financial_assistance.view (enforced via PermissionGate wrapping the page). The Review action additionally requires pm.financial_assistance.review.
Before you start
- You need the
pm.financial_assistance.viewpermission to see this page. - The application must exist and belong to your organization; otherwise an “Application not found” error is shown.
Steps
Open the application
Navigate from the Financial Assistance list (
/pm/financial-assistance) and select an application row to land on this page.Review dates and status
The three date cards show Effective From, Effective Through, and Decision Date. The status badge (e.g., Pending, Approved) appears in the header.
Read decision notes
If Decision Notes are present on the record, they appear in a card below the date grid.
Key concepts
| Term | Meaning in code |
|---|---|
applied_at | Timestamp when the application was submitted |
effective_from / effective_through | Date range during which assistance is active |
decided_at | Date the review decision was recorded |
decision_notes | Free-text notes from the reviewer |
status | Application status; pending unlocks the Review action |
Related
Practice Management
Practice Management core overview.
Governance & parity
Documentation coverage and governance.
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/pm.tsx
- src/cores/pm/pages/FinancialAssistanceDetailPage.tsx
- src/cores/pm/hooks/useFinancialAssistance.ts
- src/cores/pm/components/statements/FinancialAssistanceReviewDialog.tsx