TaskWrapper.java 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package com.wtkj.wrapper;
  2. import com.wtkj.entity.*;
  3. import com.wtkj.service.IFileAndFolderService;
  4. import com.wtkj.service.IFileReadService;
  5. import com.wtkj.service.IProjectService;
  6. import com.wtkj.service.ITaskFileService;
  7. import com.wtkj.vo.TaskVO;
  8. import org.springblade.core.mp.support.BaseEntityWrapper;
  9. import org.springblade.core.tool.api.R;
  10. import org.springblade.core.tool.utils.BeanUtil;
  11. import org.springblade.core.tool.utils.Func;
  12. import org.springblade.core.tool.utils.SpringUtil;
  13. import org.springblade.core.tool.utils.StringUtil;
  14. import org.springblade.system.entity.Dept;
  15. import org.springblade.system.entity.DictBiz;
  16. import org.springblade.system.feign.IDictBizClient;
  17. import org.springblade.system.feign.ISysClient;
  18. import org.springblade.system.user.entity.User;
  19. import org.springblade.system.user.feign.IUserClient;
  20. import org.springframework.util.CollectionUtils;
  21. import java.util.ArrayList;
  22. import java.util.List;
  23. import java.util.Objects;
  24. import java.util.Set;
  25. import java.util.stream.Collectors;
  26. /**
  27. * @author Blizzard
  28. * @create at 2023-09-15 16:18
  29. * @describe
  30. */
  31. public class TaskWrapper extends BaseEntityWrapper<Task, TaskVO> {
  32. private static IUserClient userClient;
  33. private static ISysClient sysClient;
  34. private static IFileAndFolderService fileAndFolderService;
  35. private static IDictBizClient dictBizClient;
  36. private static IProjectService projectService;
  37. private static IFileReadService fileReadService;
  38. private static ITaskFileService taskFileService;
  39. public static TaskWrapper build() {
  40. userClient = SpringUtil.getBean(IUserClient.class);
  41. sysClient = SpringUtil.getBean(ISysClient.class);
  42. fileAndFolderService = SpringUtil.getBean(IFileAndFolderService.class);
  43. dictBizClient = SpringUtil.getBean(IDictBizClient.class);
  44. projectService = SpringUtil.getBean(IProjectService.class);
  45. fileReadService = SpringUtil.getBean(IFileReadService.class);
  46. taskFileService = SpringUtil.getBean(ITaskFileService.class);
  47. return new TaskWrapper();
  48. }
  49. @Override
  50. public TaskVO entityVO(Task entity) {
  51. TaskVO vo = Objects.requireNonNull(BeanUtil.copy(entity, TaskVO.class));
  52. Long projectId = entity.getProjectId();
  53. if (projectId != null) {
  54. Project byId = projectService.getById(projectId);
  55. if (byId != null) {
  56. vo.setProjectName(byId.getName());
  57. }
  58. }
  59. //项目经理
  60. Long projectManager = vo.getProjectManager();
  61. if (projectManager != null) {
  62. R<User> userR = userClient.userInfoById(projectManager);
  63. if (userR.isSuccess()) {
  64. vo.setProjectManagerUser(userR.getData().getName());
  65. }
  66. }
  67. //协作单位
  68. Long orgDeptId = vo.getOrgDeptId();
  69. if (orgDeptId != null) {
  70. R<Dept> rpc = sysClient.getDept(orgDeptId);
  71. if (rpc.isSuccess()) {
  72. vo.setDispatchUintName(rpc.getData().getDeptName());
  73. }
  74. }
  75. //执行机构
  76. Long executeDept = vo.getExecuteDept();
  77. if (executeDept != null) {
  78. R<Dept> dept = sysClient.getDept(executeDept);
  79. if (dept.isSuccess()) {
  80. vo.setExecuteDeptName(dept.getData().getDeptName());
  81. }
  82. }
  83. //任务创建人
  84. Long createUser = entity.getCreateUser();
  85. R<User> rpc = userClient.userInfoById(createUser);
  86. if (rpc.isSuccess()) {
  87. vo.setCreateUserName(rpc.getData().getName());
  88. }
  89. //审核人
  90. Long first = entity.getFirstCheckUser();
  91. Long second = entity.getSecondCheckUser();
  92. if (first != null) {
  93. R<User> userR = userClient.userInfoById(first);
  94. if (userR.isSuccess()) {
  95. vo.setFirstUser(userR.getData());
  96. }
  97. }
  98. if (second != null) {
  99. R<User> userR = userClient.userInfoById(second);
  100. if (userR.isSuccess()) {
  101. vo.setSecondUser(userR.getData());
  102. }
  103. }
  104. //审核过的用户
  105. //1.成果文件
  106. List<Long> users = new ArrayList<>();
  107. List<TaskFile> resultFiles = taskFileService.fileList(entity.getId());
  108. if (!CollectionUtils.isEmpty(resultFiles)) {
  109. //文件ids
  110. Set<Long> fileIds = resultFiles.stream().map(TaskFile::getBladeFileId).collect(Collectors.toSet());
  111. if (!CollectionUtils.isEmpty(fileIds)) {
  112. Set<String> collect1 = fileIds.stream().map(Object::toString).collect(Collectors.toSet());
  113. List<FileRead> reads = fileReadService.getByUser(first);
  114. if (!CollectionUtils.isEmpty(reads)) {
  115. Set<String> collect = reads.stream().map(FileRead::getBladeFileId).collect(Collectors.toSet());
  116. if (collect.containsAll(collect1)) {
  117. users.add(first);
  118. }
  119. }
  120. List<FileRead> readList = fileReadService.getByUser(second);
  121. if (!CollectionUtils.isEmpty(readList)) {
  122. Set<String> collect = readList.stream().map(FileRead::getBladeFileId).collect(Collectors.toSet());
  123. if (collect.containsAll(collect1)) {
  124. users.add(second);
  125. }
  126. }
  127. }
  128. }
  129. vo.setCheckUserIds(users);
  130. //任务执行人
  131. String executeUser = entity.getExecuteUser();
  132. if (executeUser != null) {
  133. List<String> execUsers = new ArrayList<>();
  134. List<Long> userIds = Func.toLongList(executeUser);
  135. userIds.forEach(userId -> {
  136. R<User> userR = userClient.userInfoById(userId);
  137. if (userR.isSuccess()) {
  138. execUsers.add(userR.getData().getName());
  139. }
  140. });
  141. vo.setExecuteUsers(execUsers);
  142. }
  143. //任务相关联文件
  144. String relatedIds = entity.getRelatedIds();
  145. if (StringUtil.isNotBlank(relatedIds)) {
  146. List<FileAndFolder> files = new ArrayList<>();
  147. List<Long> fileIds = Func.toLongList(relatedIds);
  148. fileIds.forEach(fileId -> {
  149. FileAndFolder byId = fileAndFolderService.getById(fileId);
  150. if (byId != null) {
  151. files.add(byId);
  152. }
  153. });
  154. vo.setFiles(files);
  155. }
  156. //任务标签的数组
  157. String tags = entity.getTags();
  158. String category = entity.getCategory();
  159. List<String> dictBizs = new ArrayList<>();
  160. if (StringUtil.isNotBlank(tags)) {
  161. List<Long> intList = Func.toLongList(tags);
  162. intList.forEach(f -> {
  163. R<DictBiz> byId = dictBizClient.getById(f);
  164. if (byId.isSuccess()) {
  165. dictBizs.add(byId.getData().getDictValue());
  166. }
  167. });
  168. }
  169. if (StringUtil.isNotBlank(category)) {
  170. List<Long> intList = Func.toLongList(category);
  171. intList.forEach(f -> {
  172. R<DictBiz> byId = dictBizClient.getById(f);
  173. if (byId.isSuccess()) {
  174. dictBizs.add(byId.getData().getDictValue());
  175. }
  176. });
  177. }
  178. vo.setTagsArray(dictBizs);
  179. return vo;
  180. }
  181. }