Skip to main content

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.

The Vendors route (/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
  1. Navigate to /fa/vendors (auto-redirects) or /fa/payables?tab=vendors.
  2. Browse the vendors table.
Create a vendor
  1. Click New Vendor (or use the keyboard shortcut).
  2. Complete the VendorDialog and save.
Edit a vendor
  1. Locate the vendor and click its edit action.
  2. Update fields in the dialog.
Delete a vendor
  1. Use the delete action and confirm the alert dialog.
View vendor details
  1. Click a vendor row to navigate to /fa/vendors/:id.

Key concepts

  • Vendor number: Auto-generated via useGenerateVendorNumber.

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.
  • 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