Reordered methods relating to vin lookups to be more cohesive
This commit is contained in:
parent
4606067aa2
commit
c74ea197ac
1 changed files with 6 additions and 6 deletions
|
|
@ -135,20 +135,20 @@ export const mutations = {
|
||||||
updateRegistrationLicensePlate(state, licensePlate){
|
updateRegistrationLicensePlate(state, licensePlate){
|
||||||
state.order.vehicle.registration.licensePlate = licensePlate;
|
state.order.vehicle.registration.licensePlate = licensePlate;
|
||||||
},
|
},
|
||||||
|
updateRegistrationAddress(state, registrationAddress){
|
||||||
|
state.order.vehicle.registration.address = registrationAddress;
|
||||||
|
},
|
||||||
|
updateRegistrationCity(state, registrationCity){
|
||||||
|
state.order.vehicle.registration.city = registrationCity;
|
||||||
|
},
|
||||||
updateRegistrationState(state, registrationState){
|
updateRegistrationState(state, registrationState){
|
||||||
state.order.vehicle.registration.state = registrationState;
|
state.order.vehicle.registration.state = registrationState;
|
||||||
},
|
},
|
||||||
updateRegistrationZipCode(state, registrationZipCode){
|
updateRegistrationZipCode(state, registrationZipCode){
|
||||||
state.order.vehicle.registration.zipCode = registrationZipCode;
|
state.order.vehicle.registration.zipCode = registrationZipCode;
|
||||||
},
|
},
|
||||||
updateRegistrationAddress(state, registrationAddress){
|
|
||||||
state.order.vehicle.registration.address = registrationAddress;
|
|
||||||
},
|
|
||||||
updateServiceLocationZipCode(state, serviceLocationZip){
|
updateServiceLocationZipCode(state, serviceLocationZip){
|
||||||
state.order.serviceLocation.zipCode = serviceLocationZip;
|
state.order.serviceLocation.zipCode = serviceLocationZip;
|
||||||
},
|
|
||||||
updateRegistrationCity(state, registrationCity){
|
|
||||||
state.order.vehicle.registration.city = registrationCity;
|
|
||||||
},
|
},
|
||||||
updateRegistrationFirstName(state, firstName){
|
updateRegistrationFirstName(state, firstName){
|
||||||
state.order.vehicle.registration.firstName = firstName;
|
state.order.vehicle.registration.firstName = firstName;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue