Commit 0b81f66d authored by huyuchen's avatar huyuchen

huych-入离职登记提交

parent dbc8e587
package com.yifu.cloud.plus.v1.yifu.archives.entity; package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity; import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
...@@ -89,6 +86,7 @@ public class EmployeeRegistrationPre extends BaseEntity { ...@@ -89,6 +86,7 @@ public class EmployeeRegistrationPre extends BaseEntity {
private String fileCity; private String fileCity;
@Schema(description = "档案所在地-县") @Schema(description = "档案所在地-县")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String fileTown; private String fileTown;
@Schema(description = "确认人") @Schema(description = "确认人")
......
...@@ -44,9 +44,9 @@ public class TEmployeeLog extends BaseEntity { ...@@ -44,9 +44,9 @@ public class TEmployeeLog extends BaseEntity {
private String id; private String id;
/** /**
* 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新 * 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新 4入职确认信息
*/ */
@Schema(description = "类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新") @Schema(description = "类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新;4入职确认信息")
private Integer type; private Integer type;
/** /**
......
...@@ -118,4 +118,16 @@ public class EmployeeRegistrationPreController { ...@@ -118,4 +118,16 @@ public class EmployeeRegistrationPreController {
public Boolean saveRegistPreInfo(@RequestBody EmployeeRegistrationPreVo preVo) { public Boolean saveRegistPreInfo(@RequestBody EmployeeRegistrationPreVo preVo) {
return employeeRegistrationPreService.saveRegistPreInfo(preVo); return employeeRegistrationPreService.saveRegistPreInfo(preVo);
} }
/**
* 入职确认信息信息修改
* @param employeeRegistrationPre 入职确认信息
* @return R
*/
@Operation(summary = "入职确认信息信息修改", description = "入职确认信息信息修改")
@SysLog("修改入职待建档表" )
@PostMapping("/updateCommonInfo")
public R updateCommonInfo(@RequestBody EmployeeRegistrationPre employeeRegistrationPre) {
return employeeRegistrationPreService.updateCommonInfo(employeeRegistrationPre);
}
} }
...@@ -143,4 +143,17 @@ public class TEmployeeLogController { ...@@ -143,4 +143,17 @@ public class TEmployeeLogController {
return R.ok(tEmployeeLogService.list(Wrappers.<TEmployeeLog>query().eq("PROJECT_ID", projectId) return R.ok(tEmployeeLogService.list(Wrappers.<TEmployeeLog>query().eq("PROJECT_ID", projectId)
.eq("TYPE", CommonConstants.ONE_INT).orderByDesc(CommonConstants.CREATE_TIME))); .eq("TYPE", CommonConstants.ONE_INT).orderByDesc(CommonConstants.CREATE_TIME)));
} }
/**
* @Description: 通过EMP_ID查询入职确认信息变更日志
* @Author: huyc
* @Date: 2025/3/17 19:06
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.util.List < com.yifu.cloud.plus.v1.yifu.archives.entity.TEmployeeLog>>
**/
@Operation(summary = "通过EMP_ID查询入职确认信息变更日志", description = "通过EMP_ID查询入职确认信息变更日志")
@GetMapping("/getPreLogById")
public R<List<TEmployeeLog>> getPreLogById(@RequestParam String id) {
return R.ok(tEmployeeLogService.list(Wrappers.<TEmployeeLog>query().eq("EMP_ID", id)
.eq("TYPE", CommonConstants.FOUR_INT).orderByDesc(CommonConstants.CREATE_TIME)));
}
} }
...@@ -52,4 +52,11 @@ public interface EmployeeRegistrationPreService extends IService<EmployeeRegistr ...@@ -52,4 +52,11 @@ public interface EmployeeRegistrationPreService extends IService<EmployeeRegistr
* @return * @return
*/ */
R updateRegistById(EmployeeRegistrationPre employeeRegistrationPre); R updateRegistById(EmployeeRegistrationPre employeeRegistrationPre);
/**
* 入职确认信息信息修改
* @param employeeRegistrationPre 入职确认信息表
* @return
*/
R updateCommonInfo(EmployeeRegistrationPre employeeRegistrationPre);
} }
...@@ -48,7 +48,7 @@ public interface TEmployeeLogService extends IService<TEmployeeLog> { ...@@ -48,7 +48,7 @@ public interface TEmployeeLogService extends IService<TEmployeeLog> {
* 生成修改记录 * 生成修改记录
* @Author pwang * @Author pwang
* @Date 2022-06-22 11:32 * @Date 2022-06-22 11:32
* @param type 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新 * @param type 类型:0人员档案;1项目档案;2人员和项目档案;3员工合同更新 4入职确认信息修改
* @param empId 档案id * @param empId 档案id
* @param projectId 项目id * @param projectId 项目id
* @param oldInfo * @param oldInfo
......
...@@ -10,6 +10,7 @@ import com.yifu.cloud.plus.v1.csp.vo.EmployeeRegistrationUpdateVo; ...@@ -10,6 +10,7 @@ import com.yifu.cloud.plus.v1.csp.vo.EmployeeRegistrationUpdateVo;
import com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre; import com.yifu.cloud.plus.v1.yifu.archives.entity.EmployeeRegistrationPre;
import com.yifu.cloud.plus.v1.yifu.archives.mapper.EmployeeRegistrationPreMapper; import com.yifu.cloud.plus.v1.yifu.archives.mapper.EmployeeRegistrationPreMapper;
import com.yifu.cloud.plus.v1.yifu.archives.service.EmployeeRegistrationPreService; import com.yifu.cloud.plus.v1.yifu.archives.service.EmployeeRegistrationPreService;
import com.yifu.cloud.plus.v1.yifu.archives.service.TEmployeeLogService;
import com.yifu.cloud.plus.v1.yifu.archives.vo.*; import com.yifu.cloud.plus.v1.yifu.archives.vo.*;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.CacheConstants; import com.yifu.cloud.plus.v1.yifu.common.core.constant.CacheConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.ClientNameConstants; import com.yifu.cloud.plus.v1.yifu.common.core.constant.ClientNameConstants;
...@@ -45,6 +46,9 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -45,6 +46,9 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
@Autowired @Autowired
private CspDaprUtils cspDaprUtils; private CspDaprUtils cspDaprUtils;
@Autowired
private TEmployeeLogService tEmployeeLogService;
/** /**
* 入职待建档表简单分页查询 * 入职待建档表简单分页查询
* @param employeeRegistrationPre 入职待建档表 * @param employeeRegistrationPre 入职待建档表
...@@ -221,6 +225,76 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -221,6 +225,76 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
return R.ok(); return R.ok();
} }
@Override
public R updateCommonInfo(EmployeeRegistrationPre employeeRegistrationPre) {
EmployeeRegistrationPre updatePre = baseMapper.selectById(employeeRegistrationPre.getId());
if (Common.isEmpty(updatePre)) {
return R.failed(CommonConstants.NO_DATA_TO_HANDLE);
}
//旧的对象,用来对比变更参数
EmployeeRegistrationPre comparePre = baseMapper.selectById(employeeRegistrationPre.getId());
//操作记录中字典值的转化
String natureItemBefore = null;
String natureItemAfter = null;
String contractItemBefore = null;
String contractItemAfter = null;
if (!updatePre.getContractType().equals(employeeRegistrationPre.getContractType())) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "personnel_type");
for (Map.Entry<String,String> entry:dicObj.entrySet()){
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(updatePre.getContractType())){
contractItemBefore = entry.getValue();
break;
}
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(employeeRegistrationPre.getContractType())){
contractItemAfter = entry.getValue();
break;
}
}
}
if (!updatePre.getEmpNature().equals(employeeRegistrationPre.getEmpNature())) {
Map<String,String> dicObj = (Map<String, String>) RedisUtil.redis.opsForValue().get(
CacheConstants.DICT_DETAILS + CommonConstants.COLON_STRING + "emp_natrue");
for (Map.Entry<String,String> entry:dicObj.entrySet()){
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(updatePre.getEmpNature())){
natureItemBefore = entry.getValue();
break;
}
if (Common.isNotNull(entry.getKey()) && entry.getKey().equals(employeeRegistrationPre.getEmpNature())){
natureItemAfter = entry.getValue();
break;
}
}
}
YifuUser user = SecurityUtils.getUser();
try {
updatePre.setServerItem(employeeRegistrationPre.getServerItem());
updatePre.setEmpNature(employeeRegistrationPre.getEmpNature());
updatePre.setContractType(employeeRegistrationPre.getContractType());
updatePre.setFileProvince(employeeRegistrationPre.getFileProvince());
updatePre.setFileCity(employeeRegistrationPre.getFileCity());
updatePre.setFileTown(employeeRegistrationPre.getFileTown());
baseMapper.updateById(employeeRegistrationPre);
if (null != natureItemBefore) {
comparePre.setEmpNature(natureItemBefore);
}
if (null != natureItemAfter) {
employeeRegistrationPre.setEmpNature(natureItemAfter);
}
if (null != contractItemBefore) {
comparePre.setContractType(contractItemBefore);
}
if (null != contractItemAfter) {
employeeRegistrationPre.setContractType(contractItemAfter);
}
tEmployeeLogService.saveModificationRecord(CommonConstants.dingleDigitIntArray[4],
employeeRegistrationPre.getId(), "", comparePre, employeeRegistrationPre,user);
} catch (Exception e) {
log.error("生成入职待确认信息修改操作日志异常", e);
}
return R.ok();
}
/** /**
* @Description: 获取前端客服的所有项目权限 * @Description: 获取前端客服的所有项目权限
* @Author: huych * @Author: huych
......
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