From 896b469f55998b2f34b51f161e79ce5264f2087a Mon Sep 17 00:00:00 2001 From: rocio-desantiago Date: Wed, 11 Dec 2024 00:04:21 -0600 Subject: [PATCH] LTSS-3 Measure Overview Page (#73) Co-authored-by: Rocio De Santiago --- services/app-api/forms/cmit.ts | 13 ++++++ services/app-api/forms/qm.ts | 84 +++++++++++++++++++++++++++++++++- services/ui-src/src/cmit.ts | 13 ++++++ 3 files changed, 109 insertions(+), 1 deletion(-) diff --git a/services/app-api/forms/cmit.ts b/services/app-api/forms/cmit.ts index dfa585c4..fd64de51 100644 --- a/services/app-api/forms/cmit.ts +++ b/services/app-api/forms/cmit.ts @@ -19,4 +19,17 @@ export const CMIT_LIST: CMIT[] = [ dataSource: DataSource.Hybrid, options: "", }, + { + cmit: 963, + name: "LTSS-3: Shared Person-Centered Plan with Primary Care Provider", + uid: "963", + measureSteward: "CMS", + measureSpecification: [ + MeasureSpecification.CMS, + MeasureSpecification.HEDIS, + ], + deliverySystem: [DeliverySystem.FFS, DeliverySystem.MLTSS], + dataSource: DataSource.Hybrid, + options: "", + }, ]; diff --git a/services/app-api/forms/qm.ts b/services/app-api/forms/qm.ts index f6d7b594..233f8370 100644 --- a/services/app-api/forms/qm.ts +++ b/services/app-api/forms/qm.ts @@ -375,7 +375,89 @@ export const qmReportTemplate: ReportTemplate = { title: "LTSS-3: Shared Person-Centered Plan with Primary Care Provider", type: PageType.Measure, sidebar: false, - elements: [], + elements: [ + { + type: ElementType.ButtonLink, + label: "Return to Optional Measures Dashboard", + to: "optional-measure-result", + }, + { + type: ElementType.Header, + text: "{measureName}", + }, + { + type: ElementType.Accordion, + label: "Instructions", + value: + "[Optional instructional content that could support the user in completing this page]", + }, + { + type: ElementType.SubHeader, + text: "Measure Details", + }, + { + type: ElementType.Radio, + label: "Were the reported measure results audited or validated?", + value: [ + { label: "No, I am reporting on this measure", value: "no" }, + { + label: "Yes, CMS is reporting on my behalf", + value: "yes", + checkedChildren: [ + { + type: ElementType.Textbox, + label: + "What is the name of the agency of entity that audited or validated the report?", + }, + ], + }, + ], + }, + { + type: ElementType.Radio, + label: + "What Technical Specifications are you using to report this measure?", + value: [ + { label: "CMS", value: "cms" }, + { label: "HEDIS", value: "hedis" }, + ], + }, + { + type: ElementType.Radio, + label: + "Did you deviate from the [reportYear] Technical Specifications?", + value: [ + { label: "No", value: "no" }, + { + label: "Yes", + value: "yes", + checkedChildren: [ + { + type: ElementType.Textbox, + label: "Please explain the deviation.", + }, + ], + }, + ], + }, + { + type: ElementType.Radio, + label: "Which delivery systems were used to report the LTSS measure?", + value: [ + { label: "Managed Care", value: "managed-care" }, + { label: "Free-For-Service", value: "fee-for-service" }, + { label: "Both", value: "both" }, + ], + }, + { + type: ElementType.SubHeader, + text: "Quality Measures", + }, + { + type: ElementType.QualityMeasureTable, + measureDisplay: "quality", + }, + ], }, [MeasureTemplateName["LTSS-4"]]: { id: "LTSS-4", diff --git a/services/ui-src/src/cmit.ts b/services/ui-src/src/cmit.ts index b4b19c77..43d66fef 100644 --- a/services/ui-src/src/cmit.ts +++ b/services/ui-src/src/cmit.ts @@ -14,4 +14,17 @@ export const CMIT_LIST: CMIT[] = [ dataSource: DataSource.Hybrid, options: "", }, + { + cmit: 963, + name: "LTSS-3: Shared Person-Centered Plan with Primary Care Provider", + uid: "963", + measureSteward: "CMS", + measureSpecification: [ + MeasureSpecification.CMS, + MeasureSpecification.HEDIS, + ], + deliverySystem: [DeliverySystem.FFS, DeliverySystem.MLTSS], + dataSource: DataSource.Hybrid, + options: "", + }, ];