Skip to content

Commit

Permalink
LTSS-3 Measure Overview Page (#73)
Browse files Browse the repository at this point in the history
Co-authored-by: Rocio De Santiago <rociodesantiago@CoformaSantiago.lan>
  • Loading branch information
rocio-desantiago and Rocio De Santiago authored Dec 11, 2024
1 parent 8474e3b commit 896b469
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 1 deletion.
13 changes: 13 additions & 0 deletions services/app-api/forms/cmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: "",
},
];
84 changes: 83 additions & 1 deletion services/app-api/forms/qm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
13 changes: 13 additions & 0 deletions services/ui-src/src/cmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: "",
},
];

0 comments on commit 896b469

Please sign in to comment.