TaskServiceImpl.java 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  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.DictBiz;
  31. import org.springblade.system.entity.Region;
  32. import org.springblade.system.feign.IDictBizClient;
  33. import org.springblade.system.feign.ISysClient;
  34. import org.springblade.system.user.entity.User;
  35. import org.springblade.system.user.feign.IUserClient;
  36. import org.springframework.stereotype.Service;
  37. import org.springframework.util.CollectionUtils;
  38. import javax.servlet.http.HttpServletResponse;
  39. import java.io.IOException;
  40. import java.net.URLEncoder;
  41. import java.time.LocalDate;
  42. import java.time.format.DateTimeFormatter;
  43. import java.util.*;
  44. import java.util.stream.Collectors;
  45. import static com.wtkj.config.MagicValue.STAFF_ADMIN;
  46. import static com.wtkj.config.MagicValue.STAFF_SECOND_ADMIN;
  47. /**
  48. * @author Blizzard
  49. * @create at 2023-09-15 15:18
  50. * @describe
  51. */
  52. @AllArgsConstructor
  53. @Service
  54. public class TaskServiceImpl extends BaseServiceImpl<TaskMapper, Task> implements ITaskService {
  55. private final IAsyncService asyncService;
  56. private final ITaskFileService taskFileService;
  57. private final IFileAndFolderService fileAndFolderService;
  58. private final IFileClient fileClient;
  59. private final IUserClient userClient;
  60. private final IProjectStageService stageService;
  61. private final BladeRedis redis;
  62. private final ISysClient sysClient;
  63. private final ProjectMapper projectMapper;
  64. private final IDictBizClient dictBizClient;
  65. @Override
  66. public boolean submit(Task task) {
  67. boolean flag = false;
  68. Long userId = AuthUtil.getUserId();
  69. Long taskId = task.getId();
  70. Long projectId = task.getProjectId();
  71. Project project = projectMapper.selectById(projectId);
  72. if (taskId == null && project != null) {
  73. Long stageId = task.getStageId();
  74. ProjectStage stage = stageService.getById(stageId);
  75. if (stage != null) {
  76. Date startTime = stage.getStartTime();
  77. Date endTime = stage.getEndTime();
  78. if (task.getStartTime().before(startTime) || task.getEndTime().after(endTime)) {
  79. throw new ServiceException(String.format("任务时间异常,不可超出当前阶段的起止时间%s-%s", DateUtil.format(startTime, "yyyy-MM-dd"), DateUtil.format(endTime, "yyyy-MM-dd")));
  80. }
  81. }
  82. LocalDate now = LocalDate.now();
  83. Integer year = now.getYear();
  84. Integer month = now.getMonthValue();
  85. task.setYear(year);
  86. task.setMonth(month);
  87. task.setCompetentUnit(project.getCompetentUnit());
  88. flag = this.save(task);
  89. asyncService.createTask(task);
  90. asyncService.dispatchToOrg(userId, task);
  91. } else {
  92. Task byId = this.getById(taskId);
  93. if (byId != null) {
  94. Integer newStatus = task.getTaskStatus();
  95. Integer oldStatus = byId.getTaskStatus();
  96. //确认任务
  97. if (newStatus != null && oldStatus != null && !oldStatus.equals(4) && newStatus.equals(4)) {
  98. task.setConfirmUser(userId);
  99. task.setConfirmTime(DateUtil.now());
  100. task.setIsConfirmed(1);
  101. }
  102. //指定执行部门 ---> 通知主管
  103. if (byId.getExecuteDept() == null && task.getExecuteDept() != null) {
  104. asyncService.dispatchToDept(userId, task);
  105. }
  106. // 下发任务 ---> 通知执行者
  107. if (StringUtil.isBlank(byId.getExecuteUser()) && StringUtil.isNotBlank(task.getExecuteUser())) {
  108. asyncService.dispatchTask(userId, task);
  109. }
  110. //二次审核 已经变为审核状态(7)的时候通知二次审核
  111. if (oldStatus != null && newStatus != null && !oldStatus.equals(7) && newStatus.equals(7)) {
  112. asyncService.secondCheck(userId, task);
  113. }
  114. asyncService.alterTask(task, byId, userId);
  115. }
  116. flag = this.updateById(task);
  117. }
  118. return flag;
  119. }
  120. @Override
  121. public IPage<Task> projectTaskPage(ProjectTaskPageDTO dto, IPage<Task> page) {
  122. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  123. lqw.eq(Task::getProjectId, dto.getProjectId());
  124. lqw.eq(Task::getStageId, dto.getStageId());
  125. if (dto.getDeptCategory().equals(3)) {
  126. //是业主
  127. dto.setOrgDeptId(null);
  128. }
  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.getByExecuteDept(deptId);
  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.getByExecuteDept(deptId);
  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. }
  273. }
  274. }
  275. if (dto.getType() == 1) {
  276. lqw.groupBy(Task::getProjectId, Task::getCreateTime);
  277. lqw.orderByDesc(Task::getProjectId, Task::getCreateTime);
  278. } else {
  279. lqw.orderByDesc(Task::getCreateTime);
  280. }
  281. return baseMapper.selectPage(page, lqw);
  282. }
  283. @Override
  284. public MyTaskStatistics taskStatistics(Long stageId, Integer year, Integer month) {
  285. MyTaskStatistics statistics = new MyTaskStatistics();
  286. Long userId = AuthUtil.getUserId();
  287. List<Task> tasks = null;
  288. if (stageId == null) {
  289. //个人任务统计
  290. tasks = this.listByUser(userId, year, month);
  291. } else {
  292. //项目下的所有任务
  293. tasks = this.listByStageId(stageId);
  294. }
  295. if (!CollectionUtils.isEmpty(tasks)) {
  296. //全部任务数
  297. statistics.setAll(tasks.size());
  298. tasks.forEach(task -> {
  299. //任务状态 1.待确认 2.进行中 3.已提交 4.已完成 5.已取消 6.过期 7.审查 8.二次审查
  300. Integer taskStatus = task.getTaskStatus();
  301. if (taskStatus.equals(4)) {
  302. //1.已完成
  303. statistics.setCompleted(statistics.getCompleted() + 1);
  304. }
  305. if (!taskStatus.equals(4) && !taskStatus.equals(5) && !taskStatus.equals(6)) {
  306. //未完成
  307. //6.未完成
  308. statistics.setNotCompleted(statistics.getNotCompleted() + 1);
  309. }
  310. Date now = DateUtil.now();
  311. Date endTime = task.getEndTime();
  312. if (endTime != null) {
  313. //2.已逾期
  314. if (taskStatus.equals(6)) {
  315. statistics.setOverdue(statistics.getOverdue() + 1);
  316. }
  317. //3.待确认 已经提交但未确认且未逾期的任务为待确认
  318. if (endTime.after(now) && taskStatus.equals(3)) {
  319. statistics.setToConfirmed(statistics.getToConfirmed() + 1);
  320. }
  321. //4.今日到期
  322. String endStr = DateUtil.format(endTime, "yyyy-MM-dd");
  323. String nowStr = DateUtil.format(now, "yyyy-MM-dd");
  324. if (endStr.equals(nowStr)) {
  325. statistics.setTodayToExpire(statistics.getTodayToExpire() + 1);
  326. }
  327. //5.逾期完成
  328. if (endTime.before(now) && taskStatus.equals(4)) {
  329. statistics.setOverdueComplete(statistics.getOverdueComplete() + 1);
  330. }
  331. }
  332. });
  333. }
  334. return statistics;
  335. }
  336. @Override
  337. public List<Task> listByUser(Long userId, Integer year, Integer month) {
  338. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  339. if (year != null) {
  340. lqw.eq(Task::getYear, year);
  341. }
  342. if (month != null) {
  343. lqw.eq(Task::getMonth, month);
  344. }
  345. lqw.like(Task::getExecuteUser, String.valueOf(userId));
  346. lqw.orderByAsc(Task::getEndTime);
  347. return this.list(lqw);
  348. }
  349. @Override
  350. public List<Task> listByStageId(Long stageId) {
  351. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  352. lqw.eq(Task::getStageId, stageId);
  353. lqw.ne(Task::getTaskStatus, 5);
  354. lqw.orderByAsc(Task::getEndTime);
  355. return this.list(lqw);
  356. }
  357. @Override
  358. public List<Task> getByExecute(Long deptId, String userId) {
  359. return baseMapper.selectByExecute(deptId, userId);
  360. }
  361. @Override
  362. public List<Task> todayTodo(Long userId, String date) {
  363. return baseMapper.todayTo(String.valueOf(userId), date);
  364. }
  365. @Override
  366. public List<Task> todayExpire(Long userId, String date) {
  367. return baseMapper.todayExpire(String.valueOf(userId), date);
  368. }
  369. @Override
  370. public List<Task> getByDeptAndDate(Long topDept, Long executeDept, String user, String date) {
  371. return baseMapper.getByDeptAndDate(topDept, executeDept, user, date);
  372. }
  373. @Override
  374. public List<Task> getTodoAndExpireByUserId(Long userId, String date) {
  375. return baseMapper.getTodoAndExpireByUserId(String.valueOf(userId), date);
  376. }
  377. @Override
  378. public List<Task> getTodayTodoByOrgDeptId(Long topDept, String date) {
  379. return baseMapper.getTodayTodoByOrgDeptId(topDept, date);
  380. }
  381. @Override
  382. public List<Task> getTodoByYear(Set<Long> projectIds, String year) {
  383. return baseMapper.getTodoByYear(projectIds, Integer.valueOf(year));
  384. }
  385. @Override
  386. public List<Map<String, String>> projectTaskSummary(Long stageId) {
  387. List<Map<String, String>> res = new ArrayList<>();
  388. //项目下任务执行者的情况
  389. Set<Long> userIds = new HashSet<>();
  390. List<Task> tasks = this.listByStageId(stageId);
  391. if (!CollectionUtils.isEmpty(tasks)) {
  392. for (Task task : tasks) {
  393. String executeUser = task.getExecuteUser();
  394. if (StringUtil.isNotBlank(executeUser)) {
  395. List<Long> ids = Func.toLongList(executeUser);
  396. userIds.addAll(ids);
  397. }
  398. }
  399. }
  400. if (!CollectionUtils.isEmpty(userIds)) {
  401. userIds.forEach(userId -> {
  402. Map<String, String> map = new HashMap<>();
  403. R<User> userR = userClient.userInfoById(userId);
  404. if (userR.isSuccess()) {
  405. List<Task> tasks1 = this.listByUserAndProject(userId, stageId);
  406. if (!CollectionUtils.isEmpty(tasks1)) {
  407. map.put("value", String.valueOf(tasks1.size()));
  408. map.put("name", userR.getData().getName());
  409. //map.put(userR.getData().getName(), tasks1.size());
  410. res.add(map);
  411. }
  412. }
  413. });
  414. }
  415. return res;
  416. }
  417. @Override
  418. public List<Task> listByUserAndProject(Long userId, Long stageId) {
  419. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  420. lqw.eq(Task::getStageId, stageId);
  421. lqw.like(Task::getExecuteUser, String.valueOf(userId));
  422. lqw.orderByAsc(Task::getEndTime);
  423. return this.list(lqw);
  424. }
  425. @Override
  426. public LineChartDataSet projectTaskSituation(Long stageId) {
  427. LineChartDataSet set = new LineChartDataSet();
  428. List<LineChartData> list = new ArrayList<>();
  429. //1.阶段周期
  430. List<LocalDate> dateList = redis.get("dateList::" + stageId);
  431. if (!CollectionUtils.isEmpty(dateList)) {
  432. LineChartData leftLine = new LineChartData();
  433. leftLine.setType("line");
  434. leftLine.setName("leftTask");
  435. LineChartData completeLine = new LineChartData();
  436. completeLine.setType("line");
  437. completeLine.setName("completeTask");
  438. LineChartData expireLine = new LineChartData();
  439. expireLine.setType("line");
  440. expireLine.setName("expireTask");
  441. List<Map<String, Object>> leftData = new ArrayList<>();
  442. List<Map<String, Object>> completeData = new ArrayList<>();
  443. List<Map<String, Object>> expireData = new ArrayList<>();
  444. dateList.forEach(date -> {
  445. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 设置日期格式
  446. String formatDate = date.format(formatter);
  447. Map<String, Object> leftMap = new HashMap<>();
  448. // 日期为date时的任务剩余量 完成量 过期量
  449. //1.剩余量 未完成和已取消的除外
  450. List<Task> leftTasks = this.getLeftByDateAndStage(stageId, formatDate);
  451. int leftAmount = 0;
  452. if (!CollectionUtils.isEmpty(leftTasks)) {
  453. leftAmount = leftTasks.size();
  454. }
  455. leftMap.put(formatDate, leftAmount);
  456. leftData.add(leftMap);
  457. //2.完成量 task_status = 4 的数量
  458. Map<String, Object> completeMap = new HashMap<>();
  459. List<Task> completeTasks = this.getListByDateAndStageAndStatus(stageId, formatDate, 4);
  460. int completeAmount = 0;
  461. if (!CollectionUtils.isEmpty(completeTasks)) {
  462. completeAmount = completeTasks.size();
  463. }
  464. completeMap.put(formatDate, completeAmount);
  465. completeData.add(completeMap);
  466. //3.过期量 task_status = 6
  467. Map<String, Object> expireMap = new HashMap<>();
  468. List<Task> expireTasks = this.getListByDateAndStageAndStatus(stageId, formatDate, 6);
  469. int expireAmount = 0;
  470. if (!CollectionUtils.isEmpty(expireTasks)) {
  471. expireAmount = expireTasks.size();
  472. }
  473. expireMap.put(formatDate, expireAmount);
  474. expireData.add(expireMap);
  475. });
  476. leftLine.setData(leftData);
  477. completeLine.setData(completeData);
  478. expireLine.setData(expireData);
  479. list.add(leftLine);
  480. list.add(completeLine);
  481. list.add(expireLine);
  482. }
  483. set.setLineChartDataList(list);
  484. return set;
  485. }
  486. @Override
  487. public LineChartDataSet projectTaskBurnout(Long stageId) {
  488. LineChartDataSet set = new LineChartDataSet();
  489. List<LineChartData> list = new ArrayList<>();
  490. //1.阶段周期
  491. List<LocalDate> dateList = redis.get("dateList::" + stageId);
  492. if (!CollectionUtils.isEmpty(dateList)) {
  493. int size = dateList.size();
  494. float avg = 0f;
  495. // 当前阶段下所有的任务
  496. List<Task> tasks = this.listByStageId(stageId);
  497. if (!CollectionUtils.isEmpty(tasks)) {
  498. int taskAmount = tasks.size();
  499. //任务每天平均燃尽量
  500. avg = (float) taskAmount / size;
  501. }
  502. LineChartData actualLine = new LineChartData();
  503. actualLine.setType("line");
  504. actualLine.setName("actual");
  505. LineChartData avgLine = new LineChartData();
  506. avgLine.setType("line");
  507. avgLine.setName("avg");
  508. List<Map<String, Object>> actualData = new ArrayList<>();
  509. List<Map<String, Object>> avgData = new ArrayList<>();
  510. float finalAvg = avg;
  511. dateList.forEach(date -> {
  512. DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 设置日期格式
  513. String formatDate = date.format(formatter);
  514. // 日期为date时的当日完成数 理想完成数
  515. //1.date 当日完成数
  516. Map<String, Object> actualMap = new HashMap<>();
  517. List<Task> actualTasks = this.getCurrentDateCompleteByStageAndDate(stageId, formatDate, null);
  518. int actualAmount = 0;
  519. if (!CollectionUtils.isEmpty(actualTasks)) {
  520. actualAmount = actualTasks.size();
  521. }
  522. actualMap.put(formatDate, actualAmount);
  523. actualData.add(actualMap);
  524. Map<String, Object> avgMap = new HashMap<>();
  525. avgMap.put(formatDate, finalAvg);
  526. avgData.add(avgMap);
  527. });
  528. actualLine.setData(actualData);
  529. avgLine.setData(avgData);
  530. list.add(actualLine);
  531. list.add(avgLine);
  532. }
  533. set.setLineChartDataList(list);
  534. return set;
  535. }
  536. @Override
  537. public List<Task> getTodayToExpire(String date) {
  538. return baseMapper.getTodayToExpire(date);
  539. }
  540. @Override
  541. public List<Workload> exportList(String startDate, String endDate) {
  542. List<Workload> result = new ArrayList<>();
  543. //1.时间段内已经完成的任务
  544. LambdaQueryWrapper<Task> lqw = new LambdaQueryWrapper<>();
  545. lqw.between(Task::getConfirmTime, DateUtil.parse(startDate, "yyyy-MM-dd"), DateUtil.parse(endDate, "yyyy-MM-dd"));
  546. List<Task> list = this.list(lqw);
  547. if (!CollectionUtils.isEmpty(list)) {
  548. List<Workload> tempList = new ArrayList<>();
  549. //2.Information for all tasks
  550. for (Task task : list) {
  551. Workload workload = new Workload();
  552. //人员
  553. String executeUser = task.getExecuteUser();
  554. //项目信息
  555. Long projectId = task.getProjectId();
  556. //发布人
  557. Long createUser = task.getCreateUser();
  558. //科研 方案 其他
  559. String category = task.getCategory();
  560. //新写 修改
  561. String tags = task.getTags();
  562. if (executeUser != null && projectId != null && createUser != null && createUser > -1L && category != null && tags != null) {
  563. //发布人
  564. R<User> userR = userClient.userInfoById(createUser);
  565. if (userR.isSuccess()) {
  566. workload.setPubUser(userR.getData().getName());
  567. }
  568. //项目信息
  569. Project project = projectMapper.selectById(projectId);
  570. if (project != null) {
  571. workload.setProjectName(project.getName());
  572. String areaCode = project.getAreaCode();
  573. if (areaCode != null) {
  574. if (areaCode.length() == 4) {
  575. //市
  576. R<Region> region = sysClient.getRegion(areaCode);
  577. if (region.isSuccess()) {
  578. workload.setCity(region.getData().getName());
  579. }
  580. } else if (areaCode.length() == 6) {
  581. //县
  582. R<Region> region = sysClient.getRegion(areaCode);
  583. if (region.isSuccess()) {
  584. workload.setCounty(region.getData().getName());
  585. }
  586. //得到上级
  587. String parentCode = areaCode.substring(0, areaCode.length() - 2);
  588. R<Region> region1 = sysClient.getRegion(parentCode);
  589. if (region1.isSuccess()) {
  590. workload.setCity(region1.getData().getName());
  591. }
  592. }
  593. }
  594. }
  595. //分类 可研 方案 其他
  596. R<DictBiz> rpc = dictBizClient.getById(Long.valueOf(category));
  597. R<DictBiz> rpc1 = dictBizClient.getById(Long.valueOf(tags));
  598. if (rpc.isSuccess() && rpc1.isSuccess()) {
  599. DictBiz data = rpc.getData();
  600. DictBiz data1 = rpc1.getData();
  601. if (data1.getDictKey().equals("1")) {
  602. //新编
  603. if (data != null) {
  604. if (data.getDictKey().equals("2")) {
  605. //可研
  606. workload.setAdd1(1);
  607. } else if (data.getDictKey().equals("4")) {
  608. //方案
  609. workload.setAdd2(1);
  610. } else {
  611. //其他
  612. workload.setAdd(1);
  613. }
  614. }
  615. } else if (data1.getDictKey().equals("2")) {
  616. //修改
  617. if (data != null) {
  618. if (data.getDictKey().equals("2")) {
  619. //可研
  620. workload.setAlter1(1);
  621. } else if (data.getDictKey().equals("4")) {
  622. //方案
  623. workload.setAlter2(1);
  624. } else {
  625. //其他
  626. workload.setAlter(1);
  627. }
  628. }
  629. }
  630. }
  631. //人员
  632. R<User> userR1 = userClient.userInfoById(Long.valueOf(executeUser));
  633. if (userR1.isSuccess()) {
  634. workload.setUserName(userR1.getData().getName());
  635. }
  636. tempList.add(workload);
  637. }
  638. }
  639. //Grouping to achieve the purpose of arranging the same user groups
  640. if (!CollectionUtils.isEmpty(tempList)) {
  641. Map<String, List<Workload>> collect = tempList.stream().collect(Collectors.groupingBy(Workload::getUserName));
  642. for (Map.Entry<String, List<Workload>> entry : collect.entrySet()) {
  643. result.addAll(entry.getValue());
  644. }
  645. }
  646. }
  647. return result;
  648. }
  649. @Override
  650. public void export(List<Workload> list, HttpServletResponse response) throws IOException {
  651. try {
  652. WriteCellStyle headWriteCellStyle = new WriteCellStyle();
  653. //设置背景颜色
  654. headWriteCellStyle.setFillForegroundColor(IndexedColors.WHITE.getIndex());
  655. //设置头字体
  656. WriteFont headWriteFont = new WriteFont();
  657. headWriteFont.setFontHeightInPoints((short) 13);
  658. headWriteFont.setBold(true);
  659. headWriteCellStyle.setWriteFont(headWriteFont);
  660. //设置头居中
  661. headWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);
  662. //内容策略
  663. WriteCellStyle contentWriteCellStyle = new WriteCellStyle();
  664. //设置 水平居中
  665. contentWriteCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);
  666. HorizontalCellStyleStrategy horizontalCellStyleStrategy = new HorizontalCellStyleStrategy(headWriteCellStyle, contentWriteCellStyle);
  667. response.setContentType("application/vnd.ms-excel");
  668. response.setCharacterEncoding("utf-8");
  669. // 这里URLEncoder.encode可以防止中文乱码 当然和easy excel没有关系
  670. String fileName = URLEncoder.encode("工作量统计", "UTF-8");
  671. response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
  672. // 这里需要设置不关闭流
  673. EasyExcel.write(response.getOutputStream(), Workload.class)
  674. .registerWriteHandler(horizontalCellStyleStrategy).sheet("工作量统计")
  675. .doWrite(list);
  676. } catch (IOException e) {
  677. //throw new RuntimeException(e);
  678. // 重置response
  679. response.reset();
  680. response.setContentType("application/json");
  681. response.setCharacterEncoding("utf-8");
  682. Map<String, String> map = new HashMap<String, String>();
  683. map.put("status", "failure");
  684. map.put("message", "下载文件失败" + e.getMessage());
  685. response.getWriter().println(JSON.toJSONString(map));
  686. }
  687. }
  688. @Override
  689. public List<Task> getByExecuteDept(Long deptId) {
  690. return baseMapper.getByExecuteDept(deptId);
  691. }
  692. @Override
  693. public List<Task> getByCompetentUnit(Long deptId) {
  694. return baseMapper.selectByCompetentUnit(deptId);
  695. }
  696. @Override
  697. public List<Task> getByStatus(Integer status) {
  698. return baseMapper.selectByTaskStatus(status);
  699. }
  700. private List<Task> getListByDateAndStageAndStatus(Long stageId, String formatDate, Integer taskStatus) {
  701. return baseMapper.selectByDateAndStageAndStatus(stageId, formatDate, taskStatus);
  702. }
  703. private List<Task> getLeftByDateAndStage(Long stageId, String date) {
  704. return baseMapper.selectLeftByDateAndStage(stageId, date);
  705. }
  706. private List<Task> getCurrentDateCompleteByStageAndDate(Long stageId, String formatDate, Integer taskStatus) {
  707. return baseMapper.selectCurrentDateCompleteByStageAndDate(stageId, formatDate, taskStatus);
  708. }
  709. }