Skip to main content

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.

The Dispute Details screen displays a single Good Faith Estimate dispute and provides status management at route /pm/gfe/disputes/:disputeId.

Overview

The page queries pm_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 permission PM_PERMISSIONS.GFE_VIEW (enforced via RequirePermission in the route definition). Status management requires pm.gfe.manage.

Before you start

  • You need pm.gfe.view to access this page.
  • Navigate here from the GFE Disputes list (/pm/gfe/disputes).

Steps

1

Open a dispute record

From the GFE Disputes list (/pm/gfe/disputes), click a row to open the dispute detail page.
2

Review dispute summary

Check the dispute date, actual total billed, estimated total from the linked GFE, and the variance amount.
3

Read resolution notes (if present)

If a resolution was recorded, it appears in the Resolution card.
4

Update status (pm.gfe.manage)

Use the header action buttons: Mark In Review (from open), Resolve, or Close. The Resolve/Close actions open the resolve dialog.

Key concepts

TermMeaning in code
dispute_dateDate the dispute was opened
actual_totalThe actual charges billed to the patient
variance_amountDifference between actual charges and the GFE estimate
pm_good_faith_estimates.total_estimatedThe original estimated total from the linked GFE
resolutionFree-text resolution notes recorded when the dispute is resolved
GfeDisputeStatusopen, in_review, resolved, closed

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.
  • src/routes/pm.tsx
  • src/cores/pm/pages/GfeDisputeDetailPage.tsx
  • src/cores/pm/hooks/useGfeDisputeMutation.ts