Commit 1169719f authored by hongguangwu's avatar hongguangwu

派遣/外包+大专及以上=是 才根据学历(本科、大专这些)去更新 或者新建一条学历信息

parent 03546ea1
...@@ -1504,17 +1504,24 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -1504,17 +1504,24 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
// 更新学历-核心 // 更新学历-核心
private void doUpdateEducationCore(TEmpEducation education, TEmployeeInfo employeeInfo) { private void doUpdateEducationCore(TEmpEducation education, TEmployeeInfo employeeInfo) {
education.setEmpId(employeeInfo.getId()); // 派遣/外包+大专及以上=是 才根据学历(本科、大专这些)去更新 或者新建一条学历信息
education.setEmpName(employeeInfo.getEmpName()); if (Common.isNotNull(employeeInfo.getEmpNatrue())
education.setEmpCode(employeeInfo.getEmpCode()); && (CommonConstants.ZERO_STRING.equals(employeeInfo.getEmpNatrue())
education.setEmpIdcard(employeeInfo.getEmpIdcard()); || CommonConstants.ONE_STRING.equals(employeeInfo.getEmpNatrue()))
education.setEducationName(employeeInfo.getHignEducation()); && Common.isNotNull(employeeInfo.getIsCollege())
education.setHighIdentification(CommonConstants.ZERO_STRING); && employeeInfo.getIsCollege() == CommonConstants.ONE_INT) {
education.setSchool(employeeInfo.getSchool()); education.setEmpId(employeeInfo.getId());
education.setMajor(employeeInfo.getMajor()); education.setEmpName(employeeInfo.getEmpName());
education.setEntryDate(LocalDateTimeUtils.convertLDToDate(employeeInfo.getAdmissionDate())); education.setEmpCode(employeeInfo.getEmpCode());
education.setGradutionDate(LocalDateTimeUtils.convertLDToDate(employeeInfo.getGradutionDate())); education.setEmpIdcard(employeeInfo.getEmpIdcard());
tEmpEducationService.insertEducationOfEmp(education); education.setEducationName(employeeInfo.getHignEducation());
education.setHighIdentification(CommonConstants.ZERO_STRING);
education.setSchool(employeeInfo.getSchool());
education.setMajor(employeeInfo.getMajor());
education.setEntryDate(LocalDateTimeUtils.convertLDToDate(employeeInfo.getAdmissionDate()));
education.setGradutionDate(LocalDateTimeUtils.convertLDToDate(employeeInfo.getGradutionDate()));
tEmpEducationService.insertEducationOfEmp(education);
}
} }
/** /**
......
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