CASH-2148

CASH-2148
This commit is contained in:
CarlNation 2026-01-13 15:57:53 -05:00
parent 40ffbe908c
commit f97c2f37eb
2 changed files with 6 additions and 4 deletions

View file

@ -188,6 +188,12 @@ export default {
}
});
this.dispatchStoreAction(
this.storeActions.SAVE_IS_OEM_GLASS_SELECTED,
false,
false
);
// save to vuex store as order.damage.partQuestionAnswers (array)
// used in GET_PARTS call following this one
await this.dispatchStoreAction(

View file

@ -344,10 +344,6 @@ export const mutations = {
state.order.isRecalAckOptIn = isRecalAckOptIn;
},
updateIsOemGlassSelected(state, isOemGlassSelected) {
console.log(
"Mutation::::::::::::::::::::::::::::::::::::::: updateIsOemGlassSelected:",
isOemGlassSelected
);
state.order.damage.installOemGlass = isOemGlassSelected;
},
updateIsMSRFeeApplicable(state, isMSRFeeApplicable) {