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

# Facilities Dashboard

> Facilities Management overview showing open work orders, total assets, low stock items, and active vendors at /fm/dashboard.

This is the Facilities Management overview screen, available at `/fm/dashboard`. It renders stat cards, a quick-actions section, and dashboard widgets for work orders, inventory, and vendors.

## Overview

The dashboard is the landing screen for the Facilities Management core. It displays four stat cards: **Open Work Orders**, **Total Assets**, **Low Stock Items**, and **Active Vendors**. Each card is clickable and navigates to the corresponding list screen. An **Operations Overview** section below the cards contains three lazily loaded widgets: Work Order, Inventory, and Vendor summaries. A configurable Quick Actions section is also rendered for the `fm` module.

## Who it's for

Requires permission `fm.dashboard.view` (enforced by the `FMViewGuard` wrapping all FM routes).

## Before you start

* You must hold the `fm.dashboard.view` permission.
* The dashboard uses the current organization context; ensure an organization is selected.

## Steps

<Steps>
  <Step title="Navigate to Facilities Management">Open the FM module; the app redirects `/fm` to `/fm/dashboard` automatically.</Step>
  <Step title="Review stat cards">Check the four stat cards for a quick operational snapshot. A warning variant is applied to Low Stock Items when the count is above zero.</Step>
  <Step title="Use quick actions">Use the Quick Actions section to reach common FM workflows without extra navigation.</Step>
  <Step title="Drill into a widget">Click any stat card or use the Operations Overview widgets to navigate to work orders, inventory, or vendor lists.</Step>
  <Step title="Create a work order">Click the **New Work Order** button in the page header to open the work order creation dialog.</Step>
</Steps>

## Key concepts

* **Open Work Orders** — count of work orders with a status other than completed, closed, or cancelled.
* **Low Stock Items** — inventory items whose current quantity is at or below the reorder point.
* **Quick Actions** — configurable shortcuts scoped to `moduleId="fm"`, editable per organization.

## Related

<Columns cols={2}>
  <Card title="Facilities & Inventory" icon="warehouse" href="/fm/overview">
    Facilities & Inventory core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index">
    Documentation coverage and governance.
  </Card>
</Columns>

<Note>
  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.
</Note>

<Accordion title="Documentation sources">
  * src/routes/fm.tsx
  * src/cores/fm/pages/FMOverview\.tsx
  * src/cores/fm/pages/FMDashboard.tsx
</Accordion>
