The Fee Schedule Details screen displays a single fee schedule with its rate entries and provides tools to manage them 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/fee-schedules/:id.
Overview
The page loads the fee schedule fromuseFeeScheduleList (matching by id param) and its rate entries from useFeeScheduleEntries. The header shows the schedule name, effective date range (effective_date to end_date if set), and an Active/Inactive badge from is_active. Users with pm.fee_schedules.edit see an Add Rate Entry card containing FeeScheduleEntryForm. The entries table lists all rates with CPT code, modifier, rate amount, unit type, and effective date range. Each row has a delete button (requires pm.fee_schedules.edit) that calls deleteEntry.mutate(entry.id).
Who it’s for
Requires permissionPM_PERMISSIONS.FEE_SCHEDULES_VIEW (enforced via RequirePermission in the route definition). Adding and deleting entries requires pm.fee_schedules.edit.
Before you start
- You need
pm.fee_schedules.viewto access this page. - Navigate here from the Fee Schedules list (
/pm/fee-schedules).
Steps
Open a fee schedule
From the Fee Schedules list (
/pm/fee-schedules), click a row to open the detail page.Review schedule details
The header shows the schedule name, effective date range, and Active/Inactive status.
Review rate entries
The entries table lists all CPT code rates with modifier, amount, unit type, and date range.
Add a rate entry (pm.fee_schedules.edit)
Use the Add Rate Entry form to enter a CPT code, modifier, rate, unit type, and effective date, then submit.
Key concepts
| Term | Meaning in code |
|---|---|
schedule_name | Display name for the fee schedule |
effective_date / end_date | Validity period of the fee schedule |
is_active | Whether the schedule is currently active |
cpt_code | Procedure code for the rate entry |
modifier | Optional billing modifier for the rate |
rate | The rate amount for the CPT code entry |
unit_type | Unit measure for billing (SME confirm values) |
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/FeeScheduleDetailPage.tsx
- src/cores/pm/hooks/useFeeScheduleList.ts
- src/cores/pm/hooks/useFeeScheduleEntries.ts
- src/cores/pm/hooks/useFeeScheduleMutation.ts