| | |
| | | import com.doumee.core.utils.DateUtil; |
| | | import com.doumee.core.utils.Utils; |
| | | import com.doumee.core.utils.qiyeweixin.QywxUtil; |
| | | import com.doumee.core.utils.qiyeweixin.model.request.QywxSendMsgRequest; |
| | | import com.doumee.core.utils.qiyeweixin.model.request.QywxTextCardMsgRequest; |
| | | import com.doumee.dao.business.*; |
| | | import com.doumee.dao.business.model.*; |
| | | import com.doumee.dao.web.dto.CloseDTO; |
| | |
| | | //处理人员类信息 |
| | | this.dealNoticeData(workorder); |
| | | //处理SHE事件状态 |
| | | workorder.setStatus(Constants.equalsInteger(workorder.getType(),Constants.ZERO)?Constants.WorkOrderStatus.close.getKey():Constants.WorkOrderStatus.waitConfirm.getKey()); |
| | | Constants.WorkOrderStatus workOrderStatus = Constants.equalsInteger(workorder.getType(),Constants.ZERO)?Constants.WorkOrderStatus.close:Constants.WorkOrderStatus.waitConfirm; |
| | | workorder.setStatus(workOrderStatus.getKey()); |
| | | workorderMapper.insert(workorder); |
| | | //存储DCA 问题记录表 |
| | | this.saveProblemData(workorder); |
| | | //存储附件信息 |
| | | this.saveMutiFile(workorder); |
| | | //存储日志 |
| | | this.dealLogData(workorder); |
| | | //TODO 发送企微通知 |
| | | this.dealLogData(workorder,workOrderStatus); |
| | | // 发送企微通知 |
| | | QywxSendMsgRequest qywxSendMsgRequest = new QywxSendMsgRequest(); |
| | | qywxSendMsgRequest.setTouser(workorder.getQwnoticeMemberIds().replace(",","|")); |
| | | qywxSendMsgRequest.setMsgtype("text"); |
| | | qywxSendMsgRequest.setAgentid(null); |
| | | QywxTextCardMsgRequest textCard = new QywxTextCardMsgRequest(); |
| | | textCard.setTitle(workOrderStatus.getLogTitle()); |
| | | |
| | | qywxSendMsgRequest.setTextcard(textCard); |
| | | QywxUtil.sendMsg(systemDictDataBiz.queryByCode(Constants.QYWX,Constants.QYWX_TOKEN).getCode(), |
| | | qywxSendMsgRequest); |
| | | |
| | | return workorder.getId(); |
| | | } |
| | | |
| | | |
| | | public void dealLogData(Workorder workorder){ |
| | | //处理上报日志 DCA工单 日志存储至子业务 不存在于父级 |
| | | if(!Constants.equalsInteger(workorder.getType(),Constants.ONE)){ |
| | | String logTitle = "工单提报"; |
| | | if(!Constants.equalsInteger(workorder.getType(),Constants.ZERO)){ |
| | | logTitle = Constants.equalsInteger(workorder.getType(),Constants.ONE)?"跌绊滑风险提报":"DCA上报"; |
| | | public void sendQwMsg(Workorder workorder){ |
| | | QywxSendMsgRequest qywxSendMsgRequest = new QywxSendMsgRequest(); |
| | | QywxTextCardMsgRequest textCard = new QywxTextCardMsgRequest(); |
| | | qywxSendMsgRequest.setMsgtype("text"); |
| | | qywxSendMsgRequest.setAgentid(null); |
| | | textCard.setBtntxt("详情"); |
| | | //新提交 |
| | | if(Constants.equalsInteger(workorder.getStatus(),Constants.WorkOrderStatus.waitConfirm.getKey())){ |
| | | qywxSendMsgRequest.setTouser(workorder.getQwnoticeMemberIds().replace(",","|")); |
| | | textCard.setUrl(null); |
| | | //SHE 提交 |
| | | if(Constants.equalsInteger(workorder.getType(),Constants.ZERO)){ |
| | | Category category = categoryMapper.selectById(workorder.getType()); |
| | | textCard.setTitle("【SHE事件上报】"); |
| | | String message = ""; |
| | | if(Constants.equalsInteger(workorder.getMemberType(),Constants.ZERO)){ |
| | | message = "本人"; |
| | | }else { |
| | | message = Constants.equalsInteger(workorder.getMemberType(),Constants.ONE)?"同事":"供应商"; |
| | | } |
| | | message = message + "-" + workorder.getMemberNames() + " " + DateUtil.formatDate(new Date(),"yyyy-MM-dd HH:mm") + workorder.getLocationName() + category.getName(); |
| | | textCard.setDescription(" <div class=\"normal\">"+message+"</div>"); |
| | | }else{ |
| | | |
| | | } |
| | | this.saveLog(null,workorder,Constants.ZERO,workorder.getMemberId(),logTitle,null); |
| | | } |
| | | qywxSendMsgRequest.setTextcard(textCard); |
| | | QywxUtil.sendMsg(systemDictDataBiz.queryByCode(Constants.QYWX,Constants.QYWX_TOKEN).getCode(), |
| | | qywxSendMsgRequest); |
| | | } |
| | | |
| | | |
| | | // public QywxTextCardMsgRequest dealMessageContent(Workorder workorder,Integer type){ |
| | | // QywxTextCardMsgRequest textCard = new QywxTextCardMsgRequest(); |
| | | // String message = ""; |
| | | // if(Constants.equalsInteger(workorder.getType(),Constants.ZERO)){ |
| | | // Category category = categoryMapper.selectById(workorder.getType()); |
| | | // textCard.setTitle("【SHE事件上报】"); |
| | | // if(Constants.equalsInteger(workorder.getMemberType(),Constants.ZERO)){ |
| | | // message = "本人"; |
| | | // }else { |
| | | // message = Constants.equalsInteger(workorder.getMemberType(),Constants.ONE)?"同事":"供应商"; |
| | | // } |
| | | // message = message + "-" + workorder.getMemberNames() + " " + DateUtil.formatDate(new Date(),"yyyy-MM-dd HH:mm") + workorder.getLocationName() + category.getName(); |
| | | // textCard.setDescription(" <div class=\"normal\">"+message+"</div>"); |
| | | // }else{ |
| | | // textCard.setTitle(Constants.equalsInteger(workorder.getType(),Constants.ONE)?"【DCA上报】":"跌绊滑风险上报"); |
| | | // if(Constants.equalsInteger(workorder.getType(),Con)){ |
| | | // |
| | | // } |
| | | // |
| | | // |
| | | // |
| | | // } |
| | | // |
| | | // } |
| | | |
| | | |
| | | |
| | | public void dealLogData(Workorder workorder,Constants.WorkOrderStatus workOrderStatus){ |
| | | if (Constants.equalsInteger(workorder.getType(), Constants.THREE) || Constants.equalsInteger(workorder.getType(), Constants.TWO) ) { |
| | | //处理上报日志 DCA工单 日志存储至子业务 不存在于父级 与跌绊滑 |
| | | String logTitle = Constants.equalsInteger(workorder.getType(), Constants.THREE) ? "跌绊滑风险" : "DCA"; |
| | | this.saveLog(null,workorder,Constants.ZERO,workorder.getMemberId(),workOrderStatus.getLogTitle().replace("{title}",logTitle),null); |
| | | } |
| | | } |
| | | |
| | |
| | | List<Multifile> multifileList = workorder.getMultifileList(); |
| | | if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(multifileList)){ |
| | | for (Multifile multifile:multifileList) { |
| | | multifile.setIsdeleted(Constants.ZERO); |
| | | multifile.setObjId(workorder.getId()); |
| | | multifile.setCreateDate(new Date()); |
| | | multifile.setObjType(Constants.multiFileType.upload); |
| | |
| | | if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(dcaNoProblemDTOList)){ |
| | | for (DCANoProblemDTO dcaNoProblemDTO:dcaNoProblemDTOList) { |
| | | Category problem = categoryMapper.selectById(dcaNoProblemDTO.getProblemId()); |
| | | Constants.WorkOrderStatus workOrderStatus = Constants.WorkOrderStatus.waitConfirm; |
| | | Workorder dcaWorkOrder = new Workorder(); |
| | | dcaWorkOrder.setCreateDate(new Date()); |
| | | dcaWorkOrder.setEditDate(new Date()); |
| | | dcaWorkOrder.setMemberId(workorder.getMemberId()); |
| | | dcaWorkOrder.setTypeId(dcaNoProblemDTO.getProblemId()); |
| | | dcaWorkOrder.setType(Constants.TWO); |
| | | dcaWorkOrder.setStatus(Constants.ZERO); |
| | | dcaWorkOrder.setStatus(workOrderStatus.getKey()); |
| | | dcaWorkOrder.setIsdeleted(Constants.ZERO); |
| | | dcaWorkOrder.setProblemTitle(problem.getName()); |
| | | dcaWorkOrder.setProblemId(problem.getId()); |
| | |
| | | dcaWorkOrder.setEventInfo(dcaNoProblemDTO.getEventInfo()); |
| | | workorderMapper.insert(dcaWorkOrder); |
| | | //存储日志 |
| | | this.dealLogData(dcaWorkOrder); |
| | | this.dealLogData(dcaWorkOrder,workOrderStatus); |
| | | List<Multifile> multifileList = dcaNoProblemDTO.getMultifileList(); |
| | | if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(multifileList)){ |
| | | for (Multifile multifile:multifileList) { |
| | | multifile.setIsdeleted(Constants.ZERO); |
| | | multifile.setObjId(dcaWorkOrder.getId()); |
| | | multifile.setCreateDate(new Date()); |
| | | multifile.setObjType(Constants.multiFileType.upload); |
| | |
| | | if(Objects.nonNull(workorder)){ |
| | | //查询附件信息 |
| | | List<Multifile> multifileList = multifileMapper.selectList(new QueryWrapper<Multifile>().lambda().eq(Multifile::getIsdeleted,Constants.ZERO) |
| | | .eq(Multifile::getObjId,workorder).orderByAsc(Multifile::getId)); |
| | | .eq(Multifile::getObjId,workorder.getId()).orderByAsc(Multifile::getId)); |
| | | if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(multifileList)){ |
| | | String path = systemDictDataBiz.queryByCode(Constants.FTP,Constants.FTP_RESOURCE_PATH).getCode() |
| | | +systemDictDataBiz.queryByCode(Constants.FTP,Constants.WORKORDER_FILE_PATH).getCode(); |