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

# Corrective Actions

> Cross-audit list of all corrective actions with status tracking, overdue detection, search, and status filter.

This screen tracks all corrective actions arising from audit findings at route `/gr/audits/corrective-actions`.

## Overview

The Corrective Actions page loads all corrective actions via `useCorrectiveActionList` with an optional status filter. Five stat cards show: Total, Open, In Progress, Completed (includes `verified`), and Overdue. Users can search by `action_description` or `notes`, and filter by status using a dropdown. Each action card displays its description, status badge (open: destructive, in\_progress: secondary, completed/verified: default), due date, and overdue indication. Overdue is computed as `due_date < today` for non-completed/non-verified actions.

## Who it's for

Access follows your organization's role and module configuration. Any authenticated user with access to the GR module can view corrective actions.

## Before you start

* Audit findings with corrective actions must exist.

## Steps

<Steps>
  <Step title="Open Corrective Actions">Navigate to `/gr/audits/corrective-actions`.</Step>
  <Step title="Review overdue count">Check the Overdue stat card to identify actions past their due date.</Step>
  <Step title="Filter by status">Use the Status dropdown to focus on Open, In Progress, or Completed actions.</Step>
  <Step title="Search for specific actions">Use the search box to find actions by description or notes.</Step>
  <Step title="Update action status">Navigate to the associated audit finding to update the corrective action status.</Step>
</Steps>

## Key concepts

* **Open** — corrective action status `open`; requires attention.
* **In Progress** — status `in_progress`; corrective action is underway.
* **Completed/Verified** — status `completed` or `verified`; action is resolved.
* **Overdue** — `due_date` is before today and status is not `completed` or `verified`.

## Related

<Columns cols={2}>
  <Card title="Governance & Compliance" icon="scale-balanced" href="/gr/overview">
    Governance & Compliance core overview.
  </Card>

  <Card title="Governance & parity" icon="clipboard-check" 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/gr.tsx
  * src/cores/gr/pages/CorrectiveActionList.tsx
  * src/cores/gr/hooks/useAuditCorrectiveAction.ts
</Accordion>
