diff --git a/src/store/index.js b/src/store/index.js index 6543da0f..f11b6933 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1177,7 +1177,8 @@ export const useMainStore = defineStore({ }, Provider: { ProviderNumber: this.providerNumber, - ProviderCtuNumber: serviceLocation.zipCodeCtu + ProviderCtuNumber: serviceLocation.zipCodeCtu, + ProviderState: serviceLocation.state }, Vehicle: { CarId: vehicle.carId, @@ -2624,6 +2625,7 @@ export const useMainStore = defineStore({ if (zipInfo?.isValid === true) { this.order.serviceLocation.zipCodeCtu = zipInfo.zipCodeCtu; this.order.serviceLocation.defaultProviderNumber = zipInfo.providerNumber; + this.order.serviceLocation.state = zipInfo.state; return Promise.resolve(zipInfo); }