CSR-2130
CSR-2130 exclude recal from the check when insurance order
This commit is contained in:
parent
e637b1b0a0
commit
23a9c426a2
1 changed files with 9 additions and 2 deletions
|
|
@ -643,9 +643,16 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
showPaymentMethodQuestions() {
|
showPaymentMethodQuestions() {
|
||||||
if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.hasRecal) {
|
if (this.isInsurance) {
|
||||||
return true;
|
if (this.isPiaEnabled && this.totalAmountDue > 0) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.hasRecal) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
totalAmountDue() {
|
totalAmountDue() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue