Commit 6a59ecd7 authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent a8404be4
......@@ -86,6 +86,8 @@ public interface EmployeeRegistrationPreService extends IService<EmployeeRegistr
void updatePreStatusToEnd(String deptNo, String empIdcard);
void updatePreStatusToOne(String deptNo, String empIdcard);
// 更新为待审核
void updatePreStatusToTwo(String deptId, String empIdCard);
......
......@@ -644,6 +644,19 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
}
}
@Override
public void updatePreStatusToOne(String deptNo, String empIdcard) {
EmployeeRegistrationPre registrationPre = baseMapper.selectOne(Wrappers.<EmployeeRegistrationPre>query().lambda()
.eq(EmployeeRegistrationPre::getEmpIdcard, empIdcard)
.eq(EmployeeRegistrationPre::getDeptNo, deptNo)
.eq(EmployeeRegistrationPre::getProcessStatus, CommonConstants.TWO_STRING)
.last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(registrationPre)) {
registrationPre.setProcessStatus(CommonConstants.ONE_STRING);
baseMapper.updateById(registrationPre);
}
}
@Override
public void updatePreStatusToTwo(String deptId, String empIdCard) {
EmployeeRegistrationPre registrationPre = baseMapper.selectOne(Wrappers.<EmployeeRegistrationPre>query().lambda()
......
......@@ -2877,6 +2877,10 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
PreEmpMainDetailVo vo = voR.getData();
tPreEmpMainLogService.save(auditLog);
this.updateById(preEmpMain);
if (CommonConstants.THREE_STRING.equals(status)) {
// 更新入职待建档状态为信息待填写
registrationPreService.updatePreStatusToOne(preEmpMain.getDeptNo(),preEmpMain.getEmpIdcard());
}
if (CommonConstants.FOUR_STRING.equals(status)) {
// true 简档
boolean isSimpleBoo = false;
......
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