View a vendor bill’s header, line items, approval actions, and GL posting status at the in-app 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/bills/:id.
Overview
This screen displays the details of a single vendor bill identified by the:id URL parameter. The header shows the bill status badge (draft, pending_approval, approved, paid, cancelled) and an edit button navigating to the edit route. A BillApprovalActions component provides approval/rejection controls. A GLPostingIndicator shows the GL posting state for the bill. Bill line items are displayed in a data table with columns for line number, PO line reference, account, fund, department, description, quantity billed, unit price, and amount. The breadcrumb is set to the bill’s identifying fields.
Who it’s for
No explicit permission gate on this route. The route is registered without aRequirePermission wrapper in fa.tsx.
Before you start
- The bill must already exist (created at
/fa/bills/new). - An organization must be selected.
Steps
Navigate to the bill
Open the Payables Hub at
/fa/payables?tab=bills and click a bill, or navigate to /fa/bills/:id directly.Review approval actions
Use
BillApprovalActions to approve or reject the bill if in pending_approval status.Check GL posting status
The
GLPostingIndicator shows whether the bill has been posted to the general ledger.Key concepts
statusvalues:draft,pending_approval,approved,paid,cancelledBillApprovalActions— approval/rejection controls componentGLPostingIndicator— shows GL posting statebalance_due— remaining unpaid amount on the bill
Related
Finance & Revenue
Finance & Revenue core overview.
Governance & parity
Documentation coverage and governance.
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/BillDetailPage.tsx
- src/cores/fa/hooks/useVendorBills.ts
- src/cores/fa/hooks/useBillLines.ts