IndexServiceImpl.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. package com.wtkj.service.impl;
  2. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  3. import com.baomidou.mybatisplus.core.metadata.IPage;
  4. import com.wtkj.entity.IndexMessage;
  5. import com.wtkj.entity.ProjectAuth;
  6. import com.wtkj.entity.Task;
  7. import com.wtkj.service.*;
  8. import com.wtkj.vo.IndexProjectAndTaskSummaryVO;
  9. import com.wtkj.vo.MyIndexTaskStatistics;
  10. import com.wtkj.vo.ScheduleUserVO;
  11. import lombok.AllArgsConstructor;
  12. import org.springblade.core.secure.utils.AuthUtil;
  13. import org.springblade.core.tool.api.R;
  14. import org.springblade.core.tool.utils.DateUtil;
  15. import org.springblade.core.tool.utils.Func;
  16. import org.springblade.core.tool.utils.StringUtil;
  17. import org.springblade.system.user.entity.User;
  18. import org.springblade.system.user.feign.IUserClient;
  19. import org.springframework.stereotype.Service;
  20. import org.springframework.util.CollectionUtils;
  21. import java.util.*;
  22. import java.util.stream.Collectors;
  23. import static com.wtkj.config.MagicValue.*;
  24. /**
  25. * @author Blizzard
  26. * @create at 2023-09-20 14:51
  27. * @describe
  28. */
  29. @Service
  30. @AllArgsConstructor
  31. public class IndexServiceImpl implements IIndexService {
  32. private final ITaskService taskService;
  33. private final IProjectService projectService;
  34. private final IIndexMessageService indexMessageService;
  35. private final IUserClient userClient;
  36. private final IProjectAuthService projectAuthService;
  37. @Override
  38. public IndexProjectAndTaskSummaryVO projectAndTaskSummary(Long topDept) {
  39. IndexProjectAndTaskSummaryVO vo = new IndexProjectAndTaskSummaryVO();
  40. Long userId = AuthUtil.getUserId();
  41. //1.全部项目数量 ---> 权限表下 topDept是 参数topDept
  42. List<ProjectAuth> auths = projectAuthService.getByDeptAndUser(topDept, null, null);
  43. if (!CollectionUtils.isEmpty(auths)) {
  44. Set<Long> collect = auths.stream().map(ProjectAuth::getProjectId).collect(Collectors.toSet());
  45. vo.setProjectCount(collect.size());
  46. }
  47. //2.我参与的项目 ---> 权限表下user_id
  48. List<ProjectAuth> userAuth = projectAuthService.getByDeptAndUser(null, null, userId);
  49. if (!CollectionUtils.isEmpty(userAuth)) {
  50. Set<Long> collect = userAuth.stream().map(ProjectAuth::getProjectId).collect(Collectors.toSet());
  51. vo.setMyProjectCount(collect.size());
  52. }
  53. // 3. 机构下的任务总数 -->执行单位是topdept
  54. List<Task> tasks = taskService.getByExecute(topDept, null);
  55. if (!CollectionUtils.isEmpty(tasks)) {
  56. vo.setTaskCount(tasks.size());
  57. }
  58. //4.我的任务 ---> 执行人是userid
  59. List<Task> byExecute = taskService.getByExecute(null, String.valueOf(userId));
  60. if (!CollectionUtils.isEmpty(byExecute)) {
  61. vo.setMyTaskCount(byExecute.size());
  62. }
  63. //5.我的今日任务数 ---> 截至日期是今天且未完成的和未取消的任务
  64. String now = DateUtil.format(new Date(), "yyyy-MM-dd");
  65. List<Task> todayTask = taskService.todayTodo(userId, now);
  66. if (!CollectionUtils.isEmpty(todayTask)) {
  67. vo.setTodayTask(todayTask.size());
  68. }
  69. return vo;
  70. }
  71. @Override
  72. public IPage<IndexMessage> todoList(Integer isRead, IPage<IndexMessage> page) {
  73. LambdaQueryWrapper<IndexMessage> lqw = new LambdaQueryWrapper<>();
  74. lqw.eq(IndexMessage::getCategory, 1);
  75. lqw.eq(IndexMessage::getToUser, AuthUtil.getUserId());
  76. if (isRead == 1) {
  77. lqw.eq(IndexMessage::getIsRead, 1);
  78. lqw.orderByDesc(IndexMessage::getCreateTime);
  79. } else if (isRead == 2) {
  80. lqw.eq(IndexMessage::getIsRead, 0);
  81. lqw.orderByDesc(IndexMessage::getCreateTime);
  82. } else if (isRead == 0) {
  83. lqw.orderByAsc(IndexMessage::getIsRead);
  84. lqw.orderByDesc(IndexMessage::getCreateTime);
  85. }
  86. return indexMessageService.page(page, lqw);
  87. }
  88. @Override
  89. public Object studyList(IPage<Object> page) {
  90. return null;
  91. }
  92. @Override
  93. public IndexMessage messageDetail(Long id) {
  94. IndexMessage byId = indexMessageService.getById(id);
  95. if (byId != null) {
  96. byId.setIsRead(1);
  97. indexMessageService.updateById(byId);
  98. }
  99. return byId;
  100. }
  101. @Override
  102. public List<ScheduleUserVO> schedule(Long topDept, String date) {
  103. List<ScheduleUserVO> result = new ArrayList<>();
  104. Set<Long> res = new HashSet<>();
  105. String roleName = AuthUtil.getUserRole();
  106. Long userId = AuthUtil.getUserId();
  107. String deptId = AuthUtil.getDeptId();
  108. if (roleName != null) {
  109. if (roleName.contains(STAFF_ADMIN)) {
  110. //如果是机构管理员 ---> 可以查看机构下的待完成的和逾期的任务
  111. List<Task> list = taskService.getByDeptAndDate(topDept, null, null, date);
  112. if (!CollectionUtils.isEmpty(list)) {
  113. for (Task task : list) {
  114. String executeUser = task.getExecuteUser();
  115. if (StringUtil.isNotBlank(executeUser)) {
  116. List<Long> userIds = Func.toLongList(executeUser);
  117. res.addAll(userIds);
  118. }
  119. }
  120. }
  121. } else if (roleName.contains(STAFF_SECOND_ADMIN)) {
  122. List<Task> list = taskService.getByDeptAndDate(null, Long.valueOf(deptId), null, null);
  123. if (!CollectionUtils.isEmpty(list)){
  124. for (Task task : list) {
  125. String executeUser = task.getExecuteUser();
  126. if (StringUtil.isNotBlank(executeUser)) {
  127. List<Long> userIds = Func.toLongList(executeUser);
  128. res.addAll(userIds);
  129. }
  130. }
  131. }
  132. } else if (roleName.contains(STAFF_USER)) {
  133. res.add(userId);
  134. }
  135. }
  136. if (!CollectionUtils.isEmpty(res)) {
  137. for (Long id : res) {
  138. R<User> rpc = userClient.userInfoById(id);
  139. if (rpc.isSuccess()) {
  140. ScheduleUserVO vo = new ScheduleUserVO();
  141. vo.setUser(rpc.getData());
  142. List<Task> tasks = taskService.todayTodo(userId, date);
  143. if (!CollectionUtils.isEmpty(tasks)) {
  144. vo.setTodayTodo(tasks.size());
  145. }
  146. List<Task> tasks1 = taskService.todayExpire(userId, date);
  147. if (!CollectionUtils.isEmpty(tasks1)) {
  148. vo.setTodayExpire(tasks1.size());
  149. }
  150. result.add(vo);
  151. }
  152. }
  153. }
  154. return result;
  155. }
  156. @Override
  157. public List<Task> scheduleExpand(Long userId, String date) {
  158. return taskService.getTodoAndExpireByUserId(userId, date);
  159. }
  160. @Override
  161. public List<Map<String, Integer>> mapStatistics(Long topDept, String date) {
  162. List<Map<String, Integer>> res = new ArrayList<>();
  163. //1.机构下有今日待完成的任务的用户
  164. List<Task> tasks = taskService.getTodayTodoByOrgDeptId(topDept, date);
  165. Set<Long> userIds = new HashSet<>();
  166. if (!CollectionUtils.isEmpty(tasks)) {
  167. for (Task task : tasks) {
  168. String executeUser = task.getExecuteUser();
  169. if (StringUtil.isNotBlank(executeUser)) {
  170. List<Long> ids = Func.toLongList(executeUser);
  171. userIds.addAll(ids);
  172. }
  173. }
  174. }
  175. if (!CollectionUtils.isEmpty(userIds)) {
  176. userIds.forEach(userId -> {
  177. Map<String, Integer> map = new HashMap<>();
  178. R<User> userR = userClient.userInfoById(userId);
  179. if (userR.isSuccess()) {
  180. List<Task> tasks1 = taskService.todayTodo(userId, date);
  181. if (!CollectionUtils.isEmpty(tasks1)) {
  182. map.put(userR.getData().getName(), tasks1.size());
  183. res.add(map);
  184. }
  185. }
  186. });
  187. }
  188. return res;
  189. }
  190. @Override
  191. public MyIndexTaskStatistics myStatistics(String date) {
  192. Long userId = AuthUtil.getUserId();
  193. MyIndexTaskStatistics statistics = new MyIndexTaskStatistics();
  194. //1.任务总数
  195. List<Task> tasks = taskService.listByUser(userId, null, null);
  196. if (!CollectionUtils.isEmpty(tasks)) {
  197. statistics.setAll(tasks.size());
  198. //2.当日待完成 即今日逾期
  199. List<Task> todo = taskService.todayTodo(userId, date);
  200. if (!CollectionUtils.isEmpty(todo)) {
  201. statistics.setTodayTodo(todo.size());
  202. }
  203. //3.逾期任务数
  204. List<Task> expires = taskService.todayExpire(userId, date);
  205. if (!CollectionUtils.isEmpty(expires)) {
  206. statistics.setExpire(expires.size());
  207. }
  208. }
  209. return statistics;
  210. }
  211. }