TaskServiceImpl.java 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  1. package com.wtkj.service.impl;
  2. import com.alibaba.excel.EasyExcel;
  3. import com.alibaba.excel.write.metadata.style.WriteCellStyle;
  4. import com.alibaba.excel.write.metadata.style.WriteFont;
  5. import com.alibaba.excel.write.style.HorizontalCellStyleStrategy;
  6. import com.alibaba.fastjson.JSON;
  7. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  8. import com.baomidou.mybatisplus.core.metadata.IPage;
  9. import com.wtkj.dto.MyTaskPageDTO;
  10. import com.wtkj.dto.ProjectTaskPageDTO;
  11. import com.wtkj.entity.*;
  12. import com.wtkj.mapper.ProjectMapper;
  13. import com.wtkj.mapper.TaskMapper;
  14. import com.wtkj.service.*;
  15. import com.wtkj.util.Workload;
  16. import com.wtkj.vo.MyTaskStatistics;
  17. import com.wutong.file.feign.IFileClient;
  18. import com.wutong.file.vo.FileVO;
  19. import lombok.AllArgsConstructor;
  20. import org.apache.poi.ss.usermodel.HorizontalAlignment;
  21. import org.apache.poi.ss.usermodel.IndexedColors;
  22. import org.springblade.core.log.exception.ServiceException;
  23. import org.springblade.core.mp.base.BaseServiceImpl;
  24. import org.springblade.core.redis.cache.BladeRedis;
  25. import org.springblade.core.secure.utils.AuthUtil;
  26. import org.springblade.core.tool.api.R;
  27. import org.springblade.core.tool.utils.DateUtil;
  28. import org.springblade.core.tool.utils.Func;
  29. import org.springblade.core.tool.utils.StringUtil;
  30. import org.springblade.system.entity.Dept;
  31. import org.springblade.system.entity.DictBiz;
  32. import org.springblade.system.entity.Region;
  33. import org.springblade.system.feign.IDictBizClient;
  34. import org.springblade.system.feign.ISysClient;
  35. import org.springblade.system.user.entity.User;
  36. import org.springblade.system.user.feign.IUserClient;
  37. import org.springframework.stereotype.Service;
  38. import org.springframework.transaction.annotation.Transactional;
  39. import org.springframework.util.CollectionUtils;
  40. import javax.servlet.http.HttpServletResponse;
  41. import java.io.IOException;
  42. import java.net.URLEncoder;
  43. import java.time.LocalDate;
  44. import java.time.format.DateTimeFormatter;
  45. import java.util.*;
  46. import java.util.stream.Collectors;
  47. import static com.wtkj.config.MagicValue.STAFF_ADMIN;
  48. import static com.wtkj.config.MagicValue.STAFF_SECOND_ADMIN;
  49. /**
  50. * @author Blizzard
  51. * @create at 2023-09-15 15:18
  52. * @describe
  53. */
  54. @AllArgsConstructor
  55. @Service
  56. public class TaskServiceImpl extends BaseServiceImpl<TaskMapper, Task> implements ITaskService {
  57. private final IAsyncService asyncService;
  58. private final ITaskFileService taskFileService;
  59. private final IFileAndFolderService fileAndFolderService;
  60. private final IFileClient fileClient;
  61. private final IUserClient userClient;
  62. private final IProjectStageService stageService;
  63. private final BladeRedis redis;
  64. private final ISysClient sysClient;
  65. private final ProjectMapper projectMapper;
  66. private final IDictBizClient dictBizClient;
  67. @Override
  68. public boolean submit(Task task) {
  69. boolean flag = false;
  70. Long userId = AuthUtil.getUserId();
  71. Long taskId = task.getId();
  72. Long projectId = task.getProjectId();
  73. Project project = projectMapper.selectById(projectId);
  74. if (taskId == null && project != null) {
  75. Long stageId = task.getStageId();
  76. ProjectStage stage = stageService.getById(stageId);
  77. if (stage != null) {
  78. Date startTime = stage.getStartTime();
  79. Date endTime = stage.getEndTime();
  80. if (startTime != null && endTime != null) {
  81. if (task.getStartTime().before(startTime) || task.getEndTime().after(endTime)) {
  82. throw new ServiceException(String.format("任务时间异常,不可超出当前阶段的起止时间%s-%s", DateUtil.format(startTime, "yyyy-MM-dd"), DateUtil.format(endTime, "yyyy-MM-dd")));
  83. }
  84. }
  85. }
  86. LocalDate now = LocalDate.now();
  87. Integer year = now.getYear();
  88. Integer month = now.getMonthValue();
  89. task.setYear(year);
  90. task.setMonth(month);
  91. task.setCompetentUnit(project.getCompetentUnit());
  92. flag = this.save(task);
  93. asyncService.createTask(task);
  94. asyncService.dispatchToOrg(userId, task);
  95. } else {
  96. Task byId = this.getById(taskId);
  97. if (byId != null) {
  98. Integer newStatus = task.getTaskStatus();
  99. Integer oldStatus = byId.getTaskStatus();
  100. //确认任务
  101. if (newStatus != null && oldStatus != null && !oldStatus.equals(4) && newStatus.equals(4)) {
  102. task.setConfirmUser(userId);
  103. task.setConfirmTime(DateUtil.now());
  104. task.setIsConfirmed(1);
  105. }
  106. //指定执行部门 ---> 通知主管
  107. if (byId.getExecuteDept() == null && task.getExecuteDept() != null) {
  108. asyncService.dispatchToDept(userId, task);
  109. }
  110. // 下发任务 ---> 通知执行者
  111. if (StringUtil.isBlank(byId.getExecuteUser()) && StringUtil.isNotBlank(task.getExecuteUser())) {
  112. asyncService.dispatchTask(userId, task);
  113. }
  114. //二次审核 已经变为审核状态(7)的时候通知二次审核
  115. if (oldStatus != null && newStatus != null && !oldStatus.equals(7) && newStatus.equals(7)) {
  116. asyncService.secondCheck(userId, task);
  117. }
  118. asyncService.alterTask(task, byId, userId);
  119. }
  120. flag = this.updateById(task);
  121. }
  122. return flag;
  123. }
  124. @Override
  125. public IPage<Task> projectTaskPage(ProjectTaskPageDTO dto, IPage<Task> page) {
  126. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  127. lqw.eq(Task::getProjectId, dto.getProjectId());
  128. lqw.eq(Task::getStageId, dto.getStageId());
  129. if (dto.getName() != null) {
  130. lqw.like(Task::getTitle, dto.getName());
  131. }
  132. if (dto.getOrgDeptId() != null) {
  133. lqw.eq(Task::getOrgDeptId, dto.getOrgDeptId());
  134. }
  135. if (dto.getTaskStatus() != null) {
  136. lqw.eq(Task::getTaskStatus, dto.getTaskStatus());
  137. }
  138. lqw.orderByDesc(Task::getCreateTime);
  139. return baseMapper.selectPage(page, lqw);
  140. }
  141. @Override
  142. public boolean uploadFile(Long taskId, String ids) {
  143. boolean flag = false;
  144. if (ids != null) {
  145. List<TaskFile> files = new ArrayList<>();
  146. List<Long> fileIds = Func.toLongList(ids);
  147. fileIds.forEach(id -> {
  148. //判断这个文件是否已经存在
  149. TaskFile file = taskFileService.getByBladeFileId(taskId, id);
  150. //不存在 才保存
  151. if (file == null) {
  152. TaskFile taskFile = new TaskFile();
  153. taskFile.setTaskId(taskId);
  154. taskFile.setBladeFileId(id);
  155. files.add(taskFile);
  156. }
  157. });
  158. asyncService.firstCheck(AuthUtil.getUserId(), this.getById(taskId));
  159. flag = taskFileService.saveBatch(files);
  160. }
  161. return flag;
  162. }
  163. @Override
  164. public boolean moveFile(Long stageId, Long parentId, String fileIds) {
  165. boolean flag = false;
  166. List<Long> ids = Func.toLongList(fileIds);
  167. if (!CollectionUtils.isEmpty(ids)) {
  168. List<FileAndFolder> files = new ArrayList<>();
  169. FileAndFolder folder = fileAndFolderService.getById(parentId);
  170. if (folder != null) {
  171. ids.forEach(id -> {
  172. R<FileVO> rpc = fileClient.findById(id);
  173. if (rpc.isSuccess()) {
  174. FileAndFolder file = new FileAndFolder();
  175. file.setProjectId(folder.getProjectId());
  176. file.setStageId(stageId);
  177. file.setParentId(parentId);
  178. file.setType(1);
  179. file.setTitle(rpc.getData().getOriginalFileName());
  180. file.setBladeFileId(id);
  181. files.add(file);
  182. }
  183. });
  184. flag = fileAndFolderService.saveBatch(files);
  185. }
  186. }
  187. return flag;
  188. }
  189. @Override
  190. public boolean deleteFile(String ids) {
  191. return taskFileService.removeBatchByIds(Func.toLongList(ids));
  192. }
  193. @Override
  194. public IPage<Task> myTaskPage(MyTaskPageDTO dto, IPage<Task> page) {
  195. Long userId = AuthUtil.getUserId();
  196. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  197. //当前年 当前月
  198. LocalDate currentDate = LocalDate.now();
  199. int currentYear = currentDate.getYear();
  200. int currentMonth = currentDate.getMonthValue();
  201. lqw.eq(Task::getYear, dto.getYear() == null ? currentYear : dto.getYear());
  202. lqw.eq(Task::getMonth, dto.getMonth() == null ? currentMonth : dto.getMonth());
  203. //1.全部 2.我创建的 3.我执行的 4.我管理的
  204. if (dto.getType() == 1) {
  205. Set<Long> ids = new HashSet<>();
  206. //我管理的
  207. if (dto.getDeptCategory().equals(3)) {
  208. //1.业主 ---> 项目权限表里 topDept 字段是自己的集合
  209. List<Task> tasks = this.getByCompetentUnit(dto.getTopDept());
  210. if (!CollectionUtils.isEmpty(tasks)) {
  211. Set<Long> taskIds = tasks.stream().map(Task::getId).collect(Collectors.toSet());
  212. ids.addAll(taskIds);
  213. }
  214. } else if (dto.getDeptCategory().equals(4)) {
  215. //2.服务商
  216. String role = AuthUtil.getUserRole();
  217. Long deptId = Func.firstLong(AuthUtil.getDeptId());
  218. if (role.contains(STAFF_ADMIN)) {
  219. // 2.1 机构管理员 ---> 任务是派遣给自己机构的
  220. List<Task> byOrgDeptId = this.getByDeptAndDate(dto.getTopDept(), null, null, null);
  221. if (!CollectionUtils.isEmpty(byOrgDeptId)) {
  222. Set<Long> taskIds = byOrgDeptId.stream().map(Task::getId).collect(Collectors.toSet());
  223. ids.addAll(taskIds);
  224. }
  225. } else if (role.contains(STAFF_SECOND_ADMIN)) {
  226. // 2.2 次级机构主管 ---> 任务是派遣给自己部门的
  227. List<Task> list = this.getByDeptAndDate(dto.getTopDept(), deptId, null, null);
  228. if (!CollectionUtils.isEmpty(list)) {
  229. Set<Long> taskIds = list.stream().map(Task::getId).collect(Collectors.toSet());
  230. ids.addAll(taskIds);
  231. }
  232. }
  233. }
  234. lqw.and(wq -> {
  235. wq.eq(Task::getCreateUser, userId);
  236. wq.or().like(Task::getExecuteUser, String.valueOf(userId));
  237. if (!CollectionUtils.isEmpty(ids)) {
  238. wq.or().in(Task::getId, ids);
  239. }
  240. });
  241. } else if (dto.getType() == 2) {
  242. lqw.eq(Task::getCreateUser, userId);
  243. } else if (dto.getType() == 3) {
  244. lqw.like(Task::getExecuteUser, String.valueOf(userId));
  245. } else if (dto.getType() == 4) {
  246. //我管理的
  247. if (dto.getDeptCategory().equals(3)) {
  248. //1.业主 ---> 任务主管单位是自己topDept
  249. List<Task> tasks = this.getByCompetentUnit(dto.getTopDept());
  250. if (!CollectionUtils.isEmpty(tasks)) {
  251. Set<Long> taskIds = tasks.stream().map(Task::getId).collect(Collectors.toSet());
  252. lqw.in(Task::getId, taskIds);
  253. }
  254. } else if (dto.getDeptCategory().equals(4)) {
  255. //2.服务商
  256. String role = AuthUtil.getUserRole();
  257. Long deptId = Func.firstLong(AuthUtil.getDeptId());
  258. if (role.contains(STAFF_ADMIN)) {
  259. // 2.1 机构管理员 ---> 任务是派遣给自己机构的
  260. List<Task> byOrgDeptId = this.getByDeptAndDate(dto.getTopDept(), null, null, null);
  261. if (!CollectionUtils.isEmpty(byOrgDeptId)) {
  262. Set<Long> taskIds = byOrgDeptId.stream().map(Task::getId).collect(Collectors.toSet());
  263. lqw.in(Task::getId, taskIds);
  264. }
  265. } else if (role.contains(STAFF_SECOND_ADMIN)) {
  266. // 2.2 次级机构主管 ---> 任务是派遣给自己部门的
  267. List<Task> list = this.getByDeptAndDate(dto.getTopDept(), deptId, null, null);
  268. if (!CollectionUtils.isEmpty(list)) {
  269. Set<Long> taskIds = list.stream().map(Task::getId).collect(Collectors.toSet());
  270. lqw.in(Task::getId, taskIds);
  271. }
  272. } else {
  273. lqw.eq(Task::getId, 0L);
  274. }
  275. }
  276. }
  277. if (dto.getType() == 1) {
  278. lqw.groupBy(Task::getProjectId, Task::getCreateTime);
  279. lqw.orderByDesc(Task::getProjectId, Task::getCreateTime);
  280. } else {
  281. lqw.orderByDesc(Task::getCreateTime);
  282. }
  283. return baseMapper.selectPage(page, lqw);
  284. }
  285. @Override
  286. public MyTaskStatistics taskStatistics(Long stageId, Integer year, Integer month) {
  287. MyTaskStatistics statistics = new MyTaskStatistics();
  288. Long userId = AuthUtil.getUserId();
  289. List<Task> tasks = null;
  290. if (stageId == null) {
  291. //个人任务统计
  292. tasks = this.listByUser(userId, year, month);
  293. } else {
  294. //项目下的所有任务
  295. tasks = this.listByStageId(stageId);
  296. }
  297. if (!CollectionUtils.isEmpty(tasks)) {
  298. //全部任务数
  299. statistics.setAll(tasks.size());
  300. tasks.forEach(task -> {
  301. //任务状态 1.待确认 2.进行中 3.已提交 4.已完成 5.已取消 6.过期 7.审查 8.二次审查
  302. Integer taskStatus = task.getTaskStatus();
  303. if (taskStatus.equals(4)) {
  304. //1.已完成
  305. statistics.setCompleted(statistics.getCompleted() + 1);
  306. }
  307. if (!taskStatus.equals(4) && !taskStatus.equals(5) && !taskStatus.equals(6)) {
  308. //未完成
  309. //6.未完成
  310. statistics.setNotCompleted(statistics.getNotCompleted() + 1);
  311. }
  312. Date now = DateUtil.now();
  313. Date endTime = task.getEndTime();
  314. Integer isExpire = task.getIsExpire();
  315. if (endTime != null) {
  316. //2.已逾期
  317. if (taskStatus.equals(6)) {
  318. statistics.setOverdue(statistics.getOverdue() + 1);
  319. }
  320. //3.待确认 已经提交但未确认且未逾期的任务为待确认
  321. if (endTime.after(now) && taskStatus.equals(3)) {
  322. statistics.setToConfirmed(statistics.getToConfirmed() + 1);
  323. }
  324. //4.今日到期
  325. String endStr = DateUtil.format(endTime, "yyyy-MM-dd");
  326. String nowStr = DateUtil.format(now, "yyyy-MM-dd");
  327. if (endStr.equals(nowStr)) {
  328. statistics.setTodayToExpire(statistics.getTodayToExpire() + 1);
  329. }
  330. //5.逾期完成 isExpire = 1 且taskStatus = 4
  331. if (isExpire.equals(1) && taskStatus.equals(4)) {
  332. statistics.setOverdueComplete(statistics.getOverdueComplete() + 1);
  333. }
  334. }
  335. });
  336. }
  337. return statistics;
  338. }
  339. @Override
  340. public List<Task> listByUser(Long userId, Integer year, Integer month) {
  341. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  342. if (year != null) {
  343. lqw.eq(Task::getYear, year);
  344. }
  345. if (month != null) {
  346. lqw.eq(Task::getMonth, month);
  347. }
  348. lqw.like(Task::getExecuteUser, String.valueOf(userId));
  349. lqw.orderByAsc(Task::getEndTime);
  350. return this.list(lqw);
  351. }
  352. @Override
  353. public List<Task> listByStageId(Long stageId) {
  354. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  355. lqw.eq(Task::getStageId, stageId);
  356. lqw.ne(Task::getTaskStatus, 5);
  357. lqw.orderByAsc(Task::getEndTime);
  358. return this.list(lqw);
  359. }
  360. @Override
  361. public List<Task> getByExecute(Long deptId, String userId) {
  362. return baseMapper.selectByExecute(deptId, userId);
  363. }
  364. @Override
  365. public List<Task> todayTodo(Long userId, String date) {
  366. return baseMapper.todayTo(String.valueOf(userId), date);
  367. }
  368. @Override
  369. public List<Task> todayExpire(Long userId, String date) {
  370. return baseMapper.todayExpire(String.valueOf(userId), date);
  371. }
  372. @Override
  373. public List<Task> getByDeptAndDate(Long topDept, Long executeDept, String user, String date) {
  374. return baseMapper.getByDeptAndDate(topDept, executeDept, user, date);
  375. }
  376. @Override
  377. public List<Task> getTodoAndExpireByUserId(Long userId, String date) {
  378. return baseMapper.getTodoAndExpireByUserId(String.valueOf(userId), date);
  379. }
  380. @Override
  381. public List<Task> getTodayTodoByOrgDeptId(Long topDept, String date) {
  382. return baseMapper.getTodayTodoByOrgDeptId(topDept, date);
  383. }
  384. @Override
  385. public List<Task> getTodoByYear(Set<Long> projectIds, String year) {
  386. return baseMapper.getTodoByYear(projectIds, Integer.valueOf(year));
  387. }
  388. @Override
  389. public List<Map<String, String>> projectTaskSummary(Long stageId) {
  390. List<Map<String, String>> res = new ArrayList<>();
  391. //项目下任务执行者的情况
  392. Set<Long> userIds = new HashSet<>();
  393. List<Task> tasks = this.listByStageId(stageId);
  394. if (!CollectionUtils.isEmpty(tasks)) {
  395. for (Task task : tasks) {
  396. String executeUser = task.getExecuteUser();
  397. if (StringUtil.isNotBlank(executeUser)) {
  398. List<Long> ids = Func.toLongList(executeUser);
  399. userIds.addAll(ids);
  400. }
  401. }
  402. }
  403. if (!CollectionUtils.isEmpty(userIds)) {
  404. userIds.forEach(userId -> {
  405. Map<String, String> map = new HashMap<>();
  406. R<User> userR = userClient.userInfoById(userId);
  407. if (userR.isSuccess()) {
  408. List<Task> tasks1 = this.listByUserAndProject(userId, stageId);
  409. if (!CollectionUtils.isEmpty(tasks1)) {
  410. map.put("value", String.valueOf(tasks1.size()));
  411. map.put("name", userR.getData().getName());
  412. //map.put(userR.getData().getName(), tasks1.size());
  413. res.add(map);
  414. }
  415. }
  416. });
  417. }
  418. return res;
  419. }
  420. @Override
  421. public List<Task> listByUserAndProject(Long userId, Long stageId) {
  422. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  423. lqw.eq(Task::getStageId, stageId);
  424. lqw.like(Task::getExecuteUser, String.valueOf(userId));
  425. lqw.orderByAsc(Task::getEndTime);
  426. return this.list(lqw);
  427. }
  428. @Override
  429. public LineChartDataSet projectTaskSituation(Long stageId) {
  430. LineChartDataSet set = new LineChartDataSet();
  431. List<LineChartData> list = new ArrayList<>();
  432. //1.阶段周期
  433. List<LocalDate> dateList = redis.get("dateList::" + stageId);
  434. if (!CollectionUtils.isEmpty(dateList)) {
  435. LineChartData leftLine = new LineChartData();
  436. leftLine.setType("line");
  437. leftLine.setName("leftTask");
  438. LineChartData completeLine = new LineChartData();
  439. completeLine.setType("line");
  440. completeLine.setName("completeTask");
  441. LineChartData expireLine = new LineChartData();
  442. expireLine.setType("line");
  443. expireLine.setName("expireTask");
  444. List<Map<String, Object>> leftData = new ArrayList<>();
  445. List<Map<String, Object>> completeData = new ArrayList<>();
  446. List<Map<String, Object>> expireData = new ArrayList<>();
  447. dateList.forEach(date -> {
  448. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 设置日期格式
  449. String formatDate = date.format(formatter);
  450. Map<String, Object> leftMap = new HashMap<>();
  451. // 日期为date时的任务剩余量 完成量 过期量
  452. //1.剩余量 未完成和已取消的除外
  453. List<Task> leftTasks = this.getLeftByDateAndStage(stageId, formatDate);
  454. int leftAmount = 0;
  455. if (!CollectionUtils.isEmpty(leftTasks)) {
  456. leftAmount = leftTasks.size();
  457. }
  458. leftMap.put(formatDate, leftAmount);
  459. leftData.add(leftMap);
  460. //2.完成量 task_status = 4 的数量
  461. Map<String, Object> completeMap = new HashMap<>();
  462. List<Task> completeTasks = this.getListByDateAndStageAndStatus(stageId, formatDate, 4);
  463. int completeAmount = 0;
  464. if (!CollectionUtils.isEmpty(completeTasks)) {
  465. completeAmount = completeTasks.size();
  466. }
  467. completeMap.put(formatDate, completeAmount);
  468. completeData.add(completeMap);
  469. //3.过期量 task_status = 6
  470. Map<String, Object> expireMap = new HashMap<>();
  471. List<Task> expireTasks = this.getListByDateAndStageAndStatus(stageId, formatDate, 6);
  472. int expireAmount = 0;
  473. if (!CollectionUtils.isEmpty(expireTasks)) {
  474. expireAmount = expireTasks.size();
  475. }
  476. expireMap.put(formatDate, expireAmount);
  477. expireData.add(expireMap);
  478. });
  479. leftLine.setData(leftData);
  480. completeLine.setData(completeData);
  481. expireLine.setData(expireData);
  482. list.add(leftLine);
  483. list.add(completeLine);
  484. list.add(expireLine);
  485. }
  486. set.setLineChartDataList(list);
  487. return set;
  488. }
  489. @Override
  490. public LineChartDataSet projectTaskBurnout(Long stageId) {
  491. LineChartDataSet set = new LineChartDataSet();
  492. List<LineChartData> list = new ArrayList<>();
  493. //1.阶段周期
  494. List<LocalDate> dateList = redis.get("dateList::" + stageId);
  495. if (!CollectionUtils.isEmpty(dateList)) {
  496. int size = dateList.size();
  497. float avg = 0f;
  498. float amount = 0f;
  499. // 当前阶段下所有的任务
  500. List<Task> tasks = this.listByStageId(stageId);
  501. if (!CollectionUtils.isEmpty(tasks)) {
  502. int taskAmount = tasks.size();
  503. amount = taskAmount;
  504. //任务每天平均燃尽量
  505. avg = (float) taskAmount / size;
  506. }
  507. LineChartData actualLine = new LineChartData();
  508. actualLine.setType("line");
  509. actualLine.setName("actual");
  510. LineChartData avgLine = new LineChartData();
  511. avgLine.setType("line");
  512. avgLine.setName("avg");
  513. List<Map<String, Object>> actualData = new ArrayList<>();
  514. List<Map<String, Object>> avgData = new ArrayList<>();
  515. float finalAvg = avg;
  516. float temp = amount;
  517. for (LocalDate date : dateList) {
  518. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 设置日期格式
  519. String formatDate = date.format(formatter);
  520. // 日期为date时的当日完成数 理想完成数
  521. //1.date 当日完成数
  522. Map<String, Object> actualMap = new HashMap<>();
  523. List<Task> actualTasks = this.getCurrentDateCompleteByStageAndDate(stageId, formatDate, null);
  524. int actualAmount = 0;
  525. if (!CollectionUtils.isEmpty(actualTasks)) {
  526. actualAmount = actualTasks.size();
  527. }
  528. actualMap.put(formatDate, actualAmount);
  529. actualData.add(actualMap);
  530. Map<String, Object> avgMap = new HashMap<>();
  531. temp = temp - finalAvg;
  532. avgMap.put(formatDate, temp);
  533. avgData.add(avgMap);
  534. }
  535. actualLine.setData(actualData);
  536. avgLine.setData(avgData);
  537. list.add(actualLine);
  538. list.add(avgLine);
  539. }
  540. set.setLineChartDataList(list);
  541. return set;
  542. }
  543. @Override
  544. public List<Task> getTodayToExpire(String date) {
  545. return baseMapper.getTodayToExpire(date);
  546. }
  547. @Override
  548. public List<Workload> exportList(String startDate) {
  549. List<Workload> result = new ArrayList<>();
  550. //1.时间段内已经完成的任务
  551. List<Task> list = baseMapper.getByMonth(startDate);
  552. if (!CollectionUtils.isEmpty(list)) {
  553. List<Workload> tempList = new ArrayList<>();
  554. //2.Information for all tasks
  555. for (Task task : list) {
  556. Workload workload = new Workload();
  557. //人员
  558. String executeUser = task.getExecuteUser();
  559. //项目信息
  560. Long projectId = task.getProjectId();
  561. //发布人
  562. Long createUser = task.getCreateUser();
  563. //科研 方案 其他
  564. String category = task.getCategory();
  565. //新写 修改
  566. String tags = task.getTags();
  567. if (executeUser != null && projectId != null && createUser != null && createUser > -1L && category != null && tags != null) {
  568. //发布人
  569. R<User> userR = userClient.userInfoById(createUser);
  570. if (userR.isSuccess()) {
  571. workload.setPubUser(userR.getData().getName());
  572. }
  573. //项目信息
  574. Project project = projectMapper.selectById(projectId);
  575. if (project != null) {
  576. workload.setProjectName(project.getName());
  577. String areaCode = project.getAreaCode();
  578. if (areaCode != null) {
  579. if (areaCode.length() == 4) {
  580. //市
  581. R<Region> region = sysClient.getRegion(areaCode);
  582. if (region.isSuccess()) {
  583. workload.setCity(region.getData().getName());
  584. }
  585. } else if (areaCode.length() == 6) {
  586. //县
  587. R<Region> region = sysClient.getRegion(areaCode);
  588. if (region.isSuccess()) {
  589. workload.setCounty(region.getData().getName());
  590. }
  591. //得到上级
  592. String parentCode = areaCode.substring(0, areaCode.length() - 2);
  593. R<Region> region1 = sysClient.getRegion(parentCode);
  594. if (region1.isSuccess()) {
  595. workload.setCity(region1.getData().getName());
  596. }
  597. }
  598. }
  599. }
  600. //分类 可研 方案 其他
  601. R<DictBiz> rpc = dictBizClient.getById(Long.valueOf(category));
  602. R<DictBiz> rpc1 = dictBizClient.getById(Long.valueOf(tags));
  603. if (rpc.isSuccess() && rpc1.isSuccess()) {
  604. DictBiz data = rpc.getData();
  605. DictBiz data1 = rpc1.getData();
  606. if (data1.getDictKey().equals("1")) {
  607. //新编
  608. if (data != null) {
  609. if (data.getDictKey().equals("2")) {
  610. //可研
  611. workload.setAdd1(1);
  612. } else if (data.getDictKey().equals("4")) {
  613. //方案
  614. workload.setAdd2(1);
  615. } else {
  616. //其他
  617. workload.setAdd(1);
  618. }
  619. }
  620. } else if (data1.getDictKey().equals("2")) {
  621. //修改
  622. if (data != null) {
  623. if (data.getDictKey().equals("2")) {
  624. //可研
  625. workload.setAlter1(1);
  626. } else if (data.getDictKey().equals("4")) {
  627. //方案
  628. workload.setAlter2(1);
  629. } else {
  630. //其他
  631. workload.setAlter(1);
  632. }
  633. }
  634. }
  635. }
  636. //人员
  637. R<User> userR1 = userClient.userInfoById(Long.valueOf(executeUser));
  638. if (userR1.isSuccess()) {
  639. workload.setUserName(userR1.getData().getName());
  640. }
  641. tempList.add(workload);
  642. }
  643. }
  644. //Grouping to achieve the purpose of arranging the same user groups
  645. if (!CollectionUtils.isEmpty(tempList)) {
  646. Map<String, List<Workload>> collect = tempList.stream().collect(Collectors.groupingBy(Workload::getUserName));
  647. for (Map.Entry<String, List<Workload>> entry : collect.entrySet()) {
  648. result.addAll(entry.getValue());
  649. }
  650. }
  651. }
  652. return result;
  653. }
  654. @Override
  655. public void export(List<Workload> list, HttpServletResponse response) throws IOException {
  656. try {
  657. WriteCellStyle headWriteCellStyle = new WriteCellStyle();
  658. //设置背景颜色
  659. headWriteCellStyle.setFillForegroundColor(IndexedColors.WHITE.getIndex());
  660. //设置头字体
  661. WriteFont headWriteFont = new WriteFont();
  662. headWriteFont.setFontHeightInPoints((short) 13);
  663. headWriteFont.setBold(true);
  664. headWriteCellStyle.setWriteFont(headWriteFont);
  665. //设置头居中
  666. headWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);
  667. //内容策略
  668. WriteCellStyle contentWriteCellStyle = new WriteCellStyle();
  669. //设置 水平居中
  670. contentWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);
  671. HorizontalCellStyleStrategy horizontalCellStyleStrategy = new HorizontalCellStyleStrategy(headWriteCellStyle, contentWriteCellStyle);
  672. response.setContentType("application/vnd.ms-excel");
  673. response.setCharacterEncoding("utf-8");
  674. // 这里URLEncoder.encode可以防止中文乱码 当然和easy excel没有关系
  675. String fileName = URLEncoder.encode("工作量统计", "UTF-8");
  676. response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
  677. // 这里需要设置不关闭流
  678. EasyExcel.write(response.getOutputStream(), Workload.class)
  679. .registerWriteHandler(horizontalCellStyleStrategy).sheet("工作量统计")
  680. .doWrite(list);
  681. } catch (IOException e) {
  682. //throw new RuntimeException(e);
  683. // 重置response
  684. response.reset();
  685. response.setContentType("application/json");
  686. response.setCharacterEncoding("utf-8");
  687. Map<String, String> map = new HashMap<String, String>();
  688. map.put("status", "failure");
  689. map.put("message", "下载文件失败" + e.getMessage());
  690. response.getWriter().println(JSON.toJSONString(map));
  691. }
  692. }
  693. @Override
  694. public List<Task> getByCompetentUnit(Long deptId) {
  695. return baseMapper.selectByCompetentUnit(deptId);
  696. }
  697. @Override
  698. public List<Task> getByStatus(Integer status) {
  699. return baseMapper.selectByTaskStatus(status);
  700. }
  701. @Override
  702. public List<Dept> taskCops(Long projectId) {
  703. List<Dept> res = new ArrayList<>();
  704. //1.项目下的所有任务
  705. List<Task> tasks = baseMapper.getByProjectId(projectId);
  706. if (!CollectionUtils.isEmpty(tasks)) {
  707. Set<Long> deptIds = tasks.stream().map(Task::getOrgDeptId).filter(Objects::nonNull).collect(Collectors.toSet());
  708. if (!CollectionUtils.isEmpty(deptIds)) {
  709. deptIds.forEach(dept -> {
  710. R<Dept> rpc = sysClient.getDept(dept);
  711. if (rpc.isSuccess()) {
  712. res.add(rpc.getData());
  713. }
  714. });
  715. }
  716. }
  717. return res;
  718. }
  719. @Override
  720. @Transactional(rollbackFor = Exception.class)
  721. public boolean delete(List<Long> ids) {
  722. ids.forEach(id -> {
  723. Task task = this.getById(id);
  724. if (task != null) {
  725. Long projectId = task.getProjectId();
  726. Project project = projectMapper.selectById(projectId);
  727. if (project != null) {
  728. Integer todoTask = project.getTodoTask();
  729. todoTask = todoTask - 1;
  730. project.setTodoTask(todoTask < 0 ? 0 : todoTask);
  731. projectMapper.updateById(project);
  732. }
  733. }
  734. });
  735. return removeByIds(ids);
  736. }
  737. private List<Task> getListByDateAndStageAndStatus(Long stageId, String formatDate, Integer taskStatus) {
  738. return baseMapper.selectByDateAndStageAndStatus(stageId, formatDate, taskStatus);
  739. }
  740. private List<Task> getLeftByDateAndStage(Long stageId, String date) {
  741. return baseMapper.selectLeftByDateAndStage(stageId, date);
  742. }
  743. private List<Task> getCurrentDateCompleteByStageAndDate(Long stageId, String formatDate, Integer taskStatus) {
  744. return baseMapper.selectCurrentDateCompleteByStageAndDate(stageId, formatDate, taskStatus);
  745. }
  746. }