Skip to content

Journal Entries

Backlog fieldValue
Story IDAP-ACC-006
EpicAccounting
Story typeBusiness workflow
Review statusDraft - business analyst and business owner review required
Source evidenceAppsPortal.Apis controller, application command/query handlers, validators, domain entities, and matching MFE workflow where available
Last source review2026-07-10

User story

As accountants, I want to create, edit, post, reverse, view, print, and export balanced journals so that financial events are recorded with a complete audit trail.

Posting reference: AppsPortal Posting Ledger explains debit/credit construction. Delegation and Interaction Contracts explains module ownership, delegated commands, linked records, commit boundaries, and reversal propagation.

Acceptance criteria

  1. Only authorized users can view or execute the feature's actions.
  2. Required business data, active dependencies, tenant/branch scope, and current document state are validated.
  3. Invalid requests return actionable validation errors without applying a partial change.
  4. Search, list, view, print, and export operations use the same authorized business scope.
  5. Material create, edit, status, approval, posting, reversal, and integration actions are auditable where applicable.
  6. Financial or stock effects are applied atomically and no more than once.

Posting details

  1. Re-load the Draft journal and validate the transaction date is in an open period.
  2. Validate every account is active and postable, each line has either debit or credit, currencies/rates are valid, cost-center allocations are valid, and total local debits equal total local credits.
  3. Posting does not delegate stock, customer, vendor, or payment work. Accounting owns the complete effect.
  4. Mark the journal Posted and make its lines effective in the ledger, Trial Balance, account statements, cost-center reports, and financial statements.
  5. Commit status and lines together. Reverse creates a new linked journal with debits and credits exchanged; it never edits the original Posted journal.

General ledger posting

Line typeDebitCreditResult
Debit lineSelected postable GL-Increases/decreases balance by account nature.
Credit line-Selected postable GLOpposite ledger direction.
ReversalOriginal credit accountsOriginal debit accountsNew linked journal; original remains unchanged.

Other module and document effects

AreaEffectConditional/no effect
Accounting reportsUpdates ledger, Trial Balance, statements, cost centers, and financial statements.Unposted Draft has no report balance effect.
Inventory/Sales/Purchase/FinanceNo delegated subledger or stock document.Manual journal does not create stock, customer/vendor due balances, or cash hub movement.

Core acceptance scenarios

  1. Given a balanced Draft journal in an open period with active posting accounts, when an authorized accountant clicks Post, then the journal becomes Posted and its debit/credit and cost-center lines become effective in GL reports.
  2. Given the journal is unbalanced, uses invalid accounts, or the period is closed, when the operation is attempted, then Post is rejected and no line becomes effective.
  3. Given the same Post request is retried after success, when the source is no longer Draft, then no duplicate journal, stock, balance, payment, or lifecycle effect is created.

Required and optional data

Required: journal date/open period, type/source, sequence/reference, at least two active posting lines, valid leaf accounts, currency/rate, and balanced local debits/credits. Each line has either debit or credit, not both. Description, cost-center allocations, tags, and attachments are optional/conditional. Cost-center percentages must total the required allocation.

Post/reverse/unpost behavior

  • Saving creates Draft with no ledger balance effect.
  • Posting validates balance, accounts, period, dimensions, and source lock; it marks Posted and makes lines effective in account/cost-center reports.
  • Unpost returns an eligible direct journal to Draft only when policy, source, period, and downstream references allow it.
  • Reverse creates a new linked journal with debit/credit signs exchanged; it preserves the original Posted record and marks reversal linkage so the same journal cannot be reversed twice.
  • Source-generated payment journals use dedicated reversal commands and must match source document ID/code.

Frontend page coverage

The following UI coverage is sourced from the pulled MFE route configuration. A Module-level supporting artifact mapping is evidence of a reachable screen, but requires BA confirmation that it belongs to this story rather than a more specific feature story.

Route/pageComponentModeRoute permission/guardMapping confidenceSource
(module default)JournalEntryListComponentList/navigationPermission: AppAccountingPermissions.JournalEntries_List; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:44
account-statementAccountStatementComponentList/navigationPermission: AppAccountingPermissions.AccountStatement_ReportView; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:131
addCreateJournalEntryComponentAddPermission: AppAccountingPermissions.JournalEntries_Add; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:54
add/:journalIdCreateJournalEntryComponentAddPermission: AppAccountingPermissions.ALL, AppAccountingPermissions.JournalEntries_Add; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:65
edit/:idEditJournalEntryComponentEditPermission: AppAccountingPermissions.JournalEntries_Edit; Guards: PolicyAuthGuard, preventPostedGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:86
journalentryMainJournalComponentList/navigationPermission: AppAccountingPermissions.JournalEntries_List; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:33
sequenceSequenceComponentSequenceNo route-level permission/guard found in source windowExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:189
sequenceSequenceComponentSequenceGuards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:98
trial-balanceTrialBlanceComponentList/navigationPermission: AppAccountingPermissions.TrialBalance_ReportView; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:110
view/:idViewJournalEntryComponentView/detailPermission: AppAccountingPermissions.JournalEntries_View; Guards: PolicyAuthGuardExplicit frontend feature ruleapps/accounting/src/app/remote-entry/journal-entry/journal-entry.module.ts:75

Observed frontend fields and validation

ComponentControlObserved frontend ruleComponent source
AccountStatementComponentAccountsVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentBranchesVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentcostCentersVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentdateFromVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentdateToVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentpostedVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentunpostedVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
CreateJournalEntryComponentdescriptionRequired in component validatorapps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentisHeaderDescriptionCopiedVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentjournalDateRequired in component validatorapps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentrefrenceNumberVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
EditJournalEntryComponentdescriptionRequired in component validatorapps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentisHeaderDescriptionCopiedVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentjournalDateRequired in component validatorapps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentreferenceNumberVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
JournalEntryListComponentcreated_byVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentrangeVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentsourceDocumentVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentstatusVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponenttypeVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
TrialBlanceComponentAccountsVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentallowZeroVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentBranchesVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentdateFromVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentdateToVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentlevelNumberVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentpostedVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentunpostedVisible control; optional or API-dependentapps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts

Observed frontend actions

ComponentClick action/handlerBusiness review requirementComponent source
AccountStatementComponentexportExport the currently authorized filtered result set with business columns, locale formatting, and no records outside the user scope.apps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentgetAccountingReportsDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentopenDialogOpen the item/lookup/tracking dialog with the current warehouse, item, UOM, and remaining quantity context; accepted values must return to the correct line and cancel must not mutate it.apps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentprintTableGenerate the printout for the selected record and authorized branch/tenant; use posted/current values and surface print, template, ZATCA/ETA, or popup failures without changing transaction state.apps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentrouteToDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
AccountStatementComponentrouteToViewOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/report/account-statement/account-statement.component.ts
CreateJournalEntryComponentcreateVatDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentdeleteLineAvailable only in deletable states with Delete permission; identify the record in confirmation, call delete once, remove/refresh the list row on success, and retain the row with the API reason on failure.apps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentonOpenCostPopupDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentopenAttachmentsDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
CreateJournalEntryComponentopenDialogOpen the item/lookup/tracking dialog with the current warehouse, item, UOM, and remaining quantity context; accepted values must return to the correct line and cancel must not mutate it.apps/accounting/src/app/remote-entry/journal-entry/pages/create-journal-entry/create-journal-entry.component.ts
EditJournalEntryComponentcreateVatDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentdeleteJournalEntryLineAvailable only in deletable states with Delete permission; identify the record in confirmation, call delete once, remove/refresh the list row on success, and retain the row with the API reason on failure.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentduplicateViewedEntryOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentonDiscardDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentonOpenCostPopupDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentopenAttachmentsDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentopenDialogOpen the item/lookup/tracking dialog with the current warehouse, item, UOM, and remaining quantity context; accepted values must return to the correct line and cancel must not mutate it.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentrouteToPaymentInViewOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
EditJournalEntryComponentrouteToPaymentOutViewOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/edit-journal-entry/edit-journal-entry.component.ts
JournalEntryListComponentfilterDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentonAddDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentonDeleteAvailable only in deletable states with Delete permission; identify the record in confirmation, call delete once, remove/refresh the list row on success, and retain the row with the API reason on failure.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentonEditOpen the identified editable record only with Edit permission; posted/locked records remain blocked by route or action state and list context must be recoverable on return.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentonPostAvailable only for a postable Draft and Post permission; confirm the document, prevent a second submission, call the posting API, and refresh status, journal/stock links, and row actions. Failure must keep the pre-post state.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentonUnPostAvailable only for a postable Draft and Post permission; confirm the document, prevent a second submission, call the posting API, and refresh status, journal/stock links, and row actions. Failure must keep the pre-post state.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentprintoutGenerate the printout for the selected record and authorized branch/tenant; use posted/current values and surface print, template, ZATCA/ETA, or popup failures without changing transaction state.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentrouteToSequenceDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentrouteToViewOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponenttoggleDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
JournalEntryListComponentviewJournalOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/journal-entry-list/journal-entry-list.component.ts
TrialBlanceComponentexportToCSVExport the currently authorized filtered result set with business columns, locale formatting, and no records outside the user scope.apps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentgetTrialBalanceSwitcherDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentprintTableGenerate the printout for the selected record and authorized branch/tenant; use posted/current values and surface print, template, ZATCA/ETA, or popup failures without changing transaction state.apps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
TrialBlanceComponentrouteToDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/report/trial-blance/trial-blance.component.ts
ViewJournalEntryComponentduplicateViewedEntryOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/components/view-journal-entry/view-journal-entry.component.ts
ViewJournalEntryComponentonReverseViewedJournalEntryOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/components/view-journal-entry/view-journal-entry.component.ts
ViewJournalEntryComponentopenAttachmentsDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/components/view-journal-entry/view-journal-entry.component.ts
ViewJournalEntryComponentopenCostPopupDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/components/view-journal-entry/view-journal-entry.component.ts
ViewJournalEntryComponentrouteToDocument the enabled state, permission, input context, resulting API or navigation effect, success refresh, and concrete failure behavior for this handler.apps/accounting/src/app/remote-entry/journal-entry/pages/components/view-journal-entry/view-journal-entry.component.ts
ViewJournalEntryComponentrouteToSourceViewOpen the authorized record in view mode with its status, totals, lines, source and generated-document links; handle deleted, forbidden, and missing records without exposing stale data.apps/accounting/src/app/remote-entry/journal-entry/pages/components/view-journal-entry/view-journal-entry.component.ts

Page-specific frontend acceptance criteria

  1. (module default) - List/navigation: Load an authorized paged/searchable list or navigation page; preserve filters/sort/paging and expose only permitted row and bulk actions. Security observed: Permission: AppAccountingPermissions.JournalEntries_List; Guards: PolicyAuthGuard
  2. account-statement - List/navigation: Load an authorized paged/searchable list or navigation page; preserve filters/sort/paging and expose only permitted row and bulk actions. Security observed: Permission: AppAccountingPermissions.AccountStatement_ReportView; Guards: PolicyAuthGuard
  3. add - Add: Render permitted fields, required indicators, defaults, dependent lookups, validation, Save/Cancel, loading, success, and API-error states. Security observed: Permission: AppAccountingPermissions.JournalEntries_Add; Guards: PolicyAuthGuard
  4. add/:journalId - Add: Render permitted fields, required indicators, defaults, dependent lookups, validation, Save/Cancel, loading, success, and API-error states. Security observed: Permission: AppAccountingPermissions.ALL, AppAccountingPermissions.JournalEntries_Add; Guards: PolicyAuthGuard
  5. edit/:id - Edit: Load the identified record, enforce state/permission field locks, preserve concurrency identity, validate changes, and return without losing filters. Security observed: Permission: AppAccountingPermissions.JournalEntries_Edit; Guards: PolicyAuthGuard, preventPostedGuard
  6. journalentry - List/navigation: Load an authorized paged/searchable list or navigation page; preserve filters/sort/paging and expose only permitted row and bulk actions. Security observed: Permission: AppAccountingPermissions.JournalEntries_List; Guards: PolicyAuthGuard
  7. sequence - Sequence: Show current numbering scope and permit only authorized, valid sequence configuration without retroactively renumbering posted documents. Security observed: Guards: PolicyAuthGuard
  8. trial-balance - List/navigation: Load an authorized paged/searchable list or navigation page; preserve filters/sort/paging and expose only permitted row and bulk actions. Security observed: Permission: AppAccountingPermissions.TrialBalance_ReportView; Guards: PolicyAuthGuard
  9. view/:id - View/detail: Load an authorized immutable/detail representation with status-aware actions, linked records, print/export where exposed, and not-found/forbidden handling. Security observed: Permission: AppAccountingPermissions.JournalEntries_View; Guards: PolicyAuthGuard

Internal Documentation — Microtec