FlowService.List.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using GxPress.Entity.WorkFlow;
  5. using GxPress.EnumConst;
  6. using GxPress.Request.App.Flow;
  7. using GxPress.Result.App.Flow;
  8. namespace GxPress.Service.Implement
  9. {
  10. public partial class FlowService
  11. {
  12. public async Task<ListResult> ListAllAsync(int page, int perPage, int processId, string state, string startDate, string endDate)
  13. {
  14. var flowList = await _flowRepository.GetListAllAsync(page, perPage, processId, state, startDate, endDate);
  15. var items = await GetFlowListResultListAsync(flowList);
  16. return new ListResult
  17. {
  18. Count = await _flowRepository.GetCountAsync(processId, state, startDate, endDate),
  19. Items = items
  20. };
  21. }
  22. public async Task<ListResult> ListMyCheckingAsync(int userId, FlowListRequest request, string source = "")
  23. {
  24. var todoIdFlowIdList = await _flowTodoRepository.GetTodoIdFlowIdListAsync(userId, nameof(TodoTypeConst.ApproverCheck), false, request);
  25. var items = new List<FlowListResult>();
  26. foreach (var todoIdFlowId in todoIdFlowIdList)
  27. {
  28. var flow = await _flowRepository.GetAsync(todoIdFlowId.FlowId);
  29. if (flow != null)
  30. {
  31. items.Add(await GetFlowListResultAsync(flow, todoIdFlowId.TodoId, source));
  32. }
  33. }
  34. //var flowList = await _flowRepository.GetListByIdListAsync(flowIdList, request.Page, request.PerPage);
  35. //var items = await GetFlowListResultListAsync(flowList);
  36. return new ListResult
  37. {
  38. Count = await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), false,
  39. request),
  40. Items = items
  41. };
  42. }
  43. public async Task<ListResult> ListMyCheckedAsync(int userId, FlowListRequest request, string source = "")
  44. {
  45. var flowList = await _flowTodoRepository.GetMyCheckedTodoIdFlowIdListAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request);
  46. var items = new List<FlowListResult>();
  47. foreach (var item in flowList)
  48. {
  49. var flow = await _flowRepository.GetAsync(item.FlowId);
  50. items.Add(await GetFlowListResultAsync(flow, item.TodoId, source));
  51. }
  52. return new ListResult
  53. {
  54. Count = await _flowTodoRepository.GetMyCheckedCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request),
  55. Items = items
  56. };
  57. }
  58. public async Task<ListResult> ListSubmittedCheckingAsync(int userId, FlowListRequest request, string source = "")
  59. {
  60. var flowList = await _flowRepository.GetListByUserIdAsync(userId, true, request);
  61. var items = await GetFlowListResultListAsync(flowList, source);
  62. return new ListResult
  63. {
  64. Count = await _flowRepository.GetCountByUserIdAsync(userId, true, request),
  65. //Count = items.Count(),
  66. Items = items
  67. };
  68. }
  69. public async Task<ListResult> ListSubmittedCheckedAsync(int userId, FlowListRequest request)
  70. {
  71. var flowList = await _flowRepository.GetListByUserIdAsync(userId, false, request);
  72. var items = await GetFlowListResultListAsync(flowList);
  73. return new ListResult
  74. {
  75. Count = await _flowRepository.GetCountByUserIdAsync(userId, false, request),
  76. Items = items
  77. };
  78. }
  79. public async Task<ListResult> ListCcUnreadAsync(int userId, FlowListRequest request)
  80. {
  81. var todoIdFlowIdList = await _flowTodoRepository.GetTodoIdFlowIdListAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false);
  82. var items = new List<FlowListResult>();
  83. foreach (var todoIdFlowId in todoIdFlowIdList)
  84. {
  85. var flow = await _flowRepository.GetAsync(todoIdFlowId.FlowId);
  86. if (flow != null)
  87. {
  88. items.Add(await GetFlowListResultAsync(flow, todoIdFlowId.TodoId));
  89. }
  90. }
  91. return new ListResult
  92. {
  93. Count = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false),
  94. Items = items
  95. };
  96. }
  97. public async Task<ListResult> ListCcAllAsync(int userId, FlowListRequest request, string source = "")
  98. {
  99. var todoIdFlowIdList = await _flowTodoRepository.GetTodoIdFlowIdListAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true);
  100. var items = new List<FlowListResult>();
  101. foreach (var todoIdFlowId in todoIdFlowIdList)
  102. {
  103. var flow = await _flowRepository.GetAsync(todoIdFlowId.FlowId);
  104. if (flow != null)
  105. {
  106. items.Add(await GetFlowListResultAsync(flow, todoIdFlowId.TodoId, source));
  107. }
  108. }
  109. return new ListResult
  110. {
  111. Count = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true),
  112. Items = items
  113. };
  114. }
  115. private async Task<IEnumerable<FlowListResult>> GetFlowListResultListAsync(IEnumerable<Flow> flowList, string source = "")
  116. {
  117. var resultList = flowList.Select(async x =>
  118. {
  119. var user = await _userRepository.GetAsync(x.UserId);
  120. var result = new FlowListResult
  121. {
  122. Id = x.Id,
  123. ProcessId = x.ProcessId,
  124. UserId = x.UserId,
  125. State = x.State,
  126. ProcessNodeId = x.ProcessNodeId,
  127. CreatedDate = x.CreatedDate,
  128. Guid = x.Guid
  129. };
  130. var (title, summaries) = await GetFlowTitleAndSummaryAsync(user, x.ProcessId, x.Id);
  131. result.Title = title;
  132. result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  133. result.Summaries = summaries;
  134. if (source == nameof(FlowListTypeConst.SubmittedChecking))
  135. result.IsRead = true;
  136. else
  137. result.IsRead = x.IsRead;
  138. return result;
  139. });
  140. return await Task.WhenAll(resultList);
  141. }
  142. private async Task<FlowListResult> GetFlowListResultAsync(Flow flow, int todoId, string source = "")
  143. {
  144. var user = await _userRepository.GetAsync(flow.UserId);
  145. //获取todo
  146. var tode = await _flowTodoRepository.GetAsync(todoId);
  147. var result = new FlowListResult
  148. {
  149. Id = tode.FlowId,
  150. TodoId = todoId,
  151. ProcessId = flow.ProcessId,
  152. UserId = flow.UserId,
  153. State = flow.State,
  154. ProcessNodeId = flow.ProcessNodeId,
  155. CreatedDate = flow.CreatedDate,
  156. Guid = flow.Guid
  157. };
  158. // if (tode != null)
  159. // {
  160. // if (tode.IsDone && tode.IsChecked)
  161. // result.State = FlowState.Checked;
  162. // else if (tode.IsDone && !tode.IsChecked)
  163. // result.State = FlowState.Denied;
  164. // else
  165. // result.State = FlowState.Checking;
  166. // }
  167. var (title, summaries) = await GetFlowTitleAndSummaryAsync(user, flow.ProcessId, flow.Id);
  168. result.Title = title;
  169. result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  170. result.Summaries = summaries;
  171. if (source == nameof(FlowListTypeConst.MyChecking) || source == nameof(FlowListTypeConst.MyChecked))
  172. result.IsRead = tode == null ? true : tode.IsDone;
  173. else if (source == nameof(FlowListTypeConst.CcAll) || source == nameof(FlowListTypeConst.SubmittedChecking))
  174. result.IsRead = true;
  175. else
  176. result.IsRead = tode == null ? true : tode.IsRead;
  177. return result;
  178. }
  179. }
  180. }