Commit 57e735ca authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent dd1dadb8
...@@ -267,7 +267,8 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -267,7 +267,8 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
//新增操作记录 //新增操作记录
EmployeeRegistrationUpdateVo receiveVo = new EmployeeRegistrationUpdateVo(); EmployeeRegistrationUpdateVo receiveVo = new EmployeeRegistrationUpdateVo();
receiveVo.setEmployeeName(user.getNickname()); receiveVo.setEmployeeName(user.getNickname());
receiveVo.setId(updatePre.getId()); receiveVo.setDeptNo(updatePre.getDeptNo());
receiveVo.setEmpIdcard(updatePre.getEmpIdcard());
receiveVo.setReason(employeeRegistrationPre.getReason()); receiveVo.setReason(employeeRegistrationPre.getReason());
receiveVo.setEmployeeId(user.getId()); receiveVo.setEmployeeId(user.getId());
try { try {
......
...@@ -725,8 +725,10 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -725,8 +725,10 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
@Override @Override
public Boolean updateRegistByPreInfo(EmployeeRegistrationUpdateVo updateVo) { public Boolean updateRegistByPreInfo(EmployeeRegistrationUpdateVo updateVo) {
EmployeeRegistration registration = baseMapper.selectOne(Wrappers.<EmployeeRegistration>query().lambda() EmployeeRegistration registration = baseMapper.selectOne(Wrappers.<EmployeeRegistration>query().lambda()
.eq(EmployeeRegistration::getId, updateVo.getId()) .eq(EmployeeRegistration::getDeptNo, updateVo.getDeptNo())
.in(EmployeeRegistration::getProcessStatus, CommonConstants.processStatus)); .eq(EmployeeRegistration::getEmpIdcard, updateVo.getEmpIdcard())
.in(EmployeeRegistration::getProcessStatus, CommonConstants.processStatus)
.last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(registration)) { if (Common.isNotNull(registration)) {
registration.setProcessStatus(CommonConstants.THREE_STRING); registration.setProcessStatus(CommonConstants.THREE_STRING);
baseMapper.updateById(registration); baseMapper.updateById(registration);
......
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