Browse Source

首页统计

master
DX 1 month ago
parent
commit
033a82e714
  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/framework/datapermission/config/DataPermissionConfiguration.java
  4. 77
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/InspectionsSendStartMessageJob.java
  5. 73
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/QualificationTimeOutSendStartMessageJob.java
  6. 22
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/job/TaskSendStartMessageJob.java
  7. 28
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterpriseinspections/EnterpriseInspectionsServiceImpl.java
  8. 55
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/inspectionslog/InspectionsLogServiceImpl.java
  9. 15
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobService.java
  10. 28
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/job/SystemJobServiceImpl.java
  11. 17
      yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/taskinfo/TaskInfoServiceImpl.java
  12. 3
      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/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();

28
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();
@ -324,7 +324,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->{
@ -342,31 +342,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);
}
});
}

55
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);
});
}
@ -306,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) {

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

@ -87,6 +87,9 @@
<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

Loading…
Cancel
Save