Skip to content

Commit

Permalink
Added cervical screening date, type and result to txcur patient lists
Browse files Browse the repository at this point in the history
  • Loading branch information
maikofelix47 committed Jun 29, 2022
1 parent 938f45c commit 2668c2a
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,23 @@ export class DailyScheduleAppointmentsComponent implements OnInit, OnDestroy {
},
{
headerName: 'Covid-19 Vaccination Status',
width: 200,
width: 250,
field: 'covid_19_vaccination_status'
},
{
headerName: 'Cervical Screening Date',
width: 200,
field: 'cervical_screening_date'
},
{
headerName: 'Cervical Screening Method',
width: 200,
field: 'cervical_screening_method'
},
{
headerName: 'Cervical Screening Result',
width: 200,
field: 'cervical_screening_result'
}
];
public errors: any[] = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,23 @@ export class DailyScheduleNotReturnedComponent implements OnInit, OnDestroy {
},
{
headerName: 'Covid-19 Vaccination Status',
width: 200,
width: 250,
field: 'covid_19_vaccination_status'
},
{
headerName: 'Cervical Screening Date',
width: 200,
field: 'cervical_screening_date'
},
{
headerName: 'Cervical Screening Method',
width: 200,
field: 'cervical_screening_method'
},
{
headerName: 'Cervical Screening Result',
width: 200,
field: 'cervical_screening_result'
}
];
public filter: any = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,23 @@ export class DailyScheduleVisitsComponent implements OnInit, OnDestroy {
},
{
headerName: 'Covid-19 Vaccination Status',
width: 200,
width: 250,
field: 'covid_19_vaccination_status'
},
{
headerName: 'Cervical Screening Date',
width: 200,
field: 'cervical_screening_date'
},
{
headerName: 'Cervical Screening Method',
width: 200,
field: 'cervical_screening_method'
},
{
headerName: 'Cervical Screening Result',
width: 200,
field: 'cervical_screening_result'
}
];
public filter: any = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@ export class Moh731PatientListComponent implements OnInit, OnChanges {
tb_screening_date: 'TB Screening Date',
tb_screening_result: 'TB Screening Result',
covid_19_vaccination_status: 'Covid-19 Vaccination Status',
cervical_screening_date: 'Cervical Screening Date',
cervical_screening_method: 'Cervical Screening Method',
cervical_screening_result: 'Cervical Screening Result',
nearest_center: 'Nearest Center'
};

Expand Down

0 comments on commit 2668c2a

Please sign in to comment.