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..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,6 +240,9 @@ export class Moh731PatientListComponent implements OnInit, OnChanges { public addExtraColumns(indicators: Array) { const extraColumns = { + weight: 'Weight', + height: 'Height', + stage: 'WHO Stage', location: 'Location', enrollment_date: 'Enrollment Date', arv_first_regimen_start_date: 'ARVs Initial Start Date',