Merge branch 'release/2025.10.09' into rlsmerge/2025.10.09-to-develop
This commit is contained in:
commit
66464f9166
2 changed files with 9 additions and 3 deletions
|
|
@ -250,7 +250,8 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.modal-disclaimer {
|
.modal-disclaimer {
|
||||||
font-size: 0.75rem;
|
font-size: 0.8125rem;
|
||||||
|
color: #525656;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
order: 3;
|
order: 3;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
||||||
|
|
@ -663,10 +663,12 @@ export default {
|
||||||
: this.ServiceLocationFullAddress.zipCode;
|
: this.ServiceLocationFullAddress.zipCode;
|
||||||
},
|
},
|
||||||
AppointmentWordingText() {
|
AppointmentWordingText() {
|
||||||
return this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll(
|
const text = this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll(
|
||||||
"{custom:ADDRESS}",
|
"{custom:ADDRESS}",
|
||||||
this.ServiceLocationFullAddressText
|
this.ServiceLocationFullAddressText
|
||||||
);
|
);
|
||||||
|
|
||||||
|
return text?.replace(/\barriving between\b/gi, "<span>arriving between</span>");
|
||||||
},
|
},
|
||||||
isRecalibrationOnOrder() {
|
isRecalibrationOnOrder() {
|
||||||
const order = baseMixin.methods.hasSubmittedOrder()
|
const order = baseMixin.methods.hasSubmittedOrder()
|
||||||
|
|
@ -793,14 +795,17 @@ export default {
|
||||||
},
|
},
|
||||||
isRecalPriceRemove() {
|
isRecalPriceRemove() {
|
||||||
return (
|
return (
|
||||||
|
!this.isInsurance &&
|
||||||
this.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)?.toLowerCase() ===
|
this.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)?.toLowerCase() ===
|
||||||
"true"
|
"true" &&
|
||||||
|
this.isRecalibrationOnOrder
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
isAfterpayBreakoutDisplay() {
|
isAfterpayBreakoutDisplay() {
|
||||||
return (
|
return (
|
||||||
this.showInsuranceCoverageAs !== coverageStatus.PENDING &&
|
this.showInsuranceCoverageAs !== coverageStatus.PENDING &&
|
||||||
!this.isRecalPriceRemove &&
|
!this.isRecalPriceRemove &&
|
||||||
|
this.isPiaEnabled &&
|
||||||
this.hasSettingEqualTo(experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true")
|
this.hasSettingEqualTo(experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true")
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue