From 4d07bff4b8a4a7c309e79cfc1c3096cd61c17148 Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Thu, 2 Oct 2025 12:35:43 -0400 Subject: [PATCH 1/6] Update font size & coloration --- .../save-progress-popup-question.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fmg-components/save-progress-popup-question/save-progress-popup-question.vue b/src/fmg-components/save-progress-popup-question/save-progress-popup-question.vue index 0e1b07b8e..19b1b3629 100644 --- a/src/fmg-components/save-progress-popup-question/save-progress-popup-question.vue +++ b/src/fmg-components/save-progress-popup-question/save-progress-popup-question.vue @@ -250,7 +250,8 @@ export default { } } .modal-disclaimer { - font-size: 0.75rem; + font-size: 0.8125rem; + color: #525656; text-align: left; order: 3; margin: 0; From ac64aa0ed7b29e82e7bfe89bb8f1b471c730730e Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Fri, 3 Oct 2025 08:54:45 -0400 Subject: [PATCH 2/6] CASH-1072: Offer PIA for $0 deductible with VAPS. Only show afterpay breakout with PIA --- src/layouts/payment-method/payment-method.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index f1bb25810..3b213891d 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -805,7 +805,10 @@ export default { const piaInsurance = this.getSettingValue(experimentSettings.PIA_INSURANCE); if (this.isInsurance) { - return piaInsurance === "true" && this.currentDeductible > 0; + return ( + piaInsurance === "true" && + (this.currentDeductible > 0 || +this.totalAmountDue > 0) + ); } else { return piaExperience === "PIA Optional" || piaExperience === "PIA Required"; } @@ -837,6 +840,7 @@ export default { return ( this.showInsuranceCoverageAs !== coverageStatus.PENDING && !this.isRecalPriceRemove && + this.isPiaEnabled && this.hasSettingEqualTo(experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true") ); }, From 6587f78dced3e353608f7613b75bcffe4cfa8191 Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Fri, 3 Oct 2025 13:41:04 -0400 Subject: [PATCH 3/6] CASH-1514 CASH-1514 changed cms to arriving between, and put text into span to not get overridden by text-transform: capitalize css property --- src/layouts/payment-method/payment-method.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index f1bb25810..b5a0b159b 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -699,10 +699,12 @@ export default { : this.ServiceLocationFullAddress.zipCode; }, AppointmentWordingText() { - return this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll( + const text = this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll( "{custom:ADDRESS}", this.ServiceLocationFullAddressText ); + + return text?.replace(/\barriving between\b/gi, "arriving between"); }, isRecalibrationOnOrder() { const order = baseMixin.methods.hasSubmittedOrder() From ceca1fd1c79ef76c7fde371c13f2637226e0dea1 Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Thu, 9 Oct 2025 14:49:08 -0400 Subject: [PATCH 4/6] CASH-1072: Revert offering PIA on $0 deductible with VAPS --- src/layouts/payment-method/payment-method.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 04ecc27f4..f9d765c32 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -807,10 +807,7 @@ export default { const piaInsurance = this.getSettingValue(experimentSettings.PIA_INSURANCE); if (this.isInsurance) { - return ( - piaInsurance === "true" && - (this.currentDeductible > 0 || +this.totalAmountDue > 0) - ); + return piaInsurance === "true" && this.currentDeductible > 0; } else { return piaExperience === "PIA Optional" || piaExperience === "PIA Required"; } From a5d3cdb197814602aef25379538865f3599e6c1b Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Fri, 10 Oct 2025 14:45:59 -0400 Subject: [PATCH 5/6] CASH-1550: Afterpaybreakout display fix for glass repair --- src/layouts/payment-method/payment-method.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index f9d765c32..a3e9a2745 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -832,7 +832,7 @@ export default { isRecalPriceRemove() { return ( this.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)?.toLowerCase() === - "true" + "true" && this.isRecalibrationOnOrder ); }, isAfterpayBreakoutDisplay() { From d88ea8a59908d0b076ad16d6eb6c945a30864707 Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Mon, 13 Oct 2025 09:56:48 -0400 Subject: [PATCH 6/6] CASH-1550: IGQ is cash only --- src/layouts/payment-method/payment-method.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index a3e9a2745..691c8ee5c 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -831,8 +831,10 @@ export default { }, isRecalPriceRemove() { return ( + !this.isInsurance && this.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)?.toLowerCase() === - "true" && this.isRecalibrationOnOrder + "true" && + this.isRecalibrationOnOrder ); }, isAfterpayBreakoutDisplay() {