remove console logs
This commit is contained in:
parent
33108d1b46
commit
f337c54ea8
1 changed files with 0 additions and 5 deletions
|
|
@ -1261,17 +1261,14 @@ export const useMainStore = defineStore({
|
||||||
this.order.vehicle.registration.lastName = null;
|
this.order.vehicle.registration.lastName = null;
|
||||||
},
|
},
|
||||||
resetServiceLocationAndDependencies(context) {
|
resetServiceLocationAndDependencies(context) {
|
||||||
console.log('Reset service location and dependencies...');
|
|
||||||
this.resetServiceLocationAppointmentType();
|
this.resetServiceLocationAppointmentType();
|
||||||
this.resetServiceLocationProvider();
|
this.resetServiceLocationProvider();
|
||||||
this.resetSchedule();
|
this.resetSchedule();
|
||||||
},
|
},
|
||||||
resetServiceLocationAppointmentType() {
|
resetServiceLocationAppointmentType() {
|
||||||
console.log('Reset service location appointment type...');
|
|
||||||
this.order.serviceLocation.appointmentType = null;
|
this.order.serviceLocation.appointmentType = null;
|
||||||
},
|
},
|
||||||
resetServiceLocationProvider() {
|
resetServiceLocationProvider() {
|
||||||
console.log('Reset service location provider...');
|
|
||||||
this.order.serviceLocation.provider = {
|
this.order.serviceLocation.provider = {
|
||||||
providerNumber: null,
|
providerNumber: null,
|
||||||
address: {
|
address: {
|
||||||
|
|
@ -1284,7 +1281,6 @@ export const useMainStore = defineStore({
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
resetServiceLocationMobileAddress() {
|
resetServiceLocationMobileAddress() {
|
||||||
console.log('Reset service location mobile address...');
|
|
||||||
this.order.serviceLocation.address = null;
|
this.order.serviceLocation.address = null;
|
||||||
this.order.serviceLocation.address2 = null;
|
this.order.serviceLocation.address2 = null;
|
||||||
this.order.serviceLocation.city = null;
|
this.order.serviceLocation.city = null;
|
||||||
|
|
@ -1359,7 +1355,6 @@ export const useMainStore = defineStore({
|
||||||
this.applicationUser.pageData[issPageValues.CAPABILITY_QUESTIONS] = null;
|
this.applicationUser.pageData[issPageValues.CAPABILITY_QUESTIONS] = null;
|
||||||
},
|
},
|
||||||
resetSchedule() {
|
resetSchedule() {
|
||||||
console.log('Reset Schedule...');
|
|
||||||
this.order.schedule.date = null;
|
this.order.schedule.date = null;
|
||||||
this.order.schedule.startTime = null;
|
this.order.schedule.startTime = null;
|
||||||
this.order.schedule.endTime = null;
|
this.order.schedule.endTime = null;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue