Merge pull request #1946 from Safelite/feature/Digital/CSR-2184

CSR-2184
This commit is contained in:
hiteshkumar87 2024-08-22 20:26:17 +05:30 committed by GitHub
commit 95c6e0c0aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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