diff --git a/src/store/index.js b/src/store/index.js index 952b2f5e4..b12f99ac4 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -423,18 +423,20 @@ export const mutations = { state.order.lineItems.supportingItems = sessionInformation.order.lineItems.supportingItems; state.order.lineItems.vaps = sessionInformation.order.lineItems.vaps; state.order.lineItems.serverData = sessionInformation.order.lineItems.serverData; + state.order.payment.parentAccountNumber = sessionInformation.order.payment.parentAccountNumber; - (state.order.serviceLocation.address = - sessionInformation.order.serviceLocation.streetAddress), - (state.order.serviceLocation.address2 = - sessionInformation.order.serviceLocation.address2), - (state.order.serviceLocation.city = sessionInformation.order.serviceLocation.city), - (state.order.serviceLocation.state = sessionInformation.order.serviceLocation.state), - (state.order.serviceLocation.zipCode = - sessionInformation.order.serviceLocation.zipCode), - (state.order.serviceLocation.zipCodeCtu = - sessionInformation.order.serviceLocation.zipCodeCtu); + + state.order.serviceLocation.address = + sessionInformation.order.serviceLocation.streetAddress; + state.order.serviceLocation.address2 = + sessionInformation.order.serviceLocation.streetAddress2; + state.order.serviceLocation.city = sessionInformation.order.serviceLocation.city; + state.order.serviceLocation.state = sessionInformation.order.serviceLocation.state; + state.order.serviceLocation.zipCode = sessionInformation.order.serviceLocation.zipCode; + state.order.serviceLocation.zipCodeCtu = + sessionInformation.order.serviceLocation.zipCodeCtu; + state.order.serviceLocation.appointmentType = sessionInformation.order.serviceLocation.appointmentType; state.order.serviceLocation.isVehicleProtected =