Merge pull request #2609 from Safelite/feature/CASH-926
CASH-926 amount due correction
This commit is contained in:
commit
1c69ae3d22
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ export function getAmountDueWithDonation(lineItemsObject, donationLineItem) {
|
|||
// this is amount due with Donation added
|
||||
const lineItemsCloneWithDonation = deepClone(lineItemsObject);
|
||||
lineItemsCloneWithDonation.supportingItems.push(donationLineItem);
|
||||
return getAmountDue(lineItemsCloneWithDonation, false);
|
||||
return getAmountDue(lineItemsCloneWithDonation);
|
||||
}
|
||||
|
||||
export async function getPricingByDayPartWithPrice(pageNameToLog) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue