From d720fb0e15ac6b6c22d7a6940bd81bcf207679e3 Mon Sep 17 00:00:00 2001 From: Alfred-Mutai Date: Mon, 15 Apr 2024 10:52:11 +0300 Subject: [PATCH 1/2] POC-721:To add Height, Weight, WHO Stage Columns in AMRS Line list --- .../daily-schedule-appointments.component.ts | 15 +++++++++++++++ .../daily-schedule-not-returned.component.ts | 15 +++++++++++++++ .../ipt-report-patient-list.component.ts | 3 +++ .../moh-731-patientlist.component.ts | 3 +++ 4 files changed, 36 insertions(+) diff --git a/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-appointments.component.ts b/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-appointments.component.ts index fd30a3aee..dd1aad580 100644 --- a/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-appointments.component.ts +++ b/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-appointments.component.ts @@ -36,6 +36,21 @@ export class DailyScheduleAppointmentsComponent implements OnInit, OnDestroy { width: 120, field: 'arv_first_regimen_start_date' }, + { + headerName: 'Weight', + width: 200, + field: 'weight' + }, + { + headerName: 'Height', + width: 200, + field: 'height' + }, + { + headerName: 'WHO Stage', + width: 200, + field: 'stage' + }, { headerName: 'Covid-19 Assessment Status', width: 250, diff --git a/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-not-returned.component.ts b/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-not-returned.component.ts index 10a69bf8a..395f31ce7 100644 --- a/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-not-returned.component.ts +++ b/src/app/clinic-schedule-lib/daily-schedule/daily-schedule-not-returned.component.ts @@ -40,6 +40,21 @@ export class DailyScheduleNotReturnedComponent implements OnInit, OnDestroy { width: 120, field: 'arv_first_regimen_start_date' }, + { + headerName: 'Weight', + width: 200, + field: 'weight' + }, + { + headerName: 'Height', + width: 200, + field: 'height' + }, + { + headerName: 'WHO Stage', + width: 200, + field: 'stage' + }, { headerName: 'Covid-19 Assessment Status', width: 250, diff --git a/src/app/hiv-care-lib/ipt-report/ipt-report-patient-list.component.ts b/src/app/hiv-care-lib/ipt-report/ipt-report-patient-list.component.ts index 17f8d855b..3b94196be 100644 --- a/src/app/hiv-care-lib/ipt-report/ipt-report-patient-list.component.ts +++ b/src/app/hiv-care-lib/ipt-report/ipt-report-patient-list.component.ts @@ -38,6 +38,9 @@ export class IptReportPatientListComponent implements OnInit { public addExtraColumns() { const extraColumns = { + weight: 'Weight', + height: 'Height', + stage: 'WHO Stage', phone_number: 'Phone Number', enrollment_date: 'Date Enrolled', last_appointment: 'Latest Appointment', diff --git a/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts b/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts index 68f88ce7c..cdc1c5497 100644 --- a/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts +++ b/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts @@ -240,6 +240,9 @@ export class Moh731PatientListComponent implements OnInit, OnChanges { public addExtraColumns(indicators: Array) { const extraColumns = { + height: 'Height', + weight: 'Weight', + stage: 'WHO Stage', location: 'Location', enrollment_date: 'Enrollment Date', arv_first_regimen_start_date: 'ARVs Initial Start Date', From 84f912097b5bc9302acc0beaf6ce04837eae2a69 Mon Sep 17 00:00:00 2001 From: Alfred-Mutai Date: Tue, 16 Apr 2024 09:51:16 +0300 Subject: [PATCH 2/2] POC-721: Updated MOH linelist --- .../moh-731-report/moh-731-patientlist.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts b/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts index cdc1c5497..6d0eca38c 100644 --- a/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts +++ b/src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts @@ -240,8 +240,8 @@ export class Moh731PatientListComponent implements OnInit, OnChanges { public addExtraColumns(indicators: Array) { const extraColumns = { - height: 'Height', weight: 'Weight', + height: 'Height', stage: 'WHO Stage', location: 'Location', enrollment_date: 'Enrollment Date',