Default parent account #

This commit is contained in:
FrankRua 2022-04-15 15:18:25 -04:00
parent ceaec19073
commit c01ee4d46f

View file

@ -48,7 +48,7 @@ const getDefaultState = () => {
referralNumber: null, referralNumber: null,
referralDate: null, referralDate: null,
referralCorrelationId: null, referralCorrelationId: null,
parentAccountNumber: null, parentAccountNumber: 0,
}, },
applicationUser: { applicationUser: {
eventBus: [], eventBus: [],
@ -192,7 +192,7 @@ export const mutations = {
state.order.damage.numberOfChips = orderInformation.numberOfChips; state.order.damage.numberOfChips = orderInformation.numberOfChips;
state.order.lineItems.glassParts = orderInformation.parts; state.order.lineItems.glassParts = orderInformation.parts;
state.order.parentAccountNumber = orderInformation.parentAccountNumber; state.order.parentAccountNumber = orderInformation.parentAccountNumber;
state.order.serviceLocation.zipCode = orderInformation.zipCode; // TODO CSR-416 Make sure this is correct state.order.serviceLocation.zipCode = orderInformation.zipCode;
} }
} }