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