Skip to content

Commit

Permalink
LTSS-5 Measure Overview Page (#78)
Browse files Browse the repository at this point in the history
Co-authored-by: Rocio De Santiago <[email protected]>
  • Loading branch information
rocio-desantiago and Rocio De Santiago authored Dec 12, 2024
1 parent f5510fe commit 8042b55
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 1 deletion.
10 changes: 10 additions & 0 deletions services/app-api/forms/cmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ 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],
deliverySystem: [DeliverySystem.MLTSS],
dataSource: DataSource.Hybrid,
options: "",
},
{
cmit: 20,
name: "LTSS-6: Admission to a Facility from the Community",
Expand Down
58 changes: 57 additions & 1 deletion services/app-api/forms/qm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,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<MeasureTemplateName, MeasurePageTemplate>,
};
10 changes: 10 additions & 0 deletions services/ui-src/src/cmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ 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],
deliverySystem: [DeliverySystem.MLTSS],
dataSource: DataSource.Hybrid,
options: "",
},
{
cmit: 20,
name: "LTSS-6: Admission to a Facility from the Community",
Expand Down

0 comments on commit 8042b55

Please sign in to comment.