/fa/funds.
Overview
The Funds page displays a table of all funds for the current organization. A “New Fund” button opens a dialog to create a fund inline. Existing funds can be edited via the same dialog by clicking the row’s edit action. Primary hook:useFunds(organizationId)
State management: FundDialog (create/edit), FundsTable (display)
Who it’s for
Access follows your organization’s role and module configuration.Before you start
- Ensure you are logged in and have an organization context active.
- Confirm that the funds you want to create or edit do not already exist.
- Identify the fund number and name before opening the dialog.
Steps
View funds- Navigate to
/fa/funds. - The Funds table loads all funds for your organization automatically.
- Click New Fund (top right).
- The Fund dialog opens. Complete the required fields.
- Submit the dialog to save the fund.
- Locate the fund in the table.
- Click the edit action on the row.
- Update fields in the Fund dialog and save.
Key concepts
- Fund: A distinct accounting entity used to segregate resources by source, purpose, or restriction. The
fund_numberandnamefields are displayed in the table.
Creating a fund
New fund creation in the Finance & Revenue core is handled through an inline dialog on the Funds page. The/fa/funds page includes a New Fund button that opens FundDialog with fundId={undefined} (create mode). The FundsTable displays fund_number and name as the primary identifiers.
- Navigate to
/fa/funds. - Click New Fund (top right).
- Complete the
FundDialogform fields. - Save to create the fund. It appears in the Funds table.
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/FundsPage.tsx
- src/cores/fa/hooks/useFunds.ts
- src/cores/fa/components/FundsTable.tsx
- src/cores/fa/components/FundDialog.tsx