Commit 08caed7f authored by hongguangwu's avatar hongguangwu

优化人员档案-复档,项目数

parent 1d6b0e0d
......@@ -305,6 +305,7 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
return R.failed("该人员已不在离职档案中!");
}
TEmployeeInfo old = this.getById(id);
int projectNum = 0;
if (Common.isNotNull(projectIds)) {
String[] idArr = projectIds.split(",");
// 获取项目档案,传参1,不过滤项目状态
......@@ -319,6 +320,7 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
project.setLeaveTime(null);
project.setProjectStatus(CommonConstants.ZERO_INT);
tEmployeeProjectService.updateById(project);
projectNum++ ;
}
}
}
......@@ -330,6 +332,7 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
employee.setLeaveUser("");
employee.setLeaveUserName("");
employee.setLeaveTime(null);
employee.setProjectNum(projectNum);
this.updateById(employee);
// 记录变更日志
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment