Commit b7afba65 authored by hongguangwu's avatar hongguangwu

MVP1.7.7-处理userId

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