From 3803f944f04b64ff3e6da366adf0ac51d3d1e905 Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Wed, 19 Mar 2025 15:44:21 -0400 Subject: [PATCH 01/19] CASH-185 CASH-185 syntax changes --- src/layouts/schedule/schedule.vue | 2 +- .../time-slot-modal-question.vue | 20 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 0d688e4d9..4f9f09cb1 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -61,7 +61,7 @@ :estimatedServiceMinutesMaximum=" selectableDatesData.estimatedServiceMinutesMaximum " - @waitListRequested-emitted="handleWaitListRequested" + @waitListRequested="handleWaitListRequested" @time-slot-modal-closed="timeSlotModalClosed" validationRules="time-slot-selection-required" @TimeSlotSelected="forwardButtonAction" /> diff --git a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue index 82e11ea41..0cc9cba78 100644 --- a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue +++ b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue @@ -43,8 +43,8 @@ v-if="waitListRequested" class="mt-5 rounded waitlist-success" ref="waitlistSuccessMessage"> - - + +
Date: Wed, 19 Mar 2025 15:45:01 -0400 Subject: [PATCH 02/19] CASH-154: Update Pricing By Day part number --- src/constants/schedule-constants.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/constants/schedule-constants.js b/src/constants/schedule-constants.js index a0aaf8316..fbd165ad1 100644 --- a/src/constants/schedule-constants.js +++ b/src/constants/schedule-constants.js @@ -8,8 +8,7 @@ const PREMIUM_TIME_SLOT_ID_FLAG = "-PREMIUM"; const PREMIUM_FEE_PART_TYPE = "EARLY BIRD"; -// TODO; This will need updating with real PricingByDay part type -const PRICING_BY_DAY_PART_TYPE = "DISC CASHSAVE20"; +const PRICING_BY_DAY_PART_TYPE = "PREMAPPT GEN"; const RouteCodeFlags = { ALL_DAY_DROP_OFF: "ALL DAY DROP OFF", From 4301ca27deb3679db3df328be939e87e91ba47d0 Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Wed, 19 Mar 2025 18:01:17 -0400 Subject: [PATCH 03/19] Cash 152 Cash-152 fixed UI defect CASH-405 for CASH-152 --- .../date-picker/mixins/constants.js | 9 +---- .../date-picker-for-pricing-by-day.vue | 37 +++++++++++++++++-- 2 files changed, 35 insertions(+), 11 deletions(-) diff --git a/src/digital-components/date-picker/mixins/constants.js b/src/digital-components/date-picker/mixins/constants.js index b9092b5eb..52b973d3f 100644 --- a/src/digital-components/date-picker/mixins/constants.js +++ b/src/digital-components/date-picker/mixins/constants.js @@ -26,43 +26,36 @@ const DAYS_OF_WEEK = [ { label: "Sunday", cssClass: "sunday", - index: 0, - isPricingByDayUpchargeDay: false, + isPricingByDayUpchargeDay: true, }, { label: "Monday", cssClass: "monday", - index: 1, isPricingByDayUpchargeDay: true, }, { label: "Tuesday", cssClass: "tuesday", - index: 2, isPricingByDayUpchargeDay: false, }, { label: "Wednesday", cssClass: "wednesday", - index: 3, isPricingByDayUpchargeDay: false, }, { label: "Thursday", cssClass: "thursday", - index: 4, isPricingByDayUpchargeDay: false, }, { label: "Friday", cssClass: "friday", - index: 5, isPricingByDayUpchargeDay: true, }, { label: "Saturday", cssClass: "saturday", - index: 6, isPricingByDayUpchargeDay: true, }, ]; diff --git a/src/experiment-components/date-picker-for-pricing-by-day.vue b/src/experiment-components/date-picker-for-pricing-by-day.vue index 5bdcec336..b37f6b502 100644 --- a/src/experiment-components/date-picker-for-pricing-by-day.vue +++ b/src/experiment-components/date-picker-for-pricing-by-day.vue @@ -1,5 +1,5 @@