Merge pull request #1836 from Safelite/feature/Digital/CSR-1953
CSR-1953
This commit is contained in:
commit
9c1f22a7ab
1 changed files with 4 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue