CASH-2096 redo previously lost changes from 1790

This commit is contained in:
Adam Caouette 2026-01-22 17:02:04 -05:00
parent 1e822acc0b
commit c7be5b6962

View file

@ -1620,8 +1620,29 @@ export default {
} else {
this.includePricingByDayUpcharge = false;
}
// TODO: REMOVE AS PART OF CASH-1634
// // do something to mark this as upcharge day or not...
// if (date.isPricingByDayUpchargeDay) {
// this.includePricingByDayUpcharge = true;
// } else {
// this.includePricingByDayUpcharge = false;
// }
},
updateTimeSlot(timeSlotObj) {
getEmptyTimeSlot() {
return {
timeSlot: {
date: null,
routeCode: null,
startTime: null,
endTime: null,
jobMaxMinutes: null,
jobMinMinutes: null,
},
isPremiumAppointment: null,
};
},
updateTimeSlot(timeSlotObj) { debugger; // eslint-disable-line no-debugger
if (!timeSlotObj?.routeCode) {
this.appointmentType = AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF;
this.selectedTimeSlotInfo = {