Merge branch 'release/2024.11.21' into feature/csr-2366
This commit is contained in:
commit
60ea73a8d1
2 changed files with 14 additions and 3 deletions
|
|
@ -436,8 +436,15 @@ export default {
|
|||
(!this.isRecalibrationOnOrder || !this.shouldHideRecalibration)
|
||||
);
|
||||
},
|
||||
isRecalPriceRemove() {
|
||||
return (
|
||||
experimentMixin.methods
|
||||
.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)
|
||||
?.toLowerCase() === "true"
|
||||
);
|
||||
},
|
||||
showRecalDisclaimer() {
|
||||
return this.isRecalibrationOnOrder && this.shouldHideRecalibration;
|
||||
return this.isRecalibrationOnOrder && this.isRecalPriceRemove;
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
|
|
@ -398,8 +398,12 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
isDisabled(options) {
|
||||
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified || (store.getters.order.payment?.isInsurance &&
|
||||
getFunnelCookie().HasDelayedClaimRegistration)) {
|
||||
if (
|
||||
!options.length ||
|
||||
store.getters.payment?.insuranceCoverage?.isVerified ||
|
||||
(store.getters.order.payment?.isInsurance &&
|
||||
getFunnelCookie().HasDelayedClaimRegistration)
|
||||
) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue