This screen displays a searchable, filterable list of work orders and is available atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/fm/work-orders.
Overview
The Work Orders page renders a tabular list of work orders fetched viauseWorkOrderList. Users can search by text and filter by Status, Priority, and Category using dropdown selects. Filter options are loaded from the usePicklistByEnum hook with enum fallback labels (WORK_ORDER_STATUS_LABELS, WORK_ORDER_PRIORITY_LABELS, WORK_ORDER_CATEGORY_LABELS). A New Work Order button opens WorkOrderFormDialog. Navigating to /fm/work-orders?action=new automatically opens the creation dialog on load.
Who it’s for
Requires permissionfm.dashboard.view (enforced by the parent FMViewGuard). Creating a new work order additionally requires fm.work-orders.create (enforced within the form dialog).
Before you start
- Hold the
fm.dashboard.viewpermission. - To create work orders, hold
fm.work-orders.create.
Steps
Open Work Orders
Navigate to
/fm/work-orders via the FM sidebar or the Open Work Orders stat card on the dashboard.Search and filter
Use the search bar and the Status, Priority, and Category dropdowns to narrow the list.
Open a work order
Click any row in the work order table to navigate to its detail page at
/fm/work-orders/:id.Create a new work order
Click New Work Order in the header. The creation dialog opens; fill in required fields and submit.
Key concepts
- Work order status — values include
draft,submitted,assigned,in_progress,on_hold,completed,closed,cancelled(fromWORK_ORDER_STATUS_LABELS). - Priority — values from
WORK_ORDER_PRIORITY_LABELS. - Category — values from
WORK_ORDER_CATEGORY_LABELS.
Related
Facilities & Inventory
Facilities & Inventory 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/fm.tsx
- src/cores/fm/pages/WorkOrdersPage.tsx