Skip to content

Commit

Permalink
POC-536: Display all the available PCR results on the HEI summary
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykorir committed Sep 21, 2023
1 parent ae733c4 commit 5bd8218
Showing 1 changed file with 34 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,11 +278,41 @@
Current weight (kg):
{{ hivSummary?.weight !== null ? hivSummary?.weight : 'NONE' }}
</li>
<li class="list-group-item" style="font-size: large">
Last PCR status: {{ lastPCRStatus }}
<li
*ngIf="hivSummary?.hiv_dna_pcr_1"
class="list-group-item"
style="font-size: large"
>
PCR 1
<div>Age PCR Done: {{ pcrSnapShop?.hiv_dna_pcr_1_at }}M</div>
<div>PCR Results: {{ pcrSnapShop?.hiv_dna_pcr_1 }}</div>
<div>
Date Done: {{ hivSummary?.hiv_dna_pcr_1_date | date: 'dd-MM-yyyy' }}
</div>
</li>
<li class="list-group-item" style="font-size: large">
Last PCR Date: {{ lastPCRDate | date: 'dd-MM-yyyy' }}
<li
*ngIf="hivSummary?.hiv_dna_pcr_2"
class="list-group-item"
style="font-size: large"
>
PCR 2
<div>Age PCR Done: {{ pcrSnapShop?.hiv_dna_pcr_2_at }}M</div>
<div>PCR Results: {{ pcrSnapShop?.hiv_dna_pcr_2 }}</div>
<div>
Date Done: {{ hivSummary?.hiv_dna_pcr_2_date | date: 'dd-MM-yyyy' }}
</div>
</li>
<li
*ngIf="hivSummary?.hiv_dna_pcr_3"
class="list-group-item"
style="font-size: large"
>
PCR 3
<div>Age PCR Done: {{ pcrSnapShop?.hiv_dna_pcr_3_at }}M</div>
<div>PCR Results: {{ pcrSnapShop?.hiv_dna_pcr_3 }}</div>
<div>
Date Done: {{ hivSummary?.hiv_dna_pcr_3_date | date: 'dd-MM-yyyy' }}
</div>
</li>
<li class="list-group-item" style="font-size: large">
Current ART Prophylaxis: {{ hivSummary?.cur_arv_meds }}
Expand Down

0 comments on commit 5bd8218

Please sign in to comment.