Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 4 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading