smh
This commit is contained in:
parent
098ed84658
commit
970dbde304
1 changed files with 9 additions and 9 deletions
|
|
@ -1086,16 +1086,16 @@ export const useMainStore = defineStore({
|
||||||
this.order.vehicle.registration.lastName = registrationInfo?.lastName;
|
this.order.vehicle.registration.lastName = registrationInfo?.lastName;
|
||||||
},
|
},
|
||||||
updateServiceLocation(serviceLocationInfo) {
|
updateServiceLocation(serviceLocationInfo) {
|
||||||
state.order.serviceLocation.address = serviceLocationInfo.address;
|
this.order.serviceLocation.address = serviceLocationInfo.address;
|
||||||
state.order.serviceLocation.address2 = serviceLocationInfo.address2;
|
this.order.serviceLocation.address2 = serviceLocationInfo.address2;
|
||||||
state.order.serviceLocation.city = serviceLocationInfo.city;
|
this.order.serviceLocation.city = serviceLocationInfo.city;
|
||||||
state.order.serviceLocation.state = serviceLocationInfo.state;
|
this.order.serviceLocation.state = serviceLocationInfo.state;
|
||||||
state.order.serviceLocation.zipCode = serviceLocationInfo.zipCode;
|
this.order.serviceLocation.zipCode = serviceLocationInfo.zipCode;
|
||||||
state.order.serviceLocation.zipCodeCtu = serviceLocationInfo.zipCodeCtu;
|
this.order.serviceLocation.zipCodeCtu = serviceLocationInfo.zipCodeCtu;
|
||||||
state.order.serviceLocation.appointmentType = serviceLocationInfo.appointmentType;
|
this.order.serviceLocation.appointmentType = serviceLocationInfo.appointmentType;
|
||||||
state.order.serviceLocation.isVehicleProtected = serviceLocationInfo.isVehicleProtected;
|
this.order.serviceLocation.isVehicleProtected = serviceLocationInfo.isVehicleProtected;
|
||||||
|
|
||||||
state.order.serviceLocation.provider = {
|
this.order.serviceLocation.provider = {
|
||||||
providerNumber: serviceLocationInfo.provider?.providerNumber,
|
providerNumber: serviceLocationInfo.provider?.providerNumber,
|
||||||
address: {
|
address: {
|
||||||
streetAddress: serviceLocationInfo.provider?.address?.streetAddress,
|
streetAddress: serviceLocationInfo.provider?.address?.streetAddress,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue