Close Periods lists all financial close periods for the organization, with filtering by status and period type, summary statistics, and the ability to create new periods. Route: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.
/fa/close
Overview
The page fetches all close periods viauseClosePeriodsList filtered by status and period_type. A client-side search filter applies on period_name. Stat cards show counts of open, in-progress, pending-approval, and closed-this-year periods. The ClosePeriodsTable lists periods; clicking a row navigates to /fa/close/:id. The New Close Period button (gated by fa.close.create via PermissionGate) opens CreateClosePeriodDialog.
Who it’s for
Requires permission:fa.close.view
Before you start
- You must hold the
fa.close.viewpermission. - Creating new periods requires
fa.close.create.
Steps
Filter periods
Use the status and period-type dropdowns, or type in the search box, to narrow the list.
Review statistics
Stat cards at the top summarize open, in-progress, pending-approval, and closed-this-year counts.
Key concepts
ClosePeriodStatus— Type for the period lifecycle state (open, in_progress, pending_approval, closed, etc.).ClosePeriodType— Type for period classification:month,quarter,year.useClosePeriodsList— Primary data hook; acceptsorganizationIdand filter object.PermissionGate— Platform component used here to gate the Create button onfa.close.create.
Related
Finance & Revenue
Finance & Revenue core overview.
Governance & parity
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/fa.tsx
- src/cores/fa/pages/ClosePeriodsPage.tsx
- src/cores/fa/components/ClosePeriodsTable.tsx
- src/cores/fa/components/CreateClosePeriodDialog.tsx
- src/cores/fa/types/close.ts