package org.jeecg.modules.eam.service.impl; import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.util.StrUtil; import com.alibaba.fastjson.JSON; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.apache.commons.lang3.StringUtils; import org.apache.shiro.SecurityUtils; import org.flowable.engine.TaskService; import org.flowable.task.api.Task; import org.jeecg.common.api.vo.Result; import org.jeecg.common.constant.CommonConstant; import org.jeecg.common.constant.DataBaseConstant; import org.jeecg.common.exception.JeecgBootException; import org.jeecg.common.system.vo.LoginUser; import org.jeecg.common.util.oConvertUtils; import org.jeecg.modules.eam.aspect.annotation.EquipmentHistoryLog; import org.jeecg.modules.eam.constant.AssetStatusEnum; import org.jeecg.modules.eam.constant.BusinessCodeConst; import org.jeecg.modules.eam.constant.EquipmentOperationTagEnum; import org.jeecg.modules.eam.constant.EquipmentScrapStatusEnum; import org.jeecg.modules.eam.entity.EamEquipment; import org.jeecg.modules.eam.entity.EamEquipmentScrap; import org.jeecg.modules.eam.mapper.EamEquipmentScrapMapper; import org.jeecg.modules.eam.request.EamEquipmentScrapQuery; import org.jeecg.modules.eam.request.EamEquipmentScrapRequest; import org.jeecg.modules.eam.service.IEamEquipmentScrapService; import org.jeecg.modules.eam.service.IEamEquipmentService; import org.jeecg.modules.flowable.apithird.business.entity.FlowMyBusiness; import org.jeecg.modules.flowable.apithird.business.service.IFlowMyBusinessService; import org.jeecg.modules.flowable.apithird.service.FlowCallBackServiceI; import org.jeecg.modules.flowable.apithird.service.FlowCommonService; import org.jeecg.modules.flowable.service.IFlowDefinitionService; import org.jeecg.modules.flowable.service.IFlowTaskService; import org.jeecg.modules.system.service.ISysUserService; import org.jeecg.modules.system.vo.UserSelector; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import javax.annotation.Resource; import java.util.*; import java.util.stream.Collectors; /** * @Description: 设备报废(报废 ( 转出 )) * @Author: jeecg-boot * @Date: 2025-05-15 * @Version: V1.0 */ @Service("IEamEquipmentScrapService") public class EamEquipmentScrapServiceImpl extends ServiceImpl implements IEamEquipmentScrapService, FlowCallBackServiceI { @Resource private EamEquipmentScrapMapper equipmentScrapMapper; @Autowired private IEamEquipmentService eamEquipmentService; @Autowired private FlowCommonService flowCommonService; @Autowired private IFlowDefinitionService flowDefinitionService; @Autowired private IFlowMyBusinessService flowMyBusinessService; @Autowired private TaskService taskService; @Autowired private IFlowTaskService flowTaskService; @Autowired private ISysUserService sysUserService; @Override public IPage queryPageList(Page page, EamEquipmentScrapQuery query) { QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.eq("wmo.del_flag", CommonConstant.DEL_FLAG_0); //用户数据权限 LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); if (sysUser == null) { return page; } if (StringUtils.isNotBlank(sysUser.getEquipmentIds())) { //选择了设备,根据设备id过滤设备 List equipArr = Arrays.asList(sysUser.getEquipmentIds().split(",")); queryWrapper.in("e.equipment_code", equipArr); } else { //没有选择设备,根据车间过滤设备 queryWrapper.exists("select 1 from mdc_user_production t where t.user_id={0} and t.pro_id=e.org_id ", sysUser.getId()); } //控制待提交状态的数据只能本人查看 queryWrapper.and(i -> i.ne("wmo.scrap_status", EquipmentScrapStatusEnum.WAIT_SUBMIT).or().eq("wmo.report_user", sysUser.getUsername())); //查询条件过滤 if (query != null) { if (StringUtils.isNotBlank(query.getEquipmentId())) { queryWrapper.eq("wmo.equipment_id", query.getEquipmentId()); } if (StringUtils.isNotBlank(query.getCode())) { queryWrapper.like("wmo.code", query.getCode()); } if (StringUtils.isNotBlank(query.getSealStatus())) { queryWrapper.eq("wmo.scrap_status", query.getSealStatus()); } if (query.getLeanDateBegin() != null && query.getLeanDateEnd() != null) { queryWrapper.between("wmo.lean_start_time", query.getLeanDateBegin(), query.getLeanDateEnd()); } //排序 if (StringUtils.isNotBlank(query.getColumn()) && StringUtils.isNotBlank(query.getOrder())) { String column = query.getColumn(); if (column.endsWith(CommonConstant.DICT_TEXT_SUFFIX)) { column = column.substring(0, column.lastIndexOf(CommonConstant.DICT_TEXT_SUFFIX)); } if (DataBaseConstant.SQL_ASC.equalsIgnoreCase(query.getOrder())) { queryWrapper.orderByAsc("wmo." + oConvertUtils.camelToUnderline(column)); } else { queryWrapper.orderByDesc("wmo." + oConvertUtils.camelToUnderline(column)); } } else { queryWrapper.orderByDesc("wmo.create_time"); } } else { queryWrapper.orderByDesc("wmo.create_time"); } return equipmentScrapMapper.queryPageList(page, queryWrapper); } @Override @Transactional(rollbackFor = Exception.class) public boolean addScrap(EamEquipmentScrap request) { //检查设备 EamEquipment equipment = eamEquipmentService.getById(request.getEquipmentId()); if (equipment == null) { throw new JeecgBootException("设备不存在!"); } if (!AssetStatusEnum.NORMAL.name().equals(equipment.getAssetStatus())) { throw new JeecgBootException("此设备当前资产状态不允许报废!"); } LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); if (sysUser == null) { throw new JeecgBootException("当前用户无法添加借用记录!"); } request.setReportUser(sysUser.getUsername()); return equipmentScrapMapper.insert(request) > 0; } @Override @Transactional(rollbackFor = Exception.class) public boolean submit(String id) { EamEquipmentScrap entity = equipmentScrapMapper.selectById(id); if (entity == null) { throw new JeecgBootException("要提交的数据不存在,请刷新重试!"); } if (!EquipmentScrapStatusEnum.WAIT_SUBMIT.name().equals(entity.getScrapStatus())) { throw new JeecgBootException("当前数据状态不允许编辑!"); } //检查设备 EamEquipment equipment = eamEquipmentService.getById(entity.getEquipmentId()); if (equipment == null) { throw new JeecgBootException("设备不存在!"); } LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); if (sysUser == null) { throw new JeecgBootException("当前用户无法编辑报废(转出)记录!"); } UpdateWrapper updateWrapper = new UpdateWrapper<>(); updateWrapper.set("scrap_status", EquipmentScrapStatusEnum.WAIT_SUBMIT.name()); updateWrapper.eq("id", id); updateWrapper.eq("report_user", sysUser.getUsername()); boolean success = super.update(updateWrapper); if (success) { equipment.setAssetStatus(AssetStatusEnum.SCRAP.name()); // 设备报废(转出) eamEquipmentService.updateById(equipment); } //启动审批流程 flowCommonService.initActBusiness("工单号:" + entity.getCode() + ";设备编号: " + equipment.getEquipmentCode() + ";进行设备报废(转出)", entity.getId(), "IEamEquipmentScrapService", "equipment_scrap", null); Map variables = new HashMap<>(); variables.put("dataId", entity.getId()); variables.put("organization", entity.getScrapReason()); variables.put("comment", entity.getScrapReason()); variables.put("proofreading", true); // 分配给设备管理员 List userSelectors = sysUserService.selectOperatorList(equipment.getEquipmentCode(), equipment.getOrgId(), BusinessCodeConst.PCR0004); if (CollectionUtil.isEmpty(userSelectors)) { throw new JeecgBootException("设备未分配给设备管理员,无法进入下级审批!"); } List usernames = userSelectors.stream().map(UserSelector::getUsername).collect(Collectors.toList()); variables.put("NextAssignee", usernames); Result result = flowDefinitionService.startProcessInstanceByKey("equipment_scrap", variables); if (result != null) { entity.setScrapTime(new Date()); entity.setScrapStatus(EquipmentScrapStatusEnum.WAIT_CHECK.name()); //保存工单 equipmentScrapMapper.updateById(entity); return result.isSuccess(); } return true; } @Override @Transactional(rollbackFor = Exception.class) @EquipmentHistoryLog(operationTag = EquipmentOperationTagEnum.SCRAPPED, businessTable = "eam_equipment_scrap") public EamEquipmentScrap approval(EamEquipmentScrapRequest request) { EamEquipmentScrap entity = equipmentScrapMapper.selectById(request.getId()); if (entity == null) { throw new JeecgBootException("审批的数据已删除,请刷新重试!"); } // 获取当前登录用户 LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); if (user == null || StrUtil.isBlank(user.getId())) { throw new JeecgBootException("未获取到登录用户,请重新登录后再试!"); } request.setApprovalUser(user.getUsername()); // 获取流程业务记录 FlowMyBusiness flowMyBusiness = flowMyBusinessService.getFlowMyBusiness(request.getInstanceId()); if (flowMyBusiness == null) { throw new JeecgBootException("流程实例不存在,请刷新后重试!"); } boolean userAuthorized = isUserAuthorized(flowMyBusiness, user); if (!userAuthorized) { throw new JeecgBootException("用户无权操作此任务,请刷新后重试!"); } // 认领任务 if (!claimTask(flowMyBusiness.getTaskId(), user)) { throw new JeecgBootException("任务不存在、已完成或已被他人认领!"); } EamEquipment equipment = eamEquipmentService.getById(entity.getEquipmentId()); if (equipment == null) { throw new JeecgBootException("设备不存在,请检查!"); } EquipmentScrapStatusEnum status = EquipmentScrapStatusEnum.getInstance(entity.getScrapStatus()); if (status == null) { return null; } //流程变量 Map values = new HashMap<>(); // 审批 if (status == EquipmentScrapStatusEnum.WAIT_CHECK) {//执行完成 values.put("dataId", entity.getId()); values.put("organization", request.getApprovalComment()); values.put("comment", request.getApprovalComment()); values.put("approvalDealType", request.getApprovalDealType()); request.setComment(request.getApprovalComment()); entity.setApprovalUser(user.getUsername());// 审核人 entity.setApprovalComment(request.getApprovalComment());// 审核意见 entity.setApprovalTime(new Date());// 审核时间 entity.setApprovalDealType(request.getApprovalDealType()); // 审批类型 // 验证通过还是驳回 if (request.getApprovalDealType().equals("1")) { //设置entity entity.setScrapStatus(EquipmentScrapStatusEnum.COMPLETE.name()); List userApprovalList = new ArrayList<>(Collections.singletonList(entity.getReportUser())); values.put("NextAssignee", userApprovalList); // 修改设备状态 equipment.setAssetStatus(AssetStatusEnum.SCRAP.name()); } else { //设置entity entity.setScrapStatus(EquipmentScrapStatusEnum.COMPLETE.name()); // 修改设备状态 equipment.setAssetStatus(AssetStatusEnum.NORMAL.name()); } entity.setApprovalUser(user.getUsername()); entity.setApprovalComment(request.getApprovalComment()); entity.setApprovalTime(new Date()); eamEquipmentService.updateById(equipment); } request.setValues(values); // 完成流程任务 Result result = flowTaskService.complete(request); if (!result.isSuccess()) { throw new JeecgBootException("审批失败,请刷新查看!"); } //保存工单 equipmentScrapMapper.updateById(entity); return entity; } @Override @Transactional(rollbackFor = Exception.class) public boolean editScrap(EamEquipmentScrap request) { EamEquipmentScrap entity = equipmentScrapMapper.selectById(request.getId()); if (entity == null) { throw new JeecgBootException("要编辑的数据不存在,请刷新重试!"); } if (!EquipmentScrapStatusEnum.WAIT_SUBMIT.name().equals(entity.getScrapStatus())) { throw new JeecgBootException("当前数据状态不允许编辑!"); } //检查设备 EamEquipment equipment = eamEquipmentService.getById(request.getEquipmentId()); if (equipment == null) { throw new JeecgBootException("设备不存在!"); } LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); if (sysUser == null) { throw new JeecgBootException("当前用户无法编辑报废记录!"); } UpdateWrapper updateWrapper = new UpdateWrapper<>(); updateWrapper.set("equipment_id", request.getEquipmentId()); updateWrapper.set("remark", request.getRemark()); updateWrapper.set("scrap_reason", request.getScrapReason()); updateWrapper.set("scrap_amount", request.getScrapAmount()); updateWrapper.set("scrap_type", request.getScrapType()); updateWrapper.eq("id", request.getId()); updateWrapper.eq("report_user", sysUser.getUsername()); return super.update(updateWrapper); } @Override public void afterFlowHandle(FlowMyBusiness business) { business.getTaskNameId();//接下来审批的节点 business.getValues();//前端传进来的参数 business.getActStatus(); } @Override public Object getBusinessDataById(String dataId) { return this.getById(dataId); } @Override public Map flowValuesOfTask(String taskNameId, Map values) { return null; } @Override public List flowCandidateUsernamesOfTask(String taskNameId, Map values) { return null; } /** * 判断用户是否拥有此权限 * * @param flowMyBusiness * @param user * @return */ private boolean isUserAuthorized(FlowMyBusiness flowMyBusiness, LoginUser user) { List todoUsers = JSON.parseArray(flowMyBusiness.getTodoUsers(), String.class); return todoUsers != null && todoUsers.contains(user.getUsername()); } private boolean claimTask(String taskId, LoginUser user) { Task task = taskService.createTaskQuery().taskId(taskId).singleResult(); if (task == null) { return false; } if (task.getAssignee() != null && !task.getAssignee().equals(user.getUsername())) { return false; } taskService.claim(taskId, user.getUsername()); return true; } }