Skip to content

Commit

Permalink
DATIM patient list update
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfred-Mutai committed Feb 7, 2024
1 parent aed2712 commit 69c53fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/build-version/build-version.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { VERSION } from '../../environments/version';
})
export class BuildVersionComponent implements OnInit {
public version: string;
public buildDate: Date;
public buildDate: string;
public hash: string;
constructor() {}

Expand All @@ -20,7 +20,7 @@ export class BuildVersionComponent implements OnInit {
try {
this.version = VERSION.version;
this.hash = VERSION.hash;
this.buildDate = new Date(VERSION.buildDate);
this.buildDate = 'build Jan 15, 2024, 6:51:04 PM'; // new Date(VERSION.buildDate);
} catch (e) {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,15 @@ export class TxMlReportPatientListComponent implements OnInit {

public addExtraColumns() {
const extraColumns = {
weight: 'Weight',
phone_number: 'Phone',
enrollment_date: 'Enrolment Date',
last_appointment: 'Last Appointment',
latest_rtc_date: 'Latest RTC Date',
days_since_rtc_date: 'Days since RTC',
arv_first_regimen: 'ARV first regimen',
cd4_1: 'CD4',
cd4_1_date: 'CD4 Date',
arv_first_regimen_start_date: 'First ARV start date',
cur_meds: 'Current Regimen',
cur_arv_line: 'Current ARV Line',
Expand Down

0 comments on commit 69c53fd

Please sign in to comment.