The Vendors route (Documentation 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/vendors) redirects to the Payables Hub (/fa/payables?tab=vendors). The vendors list is managed from within that hub.
Overview
Navigating to/fa/vendors redirects to /fa/payables?tab=vendors via a <Navigate> redirect in src/routes/fa.tsx.
The VendorsPage component is rendered within the Payables Hub tab. It provides a full vendor list with search, create (VendorDialog), edit, and delete capabilities. Keyboard shortcuts are registered via useFAKeyboardShortcuts.
Vendor records are backed by fa_vendors via hooks useVendorList, useCreateVendor, useUpdateVendor, useDeleteVendor, and useGenerateVendorNumber.
Individual vendor detail is accessible at /fa/vendors/:id.
Who it’s for
No explicit permission gate on the/fa/vendors redirect route.
Before you start
- An organization must be selected.
Steps
Access vendor management- Navigate to
/fa/vendors(auto-redirects) or/fa/payables?tab=vendors. - Browse the vendors table.
- Click New Vendor (or use the keyboard shortcut).
- Complete the
VendorDialogand save.
- Locate the vendor and click its edit action.
- Update fields in the dialog.
- Use the delete action and confirm the alert dialog.
- Click a vendor row to navigate to
/fa/vendors/:id.
Key concepts
- Vendor number: Auto-generated via
useGenerateVendorNumber.
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/VendorsPage.tsx
- src/cores/fa/hooks/useVendors.ts
- src/cores/fa/components/VendorsTable.tsx
- src/cores/fa/components/VendorDialog.tsx