Commit d169b110 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8

parents b9b3e1e5 9821423d
...@@ -231,11 +231,12 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -231,11 +231,12 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
if (Common.isNotNull(preVo.getExpectedCollectionTime())) { if (Common.isNotNull(preVo.getExpectedCollectionTime())) {
pre.setExpectedCollectionTime(LocalDateTimeUtils.dateToLocalDateTime(preVo.getExpectedCollectionTime())); pre.setExpectedCollectionTime(LocalDateTimeUtils.dateToLocalDateTime(preVo.getExpectedCollectionTime()));
} }
if (Common.isNotNull(preExit)) { if (Common.isNotNull(preExit)) {
pre.setId(preExit.getId()); pre.setId(preExit.getId());
baseMapper.deleteById(preExit); baseMapper.deleteById(preExit);
}
baseMapper.insert(pre); baseMapper.insert(pre);
if (Common.isNotNull(preExit)) {
String natureItemBefore = null; String natureItemBefore = null;
String natureItemAfter = null; String natureItemAfter = null;
String contractItemBefore = null; String contractItemBefore = null;
...@@ -244,13 +245,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -244,13 +245,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
String contractXfAfter = null; String contractXfAfter = null;
if (!preExit.getContractType().equals(pre.getContractType())) { if (!preExit.getContractType().equals(pre.getContractType())) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get( Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type"); CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type");
for (Map.Entry<String,String> entry:dicObj.entrySet()){ for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractType())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractType())) {
contractItemBefore = entry.getValue(); contractItemBefore = entry.getValue();
} }
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractType())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractType())) {
contractItemAfter = entry.getValue(); contractItemAfter = entry.getValue();
} }
if (null != contractItemBefore && null != contractItemAfter) { if (null != contractItemBefore && null != contractItemAfter) {
...@@ -259,13 +260,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -259,13 +260,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} }
} }
if (!preExit.getEmpNature().equals(pre.getEmpNature())) { if (!preExit.getEmpNature().equals(pre.getEmpNature())) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get( Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "emp_natrue"); CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "emp_natrue");
for (Map.Entry<String,String> entry:dicObj.entrySet()){ for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getEmpNature())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getEmpNature())) {
natureItemBefore = entry.getValue(); natureItemBefore = entry.getValue();
} }
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getEmpNature())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getEmpNature())) {
natureItemAfter = entry.getValue(); natureItemAfter = entry.getValue();
} }
if (null != natureItemAfter && null != natureItemBefore) { if (null != natureItemAfter && null != natureItemBefore) {
...@@ -274,20 +275,20 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -274,20 +275,20 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} }
} }
if (null != preExit.getContractSubName() && null == pre.getContractSubName()) { if (null != preExit.getContractSubName() && null == pre.getContractSubName()) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get( Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub"); CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
for (Map.Entry<String,String> entry:dicObj.entrySet()){ for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractSubName())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractSubName())) {
contractXfBefore = entry.getValue(); contractXfBefore = entry.getValue();
break; break;
} }
} }
} }
if (null == preExit.getContractSubName() && null != pre.getContractSubName()) { if (null == preExit.getContractSubName() && null != pre.getContractSubName()) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get( Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub"); CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
for (Map.Entry<String,String> entry:dicObj.entrySet()){ for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractSubName())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractSubName())) {
contractXfAfter = entry.getValue(); contractXfAfter = entry.getValue();
break; break;
} }
...@@ -295,13 +296,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -295,13 +296,13 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} }
if (null != preExit.getContractSubName() && null != pre.getContractSubName() if (null != preExit.getContractSubName() && null != pre.getContractSubName()
&& !preExit.getContractSubName().equals(pre.getContractSubName())) { && !preExit.getContractSubName().equals(pre.getContractSubName())) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get( Map<String, String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub"); CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type_sub");
for (Map.Entry<String,String> entry:dicObj.entrySet()){ for (Map.Entry<String, String> entry : dicObj.entrySet()) {
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractSubName())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(preExit.getContractSubName())) {
contractXfBefore = entry.getValue(); contractXfBefore = entry.getValue();
} }
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractSubName())){ if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(pre.getContractSubName())) {
contractXfAfter = entry.getValue(); contractXfAfter = entry.getValue();
} }
if (null != contractXfBefore && null != contractXfAfter) { if (null != contractXfBefore && null != contractXfAfter) {
...@@ -310,7 +311,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -310,7 +311,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} }
} }
if (!preExit.getProcessStatus().equals(pre.getProcessStatus())) { if (!preExit.getProcessStatus().equals(pre.getProcessStatus())) {
preExit.setProcessStatus(CommonConstants.THREE_STRING.equals(preExit.getProcessStatus()) ? "拒绝入职": "已完成"); preExit.setProcessStatus(CommonConstants.THREE_STRING.equals(preExit.getProcessStatus()) ? "拒绝入职" : "已完成");
pre.setProcessStatus("短信待发放"); pre.setProcessStatus("短信待发放");
} }
if (null != natureItemBefore) { if (null != natureItemBefore) {
...@@ -332,7 +333,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -332,7 +333,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
pre.setContractSubName(contractXfAfter); pre.setContractSubName(contractXfAfter);
} }
tEmployeeLogService.saveModificationRecord(CommonConstants.dingleDigitIntArray[4], tEmployeeLogService.saveModificationRecord(CommonConstants.dingleDigitIntArray[4],
pre.getId(), "", preExit, pre,pre.getCreateBy(),pre.getCreateName()); pre.getId(), "", preExit, pre, pre.getCreateBy(), pre.getCreateName());
} }
if (Common.isNotNull(preVo.getExpectedCollectionTime())) { if (Common.isNotNull(preVo.getExpectedCollectionTime())) {
// 事务提交后触发调度 // 事务提交后触发调度
......
...@@ -933,19 +933,19 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -933,19 +933,19 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
**/ **/
@Override @Override
public TEmployeeProjectBelongDept getZeroRegistrationAndUpdateTwo(TEmployeeProjectBelongDeptSearchCspVo searchCspVo) { public TEmployeeProjectBelongDept getZeroRegistrationAndUpdateTwo(TEmployeeProjectBelongDeptSearchCspVo searchCspVo) {
EmployeeRegistration registration = baseMapper.selectOne(Wrappers.<EmployeeRegistration>query().lambda() // EmployeeRegistration registration = baseMapper.selectOne(Wrappers.<EmployeeRegistration>query().lambda()
.eq(EmployeeRegistration::getDeptId, searchCspVo.getDeptId()) // .eq(EmployeeRegistration::getDeptId, searchCspVo.getDeptId())
.eq(EmployeeRegistration::getEmpIdcard, searchCspVo.getEmpIdCard()) // .eq(EmployeeRegistration::getEmpIdcard, searchCspVo.getEmpIdCard())
.eq(EmployeeRegistration::getProcessStatus, CommonConstants.ZERO_STRING) // .eq(EmployeeRegistration::getProcessStatus, CommonConstants.ZERO_STRING)
.eq(EmployeeRegistration::getDataSource,CommonConstants.TWO_STRING) // .eq(EmployeeRegistration::getDataSource,CommonConstants.TWO_STRING)
.last(CommonConstants.LAST_ONE_SQL)); // .last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(registration)) { // if (Common.isNotNull(registration)) {
registration.setProcessStatus(CommonConstants.TWO_STRING); // registration.setProcessStatus(CommonConstants.TWO_STRING);
baseMapper.updateById(registration); // baseMapper.updateById(registration);
logService.saveInnerLog(registration.getId(), CommonConstants.ZERO_STRING, RegistConstants.MESSAGE_FINISH, searchCspVo.getEmpCreateAndLeaveTime(), // logService.saveInnerLog(registration.getId(), CommonConstants.ZERO_STRING, RegistConstants.MESSAGE_FINISH, searchCspVo.getEmpCreateAndLeaveTime(),
searchCspVo.getEmpCreateAndLeaveUser(),RegistConstants.BEFORE_IN_PROJECT,searchCspVo.getUserId() ); // searchCspVo.getEmpCreateAndLeaveUser(),null,searchCspVo.getUserId() );
return null; // return null;
} else { // } else {
List<TEmployeeProjectBelongDept> belongDeptList = baseMapper.getZeroRegistrationByIdCard(searchCspVo); List<TEmployeeProjectBelongDept> belongDeptList = baseMapper.getZeroRegistrationByIdCard(searchCspVo);
if (belongDeptList != null && !belongDeptList.isEmpty()) { if (belongDeptList != null && !belongDeptList.isEmpty()) {
// 1:加日志 // 1:加日志
...@@ -956,7 +956,7 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -956,7 +956,7 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
} else { } else {
return null; return null;
} }
} // }
} }
/** /**
...@@ -974,8 +974,8 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr ...@@ -974,8 +974,8 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
log.setMainId(belongDept.getId()); log.setMainId(belongDept.getId());
log.setType(CommonConstants.ZERO_STRING); log.setType(CommonConstants.ZERO_STRING);
log.setTitle(title); log.setTitle(title);
log.setOperationTime(searchCspVo.getEmpCreateAndLeaveTime());
log.setOperationName(searchCspVo.getEmpCreateAndLeaveUser()); log.setOperationName(searchCspVo.getEmpCreateAndLeaveUser());
log.setOperationTime(searchCspVo.getEmpCreateAndLeaveTime());
if (searchCspVo.getEmpCreateAndLeaveTime() != null && belongDept.getLogCreateTime() != null if (searchCspVo.getEmpCreateAndLeaveTime() != null && belongDept.getLogCreateTime() != null
&& searchCspVo.getEmpCreateAndLeaveTime().isBefore(belongDept.getLogCreateTime())) { && searchCspVo.getEmpCreateAndLeaveTime().isBefore(belongDept.getLogCreateTime())) {
if (CommonConstants.ONE_STRING.equals(searchCspVo.getFeedbackType())) { if (CommonConstants.ONE_STRING.equals(searchCspVo.getFeedbackType())) {
......
...@@ -199,7 +199,6 @@ public class TInsuranceDetailController { ...@@ -199,7 +199,6 @@ public class TInsuranceDetailController {
*/ */
@Operation(summary = "通过id查询", description = "通过id查询") @Operation(summary = "通过id查询", description = "通过id查询")
@GetMapping("/{id}") @GetMapping("/{id}")
@PreAuthorize("@pms.hasPermission('insurance_custserve_insure_detail')")
public R<InsuranceDetailVO> getInsuranceDetailById(@PathVariable("id") String id) { public R<InsuranceDetailVO> getInsuranceDetailById(@PathVariable("id") String id) {
return R.ok(tInsuranceDetailService.getInsuranceDetailById(id)); return R.ok(tInsuranceDetailService.getInsuranceDetailById(id));
} }
......
...@@ -7817,7 +7817,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -7817,7 +7817,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
YifuUser user = SecurityUtils.getUser(); YifuUser user = SecurityUtils.getUser();
long roleId = 1851541100126863362L; long roleId = 1851541100126863362L;
boolean isSsc = this.haveRole(user, roleId); boolean isSsc = this.haveRole(user, roleId);
if ("许瑞玲".equals(user.getNickname()) || "1".equals(user.getId()) || isSsc) { if (isSsc) {
condition.setCreateBy(null); condition.setCreateBy(null);
} else { } else {
condition.setCreateBy(user.getId()); condition.setCreateBy(user.getId());
......
...@@ -148,12 +148,13 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper, ...@@ -148,12 +148,13 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
SysConfig sysConfig) { SysConfig sysConfig) {
if (Common.isNotNull(userMap) && Common.isNotKong(domainHashMap)){ if (Common.isNotNull(userMap) && Common.isNotKong(domainHashMap)){
TSettleDomain domain; TSettleDomain domain;
SysUser user = null; SysUser user;
String loginName; String loginName;
String nickName = null; String nickName;
String userId = null; String userId;
for (TInsuranceAlert alert: list){ for (TInsuranceAlert alert: list){
userId = null; userId = null;
nickName = null;
if (Common.isNotNull(userMap.get(alert.getCreateBy()))){ if (Common.isNotNull(userMap.get(alert.getCreateBy()))){
domain = domainHashMap.get(alert.getDeptNo()); domain = domainHashMap.get(alert.getDeptNo());
if (Common.isNotNull(domain)){ if (Common.isNotNull(domain)){
......
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