Commit 19cdee60 authored by hongguangwu's avatar hongguangwu

MVP1.7.1 预入职更新在项时的薪资人员

parent 3ed23908
......@@ -217,7 +217,12 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
baseMapper.deleteById(main);
main = null;
}
// 审核通过并且有在项,取在项
boolean empFirst = false;
if (main != null) {
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
empFirst = true;
}
// 2024-7-3 17:23:50 倩倩要求放开状态拦截,前端加按钮禁用即可
/* (CommonConstants.ONE_STRING.equals(main.getStatus())
|| CommonConstants.TWO_STRING.equals(main.getStatus()))
......@@ -231,8 +236,9 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
empId = tPreEmployeeInfo.getId();
// 预入职已审核+在项,取在项信息
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
if (empFirst) {
empId = employee.getId();
tPreEmployeeInfo = new TPreEmployeeInfo();
BeanUtil.copyProperties(employee, tPreEmployeeInfo, ID);
tPreEmployeeInfo.setOldId(employee.getId());
}
......@@ -243,7 +249,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
} else {
tPreEmployeeInfo = new TPreEmployeeInfo();
// 预入职已审核+在项,取在项信息
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
if (empFirst) {
empId = employee.getId();
BeanUtil.copyProperties(employee, tPreEmployeeInfo, ID);
tPreEmployeeInfo.setOldId(employee.getId());
......@@ -261,7 +267,8 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
// 预入职-项目档案表
if (tPreEmployeeProject != null) {
// 预入职已审核+在项,取在项信息
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
if (empFirst) {
tPreEmployeeProject = new TPreEmployeeProject();
BeanUtil.copyProperties(project, tPreEmployeeProject, ID);
tPreEmployeeProject.setOldId(project.getId());
}
......@@ -274,7 +281,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmployeeProject.setEmpIdcard(main.getEmpIdcard());
tPreEmployeeProject.setEmpName(main.getEmpName());
// 预入职已审核+在项,取在项信息
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
if (empFirst) {
BeanUtil.copyProperties(project, tPreEmployeeProject, ID);
tPreEmployeeProject.setOldId(project.getId());
}
......@@ -410,8 +417,13 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
// 预入职-员工不良记录表
TPreEmpBadRecord tPreEmpBadRecord = tPreEmpBadRecordService.getTPreEmpBadRecordList(id);
if (tPreEmpBadRecord == null) {
if (tPreEmpBadRecord == null || empFirst) {
String preId = null;
if (tPreEmpBadRecord != null) {
preId = tPreEmpBadRecord.getId();
}
tPreEmpBadRecord = new TPreEmpBadRecord();
tPreEmpBadRecord.setId(preId);
if (Common.isNotNull(empId)) {
TEmpBadRecord info = tEmpBadRecordService.getByEmpId(empId);
if (info != null) {
......@@ -428,13 +440,20 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpBadRecord.setCreateBy(user.getId());
tPreEmpBadRecord.setCreateName(user.getNickname());
tPreEmpBadRecord.setCreateTime(LocalDateTime.now());
if (Common.isEmpty(preId)) {
tPreEmpBadRecordService.save(tPreEmpBadRecord);
}
}
vo.setTpreEmpBadRecord(tPreEmpBadRecord);
// 预入职-紧急联络人
TPreEmpContactInfo tPreEmpContactInfo = tPreEmpContactInfoService.getTPreEmpContactInfoList(id);
if (tPreEmpContactInfo == null) {
if (tPreEmpContactInfo == null || empFirst) {
String preId = null;
if (tPreEmpContactInfo != null) {
preId = tPreEmpContactInfo.getId();
}
tPreEmpContactInfo = new TPreEmpContactInfo();
tPreEmpContactInfo.setId(preId);
if (Common.isNotNull(empId)) {
TEmpContactInfo info = tEmpContactInfoService.getByEmpId(empId);
if (info != null) {
......@@ -447,13 +466,20 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpContactInfo.setCreateBy(user.getId());
tPreEmpContactInfo.setCreateName(user.getNickname());
tPreEmpContactInfo.setCreateTime(LocalDateTime.now());
if (Common.isEmpty(preId)) {
tPreEmpContactInfoService.save(tPreEmpContactInfo);
}
}
vo.setTpreEmpContactInfo(tPreEmpContactInfo);
// 预入职-员工伤残信息表
TPreEmpDisabilityInfo tPreEmpDisabilityInfo = tPreEmpDisabilityInfoService.getTPreEmpDisabilityInfoList(id);
if (tPreEmpDisabilityInfo == null) {
if (tPreEmpDisabilityInfo == null || empFirst) {
String preId = null;
if (tPreEmpDisabilityInfo != null) {
preId = tPreEmpDisabilityInfo.getId();
}
tPreEmpDisabilityInfo = new TPreEmpDisabilityInfo();
tPreEmpDisabilityInfo.setId(preId);
if (Common.isNotNull(empId)) {
TEmpDisabilityInfo info = tEmpDisabilityInfoService.getByEmpId(empId);
if (info != null) {
......@@ -473,13 +499,20 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpDisabilityInfo.setCreateBy(user.getId());
tPreEmpDisabilityInfo.setCreateName(user.getNickname());
tPreEmpDisabilityInfo.setCreateTime(LocalDateTime.now());
if (Common.isEmpty(preId)) {
tPreEmpDisabilityInfoService.save(tPreEmpDisabilityInfo);
}
}
vo.setTpreEmpDisabilityInfo(tPreEmpDisabilityInfo);
// 预入职-员工学历信息表
TPreEmpEducation tPreEmpEducation = tPreEmpEducationService.getTPreEmpEducationList(id);
if (tPreEmpEducation == null) {
if (tPreEmpEducation == null || empFirst) {
String preId = null;
if (tPreEmpEducation != null) {
preId = tPreEmpEducation.getId();
}
tPreEmpEducation = new TPreEmpEducation();
tPreEmpEducation.setId(preId);
if (Common.isNotNull(empId)) {
TEmpEducation info = tEmpEducationService.getByEmpId(empId);
if (info != null) {
......@@ -510,7 +543,9 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpEducation.setCreateBy(user.getId());
tPreEmpEducation.setCreateName(user.getNickname());
tPreEmpEducation.setCreateTime(LocalDateTime.now());
if (Common.isEmpty(preId)) {
tPreEmpEducationService.save(tPreEmpEducation);
}
} else {
// 附件
List<TAttaInfo> attaInfoList = tAttaInfoService.getTAttaInfoListByDoMainId(tPreEmpEducation.getId());
......@@ -571,6 +606,49 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpFamilyService.save(record);
tPreEmpFamilyList.add(record);
}
} else if (empFirst) {
tPreEmpFamilyList = new ArrayList<>();
if (Common.isNotNull(empId)) {
List<TEmpFamily> infoList = tEmpFamilyService.getListByEmpId(empId);
if (infoList != null && !infoList.isEmpty()) {
TPreEmpFamily record;
for (TEmpFamily info : infoList) {
record = new TPreEmpFamily();
BeanUtil.copyProperties(info, record, ID);
record.setEmpId(empId);
record.setOldId(info.getId());
record.setSettleDomain(deptId);
if (employee != null) {
record.setEmpId(employee.getId());
record.setEmpName(employee.getEmpName());
record.setEmpCode(employee.getEmpCode());
}
record.setEmpIdcard(empIdCard);
record.setPreMainId(id);
if (Common.isEmpty(record.getCreateBy())) {
record.setCreateBy(user.getId());
record.setCreateName(user.getNickname());
record.setCreateTime(LocalDateTime.now());
}
tPreEmpFamilyList.add(record);
}
}
}
if (tPreEmpFamilyList.isEmpty()) {
TPreEmpFamily record = new TPreEmpFamily();
record.setSettleDomain(deptId);
if (employee != null) {
record.setEmpId(employee.getId());
record.setEmpName(employee.getEmpName());
record.setEmpCode(employee.getEmpCode());
}
record.setEmpIdcard(empIdCard);
record.setPreMainId(id);
record.setCreateBy(user.getId());
record.setCreateName(user.getNickname());
record.setCreateTime(LocalDateTime.now());
tPreEmpFamilyList.add(record);
}
}
vo.setTpreEmpFamilyList(tPreEmpFamilyList);
// 预入职-人员档案表
......@@ -580,7 +658,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
if (tPreEmployeeInfo == null) {
tPreEmployeeInfo = new TPreEmployeeInfo();
// 预入职已审核+在项,取在项信息
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
if (empFirst) {
BeanUtil.copyProperties(employee, tPreEmployeeInfo, ID);
tPreEmployeeInfo.setOldId(project.getId());
}
......@@ -609,7 +687,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
if (tPreEmployeeProject == null) {
tPreEmployeeProject = new TPreEmployeeProject();
// 预入职已审核+在项,取在项信息
if (CommonConstants.FOUR_STRING.equals(main.getStatus()) && employee != null && project != null) {
if (empFirst) {
BeanUtil.copyProperties(project, tPreEmployeeProject, ID);
tPreEmployeeProject.setOldId(project.getId());
}
......@@ -631,6 +709,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
}
vo.setTpreEmployeeProject(tPreEmployeeProject);
}
// 预入职-员工职业资格信息表
List<TPreEmpProfessionalQualification> tPreEmpProfessionalQualificationList = tPreEmpProfessionalService.getTPreEmpProfessionalQualificationList(id);
if (tPreEmpProfessionalQualificationList == null || tPreEmpProfessionalQualificationList.isEmpty()) {
......@@ -690,6 +769,62 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpProfessionalService.save(record);
tPreEmpProfessionalQualificationList.add(record);
}
} else if (empFirst) {
tPreEmpProfessionalQualificationList = new ArrayList<>();
if (Common.isNotNull(empId)) {
List<TEmpProfessionalQualification> infoList = tEmpProfessionalService.getListByEmpId(empId);
TPreEmpProfessionalQualification record;
if (infoList != null && !infoList.isEmpty()) {
for (TEmpProfessionalQualification info : infoList) {
record = new TPreEmpProfessionalQualification();
BeanUtil.copyProperties(info, record, ID);
record.setEmpId(empId);
record.setOldId(info.getId());
record.setSettleDomain(deptId);
if (employee != null) {
record.setEmpId(employee.getId());
record.setEmpName(employee.getEmpName());
record.setEmpCode(employee.getEmpCode());
}
// 附件
List<TAttaInfo> attaInfoList = tAttaInfoService.getTAttaInfoListByDoMainId(info.getId());
if (attaInfoList != null) {
URL url;
for (TAttaInfo atta : attaInfoList) {
url = ossUtil.getObjectUrl(null, atta.getAttaSrc());
atta.setAttaUrl(String.valueOf(url));
}
}
record.setAttaList(attaInfoList);
record.setPreMainId(id);
record.setEmpIdcard(empIdCard);
if (Common.isEmpty(record.getCreateBy())) {
record.setCreateBy(user.getId());
record.setCreateName(user.getNickname());
record.setCreateTime(LocalDateTime.now());
}
tPreEmpProfessionalQualificationList.add(record);
}
}
}
if (tPreEmpProfessionalQualificationList.isEmpty()) {
TPreEmpProfessionalQualification record = new TPreEmpProfessionalQualification();
record.setSettleDomain(deptId);
if (employee != null) {
record.setEmpId(employee.getId());
record.setEmpName(employee.getEmpName());
record.setEmpCode(employee.getEmpCode());
}
record.setEmpIdcard(empIdCard);
record.setPreMainId(id);
record.setAttaList(new ArrayList<>());
record.setCreateBy(user.getId());
record.setCreateName(user.getNickname());
record.setCreateTime(LocalDateTime.now());
tPreEmpProfessionalQualificationList.add(record);
}
} else {
for (TPreEmpProfessionalQualification info : tPreEmpProfessionalQualificationList) {
// 附件
......@@ -749,6 +884,45 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpOtherFileService.save(record);
tPreEmpOtherFileList.add(record);
}
} else if (empFirst) {
tPreEmpOtherFileList = new ArrayList<>();
if (Common.isNotNull(empId)) {
List<TEmpOtherFile> infoList = tEmpOtherFileService.getListByEmpId(empId);
TPreEmpOtherFile record;
if (infoList != null && !infoList.isEmpty()) {
for (TEmpOtherFile info : infoList) {
record = new TPreEmpOtherFile();
BeanUtil.copyProperties(info, record, ID);
record.setEmpId(empId);
record.setOldId(info.getId());
// 附件
List<TAttaInfo> attaInfoList = tAttaInfoService.getTAttaInfoListByDoMainId(info.getId());
if (attaInfoList != null) {
URL url;
for (TAttaInfo atta : attaInfoList) {
url = ossUtil.getObjectUrl(null, atta.getAttaSrc());
atta.setAttaUrl(String.valueOf(url));
}
}
record.setAttaList(attaInfoList);
record.setPreMainId(id);
if (Common.isEmpty(record.getCreateTime())) {
record.setCreateTime(LocalDateTime.now());
}
tPreEmpOtherFileList.add(record);
}
}
}
if (tPreEmpOtherFileList.isEmpty()) {
TPreEmpOtherFile record = new TPreEmpOtherFile();
if (employee != null) {
record.setEmpId(employee.getId());
}
record.setCreateTime(LocalDateTime.now());
record.setPreMainId(id);
record.setAttaList(new ArrayList<>());
tPreEmpOtherFileList.add(record);
}
} else {
for (TPreEmpOtherFile info : tPreEmpOtherFileList) {
// 附件
......@@ -811,12 +985,55 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
tPreEmpWorkRecordingService.save(record);
tPreEmpWorkRecordingList.add(record);
}
} else if (empFirst) {
tPreEmpWorkRecordingList = new ArrayList<>();
if (Common.isNotNull(empId)) {
List<TEmpWorkRecording> infoList = tEmpWorkRecordingService.getListByEmpId(empId);
TPreEmpWorkRecording record;
if (infoList != null && !infoList.isEmpty()) {
for (TEmpWorkRecording info : infoList) {
record = new TPreEmpWorkRecording();
BeanUtil.copyProperties(info, record, ID);
record.setEmpId(empId);
record.setOldId(info.getId());
record.setSettleDomain(deptId);
if (employee != null) {
record.setEmpId(employee.getId());
record.setEmpName(employee.getEmpName());
record.setEmpCode(employee.getEmpCode());
}
record.setEmpIdcard(empIdCard);
record.setPreMainId(id);
if (Common.isEmpty(record.getCreateBy())) {
record.setCreateBy(user.getId());
record.setCreateName(user.getNickname());
record.setCreateTime(LocalDateTime.now());
}
tPreEmpWorkRecordingList.add(record);
}
}
}
if (tPreEmpWorkRecordingList.isEmpty()) {
TPreEmpWorkRecording record = new TPreEmpWorkRecording();
record.setSettleDomain(deptId);
if (employee != null) {
record.setEmpId(employee.getId());
record.setEmpName(employee.getEmpName());
record.setEmpCode(employee.getEmpCode());
}
record.setEmpIdcard(empIdCard);
record.setPreMainId(id);
record.setCreateBy(user.getId());
record.setCreateName(user.getNickname());
record.setCreateTime(LocalDateTime.now());
tPreEmpWorkRecordingList.add(record);
}
}
vo.setTpreEmpWorkRecordingList(tPreEmpWorkRecordingList);
// 预入职-附件 9身份证 10 户口本;21(预入职申明签名);22(预入职确认签名);23(预入职pdf文件)
List<TAttaInfo> attaInfoList = tAttaInfoService.getTAttaInfoListByDoMainId(id);
if ((attaInfoList == null || attaInfoList.isEmpty()) && Common.isNotNull(empId)) {
if ((attaInfoList == null || attaInfoList.isEmpty() || empFirst) && Common.isNotNull(empId)) {
attaInfoList = tAttaInfoService.getTAttaInfoListByDoMainId(empId);
}
if (attaInfoList != null && !attaInfoList.isEmpty()) {
......
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