> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.kodelabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Work Order Management

> Learn how to manage and track generic work orders

The **Work Orders** section displays all existing work orders you have created and serves as a central hub for managing and editing work order details.

## Work Order Pages

Each work order has a dedicated page for separate management that provides access to three additional tabs: **Details**, **Attachments**, and **Follow-Ups**

### Details

This tab provides a comprehensive overview of the selected work order, including key information, associated tasks, and log time entries.

Use the **Details** tab to:

* View and manage general work order information
* View and manage work order tasks
* View and manage work order log time entries

```mermaid actions={false} theme={null}
---
config:
  theme: neutral
---
flowchart LR
 subgraph s1["Work Orders"]
        B1["Work Order 1"]
        B2["Work Order 2"]
        B3["Work Order 3"]
  end
 subgraph s2["Work Order Page Tabs"]
        D1["Details"]
        D2["Attachments"]
        D3["Follow-Ups"]
  end
 subgraph s3["Details"]
        P1["General Information"]
        P3["Tasks"]
        P2["Logged Time"]
  end
    B2 -- <br> --- D2 & D3
    D1 -- View & Manage --- P1 & P2 & P3
    B2 -- access --- D["Dedicated Page"]
    D --- D1

    linkStyle 0 stroke:none,fill:none
    linkStyle 1 stroke:none,fill:none
    linkStyle 2 stroke:#FF6D00,fill:none
    linkStyle 3 stroke:#FF6D00,fill:none
    linkStyle 4 stroke:#FF6D00,fill:none
    linkStyle 5 stroke:#00C853
    linkStyle 6 stroke:#00C853,fill:none
```

### Attachments

This tab provides a comprehensive overview of all attachments added to the work order during creation.

Use the **Attachments** tab to:

* View and manage existing attachments
* Add new attachments

```mermaid actions={false} theme={null}
---
config:
  theme: neutral
---
flowchart LR
 subgraph s1["Clients Table"]
        B1["Work Order 1"]
        B2["Work Order 2"]
        B3["Work Order 3"]
  end
 subgraph s2["Work Order Page Tabs"]
        D1["Details"]
        D2["Attachments"]
        D3["Follow-Ups"]
  end
 subgraph s3["Attachments"]
        N2["Attachment 1"]
        N3["Attachment 2"]
        N4["Attachment 3"]
  end
    B2 -- <br> --- D1 & D3
    D2 -- view & manage --- N2 & N3 & N4
    B2 -- access --- D["Dedicated Page"]
    D --- D2

    linkStyle 0 stroke:none,fill:none
    linkStyle 1 stroke:none,fill:none
    linkStyle 2 stroke:#FF6D00,fill:none
    linkStyle 3 stroke:#FF6D00,fill:none
    linkStyle 4 stroke:#FF6D00
```

### Follow-Ups

This tab provides a comprehensive overview of all follow-up work orders.

Use the **Attachments** tab to:

* View and manage existing follow-up work orders
* Create new follow-up work orders

<Note>
  Follow-up work orders serve as a continuation of the selected work order. If the original work order was created for a specific asset or area, any follow-up work orders will be associated with the same asset or area.
</Note>

```mermaid actions={false} theme={null}
---
config:
  theme: neutral
---
flowchart LR
 subgraph s1["Clients Table"]
        B1["Work Order 1"]
        B2["Work Order 2"]
        B3["Work Order 3"]
  end
 subgraph s2["Work Order Page Tabs"]
        D1["Details"]
        D2["Attachments"]
        D3["Follow-Ups"]
  end
 subgraph s3["Follow-Ups"]
        N2["Follow-Up WO 1"]
        N3["Follow-Up WO 2"]
        N4["Follow-Up WO 3"]
  end
    B2 -- <br> --- D1
    D3 -- view & manage --- N2 & N3 & N4
    B2 -- access --- D["Dedicated Page"]
    D --- D3

    linkStyle 0 stroke:none,fill:none
    linkStyle 1 stroke:#FF6D00,fill:none
    linkStyle 2 stroke:#FF6D00,fill:none
    linkStyle 3 stroke:#FF6D00,fill:none
    linkStyle 4 stroke:#00C853,fill:none
    linkStyle 5 stroke:#00C853,fill:none
```
