Commit 3c4f96fd authored by hongguangwu's avatar hongguangwu

MVP1.6.6-预入职相关_大专及以上

parent 99f4fa01
......@@ -2412,6 +2412,9 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
if(empAdd.getHignEducation().equals("硕士")) {
employeeInfo.setHignEducation("7");
}
if(empAdd.getHignEducation().equals("博士")) {
employeeInfo.setHignEducation("8");
}
if(empAdd.getHignEducation().equals("技工")) {
employeeInfo.setHignEducation("9");
}
......@@ -2421,7 +2424,14 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
if(empAdd.getHignEducation().equals("中专")) {
employeeInfo.setHignEducation("11");
}
employeeInfo.setIsCollege(CommonConstants.ONE_INT);
if ("5".equals(employeeInfo.getHignEducation())
|| "6".equals(employeeInfo.getHignEducation())
|| "7".equals(employeeInfo.getHignEducation())
|| "8".equals(employeeInfo.getHignEducation())) {
employeeInfo.setIsCollege(CommonConstants.ONE_INT);
} else {
employeeInfo.setIsCollege(CommonConstants.ZERO_INT);
}
employeeInfo.setStatus(CommonConstants.ZERO_INT);
date = IdCardUtil.getBirthdate(employeeInfo.getEmpIdcard());
if (Common.isNotNull(date)) {
......
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