Skip to content

Commit

Permalink
tb prophylaxis (#1616)
Browse files Browse the repository at this point in the history
* tb prophylaxis

* POC-271: Wrong TPT regimen showing under HIV Summary
  • Loading branch information
sharleenawinja authored Jun 29, 2023
1 parent 927df68 commit a3b9637
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,25 @@ export class HivSummaryLatestComponent implements OnInit, OnDestroy {
if (summary.ipt_start_date != null) {
switch (summary.tb_prophylaxis_medication) {
case '607':
this.iptProphylaxisMedication = '3HP';
this.iptProphylaxisMedication =
'Isoniazid 300mg and Rifapentine 300mg (3HP)';
break;
case '608':
this.iptProphylaxisMedication =
'Rifampicin 70mg and Isonaizid 50mg (3RH)';
break;
case '282':
this.iptProphylaxisMedication = '3RH';
this.iptProphylaxisMedication =
'Rifampicin 150mg and Isonaizid 75mg (3RH)';
break;
default:
this.iptProphylaxisMedication = 'Isoniazid';
case '59':
this.iptProphylaxisMedication = 'Isoniazid 100mg (6H)';
break;
case '60':
this.iptProphylaxisMedication = 'Isoniazid 300mg (6H)';
break;
default:
this.iptProphylaxisMedication = '';
}
}
break;
Expand Down

0 comments on commit a3b9637

Please sign in to comment.