deductible scenario
This commit is contained in:
hiteshkumar87 2024-04-26 18:34:39 +05:30
parent 883704c167
commit e789b06f9c

View file

@ -276,7 +276,8 @@ export default {
isDefined(order.payment.insuranceCoverage.isVerified) &&
order.payment.insuranceCoverage.isVerified &&
isDefined(order.policy.currentDeductible) &&
order.policy.currentDeductible == 0
order.policy.currentDeductible > 0 &&
order.policy.currentDeductible != 9999
) {
payload.priceSubTotal = "";
} else if (isPricingAvailable) {
@ -302,7 +303,8 @@ export default {
isDefined(order.payment.insuranceCoverage.isVerified) &&
order.payment.insuranceCoverage.isVerified &&
isDefined(order.policy.currentDeductible) &&
order.policy.currentDeductible == 0
order.policy.currentDeductible > 0 &&
order.policy.currentDeductible != 9999
) {
payload.priceTotal = "";
} else if (isTaxAvailable) {