Temp to merge develop
This commit is contained in:
parent
1a1575ad43
commit
85a8efe75d
2 changed files with 9 additions and 1 deletions
|
|
@ -51,6 +51,14 @@ function setupMocks() {
|
||||||
order: {
|
order: {
|
||||||
payment: {
|
payment: {
|
||||||
isPia: false,
|
isPia: false,
|
||||||
|
insuranceCoverage: {
|
||||||
|
isVerified: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
policy: {
|
||||||
|
currentDeductible: 123,
|
||||||
|
isNoComp: false,
|
||||||
|
isItac: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
policy: {
|
policy: {
|
||||||
|
|
|
||||||
|
|
@ -581,7 +581,7 @@ export default {
|
||||||
|
|
||||||
var isEnabled = false;
|
var isEnabled = false;
|
||||||
if (this.isInsurance) {
|
if (this.isInsurance) {
|
||||||
return piaInsurance === "true";
|
return piaInsurance === "true" && this.currentDeductible > 0;
|
||||||
} else {
|
} else {
|
||||||
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
|
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue