Commit 94946298 authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent 9253345f
......@@ -933,30 +933,30 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
**/
@Override
public TEmployeeProjectBelongDept getZeroRegistrationAndUpdateTwo(TEmployeeProjectBelongDeptSearchCspVo searchCspVo) {
EmployeeRegistration registration = baseMapper.selectOne(Wrappers.<EmployeeRegistration>query().lambda()
.eq(EmployeeRegistration::getDeptId, searchCspVo.getDeptId())
.eq(EmployeeRegistration::getEmpIdcard, searchCspVo.getEmpIdCard())
.eq(EmployeeRegistration::getProcessStatus, CommonConstants.ZERO_STRING)
.eq(EmployeeRegistration::getDataSource,CommonConstants.TWO_STRING)
.last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(registration)) {
registration.setProcessStatus(CommonConstants.TWO_STRING);
baseMapper.updateById(registration);
logService.saveInnerLog(registration.getId(), CommonConstants.ZERO_STRING, RegistConstants.MESSAGE_FINISH, searchCspVo.getEmpCreateAndLeaveTime(),
searchCspVo.getEmpCreateAndLeaveUser(),null,searchCspVo.getUserId() );
return null;
// EmployeeRegistration registration = baseMapper.selectOne(Wrappers.<EmployeeRegistration>query().lambda()
// .eq(EmployeeRegistration::getDeptId, searchCspVo.getDeptId())
// .eq(EmployeeRegistration::getEmpIdcard, searchCspVo.getEmpIdCard())
// .eq(EmployeeRegistration::getProcessStatus, CommonConstants.ZERO_STRING)
// .eq(EmployeeRegistration::getDataSource,CommonConstants.TWO_STRING)
// .last(CommonConstants.LAST_ONE_SQL));
// if (Common.isNotNull(registration)) {
// registration.setProcessStatus(CommonConstants.TWO_STRING);
// baseMapper.updateById(registration);
// logService.saveInnerLog(registration.getId(), CommonConstants.ZERO_STRING, RegistConstants.MESSAGE_FINISH, searchCspVo.getEmpCreateAndLeaveTime(),
// searchCspVo.getEmpCreateAndLeaveUser(),null,searchCspVo.getUserId() );
// return null;
// } else {
List<TEmployeeProjectBelongDept> belongDeptList = baseMapper.getZeroRegistrationByIdCard(searchCspVo);
if (belongDeptList != null && !belongDeptList.isEmpty()) {
// 1:加日志
if (doSaveLogBatch(searchCspVo, belongDeptList)) return null;
// 更新为已处理
baseMapper.updateTwoRegistrationByIdCard(searchCspVo);
return belongDeptList.get(0);
} else {
List<TEmployeeProjectBelongDept> belongDeptList = baseMapper.getZeroRegistrationByIdCard(searchCspVo);
if (belongDeptList != null && !belongDeptList.isEmpty()) {
// 1:加日志
if (doSaveLogBatch(searchCspVo, belongDeptList)) return null;
// 更新为已处理
baseMapper.updateTwoRegistrationByIdCard(searchCspVo);
return belongDeptList.get(0);
} else {
return null;
}
return null;
}
// }
}
/**
......@@ -974,8 +974,8 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
log.setMainId(belongDept.getId());
log.setType(CommonConstants.ZERO_STRING);
log.setTitle(title);
log.setOperationTime(searchCspVo.getEmpCreateAndLeaveTime());
log.setOperationName(searchCspVo.getEmpCreateAndLeaveUser());
log.setOperationTime(searchCspVo.getEmpCreateAndLeaveTime());
if (searchCspVo.getEmpCreateAndLeaveTime() != null && belongDept.getLogCreateTime() != null
&& searchCspVo.getEmpCreateAndLeaveTime().isBefore(belongDept.getLogCreateTime())) {
if (CommonConstants.ONE_STRING.equals(searchCspVo.getFeedbackType())) {
......
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