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 Fee Schedule Details screen displays a single fee schedule with its rate entries and provides tools to manage them at route /pm/fee-schedules/:id.

Overview

The page loads the fee schedule from useFeeScheduleList (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 permission PM_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.view to access this page.
  • Navigate here from the Fee Schedules list (/pm/fee-schedules).

Steps

1

Open a fee schedule

From the Fee Schedules list (/pm/fee-schedules), click a row to open the detail page.
2

Review schedule details

The header shows the schedule name, effective date range, and Active/Inactive status.
3

Review rate entries

The entries table lists all CPT code rates with modifier, amount, unit type, and date range.
4

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.
5

Delete a rate entry (pm.fee_schedules.edit)

Click the trash icon on a rate row to delete it. The deletion is immediate.

Key concepts

TermMeaning in code
schedule_nameDisplay name for the fee schedule
effective_date / end_dateValidity period of the fee schedule
is_activeWhether the schedule is currently active
cpt_codeProcedure code for the rate entry
modifierOptional billing modifier for the rate
rateThe rate amount for the CPT code entry
unit_typeUnit measure for billing (SME confirm values)

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/FeeScheduleDetailPage.tsx
  • src/cores/pm/hooks/useFeeScheduleList.ts
  • src/cores/pm/hooks/useFeeScheduleEntries.ts
  • src/cores/pm/hooks/useFeeScheduleMutation.ts