CSR-2130 exclude recal from the check when insurance order
This commit is contained in:
CarlNation 2024-07-29 14:29:59 -04:00
parent e637b1b0a0
commit 23a9c426a2

View file

@ -643,9 +643,16 @@ export default {
}
},
showPaymentMethodQuestions() {
if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.hasRecal) {
return true;
if (this.isInsurance) {
if (this.isPiaEnabled && this.totalAmountDue > 0) {
return true;
}
} else {
if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.hasRecal) {
return true;
}
}
return false;
},
totalAmountDue() {