Commit a6e646a9 authored by hongguangwu's avatar hongguangwu

MVP1.7.8-状态

parent f37cbd9a
...@@ -300,6 +300,8 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -300,6 +300,8 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
empFirst = true; empFirst = true;
} }
if (main != null) { if (main != null) {
vo.setTpreEmpDeclaration(declaration);
main.setDeclarationId(declaration.getId());
main.setIsSimple(isSimple); main.setIsSimple(isSimple);
this.updateById(main); this.updateById(main);
// 2024-7-3 17:23:50 倩倩要求放开状态拦截,前端加按钮禁用即可 // 2024-7-3 17:23:50 倩倩要求放开状态拦截,前端加按钮禁用即可
...@@ -1534,10 +1536,22 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -1534,10 +1536,22 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
if (Common.isNotNull(pre.getEmpNature())) { if (Common.isNotNull(pre.getEmpNature())) {
if (tPreEmployeeProject != null) { if (tPreEmployeeProject != null) {
tPreEmployeeProject.setEmpNatrue(pre.getEmpNature()); tPreEmployeeProject.setEmpNatrue(pre.getEmpNature());
if (Common.isNotNull(pre.getContractType())) {
tPreEmployeeProject.setContractType(pre.getContractType());
}
if (Common.isNotNull(pre.getPosition())) {
tPreEmployeeProject.setPost(pre.getPosition());
}
if (Common.isNotNull(pre.getJoinLeaveDate())) {
tPreEmployeeProject.setEnjoinDate(pre.getJoinLeaveDate());
}
} }
main.setEmpNatrue(pre.getEmpNature()); main.setEmpNatrue(pre.getEmpNature());
} }
if (tPreEmployeeInfo != null) { if (tPreEmployeeInfo != null) {
if (Common.isNotNull(pre.getEmpPhone())) {
tPreEmployeeInfo.setEmpPhone(pre.getEmpPhone());
}
if (Common.isNotNull(pre.getEmpNature())) { if (Common.isNotNull(pre.getEmpNature())) {
tPreEmployeeInfo.setEmpNatrue(pre.getEmpNature()); tPreEmployeeInfo.setEmpNatrue(pre.getEmpNature());
} }
...@@ -1588,7 +1602,6 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -1588,7 +1602,6 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
auditLog.setAuditResult(status); auditLog.setAuditResult(status);
tPreEmpMainLogService.save(auditLog); tPreEmpMainLogService.save(auditLog);
main.setStatus(status);
main.setAuditId(user.getId()); main.setAuditId(user.getId());
main.setAuditRemark("简档自动审核通过"); main.setAuditRemark("简档自动审核通过");
main.setAuditName(user.getNickname()); main.setAuditName(user.getNickname());
...@@ -1930,6 +1943,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -1930,6 +1943,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
this.setBaseSexInfo(tPreEmployeeInfo); this.setBaseSexInfo(tPreEmployeeInfo);
if (isSimpleBoo) { if (isSimpleBoo) {
// 简档,仅重置部分信息: // 简档,仅重置部分信息:
if (Common.isNotNull(tPreEmployeeInfo.getEmpPhone())) {
emp.setEmpPhone(tPreEmployeeInfo.getEmpPhone());
}
if (Common.isNotNull(tPreEmployeeInfo.getEmpNatrue())) {
emp.setEmpNatrue(tPreEmployeeInfo.getEmpNatrue());
}
emp.setEmpName(tPreEmployeeInfo.getEmpName()); emp.setEmpName(tPreEmployeeInfo.getEmpName());
emp.setEmpIdcard(tPreEmployeeInfo.getEmpIdcard()); emp.setEmpIdcard(tPreEmployeeInfo.getEmpIdcard());
emp.setEmpPhone(tPreEmployeeInfo.getEmpPhone()); emp.setEmpPhone(tPreEmployeeInfo.getEmpPhone());
......
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