Skip to content

Commit a3b9637

Browse files
tb prophylaxis (#1616)
* tb prophylaxis * POC-271: Wrong TPT regimen showing under HIV Summary
1 parent 927df68 commit a3b9637

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

src/app/patient-dashboard/hiv/hiv-summary/hiv-summary-latest.component.ts

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,25 @@ export class HivSummaryLatestComponent implements OnInit, OnDestroy {
181181
if (summary.ipt_start_date != null) {
182182
switch (summary.tb_prophylaxis_medication) {
183183
case '607':
184-
this.iptProphylaxisMedication = '3HP';
184+
this.iptProphylaxisMedication =
185+
'Isoniazid 300mg and Rifapentine 300mg (3HP)';
185186
break;
186187
case '608':
188+
this.iptProphylaxisMedication =
189+
'Rifampicin 70mg and Isonaizid 50mg (3RH)';
190+
break;
187191
case '282':
188-
this.iptProphylaxisMedication = '3RH';
192+
this.iptProphylaxisMedication =
193+
'Rifampicin 150mg and Isonaizid 75mg (3RH)';
189194
break;
190-
default:
191-
this.iptProphylaxisMedication = 'Isoniazid';
195+
case '59':
196+
this.iptProphylaxisMedication = 'Isoniazid 100mg (6H)';
192197
break;
198+
case '60':
199+
this.iptProphylaxisMedication = 'Isoniazid 300mg (6H)';
200+
break;
201+
default:
202+
this.iptProphylaxisMedication = '';
193203
}
194204
}
195205
break;

0 commit comments

Comments
 (0)