From 06467c2183c3b8d41e8ab22ade6969b5d93e4805 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Thu, 8 Jun 2023 11:18:10 -0400 Subject: [PATCH] WIP --- src/store/index.js | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index 1223a407a..64838564e 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -409,18 +409,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 =