Skip to content

Commit 9a3ac83

Browse files
POC-1052: (chore) - add delivery models (#1848)
* POC-1052: (chore) - add delivery models * chore: move model columns close to WHO Stage --------- Co-authored-by: Alfred Mutai <[email protected]>
1 parent 58ba99b commit 9a3ac83

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed

src/app/clinic-schedule-lib/daily-schedule/daily-schedule-appointments.component.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,21 @@ export class DailyScheduleAppointmentsComponent implements OnInit, OnDestroy {
6161
width: 200,
6262
field: 'stage'
6363
},
64+
{
65+
headerName: 'Patient Categorization',
66+
width: 150,
67+
field: 'patient_categorization'
68+
},
69+
{
70+
headerName: 'Service Model',
71+
width: 150,
72+
field: 'service_delivery_model'
73+
},
74+
{
75+
headerName: 'DSD Model',
76+
width: 150,
77+
field: 'dsd_model'
78+
},
6479
{
6580
headerName: 'Covid-19 Assessment Status',
6681
width: 250,

src/app/clinic-schedule-lib/daily-schedule/daily-schedule-not-returned.component.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,21 @@ export class DailyScheduleNotReturnedComponent implements OnInit, OnDestroy {
6565
width: 200,
6666
field: 'stage'
6767
},
68+
{
69+
headerName: 'Patient Categorization',
70+
width: 150,
71+
field: 'patient_categorization'
72+
},
73+
{
74+
headerName: 'Service Model',
75+
width: 150,
76+
field: 'service_delivery_model'
77+
},
78+
{
79+
headerName: 'DSD Model',
80+
width: 150,
81+
field: 'dsd_model'
82+
},
6883
{
6984
headerName: 'Covid-19 Assessment Status',
7085
width: 250,

src/app/clinic-schedule-lib/daily-schedule/daily-schedule-visits.component.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,21 @@ export class DailyScheduleVisitsComponent implements OnInit, OnDestroy {
2828
width: 200,
2929
field: 'program'
3030
},
31+
{
32+
headerName: 'Patient Categorization',
33+
width: 150,
34+
field: 'patient_categorization'
35+
},
36+
{
37+
headerName: 'Service Model',
38+
width: 150,
39+
field: 'service_delivery_model'
40+
},
41+
{
42+
headerName: 'DSD Model',
43+
width: 150,
44+
field: 'dsd_model'
45+
},
3146
{
3247
headerName: 'CD4',
3348
width: 150,

src/app/hiv-care-lib/moh-731-report/moh-731-patientlist.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,9 @@ export class Moh731PatientListComponent implements OnInit, OnChanges {
243243
weight: 'Weight',
244244
height: 'Height',
245245
stage: 'WHO Stage',
246+
patient_categorization: 'Patient Categorization',
247+
service_delivery_model: 'Service Model',
248+
dsd_model: 'DSD Model',
246249
location: 'Location',
247250
cd4_1: 'CD4',
248251
cd4_date: 'CD4 Date',

0 commit comments

Comments
 (0)