The Inter-Fund Transfer page creates a general ledger journal entry that moves a specified amount from one fund to another. 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/inter-fund-transfer.
Overview
The page rendersInterFundTransferForm with the current organization context. On submission:
- A
fa_journal_entriesrecord is inserted withsource_type: "INTER_FUND_TRANSFER"andstatus: "draft". - Two balanced
fa_journal_entry_linesare inserted using the sameaccount_id: a debit on the destination fund and a credit on the source fund. - On success, navigation goes to
/fa/journal-entries/:idfor the created entry. A “View created entry” link and “Create another” option appear below the form after submission.
fa.inter-fund-transfer.create
Primary mutation: Direct Supabase inserts to fa_journal_entries and fa_journal_entry_lines
Who it’s for
Permission required:fa.inter-fund-transfer.create
Before you start
- Identify the source fund, destination fund, shared GL account, transfer amount, description, and transaction date.
- Ensure both funds exist and are active.
Steps
- Navigate to
/fa/inter-fund-transfer. - Complete the
InterFundTransferFormfields (transaction date, description, account, from fund, to fund, amount). - Submit the form.
- On success, a toast confirms “Inter-fund transfer recorded” and you are redirected to the new journal entry detail page.
- The entry is created as a draft — navigate to the journal entry to review and post it.
Key concepts
- Source Fund (credit): The fund being reduced by the transfer.
- Destination Fund (debit): The fund receiving the transferred amount.
- Draft status: The created entry has
status: "draft"and must be posted separately via the journal entry detail page.
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/InterFundTransferPage.tsx
- src/cores/fa/components/InterFundTransferForm.tsx