|
@@ -1,13 +1,7 @@
|
|
|
package com.wtkj.service.impl;
|
|
|
|
|
|
-import com.wtkj.entity.Project;
|
|
|
-import com.wtkj.entity.ProjectAuth;
|
|
|
-import com.wtkj.entity.ProjectStage;
|
|
|
-import com.wtkj.entity.TemplateTypeAndStage;
|
|
|
-import com.wtkj.service.IAsyncService;
|
|
|
-import com.wtkj.service.IProjectAuthService;
|
|
|
-import com.wtkj.service.IProjectStageService;
|
|
|
-import com.wtkj.service.ITypeAndStageService;
|
|
|
+import com.wtkj.entity.*;
|
|
|
+import com.wtkj.service.*;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import org.springblade.core.secure.BladeUser;
|
|
|
import org.springblade.core.tool.api.R;
|
|
@@ -15,6 +9,8 @@ import org.springblade.core.tool.utils.DateUtil;
|
|
|
import org.springblade.core.tool.utils.Func;
|
|
|
import org.springblade.system.entity.Dept;
|
|
|
import org.springblade.system.feign.ISysClient;
|
|
|
+import org.springblade.system.user.entity.User;
|
|
|
+import org.springblade.system.user.feign.IUserClient;
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
@@ -37,7 +33,10 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
private final IProjectStageService stageService;
|
|
|
private final IProjectAuthService projectAuthService;
|
|
|
private final ISysClient sysClient;
|
|
|
-
|
|
|
+ private final IUserClient userClient;
|
|
|
+ private final ITaskLogService taskLogService;
|
|
|
+ private final IProjectService projectService;
|
|
|
+ private final IIndexMessageService indexMessageService;
|
|
|
|
|
|
@Override
|
|
|
@Async("asyncPoolTaskExecutor")
|
|
@@ -78,8 +77,12 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
String ancestors = rpc.getData().getAncestors();
|
|
|
if (ancestors != null && ancestors.contains(String.valueOf(ZERO))) {
|
|
|
List<Long> longList = Func.toLongList(ancestors);
|
|
|
- if (!CollectionUtils.isEmpty(longList) && longList.size() > 2) {
|
|
|
- auth.setTopDept(longList.get(1));
|
|
|
+ if (!CollectionUtils.isEmpty(longList)) {
|
|
|
+ if (longList.size() > 2) {
|
|
|
+ auth.setTopDept(longList.get(1));
|
|
|
+ } else {
|
|
|
+ auth.setTopDept(Long.valueOf(deptIdStr));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -97,4 +100,78 @@ public class AsyncServiceImpl implements IAsyncService {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void createTaskLog(Task task) {
|
|
|
+ //1.任务日志
|
|
|
+ Long createUser = task.getCreateUser();
|
|
|
+ if (createUser != null) {
|
|
|
+ R<User> userR = userClient.userInfoById(createUser);
|
|
|
+ if (userR.isSuccess()) {
|
|
|
+ List<TaskLog> logs = new ArrayList<>();
|
|
|
+ TaskLog log = new TaskLog();
|
|
|
+ log.setTaskId(task.getId());
|
|
|
+ log.setContent(userR.getData().getName() + " 创建了任务");
|
|
|
+ log.setCreateDept(task.getCreateDept());
|
|
|
+ log.setCreateUser(task.getCreateUser());
|
|
|
+ log.setUpdateUser(task.getUpdateUser());
|
|
|
+ log.setCreateTime(DateUtil.now());
|
|
|
+ log.setUpdateTime(DateUtil.now());
|
|
|
+ logs.add(log);
|
|
|
+ if (task.getOrgDeptId() != null) {
|
|
|
+ TaskLog taskLog = new TaskLog();
|
|
|
+ taskLog.setTaskId(task.getId());
|
|
|
+ taskLog.setContent(userR.getData().getName() + " 指定了执行单位");
|
|
|
+ taskLog.setCreateDept(task.getCreateDept());
|
|
|
+ taskLog.setCreateUser(task.getCreateUser());
|
|
|
+ taskLog.setUpdateUser(task.getUpdateUser());
|
|
|
+ taskLog.setCreateTime(DateUtil.now());
|
|
|
+ taskLog.setUpdateTime(DateUtil.now());
|
|
|
+ logs.add(log);
|
|
|
+ }
|
|
|
+ taskLogService.saveBatch(logs);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // todo 2.任务下发通知
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void submitTaskOrgDept(Long userId, Task task) {
|
|
|
+ R<User> userR = userClient.userInfoById(userId);
|
|
|
+ if (userR.isSuccess()) {
|
|
|
+ TaskLog log = new TaskLog();
|
|
|
+ log.setTaskId(task.getId());
|
|
|
+ log.setContent(userR.getData().getName() + " 指定了执行单位");
|
|
|
+ log.setCreateDept(task.getCreateDept());
|
|
|
+ log.setCreateUser(task.getCreateUser());
|
|
|
+ log.setUpdateUser(task.getUpdateUser());
|
|
|
+ log.setCreateTime(DateUtil.now());
|
|
|
+ log.setUpdateTime(DateUtil.now());
|
|
|
+ taskLogService.save(log);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void submitTaskMessage(Long userId, Task task) {
|
|
|
+ Long createUser = task.getCreateUser();
|
|
|
+ Long projectId = task.getProjectId();
|
|
|
+ String title = task.getTitle();
|
|
|
+ R<User> userR = userClient.userInfoById(userId);
|
|
|
+ Project project = projectService.getById(projectId);
|
|
|
+ if (userR.isSuccess() && project != null) {
|
|
|
+ IndexMessage message = new IndexMessage();
|
|
|
+ message.setCategory(1);
|
|
|
+ //发送给任务创建者
|
|
|
+ message.setToUser(createUser);
|
|
|
+ message.setContent(userR.getData().getName() + "上传了" + project.getName() + title + "任务的文件,请查阅");
|
|
|
+ message.setOpenUrl("/task");
|
|
|
+ message.setCreateDept(task.getCreateDept());
|
|
|
+ message.setCreateUser(userId);
|
|
|
+ message.setUpdateUser(userId);
|
|
|
+ message.setCreateTime(DateUtil.now());
|
|
|
+ message.setUpdateTime(DateUtil.now());
|
|
|
+ indexMessageService.save(message);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|