The Dispute Details screen displays a single Good Faith Estimate dispute and provides status management 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/gfe/disputes/:disputeId.
Overview
The page queriespm_gfe_disputes joined with pm_good_faith_estimates via Supabase using organizationId and disputeId as filters. The Dispute Summary card shows four values: Dispute Date, Actual Total (billed charges), Variance Amount (actual minus estimated), and Estimated Total (from the linked pm_good_faith_estimates record). A Resolution card appears when resolution text is present. Status workflow actions (gated by pm.gfe.manage) allow advancing through states: Mark In Review (from open), Resolve (from open or in_review), and Close (any non-closed state). These actions open GfeDisputeResolveDialog or call updateDisputeStatus directly.
Who it’s for
Requires permissionPM_PERMISSIONS.GFE_VIEW (enforced via RequirePermission in the route definition). Status management requires pm.gfe.manage.
Before you start
- You need
pm.gfe.viewto access this page. - Navigate here from the GFE Disputes list (
/pm/gfe/disputes).
Steps
Open a dispute record
From the GFE Disputes list (
/pm/gfe/disputes), click a row to open the dispute detail page.Review dispute summary
Check the dispute date, actual total billed, estimated total from the linked GFE, and the variance amount.
Key concepts
| Term | Meaning in code |
|---|---|
dispute_date | Date the dispute was opened |
actual_total | The actual charges billed to the patient |
variance_amount | Difference between actual charges and the GFE estimate |
pm_good_faith_estimates.total_estimated | The original estimated total from the linked GFE |
resolution | Free-text resolution notes recorded when the dispute is resolved |
GfeDisputeStatus | open, in_review, resolved, closed |
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/GfeDisputeDetailPage.tsx
- src/cores/pm/hooks/useGfeDisputeMutation.ts