Merge pull request #71 from Safelite/feature/removing-non-mvp-fields
Feature/removing non mvp fields
This commit is contained in:
commit
9cc240353b
1 changed files with 5 additions and 18 deletions
|
|
@ -27,7 +27,6 @@ export default createStore({
|
|||
evoxImageId: null,
|
||||
hasSplitWindshieldOption: null,
|
||||
hasBackglassSliderOption: null,
|
||||
imageSrc: '',
|
||||
registration: {
|
||||
rawAddress: null,
|
||||
zipCode: null,
|
||||
|
|
@ -40,28 +39,19 @@ export default createStore({
|
|||
isReplacement: null,
|
||||
numberOfChips: null,
|
||||
glassToReplace: null,
|
||||
problemGlassQuestions: null,
|
||||
problemMoldingQuestions: null,
|
||||
problemPropertyQuestions: null,
|
||||
problemGlassQuestionAnswers: null,
|
||||
problemMoldingQuestionAnswers: null,
|
||||
problemPropertyQuestionAnswers: null,
|
||||
},
|
||||
items: null,
|
||||
lineItems: null,
|
||||
customer: {
|
||||
emailAddress: null,
|
||||
firstName: null,
|
||||
lastName: null,
|
||||
phoneNumber: {
|
||||
isMobile: null,
|
||||
optInSms: null,
|
||||
}
|
||||
},
|
||||
payment: {
|
||||
isInsurance: null,
|
||||
isCash: null,
|
||||
},
|
||||
referral: {
|
||||
referralSeqNum: null,
|
||||
workOrderId: null
|
||||
}
|
||||
referralSeqNum: null,
|
||||
}
|
||||
},
|
||||
applicationUser: {
|
||||
|
|
@ -71,9 +61,6 @@ export default createStore({
|
|||
// See IMPORTANT note at top of "state" declaration.
|
||||
|
||||
mutations: {
|
||||
updateVehicleImage(state, data) {
|
||||
state.order.vehicle.imageSrc = data.imgSrc;
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
// Vehicle API Actions
|
||||
|
|
|
|||
Loading…
Reference in a new issue