Skip to main content
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

Access follows your organization’s role and module configuration. ## 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

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