The GFE Details screen displays a single Good Faith Estimate record with its itemized service lines and lifecycle actions 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/:gfeId.
Overview
The page loads a GFE viauseGfeDetail, 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 permissionPM_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.viewto access this page. - Navigate here from the Good Faith Estimates list (
/pm/gfe).
Steps
Review estimate summary
The Estimate Summary card shows the estimate date, total estimated amount, delivery method, and delivery timestamp.
Review itemized services
The Itemized Services table lists each line item with CPT code, description, quantity, unit rate, and total.
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.
Record Acknowledgment (delivered, pm.gfe.create)
Click Record Acknowledgment to confirm that the patient received and acknowledged the estimate.
Key concepts
| Term | Meaning in code |
|---|---|
estimate_date | Date the GFE was created |
total_estimated | Sum of all itemized line totals |
delivery_method | How the GFE was delivered to the patient |
delivered_at | Timestamp when delivery was recorded |
GfeItem | Line item with cpt_code, description, quantity, unit_rate, total |
GfeStatus | draft, delivered, acknowledged, superseded |
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/GfeDetailPage.tsx
- src/cores/pm/hooks/useGfeDetail.ts
- src/cores/pm/hooks/useGfeMutation.ts