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() {
|
||||
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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue