¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.toolkit.Wrappers; |
| | | 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.exception.JeecgBootException; |
| | | import org.jeecg.common.system.vo.LoginUser; |
| | | import org.jeecg.modules.eam.constant.AssetStatusEnum; |
| | | import org.jeecg.modules.eam.constant.BusinessCodeConst; |
| | | import org.jeecg.modules.eam.constant.EquipmentLeanOutStatusEnum; |
| | | import org.jeecg.modules.eam.entity.EamEquipment; |
| | | import org.jeecg.modules.eam.entity.EamEquipmentLeanOut; |
| | | import org.jeecg.modules.eam.entity.EamSparePartRequisition; |
| | | import org.jeecg.modules.eam.entity.EamSparePartRequisitionDetail; |
| | | import org.jeecg.modules.eam.mapper.EamSparePartRequisitionMapper; |
| | | import org.jeecg.modules.eam.request.EamSparePartRequisitionRequest; |
| | | import org.jeecg.modules.eam.service.IEamSparePartRequisitionService; |
| | | 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 com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.*; |
| | | |
| | | /** |
| | | * @Description: å¤ä»¶è¯·è´å |
| | | * @Author: Lius |
| | | * @Date: 2025-03-19 |
| | | * @Version: V1.0 |
| | | */ |
| | | @Service("IEamSparePartRequisitionService") |
| | | public class EamSparePartRequisitionServiceImpl extends ServiceImpl<EamSparePartRequisitionMapper, EamSparePartRequisition> implements IEamSparePartRequisitionService, FlowCallBackServiceI { |
| | | |
| | | @Autowired |
| | | private ISysUserService sysUserService; |
| | | |
| | | @Autowired |
| | | private IFlowDefinitionService flowDefinitionService; |
| | | |
| | | @Autowired |
| | | private FlowCommonService flowCommonService; |
| | | |
| | | @Resource |
| | | private EamSparePartRequisitionMapper sparePartRequisitionMapper; |
| | | |
| | | @Autowired |
| | | private IFlowMyBusinessService flowMyBusinessService; |
| | | @Autowired |
| | | private TaskService taskService; |
| | | @Autowired |
| | | private IFlowTaskService flowTaskService; |
| | | |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public boolean submitSpareRequisition(EamSparePartRequisition eamSparePartRequisition) { |
| | | EamSparePartRequisition entity = super.getById(eamSparePartRequisition.getId()); |
| | | if (entity == null) { |
| | | throw new JeecgBootException("è¦æäº¤çæ°æ®ä¸åå¨ï¼è¯·å·æ°éè¯ï¼"); |
| | | } |
| | | //æ§è¡å®æ |
| | | List<UserSelector> userSelectors = sysUserService.selectOperatorList(BusinessCodeConst.PCR0007); |
| | | if (CollectionUtil.isEmpty(userSelectors)) { |
| | | throw new JeecgBootException("å¤ä»¶ç®¡çåæªè®¾ç½®äººåï¼æ æ³è¿å
¥ä¸çº§å®¡æ¹ï¼"); |
| | | } |
| | | LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
| | | if (sysUser == null) { |
| | | throw new JeecgBootException("å½åç¨æ·æ æ³æäº¤å¤ä»¶è¯·è´åï¼"); |
| | | } |
| | | UpdateWrapper<EamSparePartRequisition> updateWrapper = new UpdateWrapper<>(); |
| | | updateWrapper.set("requisition_status", BusinessCodeConst.SPARE_REQUISITION_STATUS_2); |
| | | updateWrapper.eq("id", eamSparePartRequisition.getId()); |
| | | // boolean success = super.update(updateWrapper); |
| | | //å¯å¨å®¡æ¹æµç¨ |
| | | flowCommonService.initActBusiness("å¤ä»¶è¯·è´åå·:" + entity.getRequisitionCode() + ";ç³è¯·äºº: " + entity.getReportUser() + ";åèµ·å¤ä»¶è¯·è´ç³è¯·", |
| | | entity.getId(), |
| | | "IEamSparePartRequisitionService", |
| | | "spare_part_apply", |
| | | null); |
| | | Map<String, Object> variables = new HashMap<>(); |
| | | variables.put("dataId", entity.getId()); |
| | | variables.put("organization", "å¤ä»¶è¯·è´æµç¨å¯å¨"); |
| | | variables.put("comment", "å¤ä»¶è¯·è´æµç¨å¯å¨"); |
| | | variables.put("proofreading", true); |
| | | List<String> usernames = new ArrayList<>(); |
| | | for (UserSelector userSelector : userSelectors) { |
| | | usernames.add(userSelector.getUsername()); |
| | | } |
| | | variables.put("NextAssignee", usernames); |
| | | Result result = flowDefinitionService.startProcessInstanceByKey("spare_part_apply", variables); |
| | | if (result != null) { |
| | | super.update(updateWrapper); |
| | | return result.isSuccess(); |
| | | } |
| | | return false; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> getSparePartRequisitionDetailList(String sparePartRequisitionId) { |
| | | QueryWrapper<EamSparePartRequisitionDetail> queryWrapper = Wrappers.query(); |
| | | if (sparePartRequisitionId != null && sparePartRequisitionId != "") { |
| | | queryWrapper.eq("t1.spare_requisition_id", sparePartRequisitionId); |
| | | } |
| | | return this.baseMapper.getSparePartRequisitionDetailList(queryWrapper); |
| | | |
| | | |
| | | } |
| | | |
| | | @Override |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public EamSparePartRequisition approval(EamSparePartRequisitionRequest request) { |
| | | EamSparePartRequisition entity = sparePartRequisitionMapper.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("ä»»å¡ä¸åå¨ã已宿æå·²è¢«ä»äººè®¤é¢ï¼"); |
| | | } |
| | | //æµç¨åé |
| | | Map<String, Object> values = new HashMap<>(); |
| | | switch (BusinessCodeConst.SPARE_REQUISITION_STATUS_2) { |
| | | // å®¡æ¹ |
| | | case BusinessCodeConst.SPARE_REQUISITION_STATUS_2: |
| | | //æ§è¡å®æ |
| | | values.put("dataId", entity.getId()); |
| | | values.put("organization", "å¤ä»¶è¯·è´å®¡æ¹"); |
| | | values.put("comment", request.getComment()); |
| | | values.put("status", request.getStatus()); |
| | | request.setComment(request.getComment()); |
| | | entity.setApprovalUser(user.getUsername());// å®¡æ ¸äºº |
| | | entity.setApprovalTime(new Date());// å®¡æ ¸æ¶é´ |
| | | entity.setRemark(request.getApprovalOpinion());// å®¡æ ¸æè§ |
| | | // éªè¯éè¿è¿æ¯é©³å |
| | | if (request.getStatus().equals("1")) { |
| | | //设置entity |
| | | entity.setRequisitionStatus(BusinessCodeConst.SPARE_REQUISITION_STATUS_3); |
| | | List<String> userApprovalList = new ArrayList<>(Collections.singletonList(entity.getReportUser())); |
| | | values.put("NextAssignee", userApprovalList); |
| | | } else { |
| | | //设置entity |
| | | entity.setRequisitionStatus(BusinessCodeConst.SPARE_REQUISITION_STATUS_4); |
| | | } |
| | | break; |
| | | } |
| | | request.setValues(values); |
| | | |
| | | // 宿æµç¨ä»»å¡ |
| | | Result result = flowTaskService.complete(request); |
| | | if (!result.isSuccess()) { |
| | | throw new JeecgBootException("审æ¹å¤±è´¥ï¼è¯·å·æ°æ¥çï¼"); |
| | | } |
| | | //ä¿åå·¥å |
| | | sparePartRequisitionMapper.updateById(entity); |
| | | return entity; |
| | | } |
| | | |
| | | /** |
| | | * å¤æç¨æ·æ¯å¦æ¥ææ¤æé |
| | | * |
| | | * @param flowMyBusiness |
| | | * @param user |
| | | * @return |
| | | */ |
| | | private boolean isUserAuthorized(FlowMyBusiness flowMyBusiness, LoginUser user) { |
| | | List<String> 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; |
| | | } |
| | | |
| | | @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<String, Object> flowValuesOfTask(String taskNameId, Map<String, Object> values) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public List<String> flowCandidateUsernamesOfTask(String taskNameId, Map<String, Object> values) { |
| | | //ä¸å¡æ¯å¦å¹²é¢æµç¨ï¼ä¸å¡å¹²é¢ï¼æµç¨å¹²é¢ï¼æå®äººåè¿è¡å¤ç |
| | | //è·åä¸ä¸æ¥å¤ç人 |
| | | Object object = values.get("NextAssignee"); |
| | | return (List<String>) object; |
| | | } |
| | | } |