The Reconciliation Details page atDocumentation 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/reconciliations/:id provides a full view of a bank reconciliation session including matched transactions, unmatched items, adjustments, and the completion workflow.
Overview
The route/fa/reconciliations/:id loads ReconciliationDetailPage. Data is fetched via useBankReconciliation and useReconciliationMatches. The page displays a ReconciliationSummaryCard and three tabs: matched transactions (MatchedTransactionsTab), unmatched transactions (UnmatchedTransactionsTab), and a reports tab (ReconciliationReportsTab). An ReconciliationAdjustmentsTable shows adjusting entries. PDF and Excel exports are available via useReconciliationPdfExport and useReconciliationExcelExport. A Complete Reconciliation action is guarded by CompletionConfirmationDialog and uses PermissionGate.
Who it’s for
No explicit permission gate on the route. APermissionGate wraps the completion action within the page.
Before you start
- A reconciliation session must have been started via
/fa/reconciliations/newor/fa/reconciliations/wizard.
Steps
- Navigate to Finance & Revenue → Banking → Reconciliations and select a reconciliation, or go to
/fa/reconciliations/:id. - Review the summary card showing the bank account and reconciliation status.
- Work through the Unmatched Transactions tab to match items.
- Review the Matched Transactions tab for confirmation.
- Review and add any adjustments.
- When the reconciliation is balanced, use the Complete action and confirm in the dialog.
Key concepts
Summary card —ReconciliationSummaryCard shows the balance difference.
Completion guard — Completion is wrapped in PermissionGate and a CompletionConfirmationDialog.
Exports — PDF via useReconciliationPdfExport and Excel via useReconciliationExcelExport.
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/ReconciliationDetailPage.tsx
- src/cores/fa/hooks/useBankReconciliations.ts
- src/cores/fa/hooks/useReconciliationMatches.ts