CSR-2371
remove Insurance check on shouldHideRecalibration getter.
This commit is contained in:
parent
4529b8eb12
commit
e026dd387b
2 changed files with 6 additions and 6 deletions
|
|
@ -398,8 +398,12 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
isDisabled(options) {
|
isDisabled(options) {
|
||||||
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified || (store.getters.order.payment?.isInsurance &&
|
if (
|
||||||
getFunnelCookie().HasDelayedClaimRegistration)) {
|
!options.length ||
|
||||||
|
store.getters.payment?.insuranceCoverage?.isVerified ||
|
||||||
|
(store.getters.order.payment?.isInsurance &&
|
||||||
|
getFunnelCookie().HasDelayedClaimRegistration)
|
||||||
|
) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -826,10 +826,6 @@ export const getters = {
|
||||||
order = state.order;
|
order = state.order;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (order.payment.isInsurance) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
experimentMixin.methods
|
experimentMixin.methods
|
||||||
.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)
|
.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue