CSR-1953
deductible scenario
This commit is contained in:
parent
883704c167
commit
e789b06f9c
1 changed files with 4 additions and 2 deletions
|
|
@ -276,7 +276,8 @@ export default {
|
||||||
isDefined(order.payment.insuranceCoverage.isVerified) &&
|
isDefined(order.payment.insuranceCoverage.isVerified) &&
|
||||||
order.payment.insuranceCoverage.isVerified &&
|
order.payment.insuranceCoverage.isVerified &&
|
||||||
isDefined(order.policy.currentDeductible) &&
|
isDefined(order.policy.currentDeductible) &&
|
||||||
order.policy.currentDeductible == 0
|
order.policy.currentDeductible > 0 &&
|
||||||
|
order.policy.currentDeductible != 9999
|
||||||
) {
|
) {
|
||||||
payload.priceSubTotal = "";
|
payload.priceSubTotal = "";
|
||||||
} else if (isPricingAvailable) {
|
} else if (isPricingAvailable) {
|
||||||
|
|
@ -302,7 +303,8 @@ export default {
|
||||||
isDefined(order.payment.insuranceCoverage.isVerified) &&
|
isDefined(order.payment.insuranceCoverage.isVerified) &&
|
||||||
order.payment.insuranceCoverage.isVerified &&
|
order.payment.insuranceCoverage.isVerified &&
|
||||||
isDefined(order.policy.currentDeductible) &&
|
isDefined(order.policy.currentDeductible) &&
|
||||||
order.policy.currentDeductible == 0
|
order.policy.currentDeductible > 0 &&
|
||||||
|
order.policy.currentDeductible != 9999
|
||||||
) {
|
) {
|
||||||
payload.priceTotal = "";
|
payload.priceTotal = "";
|
||||||
} else if (isTaxAvailable) {
|
} else if (isTaxAvailable) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue