correct vaps amount check
This commit is contained in:
CarlNation 2023-10-31 08:17:00 -04:00
parent c97c30a968
commit c644bd4ef5

View file

@ -134,7 +134,7 @@ export default {
lineItems.supportingItems lineItems.supportingItems
); );
} }
if (lineItems.supportingItems.vaps) { if (lineItems.vaps) {
amountDue += this.getTotalPriceOfAllLineItemsAndChildParts(lineItems.vaps); amountDue += this.getTotalPriceOfAllLineItemsAndChildParts(lineItems.vaps);
} }
return amountDue; return amountDue;