From c8b9ef8d65ec0374c9f1e340e59ad1e826935bfb Mon Sep 17 00:00:00 2001 From: Rocio De Santiago Date: Wed, 11 Dec 2024 11:18:06 -0600 Subject: [PATCH 1/5] add LTSS-5 content --- services/ui-src/src/cmit.ts | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/services/ui-src/src/cmit.ts b/services/ui-src/src/cmit.ts index 43d66fef..2157d411 100644 --- a/services/ui-src/src/cmit.ts +++ b/services/ui-src/src/cmit.ts @@ -15,7 +15,7 @@ export const CMIT_LIST: CMIT[] = [ options: "", }, { - cmit: 963, + cmit: 1255, name: "LTSS-3: Shared Person-Centered Plan with Primary Care Provider", uid: "963", measureSteward: "CMS", @@ -27,4 +27,30 @@ export const CMIT_LIST: CMIT[] = [ dataSource: DataSource.Hybrid, options: "", }, + { + cmit: 962, + name: "LTSS-4: Reassessment and Person-Centered Plan Update after Inpatient Discharge", + uid: "962", + measureSteward: "CMS", + measureSpecification: [ + MeasureSpecification.CMS, + MeasureSpecification.HEDIS, + ], + deliverySystem: [DeliverySystem.FFS, DeliverySystem.MLTSS], + dataSource: DataSource.Hybrid, + options: "", + }, + { + cmit: 962, + name: "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", + uid: "962", + measureSteward: "CMS", + measureSpecification: [ + MeasureSpecification.CMS, + MeasureSpecification.HEDIS, + ], + deliverySystem: [], + dataSource: DataSource.Hybrid, + options: "", + }, ]; From 7e199af4a42701a46d30603d4dec02f62d99addc Mon Sep 17 00:00:00 2001 From: Rocio De Santiago Date: Wed, 11 Dec 2024 11:21:48 -0600 Subject: [PATCH 2/5] add api files for ltss-5 --- services/app-api/forms/cmit.ts | 13 ++++++++ services/app-api/forms/qm.ts | 58 +++++++++++++++++++++++++++++++++- 2 files changed, 70 insertions(+), 1 deletion(-) diff --git a/services/app-api/forms/cmit.ts b/services/app-api/forms/cmit.ts index fd64de51..25c680d0 100644 --- a/services/app-api/forms/cmit.ts +++ b/services/app-api/forms/cmit.ts @@ -32,4 +32,17 @@ export const CMIT_LIST: CMIT[] = [ dataSource: DataSource.Hybrid, options: "", }, + { + cmit: 1255, + name: "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", + uid: "1255", + measureSteward: "CMS", + measureSpecification: [ + MeasureSpecification.CMS, + MeasureSpecification.HEDIS, + ], + deliverySystem: [], + dataSource: DataSource.Hybrid, + options: "", + }, ]; diff --git a/services/app-api/forms/qm.ts b/services/app-api/forms/qm.ts index 233f8370..4f089695 100644 --- a/services/app-api/forms/qm.ts +++ b/services/app-api/forms/qm.ts @@ -473,7 +473,63 @@ export const qmReportTemplate: ReportTemplate = { "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", 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: + "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.", + }, + ], + }, + ], + }, + ], }, } as Record, }; From 8eca86acb37954e1818f658b14c5c7d5011c4bdd Mon Sep 17 00:00:00 2001 From: Rocio De Santiago Date: Wed, 11 Dec 2024 13:27:00 -0600 Subject: [PATCH 3/5] assign MLTSS and CMS to LTSS-5 --- services/app-api/forms/cmit.ts | 7 ++----- services/ui-src/src/cmit.ts | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/services/app-api/forms/cmit.ts b/services/app-api/forms/cmit.ts index b54927da..8e901cfa 100644 --- a/services/app-api/forms/cmit.ts +++ b/services/app-api/forms/cmit.ts @@ -63,11 +63,8 @@ export const CMIT_LIST: CMIT[] = [ name: "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", uid: "1255", measureSteward: "CMS", - measureSpecification: [ - MeasureSpecification.CMS, - MeasureSpecification.HEDIS, - ], - deliverySystem: [], + measureSpecification: [MeasureSpecification.CMS], + deliverySystem: [DeliverySystem.MLTSS], dataSource: DataSource.Hybrid, options: "", }, diff --git a/services/ui-src/src/cmit.ts b/services/ui-src/src/cmit.ts index 2ba92aba..f53512c5 100644 --- a/services/ui-src/src/cmit.ts +++ b/services/ui-src/src/cmit.ts @@ -59,11 +59,8 @@ export const CMIT_LIST: CMIT[] = [ name: "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", uid: "962", measureSteward: "CMS", - measureSpecification: [ - MeasureSpecification.CMS, - MeasureSpecification.HEDIS, - ], - deliverySystem: [], + measureSpecification: [MeasureSpecification.CMS], + deliverySystem: [DeliverySystem.MLTSS], dataSource: DataSource.Hybrid, options: "", }, From 732f37d78f4f177dc3e8611080333d53692f5e96 Mon Sep 17 00:00:00 2001 From: Rocio De Santiago Date: Thu, 12 Dec 2024 14:20:35 -0500 Subject: [PATCH 4/5] fix cmit for ltss-5 --- services/ui-src/src/cmit.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/ui-src/src/cmit.ts b/services/ui-src/src/cmit.ts index 88b493af..cce6a499 100644 --- a/services/ui-src/src/cmit.ts +++ b/services/ui-src/src/cmit.ts @@ -55,9 +55,9 @@ export const CMIT_LIST: CMIT[] = [ options: "", }, { - cmit: 962, + cmit: 1255, name: "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", - uid: "962", + uid: "1255", measureSteward: "CMS", measureSpecification: [MeasureSpecification.CMS], deliverySystem: [DeliverySystem.MLTSS], From 96f233ae93e421b8c8d3a1f1d43ff2e88f358f8b Mon Sep 17 00:00:00 2001 From: Rocio De Santiago Date: Thu, 12 Dec 2024 14:25:28 -0500 Subject: [PATCH 5/5] fix cmit typo for ltss-3 --- services/ui-src/src/cmit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/ui-src/src/cmit.ts b/services/ui-src/src/cmit.ts index cce6a499..0781dea8 100644 --- a/services/ui-src/src/cmit.ts +++ b/services/ui-src/src/cmit.ts @@ -29,7 +29,7 @@ export const CMIT_LIST: CMIT[] = [ options: "", }, { - cmit: 1255, + cmit: 963, name: "LTSS-3: Shared Person-Centered Plan with Primary Care Provider", uid: "963", measureSteward: "CMS",