Skip to main content

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.

The QI Reports page provides tabbed export functionality for Quality Improvement data. It is located at route /gr/quality-improvement/reports.

Overview

The page is rendered by QIReports and uses useCurrentUser to scope queries. Four report types are available via tabs: Projects, PDSA Cycles, Metrics, and Improvements. Each tab fetches the corresponding dataset from Supabase (tables: gr_qi_projects, PDSA cycles, metrics, improvements) and offers an export action. The export format selector supports pdf and potentially other formats via the ExportFormat type. An inline trend analysis panel (QITrendAnalysisPanel) is also rendered. No permission gate is declared on this route in gr.tsx.

Who it’s for

No explicit permission gate on this route.

Before you start

  • QI projects, PDSA cycles, metrics, or improvement records must exist to export meaningful data.
  • The user session must be active (useCurrentUser).

Steps

  1. Go to Governance & Compliance → Quality Improvement → Reports at /gr/quality-improvement/reports.
  2. Select the report type tab: Projects, PDSA, Metrics, or Improvements.
  3. Choose an export format from the selector.
  4. Select the Download or export action for the chosen report type.
  5. Review the trend analysis panel for a visual summary.

Key concepts

ConceptDescription
Report typesProjects, PDSA Cycles, Metrics, Improvements — each fetches a distinct dataset
ExportFormatExport format options (e.g., pdf); full list determined by qiReportExport utility
Trend analysis panelVisual trend chart embedded alongside export options

Governance & Compliance

Governance & Compliance core overview.

Governance & parity

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.
  • src/routes/gr.tsx
  • src/cores/gr/pages/QIReports.tsx
  • src/cores/gr/utils/qiReportExport.ts
  • src/platform/auth/useCurrentUser.ts