Merge remote-tracking branch 'origin/develop' into feature/CSR-1512

This commit is contained in:
Scott Kiener 2023-07-10 10:19:30 -04:00
commit 92bbb3f498

View file

@ -1309,10 +1309,12 @@ export const actions = {
additionalAuthFlag: "",
},
partSelection: {
hasAnsweredPartQuestions: !!order.damage.partQuestionAnswers,
hasAnsweredMoldingQuestions: !!order.damage.moldingQuestionAnswers,
hasAnsweredCapabilityQuestions: !!order.damage.capabilityQuestionAnswers,
hasManuallySelectedParts: !!context.state.applicationUser.pageData["vehicle-parts"],
hasAnsweredPartQuestions: !!order.damage.partQuestionAnswers?.length,
hasAnsweredMoldingQuestions: !!order.damage.moldingQuestionAnswers?.length,
hasAnsweredCapabilityQuestions: !!order.damage.capabilityQuestionAnswers?.length,
hasManuallySelectedParts:
!!context.state.applicationUser.pageData["vehicle-parts"]?.partsOrQuestions
.length,
},
vehicle: {
year: vehicle.year,