Commit b7afba65 authored by hongguangwu's avatar hongguangwu

MVP1.7.7-处理userId

parent 1e74e2d5
......@@ -435,4 +435,12 @@ public class TEmployeeProject extends BaseEntity {
@TableField(exist = false)
private String empDeptid;
@Schema(description = "操作的用户id")
@TableField(exist = false)
private String operationUserId;
@Schema(description = "操作的用户Name")
@TableField(exist = false)
private String operationUserName;
}
......@@ -49,4 +49,10 @@ public class TEmployeeProjectBelongDeptSearchCspVo {
@Schema(description = "项目档案创建与离职人")
private String empCreateAndLeaveUser;
@Schema(description = "登录人Id")
private String userId;
// 项目档案入离职日期,与日志确认接收时间比较
@Schema(description = "登录人姓名")
private String userName;
}
......@@ -2580,6 +2580,8 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
.last(CommonConstants.LAST_ONE_SQL));
if (Common.isNotNull(p)) {
p.setStatus(CommonConstants.ONE_INT);
p.setOperationUserId(vo.getCreateBy());
p.setOperationUserName(vo.getCreateName());
// hgw加所属部门逻辑:
tEmployeeProjectService.doSaveBelongDept(p, CommonConstants.ONE_STRING);
}
......
......@@ -2084,6 +2084,17 @@ public class TEmployeeProjectServiceImpl extends ServiceImpl<TEmployeeProjectMap
searchCspVo.setDeptId(p.getDeptId());
searchCspVo.setEmpIdCard(p.getEmpIdcard());
searchCspVo.setFeedbackType(feedbackType);
YifuUser user = SecurityUtils.getUser();
if (user != null && Common.isNotNull(user.getNickname())) {
searchCspVo.setUserId(p.getOperationUserId());
searchCspVo.setUserName(p.getOperationUserName());
} else if (Common.isNotNull(p.getOperationUserId())) {
searchCspVo.setUserId(p.getOperationUserId());
searchCspVo.setUserName(p.getOperationUserName());
} else {
searchCspVo.setUserId(p.getCreateBy());
searchCspVo.setUserName(p.getCreateName());
}
if (CommonConstants.ONE_STRING.equals(feedbackType)) {
searchCspVo.setEmpCreateAndLeaveTime(p.getCreateTime());
searchCspVo.setEmpCreateAndLeaveUser(p.getCreateName());
......
......@@ -22,12 +22,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yifu.cloud.plus.v1.csp.entity.TOperationLog;
import com.yifu.cloud.plus.v1.csp.service.TOperationLogService;
import com.yifu.cloud.plus.v1.csp.vo.TOperationLogSearchVo;
import com.yifu.cloud.plus.v1.yifu.archives.vo.TEmployeeProjectBelongDeptSearchCspVo;
import com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants;
import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog;
import com.yifu.cloud.plus.v1.yifu.common.security.annotation.Inner;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
......
......@@ -521,10 +521,6 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
* @return: boolean
**/
private boolean doSaveLogBatch(TEmployeeProjectBelongDeptSearchCspVo searchCspVo, List<TEmployeeProjectBelongDept> belongDeptList) {
YifuUser user = SecurityUtils.getUser();
if (user == null || Common.isEmpty(user.getId())) {
return true;
}
TOperationLog log;
List<TOperationLog> logList = new ArrayList<>();
String title = "已处理";
......@@ -543,8 +539,8 @@ public class EmployeeRegistrationServiceImpl extends ServiceImpl<EmployeeRegistr
log.setRemark("离职登记前已减员");
}
}
log.setCreateBy(user.getId());
log.setCreateName(user.getNickname());
log.setCreateBy(searchCspVo.getUserId());
log.setCreateName(searchCspVo.getUserName());
log.setCreateTime(LocalDateTime.now());
logList.add(log);
}
......
......@@ -67,7 +67,7 @@ public class TOperationLogServiceImpl extends ServiceImpl<TOperationLogMapper, T
if (searchVo.getLimitStart() >= 0 && searchVo.getLimitEnd() > 0) {
wrapper.last(" limit " + searchVo.getLimitStart() + "," + searchVo.getLimitEnd());
}
wrapper.orderByDesc(TOperationLog::getCreateTime);
wrapper.orderByAsc(TOperationLog::getCreateTime);
return baseMapper.selectList(wrapper);
}
......
......@@ -265,13 +265,16 @@
</select>
<!-- 将数据处理为已处理 -->
<select id="updateTwoRegistrationByIdCard" resultType="java.lang.Integer">
<update id="updateTwoRegistrationByIdCard">
update employee_registration a
set a.process_status= '2'
where a.emp_idcard = #{searchCspVo.empIdCard} and a.process_status= '0'
<if test="searchCspVo.deptId != null and searchCspVo.deptId.trim() != ''">
AND a.dept_id = #{searchCspVo.deptId}
</if>
<if test="searchCspVo.feedbackType != null and searchCspVo.feedbackType.trim() != ''">
AND a.feedback_type = #{searchCspVo.feedbackType}
</if>
</select>
</update>
</mapper>
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