/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.
Note: The route /fm/work-orders/new redirects to /fm/work-orders?action=new and is not a standalone screen.
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.
Finding a work order
- Navigate to
/fm/work-ordersvia the FM sidebar or the Open Work Orders stat card on the dashboard. - Use the search bar and the Status, Priority, and Category dropdowns to narrow the list.
- Click any row in the work order table to navigate to its detail page at
/fm/work-orders/:id. - Click New Work Order in the header. The creation dialog opens; fill in required fields and submit.
- Click the Help button to start the guided tour for work orders.
- 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.
Creating a work order
Work orders are created viaWorkOrderFormDialog. The route /fm/work-orders/new redirects to /fm/work-orders?action=new, which automatically opens the creation dialog. Requires fm.work-orders.create.
- Navigate to
/fm/work-orders/new(redirected) or click New Work Order from the work orders list. - The work order creation dialog opens; fill in required fields and submit.
Viewing a work order
The Work Order Detail page (/fm/work-orders/:id) loads a work order by ID using useWorkOrderDetail. It displays the work order number, title, status badge, and priority badge in the header. The main grid shows a Details card (description, type, category, site, location), and sidebar cards for Assignment (requester, assignee, assigned date), Timeline (created, due date, completed), and Costs (estimated hours, actual hours, estimated cost, actual material cost). Below the grid are cards for Materials, Attachments, and History. Context-sensitive action buttons appear based on the current status: Assign (draft/submitted), Start Work (assigned), Put On Hold (in_progress), Complete (in_progress), and Cancel (all non-terminal states).
Requires fm.dashboard.view. Actions like Assign and Complete may require fm.work-orders.edit or fm.work-orders.approve — confirm with SME.
Before you start: the work order must exist and not have been deleted. Hold the appropriate permissions for the action you intend to take.
- From the Work Orders list, click any row to navigate to
/fm/work-orders/:id. - Examine the Details, Assignment, Timeline, and Costs cards.
- If the work order is in
draftorsubmittedstatus, click Assign to open the assign dialog and select an assignee. - When status is
assigned, click Start Work to move it toin_progress. - From
in_progress, click Complete to open the completion dialog, or Put On Hold to pause. - Click Cancel on any non-terminal work order; a confirmation dialog is required.
- Scroll down to view associated materials, file attachments, and the audit history of actions taken on this work order.
- Work order number — displayed as the primary identifier (e.g.,
WO-0001). - Status flow —
draft→submitted→assigned→in_progress→completed/on_hold/cancelled. - History entries — each status change records
action, optionalnotes,performed_by_profile, andperformed_at.
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
- src/cores/fm/pages/WorkOrderDetailPage.tsx