CSR-2184
display datalayer sub total and total in case itac
This commit is contained in:
parent
4b994584dd
commit
e932ba01a2
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