24 changed files with 479 additions and 137 deletions
@ -0,0 +1,13 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.home.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class HomeExecFinishVO { |
||||
//执法总数量
|
||||
private Integer execCount; |
||||
//完成总数量
|
||||
private Integer finishCount; |
||||
//任务总数量
|
||||
private Integer taskCount; |
||||
} |
@ -0,0 +1,10 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.home.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class HomeListVO { |
||||
private String name; |
||||
private String pieValue; |
||||
private String value; |
||||
} |
@ -1,20 +1,25 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.home.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
首页查询条件 |
||||
**/ |
||||
|
||||
@Data |
||||
public class HomeSelectVO { |
||||
|
||||
//周期 取字典
|
||||
private Integer selectWeek; |
||||
|
||||
//部门
|
||||
private Long deptId; |
||||
|
||||
//类型
|
||||
private Integer type; |
||||
//时间
|
||||
private LocalDateTime[] time; |
||||
//用户id
|
||||
private Long userId; |
||||
|
||||
|
||||
} |
||||
|
@ -0,0 +1,77 @@
|
||||
package cn.iocoder.yudao.module.system.job; |
||||
|
||||
import cn.hutool.core.date.DateUtil; |
||||
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.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.inspectionslog.InspectionsLogService; |
||||
import cn.iocoder.yudao.module.system.service.taskinfo.TaskInfoService; |
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import javax.annotation.Resource; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
@Component |
||||
@Slf4j |
||||
public class InspectionsSendStartMessageJob implements JobHandler { |
||||
|
||||
@Resource |
||||
InspectionsLogService inspectionsLogService; |
||||
|
||||
@Resource |
||||
SocialClientApi socialClientApi; |
||||
@Resource |
||||
EnterpriseInspectionsMapper enterpriseInspectionsMapper; |
||||
@Resource |
||||
EnterpriseService enterpriseService; |
||||
|
||||
@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); |
||||
} |
||||
catch (Exception e){ |
||||
log.error("任务发送通知错误:",e.toString()); |
||||
} |
||||
|
||||
|
||||
} |
||||
} |
||||
|
||||
return "发送整个信息成功"; |
||||
} |
||||
} |
@ -0,0 +1,73 @@
|
||||
package cn.iocoder.yudao.module.system.job; |
||||
|
||||
import cn.hutool.core.date.DateUtil; |
||||
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.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.inspectionslog.InspectionsLogService; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import javax.annotation.Resource; |
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
@Component |
||||
@Slf4j |
||||
public class QualificationTimeOutSendStartMessageJob implements JobHandler { |
||||
|
||||
@Resource |
||||
InspectionsLogService inspectionsLogService; |
||||
|
||||
@Resource |
||||
SocialClientApi socialClientApi; |
||||
@Resource |
||||
EnterpriseInspectionsMapper enterpriseInspectionsMapper; |
||||
@Resource |
||||
EnterpriseService enterpriseService; |
||||
|
||||
@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); |
||||
} |
||||
catch (Exception e){ |
||||
log.error("任务发送通知错误:",e.toString()); |
||||
} |
||||
|
||||
|
||||
} |
||||
} |
||||
|
||||
return "发送整个信息成功"; |
||||
} |
||||
} |
@ -1,10 +1,13 @@
|
||||
package cn.iocoder.yudao.module.system.service.home; |
||||
|
||||
import cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO; |
||||
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeCountResVO; |
||||
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeSelectVO; |
||||
|
||||
import java.util.List; |
||||
|
||||
public interface HomeService { |
||||
HomeCountResVO appCount1(HomeSelectVO homeSelectVO); |
||||
|
||||
HomeCountResVO appCount2(HomeSelectVO homeSelectVO); |
||||
List<EnterpriseNumVO> appCount2(HomeSelectVO homeSelectVO); |
||||
} |
||||
|
@ -0,0 +1,15 @@
|
||||
package cn.iocoder.yudao.module.system.service.job; |
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; |
||||
|
||||
public interface SystemJobService { |
||||
|
||||
/** |
||||
* 整改任务,创建定时任务 |
||||
* |
||||
* @param jobSaveReqVO |
||||
* @return |
||||
* @throws Throwable |
||||
*/ |
||||
Long createInspectionsJob(JobSaveReqVO jobSaveReqVO) throws Throwable; |
||||
} |
@ -0,0 +1,28 @@
|
||||
package cn.iocoder.yudao.module.system.service.job; |
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; |
||||
import cn.iocoder.yudao.module.infra.api.job.JobApi; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import javax.annotation.Resource; |
||||
|
||||
@Service |
||||
public class SystemJobServiceImpl implements SystemJobService { |
||||
/** |
||||
* 创建定时任务 |
||||
* |
||||
* @param jobSaveReqVO |
||||
* @return |
||||
* @throws Throwable |
||||
*/ |
||||
|
||||
@Resource |
||||
private JobApi jobApi; |
||||
|
||||
@Override |
||||
public Long createInspectionsJob(JobSaveReqVO jobSaveReqVO) throws Throwable { |
||||
return jobApi.createJob(jobSaveReqVO); |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue