commit
2d045f2192
1 changed files with 11 additions and 1 deletions
|
|
@ -742,7 +742,17 @@ export default {
|
||||||
return store.getters.order.policy.isNoComp;
|
return store.getters.order.policy.isNoComp;
|
||||||
},
|
},
|
||||||
isForwardActionDisabled() {
|
isForwardActionDisabled() {
|
||||||
return this.displayNoShopsAlert;
|
if (
|
||||||
|
(this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
||||||
|
this.appointmentType === AppointmentTypeStrings.DROP_OFF) &&
|
||||||
|
!this.selectedTimeSlotInfo?.timeSlot?.date
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
this.displayNoShopsAlert ||
|
||||||
|
this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF
|
||||||
|
);
|
||||||
},
|
},
|
||||||
additionalButtonData() {
|
additionalButtonData() {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue