|
|
|
@ -5,12 +5,14 @@ import cn.iocoder.yudao.framework.common.util.date.DateUtils;
|
|
|
|
|
import cn.iocoder.yudao.framework.quartz.core.handler.JobHandler; |
|
|
|
|
import cn.iocoder.yudao.module.system.api.social.SocialClientApi; |
|
|
|
|
import cn.iocoder.yudao.module.system.api.social.dto.SocialWxaSubscribeMessageSendReqDTO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.enterpriseinspections.vo.EnterpriseInspectionsCorrectionVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.taskinfo.vo.TaskInfoRespVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterpriseinspections.EnterpriseInspectionsDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.enterpriseinspections.EnterpriseInspectionsMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.enterprise.EnterpriseService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.enterpriseinspections.EnterpriseInspectionsService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.inspectionslog.InspectionsLogService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.taskinfo.TaskInfoService; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
@ -18,6 +20,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
|
import javax.swing.*; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
@ -35,43 +38,38 @@ public class InspectionsSendStartMessageJob implements JobHandler {
|
|
|
|
|
EnterpriseInspectionsMapper enterpriseInspectionsMapper; |
|
|
|
|
@Resource |
|
|
|
|
EnterpriseService enterpriseService; |
|
|
|
|
@Resource |
|
|
|
|
EnterpriseInspectionsService enterpriseInspectionsService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String execute(String param) throws Exception { |
|
|
|
|
//要发送的信息
|
|
|
|
|
|
|
|
|
|
final Long id = Long.valueOf(param); |
|
|
|
|
final InspectionsLogDO inspectionsLog = inspectionsLogService.getInspectionsLog(id); |
|
|
|
|
if (inspectionsLog != null && inspectionsLog.getCreator() != null) { |
|
|
|
|
|
|
|
|
|
final EnterpriseInspectionsDO enterpriseInspectionsDO = enterpriseInspectionsMapper.selectById(id); |
|
|
|
|
if (enterpriseInspectionsDO != null) { |
|
|
|
|
final EnterpriseDO enterprise = enterpriseService.getEnterprise(enterpriseInspectionsDO.getEnterpriseId()); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
Long userId = Long.valueOf(inspectionsLog.getCreator()); |
|
|
|
|
//发送消息);
|
|
|
|
|
SocialWxaSubscribeMessageSendReqDTO reqDTO = new SocialWxaSubscribeMessageSendReqDTO(); |
|
|
|
|
reqDTO.setUserType(1); |
|
|
|
|
reqDTO.setTemplateTitle("环保任务通知"); |
|
|
|
|
reqDTO.setPage("sub/task/detail?id="+inspectionsLog.getInspectionsId()); |
|
|
|
|
reqDTO.setUserId(userId); |
|
|
|
|
Map<String, String> message = new HashMap<>(); |
|
|
|
|
message.put("thing2", enterprise.getEnterprisesName()); |
|
|
|
|
message.put("time3", DateUtil.format(inspectionsLog.getCorrectionTime(), DateUtils.FORMAT_YEAR_MONTH_DAY)); |
|
|
|
|
// message.put("thing4", beforeTaskInfo.getDescription());
|
|
|
|
|
// message.put("time5", DateUtil.format(beforeTaskInfo.getEndDate().atStartOfDay(), DateUtils.FORMAT_YEAR_MONTH_DAY));
|
|
|
|
|
reqDTO.setMessages(message); |
|
|
|
|
socialClientApi.sendWxaSubscribeMessage(reqDTO); |
|
|
|
|
final List<EnterpriseInspectionsCorrectionVO> enterpriseInspectionsCorrectionVOS = enterpriseInspectionsMapper.inspectionsCorrectionList(); |
|
|
|
|
int num = 0; |
|
|
|
|
if (enterpriseInspectionsCorrectionVOS != null && enterpriseInspectionsCorrectionVOS.size() > 0) { |
|
|
|
|
for (final EnterpriseInspectionsCorrectionVO item : enterpriseInspectionsCorrectionVOS) { |
|
|
|
|
final InspectionsLogDO inspectionsLogNew = enterpriseInspectionsService.getInspectionsLogNew(item.getInspectionsId()); |
|
|
|
|
if (inspectionsLogNew != null && inspectionsLogNew.getStatus() == 3) { |
|
|
|
|
final EnterpriseDO enterprise = enterpriseService.getEnterprise(item.getEnterpriseId()); |
|
|
|
|
num ++ ; |
|
|
|
|
try { |
|
|
|
|
SocialWxaSubscribeMessageSendReqDTO reqDTO = new SocialWxaSubscribeMessageSendReqDTO(); |
|
|
|
|
reqDTO.setUserType(1); |
|
|
|
|
reqDTO.setTemplateTitle("整改任务通知"); |
|
|
|
|
reqDTO.setPage("sub/task/detail?id=" + item.getInspectionsId()); |
|
|
|
|
reqDTO.setUserId(Long.valueOf(item.getCreator())); |
|
|
|
|
Map<String, String> message = new HashMap<>(); |
|
|
|
|
message.put("thing2", enterprise.getEnterprisesName()); |
|
|
|
|
message.put("time3", DateUtil.format(inspectionsLogNew.getCorrectionTime(), DateUtils.FORMAT_YEAR_MONTH_DAY)); |
|
|
|
|
reqDTO.setMessages(message); |
|
|
|
|
socialClientApi.sendWxaSubscribeMessage(reqDTO); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("任务发送通知错误:", e.toString()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
catch (Exception e){ |
|
|
|
|
log.error("任务发送通知错误:",e.toString()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return "发送整个信息成功"; |
|
|
|
|
return "发送整改任务数量:" + num; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|