The Journal Entry Details page shows the full detail of a single journal entry and allows lifecycle management. It is accessible 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.
/fa/journal-entries/:id.
Overview
The page loads a journal entry viauseJournalEntry(id, organizationId). It renders:
- Header: Entry number (or “Draft Entry”), with action buttons based on status:
draft: Edit, Save Changes / Cancel (when editing), Post Entry, Deleteposted: Reverse Entry
- Entry Information card:
JournalEntryFormin read-only or edit mode (transaction date, posting date, period, description, notes, source type, source reference) - Entry Lines card:
JournalLineEditor— editable when in edit mode, read-only otherwise - Audit Information card: Shown only when
posted_by_profileis present. Displays created-by name, posted-by name, and posted timestamp.
useUpdateJournalEntry, useBulkUpdateLines, usePostJournalEntry, useReverseJournalEntry, useDeleteJournalEntry
Post → redirect: /fa/journal-entries (list)
Reverse → redirect: /fa/journal-entries (list)
Delete → redirect: /fa/journal-entries (list)
Who it’s for
No explicit permission gate on this route.Before you start
- The entry must belong to the current organization.
- Editing and posting are only available on
draftentries. - Reversal is only available on
postedentries.
Steps
Post a draft entry- Navigate to
/fa/journal-entries/:id. - Review the entry and its lines for accuracy.
- Click Post Entry. You are redirected to the journal entries list on success.
- Click Edit.
- Modify the
JournalEntryFormheader fields or line items inJournalLineEditor. - Click Save Changes to persist, or Cancel to discard.
- Click Reverse Entry. The reversal date is today’s date.
- On success, you are redirected to the journal entries list.
- Click Delete — a confirmation dialog appears.
- Confirm deletion. You are redirected to the journal entries list.
Key concepts
- Balanced entry: Total debits must equal total credits before an entry can be posted.
- Reversal: Creates an offsetting journal entry dated to the current date.
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/JournalEntryDetailPage.tsx
- src/cores/fa/hooks/useJournalEntries.ts
- src/cores/fa/hooks/useJournalEntryLines.ts
- src/cores/fa/components/JournalEntryForm.tsx
- src/cores/fa/components/JournalLineEditor.tsx