Skip to content

Commit

Permalink
POC-721:To add Height, Weight, WHO Stage Columns in AMRS Line list (#…
Browse files Browse the repository at this point in the history
…1733)

* POC-721:To add Height, Weight, WHO Stage Columns in AMRS Line list

* POC-721: Updated MOH linelist

---------

Co-authored-by: Faith Kamau <[email protected]>
  • Loading branch information
Alfred-Mutai and hiqedme authored Jul 19, 2024
1 parent a489e26 commit b73681b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ export class Moh731PatientListComponent implements OnInit, OnChanges {

public addExtraColumns(indicators: Array<any>) {
const extraColumns = {
weight: 'Weight',
height: 'Height',
stage: 'WHO Stage',
location: 'Location',
enrollment_date: 'Enrollment Date',
arv_first_regimen_start_date: 'ARVs Initial Start Date',
Expand Down

0 comments on commit b73681b

Please sign in to comment.