This commit is contained in:
zhangchenbiao
2024-04-09 11:05:26 +08:00
parent 569cf33173
commit 20588a76f3

View File

@@ -391,6 +391,9 @@ public class LineInterviewServiceImpl extends LineFlowService implements LineInt
updateLine.setId(lineInfo.getId());
updateLine.setWorkflowStage(WorkflowStageEnum.STORE.getCode());
updateLine.setWorkflowSubStageStatus(WorkflowSubStageStatusEnum.SECOND_INTERVIEWS_125.getCode());
EnterpriseUserDO enterpriseUser = userAuthMappingService.getUserByRoleNameAndAreaId("选址人员", lineInfo.getWantShopAreaId());
String developmentManager = Optional.ofNullable(enterpriseUser).map(EnterpriseUserDO::getUserId).orElse(null);
updateLine.setDevelopmentManager(developmentManager);
lineInfoDAO.updateLineInfo(updateLine);
}
return lineInterviewDAO.updateInterviewInfo(updateInterviewInfo) > 0;