FlowService.List.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 flow in flowList)
  48. {
  49. if (flow != null)
  50. {
  51. items.Add(await GetFlowListResultAsync(flow, flow.Id, source));
  52. }
  53. }
  54. return new ListResult
  55. {
  56. Count = await _flowTodoRepository.GetMyCheckedCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request),
  57. Items = items
  58. };
  59. }
  60. public async Task<ListResult> ListSubmittedCheckingAsync(int userId, FlowListRequest request, string source = "")
  61. {
  62. var flowList = await _flowRepository.GetListByUserIdAsync(userId, true, request);
  63. var items = await GetFlowListResultListAsync(flowList, source);
  64. return new ListResult
  65. {
  66. Count = await _flowRepository.GetCountByUserIdAsync(userId, true, request),
  67. //Count = items.Count(),
  68. Items = items
  69. };
  70. }
  71. public async Task<ListResult> ListSubmittedCheckedAsync(int userId, FlowListRequest request)
  72. {
  73. var flowList = await _flowRepository.GetListByUserIdAsync(userId, false, request);
  74. var items = await GetFlowListResultListAsync(flowList);
  75. return new ListResult
  76. {
  77. Count = await _flowRepository.GetCountByUserIdAsync(userId, false, request),
  78. Items = items
  79. };
  80. }
  81. public async Task<ListResult> ListCcUnreadAsync(int userId, FlowListRequest request)
  82. {
  83. var todoIdFlowIdList = await _flowTodoRepository.GetTodoIdFlowIdListAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false);
  84. var items = new List<FlowListResult>();
  85. foreach (var todoIdFlowId in todoIdFlowIdList)
  86. {
  87. var flow = await _flowRepository.GetAsync(todoIdFlowId.FlowId);
  88. if (flow != null)
  89. {
  90. items.Add(await GetFlowListResultAsync(flow, todoIdFlowId.TodoId));
  91. }
  92. }
  93. return new ListResult
  94. {
  95. Count = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false),
  96. Items = items
  97. };
  98. }
  99. public async Task<ListResult> ListCcAllAsync(int userId, FlowListRequest request, string source = "")
  100. {
  101. var todoIdFlowIdList = await _flowTodoRepository.GetTodoIdFlowIdListAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true);
  102. var items = new List<FlowListResult>();
  103. foreach (var todoIdFlowId in todoIdFlowIdList)
  104. {
  105. var flow = await _flowRepository.GetAsync(todoIdFlowId.FlowId);
  106. if (flow != null)
  107. {
  108. items.Add(await GetFlowListResultAsync(flow, todoIdFlowId.TodoId, source));
  109. }
  110. }
  111. return new ListResult
  112. {
  113. Count = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true),
  114. Items = items
  115. };
  116. }
  117. private async Task<IEnumerable<FlowListResult>> GetFlowListResultListAsync(IEnumerable<Flow> flowList, string source = "")
  118. {
  119. var resultList = flowList.Select(async x =>
  120. {
  121. var user = await _userRepository.GetAsync(x.UserId);
  122. var result = new FlowListResult
  123. {
  124. Id = x.Id,
  125. ProcessId = x.ProcessId,
  126. UserId = x.UserId,
  127. State = x.State,
  128. ProcessNodeId = x.ProcessNodeId,
  129. CreatedDate = x.CreatedDate,
  130. Guid = x.Guid
  131. };
  132. var (title, summaries) = await GetFlowTitleAndSummaryAsync(user, x.ProcessId, x.Id);
  133. result.Title = title;
  134. result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  135. result.Summaries = summaries;
  136. if (source == nameof(FlowListTypeConst.SubmittedChecking))
  137. result.IsRead = true;
  138. else
  139. result.IsRead = x.IsRead;
  140. return result;
  141. });
  142. return await Task.WhenAll(resultList);
  143. }
  144. private async Task<FlowListResult> GetFlowListResultAsync(Flow flow, int todoId, string source = "")
  145. {
  146. var user = await _userRepository.GetAsync(flow.UserId);
  147. //获取todo
  148. var tode = await _flowTodoRepository.GetAsync(todoId);
  149. var result = new FlowListResult
  150. {
  151. Id = todoId,
  152. TodoId = todoId,
  153. ProcessId = flow.ProcessId,
  154. UserId = flow.UserId,
  155. State = flow.State,
  156. ProcessNodeId = flow.ProcessNodeId,
  157. CreatedDate = flow.CreatedDate,
  158. Guid = flow.Guid
  159. };
  160. // if (tode != null)
  161. // {
  162. // if (tode.IsDone && tode.IsChecked)
  163. // result.State = FlowState.Checked;
  164. // else if (tode.IsDone && !tode.IsChecked)
  165. // result.State = FlowState.Denied;
  166. // else
  167. // result.State = FlowState.Checking;
  168. // }
  169. var (title, summaries) = await GetFlowTitleAndSummaryAsync(user, flow.ProcessId, flow.Id);
  170. result.Title = title;
  171. result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  172. result.Summaries = summaries;
  173. if (source == nameof(FlowListTypeConst.MyChecking) || source == nameof(FlowListTypeConst.MyChecked))
  174. result.IsRead = tode.IsDone;
  175. else if (source == nameof(FlowListTypeConst.CcAll) || source == nameof(FlowListTypeConst.SubmittedChecking))
  176. result.IsRead = true;
  177. else
  178. result.IsRead = tode.IsRead;
  179. return result;
  180. }
  181. }
  182. }