Fixed a typo in heading

This commit is contained in:
Gopi Katwala 2019-07-05 12:00:33 -04:00
parent 5a96b5c332
commit 6b3d1e3567
3 changed files with 8 additions and 3 deletions

View File

@ -701,7 +701,7 @@
<hr>
<div class="row">
<div class="col-12">
<h4 align="end">Total Cost: {{selectedBillAmt | currency}}</h4>
<h4 align="end">Contract Amount: {{selectedBillAmt | currency}}</h4>
</div>
</div>
</div>

View File

@ -257,7 +257,12 @@ export class InvoiceComponent implements OnInit {
if (invDetail.poLineItemNum === -1) {
invDetail.poDetailName = 'Out of Pocket Expenses';
} else {
invDetail.poDetailName = this.selectedPODetails[invDetail.poLineItemNum - 1].serviceDesc;
const temp = this.selectedPODetails[invDetail.poLineItemNum - 1];
if (temp) {
invDetail.poDetailName = this.selectedPODetails[invDetail.poLineItemNum - 1].desc;
} else {
invDetail.poDetailName = '';
}
}
});
this.updateSelectedBillAmt();

View File

@ -426,7 +426,7 @@
<hr>
<div class="row">
<div class="col-12 justify-content-start">
<h4 align="end">Total Cost: {{contractAmount | currency}}</h4>
<h4 align="end">Contract Amount: {{contractAmount | currency}}</h4>
</div>
</div>
</div>