diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java index a1e5efb..9aae73a 100644 --- a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java +++ b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java @@ -193,6 +193,9 @@ public interface ErrorCodeConstants { ErrorCode ENTERPRISE_INSPECTIONS_STATUS_ERROR2 = new ErrorCode(1-003-002-001, "任务不能转给自己"); + ErrorCode ENTERPRISE_INSPECTIONS_STATUS_ERROR3 = new ErrorCode(1-003-002-002, "请选择要转交的检查记录"); + + ErrorCode SIGN_IN_LOG_ERROR = new ErrorCode(1-003-005-001, "打卡记录不存在"); ErrorCode SIGN_IN_LOG_ERROR2 = new ErrorCode(1-003-005-001, "已经打卡,不能重复打卡"); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterprise/EnterpriseController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterprise/EnterpriseController.java index 51ad83b..c2f9d4c 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterprise/EnterpriseController.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterprise/EnterpriseController.java @@ -155,7 +155,12 @@ public class EnterpriseController { //通过userID获取专管人 - enterprise.setInviterName(adminUserService.getUser(Long.valueOf(enterprise.getUserId())).getNickname()); + if (enterprise.getUserId() != null) { + final AdminUserDO user = adminUserService.getUser(Long.valueOf(enterprise.getUserId())); + if (user != null) { + enterprise.setInviterName(user.getNickname()); + } + } //获取资质 LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsPageReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsPageReqVO.java index 3243812..9537036 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsPageReqVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsPageReqVO.java @@ -1,5 +1,6 @@ package cn.iocoder.yudao.module.system.controller.admin.enterpriseinspections.vo; +import com.baomidou.mybatisplus.annotation.TableField; import lombok.*; import java.util.*; import io.swagger.v3.oas.annotations.media.Schema; @@ -51,5 +52,14 @@ public class EnterpriseInspectionsPageReqVO extends PageParam { @Schema(description = "任务ids") private List taskIds; + //任务开始时间 + @Schema(description = "任务开始时间", example = "27002") + private LocalDateTime TaskStartTime; + + //任务结束时间 + @Schema(description = "任务结束时间", example = "27002") + private LocalDateTime TaskEndTime; + + } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsRespVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsRespVO.java index ec089b4..9f39fd5 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsRespVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsRespVO.java @@ -24,10 +24,19 @@ public class EnterpriseInspectionsRespVO { @ExcelProperty("任务名称") private String taskName; + + @Schema(description = "任务开始时间", example = "27002") + private LocalDateTime TaskStartTime; + + + @Schema(description = "任务结束时间", example = "27002") + private LocalDateTime TaskEndTime; + @Schema(description = "任务编码", example = "29150") @ExcelProperty("任务编码") private String taskNumber; + @Schema(description = "企业ID", example = "27002") @ExcelProperty("企业ID") private Long enterpriseId; diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/HomeController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/HomeController.java index cfe6d56..7f131a2 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/HomeController.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/HomeController.java @@ -1,6 +1,8 @@ package cn.iocoder.yudao.module.system.controller.admin.home; import cn.iocoder.yudao.framework.common.pojo.CommonResult; +import cn.iocoder.yudao.framework.datapermission.core.annotation.DataPermission; +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 cn.iocoder.yudao.module.system.service.home.HomeService; @@ -14,6 +16,8 @@ import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; +import java.util.List; + import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; @Tag(name = "管理后台 - app首页统计") @@ -28,13 +32,15 @@ public class HomeController { @GetMapping("/appCount1") @Operation(summary = "app首页统计第一块") + @DataPermission(enable = false) // 关闭数据权限,避免只查看自己时,查询不到部门。 public CommonResult appCount1(HomeSelectVO homeSelectVO) { return success(homeService.appCount1(homeSelectVO)); } @GetMapping("/appCount2") @Operation(summary = "app首页统计第二块") - public CommonResult appCount2(HomeSelectVO homeSelectVO) { + @DataPermission(enable = false) // 关闭数据权限,避免只查看自己时,查询不到部门。 + public CommonResult> appCount2(HomeSelectVO homeSelectVO) { return success(homeService.appCount2(homeSelectVO)); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeCountResVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeCountResVO.java index ce64111..713d61d 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeCountResVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeCountResVO.java @@ -8,7 +8,7 @@ import java.util.Map; @Data public class HomeCountResVO { //任务总数 - private Long taskCount; + private Integer taskCount; //执法总数 private Integer inspectionsCount; private Long enterpriseCount; @@ -16,9 +16,7 @@ public class HomeCountResVO { //总任务完成率 private String taskCompletionRate; //各部门或个人任务完成率 - private List completionRate; + private List completionRate; - //各部门或个人任务完成率 占总数的百分百 - private List totalCompletionRate; } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeExecFinishVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeExecFinishVO.java new file mode 100644 index 0000000..2e67e74 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeExecFinishVO.java @@ -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; +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeGroupCountVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeGroupCountVO.java index 315c2ca..fcb96bc 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeGroupCountVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeGroupCountVO.java @@ -8,4 +8,5 @@ public class HomeGroupCountVO { private String completionRate; private Integer execCount; private Integer finishCount; + private Long userId; } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeListVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeListVO.java new file mode 100644 index 0000000..17f2228 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeListVO.java @@ -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; +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeSelectVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeSelectVO.java index 47d997b..490b348 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeSelectVO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeSelectVO.java @@ -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; + } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/enterpriseinspections/EnterpriseInspectionsDO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/enterpriseinspections/EnterpriseInspectionsDO.java index f610cb8..00ae238 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/enterpriseinspections/EnterpriseInspectionsDO.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/enterpriseinspections/EnterpriseInspectionsDO.java @@ -86,4 +86,13 @@ public class EnterpriseInspectionsDO extends BaseDO { @TableField(exist = false) private LocalDateTime execTime; + //任务开始时间 + @TableField(exist = false) + private LocalDateTime TaskStartTime; + + //任务结束时间 + @TableField(exist = false) + private LocalDateTime TaskEndTime; + + } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/taskinfo/TaskInfoMapper.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/taskinfo/TaskInfoMapper.java index b54ffa1..0de30ec 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/taskinfo/TaskInfoMapper.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/taskinfo/TaskInfoMapper.java @@ -6,6 +6,7 @@ import cn.iocoder.yudao.framework.common.pojo.PageResult; import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; import cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO; +import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeExecFinishVO; import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeGroupCountVO; import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeSelectVO; import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; @@ -68,9 +69,17 @@ public interface TaskInfoMapper extends BaseMapperX { //根据企业id查任务 IPage selectPageByEnterpriseId(Page page, @Param("reqVO") TaskInfoPageReqVO reqVO); + + //任务总数,执法总数, 完成总数 + List selectHomeExecFinish(HomeSelectVO homeSelectVO); + //分组统计 List selectHomeGroupCount(HomeSelectVO homeSelectVO); + //质检报告过期排序 List selectEnterpriseNum(HomeSelectVO homeSelectVO); + //整改次数排序 + List selectEnterpriseStatus(HomeSelectVO homeSelectVO); + } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/datapermission/config/DataPermissionConfiguration.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/datapermission/config/DataPermissionConfiguration.java index d36f635..dd5ba17 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/datapermission/config/DataPermissionConfiguration.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/datapermission/config/DataPermissionConfiguration.java @@ -19,13 +19,13 @@ public class DataPermissionConfiguration { public DeptDataPermissionRuleCustomizer sysDeptDataPermissionRuleCustomizer() { return rule -> { // dept - rule.addDeptColumn(AdminUserDO.class); - rule.addDeptColumn(DeptDO.class, "id"); +// rule.addDeptColumn(AdminUserDO.class); +// rule.addDeptColumn(DeptDO.class, "id"); // user - rule.addUserColumn(AdminUserDO.class, "id"); +// rule.addUserColumn(AdminUserDO.class, "id"); //enterprise - rule.addDeptColumn(EnterpriseDO.class, "department_id"); - rule.addUserColumn(EnterpriseDO.class, "user_id"); +// rule.addDeptColumn(EnterpriseDO.class, "department_id"); +// rule.addUserColumn(EnterpriseDO.class, "user_id"); }; diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/InspectionsSendStartMessageJob.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/InspectionsSendStartMessageJob.java new file mode 100644 index 0000000..874044b --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/InspectionsSendStartMessageJob.java @@ -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 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 "发送整个信息成功"; + } +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/QualificationTimeOutSendStartMessageJob.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/QualificationTimeOutSendStartMessageJob.java new file mode 100644 index 0000000..88e900d --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/QualificationTimeOutSendStartMessageJob.java @@ -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 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 "发送整个信息成功"; + } +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/TaskSendStartMessageJob.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/TaskSendStartMessageJob.java index f0e83e1..202ba3b 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/TaskSendStartMessageJob.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/TaskSendStartMessageJob.java @@ -59,21 +59,15 @@ public class TaskSendStartMessageJob implements JobHandler { } } //执法任务更改状态 - if (beforeTaskInfoList != null && beforeTaskInfoList.size() > 0) { - beforeTaskInfoList.forEach(item->{ - LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); - wrapper.eq(EnterpriseInspectionsDO::getTaskId, item.getId()); - List enterpriseInspectionsDOList = enterpriseInspectionsMapper.selectList(wrapper); - if(enterpriseInspectionsDOList!=null && enterpriseInspectionsDOList.size()>0){ - for (EnterpriseInspectionsDO enterpriseInspectionsDO : enterpriseInspectionsDOList) { - enterpriseInspectionsDO.setStatus(2); - } - } - enterpriseInspectionsMapper.updateBatch(enterpriseInspectionsDOList); - }); + LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); + wrapper.eq(EnterpriseInspectionsDO::getTaskId, x.getId()); + List enterpriseInspectionsDOList = enterpriseInspectionsMapper.selectList(wrapper); + if(enterpriseInspectionsDOList!=null && enterpriseInspectionsDOList.size()>0){ + for (EnterpriseInspectionsDO enterpriseInspectionsDO : enterpriseInspectionsDOList) { + enterpriseInspectionsDO.setStatus(2); + } } - - + enterpriseInspectionsMapper.updateBatch(enterpriseInspectionsDOList); }); }); return "发送消息任务数量:"+ beforeTaskInfoList.size(); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java index fa0f290..951131e 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java @@ -108,7 +108,7 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe wrapper.eq(InspectionsLogDO::getStatus, 1); wrapper.orderByDesc(InspectionsLogDO::getCreateTime); List list = inspectionsLogMapper.selectList(wrapper); - if (list != null) { + if (list != null && list.size() > 0) { return signInLogMapper.selectList(new LambdaQueryWrapper().eq(SignInLogDO::getInsId, list.get(0).getId())); } return Collections.emptyList(); @@ -246,7 +246,10 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe throw exception(TASK_INFO_NOT_EXISTS); } item.setTaskName(taskInfoDO.getTitle()); - + //任务开始时间 + item.setTaskStartTime(taskInfoDO.getStartDate()); + //结束时间 + item.setTaskEndTime(taskInfoDO.getEndDate()); //查询企业 final EnterpriseDO enterpriseDO = enterpriseMapper.selectById(item.getEnterpriseId()); if (enterpriseDO == null) { @@ -258,8 +261,6 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe if (tagLibraryDOS != null) { item.setTagList(tagLibraryDOS.stream().map(TagLibraryDO::getTagName).collect(Collectors.toList())); } - - item.setEnterpriseName(enterpriseDO.getEnterprisesName()); item.setEnterpriseAddress(enterpriseDO.getAddress()); @@ -291,7 +292,9 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe } final DeptDO dept = deptService.getDept(user.getDeptId()); - item.setDepartment(dept.getName()); + if (dept != null) { + item.setDepartment(dept.getName()); + } } else { //根据执法人员id 查询其所属部门 @@ -322,7 +325,7 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe //查看任务状态,未签到, 整改 if (passOnSaveVO.getInspectionsId() == null || passOnSaveVO.getInspectionsId().size() == 0) { - throw exception(ENTERPRISE_INSPECTIONS_NOT_EXISTS); //请选择要转交的检查记录 + throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR3); //请选择要转交的检查记录 } //循环记录id列表 passOnSaveVO.getInspectionsId().forEach(item->{ @@ -340,31 +343,17 @@ public class EnterpriseInspectionsServiceImpl implements EnterpriseInspectionsSe if (enterpriseInspectionsDO.getStatus() == 1 || enterpriseInspectionsDO.getStatus() == 2) { InspectionsLogDO inspectionsLogNew = this.getInspectionsLogNew(item); - if (inspectionsLogNew != null && inspectionsLogNew.getStatus() == 3) { + + if (inspectionsLogNew == null || (inspectionsLogNew != null && inspectionsLogNew.getStatus() == 3)) { //已经开始 就要判断是否是整改状态 整改状态才能转 - enterpriseInspectionsDO.setStatus(4); - } else { - enterpriseInspectionsDO.setStatus(1); + enterpriseInspectionsDO.setStatus(2); enterpriseInspectionsDO.setUserId(passOnSaveVO.getUserId()); + } else { + throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR); } enterpriseInspectionsMapper.updateById(enterpriseInspectionsDO); -// if (enterpriseInspectionsDO.getStatus() == 4) { -// AdminUserDO user = adminUserService.getUser(passOnSaveVO.getUserId()); -// if (user == null) { -// throw exception(USER_NOT_EXISTS); -// } -// EnterpriseInspectionsDO inspectionsDO = new EnterpriseInspectionsDO(); -// inspectionsDO.setEnterpriseId(enterpriseInspectionsDO.getEnterpriseId()); -// inspectionsDO.setTaskId(enterpriseInspectionsDO.getTaskId()); -// inspectionsDO.setUserId(passOnSaveVO.getUserId()); -// inspectionsDO.setInspectName(user.getRealName()); -// enterpriseInspectionsMapper.insert(inspectionsDO); -// } - - } else { - throw exception(ENTERPRISE_INSPECTIONS_STATUS_ERROR); } }); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeService.java index 321d7f3..29f2938 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeService.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeService.java @@ -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 appCount2(HomeSelectVO homeSelectVO); } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeServiceImpl.java index 308eb90..bb79033 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeServiceImpl.java @@ -1,10 +1,8 @@ package cn.iocoder.yudao.module.system.service.home; import cn.iocoder.yudao.framework.common.pojo.PageResult; -import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeGroupCountVO; +import cn.iocoder.yudao.module.system.controller.admin.home.vo.*; import cn.iocoder.yudao.module.system.controller.admin.taskinfo.vo.TaskInfoPageReqVO; -import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeCountResVO; -import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeSelectVO; import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; import cn.iocoder.yudao.module.system.dal.mysql.enterprise.EnterpriseMapper; @@ -50,59 +48,35 @@ public class HomeServiceImpl implements HomeService{ //按时间查询 if (homeSelectVO.getSelectWeek() != null) { - LocalDateTime now = LocalDateTime.now(); - LocalDateTime[] dateList = new LocalDateTime[2]; - - switch (homeSelectVO.getSelectWeek()) { - case 1: - dateList[0] = now.minusDays(3); // 三天前 - break; - case 2: - dateList[0] = now.minusWeeks(1); // 一周前 - break; - case 3: - dateList[0] = now.minusMonths(1); // 一月前 - break; - case 4: - dateList[0] = now.minusYears(1); // 一年前 - break; - } - dateList[1] = now; + final LocalDateTime[] weekDate = this.getWeekDate(homeSelectVO.getSelectWeek()); - enterpriseDOLambdaQueryWrapper.between(EnterpriseDO::getCreateTime, dateList[0], dateList[1]); + enterpriseDOLambdaQueryWrapper.between(EnterpriseDO::getCreateTime, weekDate[0], weekDate[1]); } - final Long enterpriseCount = enterpriseMapper.selectCount(enterpriseDOLambdaQueryWrapper); homeCountResVO.setEnterpriseCount(enterpriseCount); - TaskInfoPageReqVO taskInfoPageReqVO = new TaskInfoPageReqVO(); - if (homeSelectVO.getDeptId() != null) { - taskInfoPageReqVO.setDeptId(homeSelectVO.getDeptId()); - } + //查询任务和执法 - if (homeSelectVO.getSelectWeek() != null) { - taskInfoPageReqVO.setSelectWeek(homeSelectVO.getSelectWeek()); - } - - final PageResult taskInfoAppPage = taskInfoService.getTaskInfoAppPage(taskInfoPageReqVO); + final List homeExecFinishVOS = taskInfoMapper.selectHomeExecFinish(homeSelectVO); List taskExecList = new ArrayList<>(); List taskFinishList = new ArrayList<>(); - if (taskInfoAppPage != null && taskInfoAppPage.getList() != null && taskInfoAppPage.getList().size() > 0) { - taskInfoAppPage.getList().forEach(item->{ - taskExecList.add(item.getTaskExecNum()); - taskFinishList.add(item.getTaskFinishNum()); + if (homeExecFinishVOS != null && homeExecFinishVOS.size() > 0) { + homeExecFinishVOS.forEach(item->{ + taskExecList.add(item.getExecCount()); + taskFinishList.add(item.getFinishCount()); }); } + //任务总数 + homeCountResVO.setTaskCount(homeExecFinishVOS.size()); + //总数 final Integer taskExec = taskExecList.stream().reduce(Integer::sum).orElse(0); homeCountResVO.setInspectionsCount(taskExec); //完成数 final Integer taskFinish = taskFinishList.stream().reduce(Integer::sum).orElse(0); - - if (taskFinish != null && taskFinish != 0) { double taskCompletionRate = (double) taskFinish/taskExec*100; homeCountResVO.setTaskCompletionRate(String.format("%.1f", taskCompletionRate)); @@ -110,32 +84,62 @@ public class HomeServiceImpl implements HomeService{ homeCountResVO.setTaskCompletionRate("0.0"); } - homeCountResVO.setTaskCount(taskInfoAppPage.getTotal()); - //根据不同的身份查询 final List homeGroupCountVOS = taskInfoMapper.selectHomeGroupCount(homeSelectVO); - List homeGroupCountVOS1 = new ArrayList<>(); + List homeGroupCountVOS1 = new ArrayList<>(); if (homeGroupCountVOS != null && homeGroupCountVOS.size() > 0) { homeGroupCountVOS.forEach(item->{ - HomeGroupCountVO groupCountVO = new HomeGroupCountVO(); - groupCountVO.setName(item.getName()); + HomeListVO homeListVO = new HomeListVO(); + homeListVO.setName(item.getName()); + homeListVO.setValue(item.getCompletionRate()); double rate = (double) item.getFinishCount() /taskExec * 100; - groupCountVO.setCompletionRate(String.format("%.1f", rate)); - homeGroupCountVOS1.add(groupCountVO); + homeListVO.setPieValue(String.format("%.1f", rate)); + homeGroupCountVOS1.add(homeListVO); }); } - homeCountResVO.setCompletionRate(homeGroupCountVOS); - homeCountResVO.setTotalCompletionRate(homeGroupCountVOS1); + homeCountResVO.setCompletionRate(homeGroupCountVOS1); return homeCountResVO; } + public LocalDateTime[] getWeekDate(Integer selectWeek) { + //按时间查询 + LocalDateTime now = LocalDateTime.now(); + LocalDateTime[] dateList = new LocalDateTime[2]; + + switch (selectWeek) { + case 1: + dateList[0] = now.minusDays(3); // 三天前 + break; + case 2: + dateList[0] = now.minusWeeks(1); // 一周前 + break; + case 3: + dateList[0] = now.minusMonths(1); // 一月前 + break; + case 4: + dateList[0] = now.minusYears(1); // 一年前 + break; + } + dateList[1] = now; + + return dateList; + + } + @Override - public HomeCountResVO appCount2(HomeSelectVO homeSelectVO) { + public List appCount2(HomeSelectVO homeSelectVO) { - return null; + if (homeSelectVO.getSelectWeek() != null) { + homeSelectVO.setTime(this.getWeekDate(homeSelectVO.getSelectWeek())); + } + if (homeSelectVO.getType() != null && homeSelectVO.getType() == 2) { + return taskInfoMapper.selectEnterpriseStatus(homeSelectVO); + } else { + return taskInfoMapper.selectEnterpriseNum(homeSelectVO); + } } } diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java index 4313973..338b890 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java @@ -1,9 +1,9 @@ package cn.iocoder.yudao.module.system.service.inspectionslog; +import cn.iocoder.yudao.framework.common.pojo.JobSaveReqVO; import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; import cn.iocoder.yudao.module.system.dal.dataobject.enterpriseinspections.EnterpriseInspectionsDO; import cn.iocoder.yudao.module.system.dal.dataobject.signinlog.SignInLogDO; -import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; import cn.iocoder.yudao.module.system.dal.mysql.enterpriseinspections.EnterpriseInspectionsMapper; import cn.iocoder.yudao.module.system.dal.mysql.signinlog.SignInLogMapper; @@ -11,21 +11,21 @@ import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper; import cn.iocoder.yudao.module.system.service.dept.DeptService; import cn.iocoder.yudao.module.system.service.enterpriseinspections.EnterpriseInspectionsService; import cn.iocoder.yudao.module.system.service.fileInfo.FileInfoService; +import cn.iocoder.yudao.module.system.service.job.SystemJobService; import cn.iocoder.yudao.module.system.service.user.AdminUserService; -import com.alibaba.excel.util.StringUtils; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import org.springframework.stereotype.Service; import org.springframework.validation.annotation.Validated; import org.springframework.transaction.annotation.Transactional; +import java.time.LocalDate; +import java.time.LocalDateTime; import java.util.*; import java.util.stream.Collectors; import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.*; import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; -import cn.iocoder.yudao.framework.common.pojo.PageResult; -import cn.iocoder.yudao.framework.common.pojo.PageParam; import cn.iocoder.yudao.framework.common.util.object.BeanUtils; import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper; @@ -33,7 +33,6 @@ import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMap import javax.annotation.Resource; import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; -import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUser; import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUserId; import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; @@ -62,6 +61,8 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { private DeptService deptService; @Resource private FileInfoService fileInfoService; + @Resource + private SystemJobService jobService; @Override @Transactional @@ -78,13 +79,18 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { final AdminUserDO user = adminUserService.getUser(loginUserId); //根据查询出的列表判断执行到哪一步 - final InspectionsLogDO inspectionsLogNew = enterpriseInspectionsService.getInspectionsLogNew(createReqVO.getInspectionsId()); + InspectionsLogDO inspectionsLogNew = enterpriseInspectionsService.getInspectionsLogNew(createReqVO.getInspectionsId()); //没有记录和整改状态为打卡 if (inspectionsLogNew == null || (inspectionsLogNew != null && inspectionsLogNew.getStatus() == 3)) { createReqVO.setStatus(0); InspectionsLogDO inspectionsLog = BeanUtils.toBean(createReqVO, InspectionsLogDO.class); final int insert = inspectionsLogMapper.insert(inspectionsLog); + + if (inspectionsLogNew == null) { + inspectionsLogNew = new InspectionsLogDO(); + } + if (insert > 0) { inspectionsLogNew.setId(inspectionsLog.getId()); } @@ -151,6 +157,25 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { return inspectionsLogMapper.selectById(id); } + /** + * 生成 Cron 表达式 + * @return java.lang.String + * @Date 2025-02-06 上午11:39 + **/ + public static String generateCronExpression(LocalDateTime dateTime) { + + // 获取年月日 + int second = dateTime.getSecond(); + int minute = dateTime.getMinute(); + int hour = dateTime.getHour(); + int dayOfMonth = dateTime.getDayOfMonth(); + int month = dateTime.getMonthValue(); + int year = dateTime.getYear(); + + return String.format("%d %d %d %d %d ? %d", second, minute, hour, dayOfMonth, month, year); + + } + @Override public List getInspectionsLogPage(InspectionsLogPageReqVO pageReqVO) { //不显示待确认签到的状态 @@ -171,7 +196,7 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { if (listOld != null && listOld.size() > 0) { listOld.forEach(item->{ - item.setUserList(this.getInspectionsLogAppListVO(inspectionsLogNew.getId())); + item.setUserList(this.getInspectionsLogAppListVO(item.getId())); list.add(item); }); } @@ -185,8 +210,6 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { inspectionsLogNew.setUserList(this.getInspectionsLogAppListVO(inspectionsLogNew.getId())); list.add(inspectionsLogNew); } - - } return list; @@ -308,6 +331,22 @@ public class InspectionsLogServiceImpl implements InspectionsLogService { //插入图片 fileInfoService.saveFilesByDictData(createReqVO.getFileIds(), 644l,2l, updateObj.getId().toString()); + if (createReqVO.getStatus() == 3 && createReqVO.getCorrectionTime() != null ) { + try { + JobSaveReqVO jobSaveReqVO = new JobSaveReqVO(); + jobSaveReqVO.setName("整改任务到期提醒"); + jobSaveReqVO.setHandlerName("inspectionsSendStartMessageJob"); + jobSaveReqVO.setHandlerParam(updateObj.getId().toString()); + jobSaveReqVO.setCronExpression(this.generateCronExpression(createReqVO.getCorrectionTime())); + jobSaveReqVO.setRetryCount(0); + jobSaveReqVO.setRetryInterval(0); + jobSaveReqVO.setMonitorTimeout(0); + jobService.createInspectionsJob(jobSaveReqVO); + } catch (Throwable e) { + throw new RuntimeException(e); + } + } + //插入签到人 方便查询 if (signInLogDOS == null || signInLogDOS.size() > 0) { List newList = new ArrayList<>(); diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobService.java new file mode 100644 index 0000000..a686608 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobService.java @@ -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; +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobServiceImpl.java new file mode 100644 index 0000000..f481488 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobServiceImpl.java @@ -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); + } + + +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java index ddaeb48..c72807a 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java @@ -139,23 +139,6 @@ public class TaskInfoServiceImpl implements TaskInfoService { return taskInfo.getId(); } - /** - * 生成 Cron 表达式 - * @param year - * @param month - * @param day - * @return java.lang.String - * @Date 2025-02-06 上午11:39 - **/ - public static String generateCronExpression(int year, int month, int day) { - // 校验输入的年月日 - LocalDate date = LocalDate.of(year, month, day); - - // 生成 Cron 表达式 - String cronExpression = String.format("0 0 %d %d *", day, month); - - return cronExpression; - } @Override public void updateTaskInfo(TaskInfoSaveReqVO updateReqVO) { diff --git a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml index 8bd21f5..2c19b69 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml +++ b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml @@ -12,7 +12,7 @@ + select - DATEDIFF(NOW(),expiry_date) AS overdueDays, - e.enterprises_name + DATEDIFF(NOW(),eq.expiry_date) AS count, + e.enterprises_name as name from enterprise_qualification eq LEFT JOIN enterprises e ON eq.enterprise_id = e.id WHERE e.deleted = 0 and eq.deleted = 0 AND expiry_date < NOW() - e.department_id = #{deptId} + and e.department_id = #{deptId} and eq.user_id = #{userId} - ORDER BY overdueDays DESC; + + and ei.create_time between + + #{i} + + + ORDER BY count DESC; + + + +