赵鹏 1 month ago
parent
commit
ef3255c9e5
  1. 3
      yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java
  2. 7
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterprise/EnterpriseController.java
  3. 10
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsPageReqVO.java
  4. 9
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/vo/EnterpriseInspectionsRespVO.java
  5. 8
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/HomeController.java
  6. 6
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeCountResVO.java
  7. 13
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeExecFinishVO.java
  8. 1
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeGroupCountVO.java
  9. 10
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeListVO.java
  10. 11
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/home/vo/HomeSelectVO.java
  11. 9
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/enterpriseinspections/EnterpriseInspectionsDO.java
  12. 9
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/taskinfo/TaskInfoMapper.java
  13. 10
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/framework/datapermission/config/DataPermissionConfiguration.java
  14. 77
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/InspectionsSendStartMessageJob.java
  15. 73
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/QualificationTimeOutSendStartMessageJob.java
  16. 22
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/TaskSendStartMessageJob.java
  17. 39
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java
  18. 5
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeService.java
  19. 102
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/home/HomeServiceImpl.java
  20. 57
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java
  21. 15
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobService.java
  22. 28
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobServiceImpl.java
  23. 17
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java
  24. 75
      yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml

3
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, "已经打卡,不能重复打卡");

7
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<EnterpriseQualificationDO> queryWrapper = new LambdaQueryWrapper<>();

10
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<Long> taskIds;
//任务开始时间
@Schema(description = "任务开始时间", example = "27002")
private LocalDateTime TaskStartTime;
//任务结束时间
@Schema(description = "任务结束时间", example = "27002")
private LocalDateTime TaskEndTime;
}

9
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;

8
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<HomeCountResVO> appCount1(HomeSelectVO homeSelectVO) {
return success(homeService.appCount1(homeSelectVO));
}
@GetMapping("/appCount2")
@Operation(summary = "app首页统计第二块")
public CommonResult<HomeCountResVO> appCount2(HomeSelectVO homeSelectVO) {
@DataPermission(enable = false) // 关闭数据权限,避免只查看自己时,查询不到部门。
public CommonResult<List<EnterpriseNumVO>> appCount2(HomeSelectVO homeSelectVO) {
return success(homeService.appCount2(homeSelectVO));
}

6
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<HomeGroupCountVO> completionRate;
private List<HomeListVO> completionRate;
//各部门或个人任务完成率 占总数的百分百
private List<HomeGroupCountVO> totalCompletionRate;
}

13
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;
}

1
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;
}

10
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;
}

11
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;
}

9
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;
}

9
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<TaskInfoDO> {
//根据企业id查任务
IPage<TaskInfoDO> selectPageByEnterpriseId(Page<TaskInfoDO> page, @Param("reqVO") TaskInfoPageReqVO reqVO);
//任务总数,执法总数, 完成总数
List<HomeExecFinishVO> selectHomeExecFinish(HomeSelectVO homeSelectVO);
//分组统计
List<HomeGroupCountVO> selectHomeGroupCount(HomeSelectVO homeSelectVO);
//质检报告过期排序
List<EnterpriseNumVO> selectEnterpriseNum(HomeSelectVO homeSelectVO);
//整改次数排序
List<EnterpriseNumVO> selectEnterpriseStatus(HomeSelectVO homeSelectVO);
}

10
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");
};

77
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<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 "发送整个信息成功";
}
}

73
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<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 "发送整个信息成功";
}
}

22
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<EnterpriseInspectionsDO> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(EnterpriseInspectionsDO::getTaskId, item.getId());
List<EnterpriseInspectionsDO> enterpriseInspectionsDOList = enterpriseInspectionsMapper.selectList(wrapper);
if(enterpriseInspectionsDOList!=null && enterpriseInspectionsDOList.size()>0){
for (EnterpriseInspectionsDO enterpriseInspectionsDO : enterpriseInspectionsDOList) {
enterpriseInspectionsDO.setStatus(2);
}
}
enterpriseInspectionsMapper.updateBatch(enterpriseInspectionsDOList);
});
LambdaQueryWrapper<EnterpriseInspectionsDO> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(EnterpriseInspectionsDO::getTaskId, x.getId());
List<EnterpriseInspectionsDO> enterpriseInspectionsDOList = enterpriseInspectionsMapper.selectList(wrapper);
if(enterpriseInspectionsDOList!=null && enterpriseInspectionsDOList.size()>0){
for (EnterpriseInspectionsDO enterpriseInspectionsDO : enterpriseInspectionsDOList) {
enterpriseInspectionsDO.setStatus(2);
}
}
enterpriseInspectionsMapper.updateBatch(enterpriseInspectionsDOList);
});
});
return "发送消息任务数量:"+ beforeTaskInfoList.size();

39
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<InspectionsLogDO> list = inspectionsLogMapper.selectList(wrapper);
if (list != null) {
if (list != null && list.size() > 0) {
return signInLogMapper.selectList(new LambdaQueryWrapper<SignInLogDO>().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);
}
});
}

5
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<EnterpriseNumVO> appCount2(HomeSelectVO homeSelectVO);
}

102
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<TaskInfoDO> taskInfoAppPage = taskInfoService.getTaskInfoAppPage(taskInfoPageReqVO);
final List<HomeExecFinishVO> homeExecFinishVOS = taskInfoMapper.selectHomeExecFinish(homeSelectVO);
List<Integer> taskExecList = new ArrayList<>();
List<Integer> 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<HomeGroupCountVO> homeGroupCountVOS = taskInfoMapper.selectHomeGroupCount(homeSelectVO);
List<HomeGroupCountVO> homeGroupCountVOS1 = new ArrayList<>();
List<HomeListVO> 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<EnterpriseNumVO> 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);
}
}
}

57
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<InspectionsLogDO> 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<SignInLogDO> newList = new ArrayList<>();

15
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;
}

28
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);
}
}

17
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) {

75
yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/taskinfo/TaskInfoMapper.xml

@ -12,7 +12,7 @@
<select id="selectMyPage" resultType="cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO">
SELECT
t.*,
count(ei.task_id) as taskExecNum,
count(DISTINCT ei.id) as taskExecNum,
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) AS taskFinishNum
FROM task_info t
left join enterprise_inspections ei on t.id = ei.task_id
@ -21,7 +21,7 @@
left join task_tag tt on t.id = tt.task_id
left join tag_library tl on tl.id = tt.tag_id
WHERE
t.deleted = 0 and ei.deleted = 0 and t.status = 2
t.deleted = 0 and ei.deleted = 0 and ei.status = 2
<if test="params.userId != null and params.userId != ''">
AND ei.user_id = #{params.userId}
</if>
@ -43,9 +43,10 @@
#{tagId}
</foreach>
</if>
GROUP BY t.id
GROUP BY t.id ORDER BY t.create_time DESC
</select>
<select id="selectPageByEnterpriseId" resultType="cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO">
SELECT
t.*
@ -82,10 +83,13 @@
left Join system_dept sd on sd.id = e.department_id
</if>
WHERE
ei.deleted = 0 AND e.deleted = 0
ei.deleted = 0 AND e.deleted = 0 and ei.status = 2
<if test="deptId != null and deptId != ''">
and e.department_id = #{deptId}
</if>
<if test="deptId == null">
and e.department_id != 100
</if>
GROUP BY
<if test="deptId != null and deptId != ''">
ei.user_id
@ -98,20 +102,75 @@
<select id="selectEnterpriseNum"
resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO">
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 &lt; NOW()
<if test="deptId != null and deptId != ''">
e.department_id = #{deptId}
and e.department_id = #{deptId}
</if>
<if test="userId != null and userId != ''">
and eq.user_id = #{userId}
</if>
ORDER BY overdueDays DESC;
<if test="time != null and time != ''">
and ei.create_time between
<foreach collection="time" item="i" open="" separator="and" close="">
#{i}
</foreach>
</if>
ORDER BY count DESC;
</select>
<select id="selectEnterpriseStatus"
resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.EnterpriseNumVO">
SELECT
DISTINCT e.enterprises_name as name,
sum(CASE WHEN il.status=3 THEN 1 ELSE 0 END) as count
FROM
enterprise_inspections ei
LEFT JOIN inspections_log il on il.inspections_id = ei.id
LEFT JOIN enterprises e ON e.id = ei.enterprise_id
<where>
ei.deleted = 0 and il.status = 3
<if test="deptId != null and deptId != ''">
and e.department_id = #{deptId}
</if>
<if test="time != null and time != ''">
and ei.create_time between
<foreach collection="time" item="i" open="" separator="and" close="">
#{i}
</foreach>
</if>
</where>
GROUP BY ei.id order by count desc;
</select>
<select id="selectHomeExecFinish"
resultType="cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeExecFinishVO">
SELECT
count( DISTINCT ei.id) as execCount,
SUM(CASE WHEN il.status = 2 THEN 1 ELSE 0 END) AS finishCount
FROM task_info t
left join enterprise_inspections ei on t.id = ei.task_id
left join inspections_log il on ei.id = il.inspections_id
left join enterprises e on e.id = ei.enterprise_id
left join task_tag tt on t.id = tt.task_id
left join tag_library tl on tl.id = tt.tag_id
WHERE
t.deleted = 0 and ei.deleted = 0 and ei.status = 2
<if test="deptId != null and deptId != ''">
and e.department_id = #{deptId}
</if>
<if test="time != null and time != ''">
and t.end_date between
<foreach collection="time" item="i" open="" separator="and" close="">
#{i}
</foreach>
</if>
GROUP By t.id
</select>
</mapper>

Loading…
Cancel
Save