Commit 1d20dfa2 authored by huyuchen's avatar huyuchen

Merge remote-tracking branch 'origin/MVP1.6.9' into MVP1.6.9

parents 8c476625 eca84ca9
...@@ -24,6 +24,14 @@ public class ArchiveTask { ...@@ -24,6 +24,14 @@ public class ArchiveTask {
@Autowired @Autowired
private DaprArchivesProperties daprArchivesProperties; private DaprArchivesProperties daprArchivesProperties;
public void updateEmployeeAgeTask() {
log.info("-------------每年1月1号刷新在职和离职人员的年龄信息-定时任务开始------------");
HttpDaprUtil.invokeMethodPost(daprArchivesProperties.getAppUrl(), daprArchivesProperties.getAppId(),
"/temployeeinfo/inner/updateEmployeeAgeTask", "", Object.class,
SecurityConstants.FROM_IN);
log.info("-------------每年1月1号刷新在职和离职人员的年龄信息-定时任务结束------------");
}
/** /**
* @Author hgw * @Author hgw
* @Description 每月1号清理人员档案、项目档案的薪资状态 * @Description 每月1号清理人员档案、项目档案的薪资状态
......
...@@ -2582,7 +2582,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T ...@@ -2582,7 +2582,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
if (empVo.getHignEducation().equals("7")) { if (empVo.getHignEducation().equals("7")) {
excel.setEducationName("硕士"); excel.setEducationName("硕士");
} }
if (excel.getEducationName().equals("8")) { if (empVo.getHignEducation().equals("8")) {
excel.setEducationName("博士"); excel.setEducationName("博士");
} }
if (empVo.getHignEducation().equals("9")) { if (empVo.getHignEducation().equals("9")) {
......
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