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 GFE Details screen displays a single Good Faith Estimate record with its itemized service lines and lifecycle actions at route /pm/gfe/:gfeId.

Overview

The page loads a GFE via useGfeDetail, with the breadcrumb showing the patient’s name from joined pm_patients. The header shows the patient name in the description and a status badge. An Estimate Summary card displays: estimate date, total estimated amount, delivery method, and delivered-at timestamp. The Itemized Services table lists each GfeItem with CPT code, description, quantity, unit rate, and total. Status-action buttons (gated by permissions) allow: Mark as Delivered (pm.gfe.create, draft status) via GfeDeliverDialog; Record Acknowledgment (pm.gfe.create, delivered status) via acknowledgeGfe mutation; and File Dispute (pm.gfe.manage) via GfeFileDisputeDialog.

Who it’s for

Requires permission PM_PERMISSIONS.GFE_VIEW (enforced via RequirePermission in the route definition). Delivering and acknowledging requires pm.gfe.create. Filing a dispute requires pm.gfe.manage.

Before you start

  • You need pm.gfe.view to access this page.
  • Navigate here from the Good Faith Estimates list (/pm/gfe).

Steps

1

Open a GFE record

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

Review estimate summary

The Estimate Summary card shows the estimate date, total estimated amount, delivery method, and delivery timestamp.
3

Review itemized services

The Itemized Services table lists each line item with CPT code, description, quantity, unit rate, and total.
4

Mark as Delivered (draft, pm.gfe.create)

Click Mark as Delivered to open the delivery dialog and record that the GFE was delivered to the patient.
5

Record Acknowledgment (delivered, pm.gfe.create)

Click Record Acknowledgment to confirm that the patient received and acknowledged the estimate.
6

File a Dispute (pm.gfe.manage)

Click File Dispute to open the dispute dialog and create a linked GFE dispute record.

Key concepts

TermMeaning in code
estimate_dateDate the GFE was created
total_estimatedSum of all itemized line totals
delivery_methodHow the GFE was delivered to the patient
delivered_atTimestamp when delivery was recorded
GfeItemLine item with cpt_code, description, quantity, unit_rate, total
GfeStatusdraft, delivered, acknowledged, superseded

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/GfeDetailPage.tsx
  • src/cores/pm/hooks/useGfeDetail.ts
  • src/cores/pm/hooks/useGfeMutation.ts