AppFlowController.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using GxPress.Api.AdminControllers;
  5. using GxPress.Auth;
  6. using GxPress.Entity.WorkFlowDto;
  7. using GxPress.EnumConst;
  8. using GxPress.Repository.Interface;
  9. using GxPress.Repository.Interface.WorkFlow;
  10. using GxPress.Repository.Interface.WorkProcess;
  11. using GxPress.Request.App.Flow;
  12. using GxPress.Result.App;
  13. using GxPress.Result.App.Flow;
  14. using GxPress.Service.Interface;
  15. using GxPress.Service.Interface.Doc;
  16. using Microsoft.AspNetCore.Authorization;
  17. using Microsoft.AspNetCore.Hosting;
  18. using Microsoft.AspNetCore.Mvc;
  19. using Microsoft.Extensions.Logging;
  20. namespace GxPress.Api.AppControllers
  21. {
  22. /// <summary>
  23. /// 通讯录用户信息
  24. /// </summary>
  25. [Route("api/app/flow")]
  26. [ApiController]
  27. [Authorize]
  28. public partial class AppFlowController : ControllerBase
  29. {
  30. private readonly ILogger<AppVersionController> _logger;
  31. private readonly IWebHostEnvironment _environment;
  32. private readonly ILoginContext _loginContext;
  33. private readonly IFlowMessageRepository _flowMessageRepository;
  34. private readonly IFlowTodoRepository _flowTodoRepository;
  35. private readonly IProcessRepository _processRepository;
  36. private readonly IProcessService _processService;
  37. private readonly IFlowService _flowService;
  38. private readonly IUserRepository _userRepository;
  39. private readonly IFlowRepository _flowRepository;
  40. private readonly IDocService docService;
  41. public AppFlowController(
  42. ILogger<AppVersionController> logger,
  43. IWebHostEnvironment environment,
  44. ILoginContext loginContext,
  45. IFlowMessageRepository flowMessageRepository,
  46. IFlowTodoRepository flowTodoRepository,
  47. IProcessRepository processRepository,
  48. IProcessService processService,
  49. IFlowService flowService,
  50. IUserRepository userRepository,
  51. IFlowRepository flowRepository, IDocService docService
  52. )
  53. {
  54. _logger = logger;
  55. _environment = environment;
  56. _loginContext = loginContext;
  57. _flowMessageRepository = flowMessageRepository;
  58. _flowTodoRepository = flowTodoRepository;
  59. _processRepository = processRepository;
  60. _processService = processService;
  61. _flowService = flowService;
  62. _userRepository = userRepository;
  63. _flowRepository = flowRepository;
  64. this.docService = docService;
  65. }
  66. /// <summary>
  67. /// 删除
  68. /// </summary>
  69. /// <param name="id"></param>
  70. /// <returns></returns>
  71. [HttpDelete("{id}")]
  72. public async Task Delete(int id)
  73. {
  74. await _flowService.DeleteAsync(id);
  75. }
  76. /// <summary>
  77. /// 添加工作项
  78. /// </summary>
  79. /// <param name="flow">工作项</param>
  80. /// <returns></returns>
  81. [HttpPost]
  82. [AllowAnonymous]
  83. public async Task<FlowDto> Add([FromBody] FlowDto flow)
  84. {
  85. flow.State = FlowState.Checking;
  86. flow.UserId = _loginContext.AccountId;
  87. if (flow.Id > 0)
  88. await _flowService.DeleteAsync(flow.Id);
  89. flow.Id = await _flowService.AddAsync(flow);
  90. return flow;
  91. }
  92. /// <summary>
  93. /// 获取详情
  94. /// </summary>
  95. /// <param name="todoId"></param>
  96. /// <returns></returns>
  97. [HttpGet("{todoId}")]
  98. [AllowAnonymous]
  99. public async Task<FlowResult> Get(int todoId)
  100. {
  101. await _flowTodoRepository.UpdateCCIsDoneAsync(_loginContext.AccountId, todoId);
  102. return await _flowService.GetFlowResult(todoId, _loginContext.AccountId);
  103. }
  104. /// <summary>
  105. /// 获取详情 web专属
  106. /// </summary>
  107. /// <param name="id"></param>
  108. /// <returns></returns>
  109. [HttpGet("web/{id}")]
  110. [AllowAnonymous]
  111. public async Task<FlowResult> GetWeb(int id)
  112. {
  113. //await _flowTodoRepository.UpdateCCIsDoneAsync(_loginContext.AccountId, id);
  114. return await _flowService.GetFlowResult(id, 0);
  115. }
  116. /// <summary>
  117. /// 获取工作项列表
  118. /// </summary>
  119. /// <returns></returns>
  120. [HttpPost("list")]
  121. public async Task<ListResult> PostList(FlowListRequest request)
  122. {
  123. var userId = _loginContext.AccountId;
  124. if (request.Type == nameof(FlowListTypeConst.MyChecking))
  125. {
  126. return await _flowService.ListMyCheckingAsync(userId, request, nameof(FlowListTypeConst.MyChecking));
  127. }
  128. if (request.Type == nameof(FlowListTypeConst.MyChecked))
  129. {
  130. return await _flowService.ListMyCheckedAsync(userId, request, nameof(FlowListTypeConst.MyChecked));
  131. }
  132. if (request.Type == nameof(FlowListTypeConst.CcUnread))
  133. {
  134. return await _flowService.ListCcUnreadAsync(userId, request);
  135. }
  136. if (request.Type == nameof(FlowListTypeConst.CcAll))
  137. {
  138. return await _flowService.ListCcAllAsync(userId, request, nameof(FlowListTypeConst.CcAll));
  139. }
  140. if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
  141. {
  142. return await _flowService.ListSubmittedCheckingAsync(userId, request, nameof(FlowListTypeConst.SubmittedChecking));
  143. }
  144. if (request.Type == nameof(FlowListTypeConst.SubmittedChecked))
  145. {
  146. return await _flowService.ListSubmittedCheckedAsync(userId, request);
  147. }
  148. return new ListResult();
  149. }
  150. /// <summary>
  151. /// 待办事项
  152. /// </summary>
  153. /// <returns></returns>
  154. [HttpGet("todo")]
  155. [AllowAnonymous]
  156. public async Task<ListResult> TodoList([FromQuery] AdminFlowController.ListRequest request)
  157. {
  158. var userId = _loginContext.AccountId;
  159. var flowListRequest = new FlowListRequest();
  160. flowListRequest.Page = request.Page;
  161. flowListRequest.PerPage = request.PerPage;
  162. var result = await _flowService.ListMyCheckingAsync(userId, flowListRequest, nameof(FlowListTypeConst.MyChecking));
  163. return new ListResult
  164. {
  165. Count = result.Count,
  166. Items = result.Items
  167. };
  168. // var flowTodoList = await _flowService.GetTodoListAsync(userId, request.Page, request.PerPage, request.ProcessId);
  169. // var resultList = new List<FlowTodoResult>();
  170. // foreach (var flowTodo in flowTodoList)
  171. // {
  172. // //新增
  173. // if (flowTodo.IsDone)
  174. // continue;
  175. // var flow = await _flowService.GetAsync(flowTodo.FlowId);
  176. // var user = await _userRepository.GetAsync(flow.UserId);
  177. // if (user == null || flow == null) continue;
  178. // var result = new FlowTodoResult
  179. // {
  180. // Id = flowTodo.Id,
  181. // ProcessId = flowTodo.ProcessId,
  182. // FlowId = flowTodo.FlowId,
  183. // UserId = flowTodo.UserId,
  184. // Type = flowTodo.Type,
  185. // State = flow.State,
  186. // IsDone = false,
  187. // CreatedDate = flowTodo.CreatedDate
  188. // };
  189. // var (title, summaries) = await _flowService.GetFlowTitleAndSummaryAsync(user, flow.ProcessId, flow.Id);
  190. // result.Title = title;
  191. // result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  192. // result.Summaries = summaries;
  193. // resultList.Add(result);
  194. // }
  195. // return new TodoListResult
  196. // {
  197. // Count = await _flowService.GetTodoCountAsync(userId),
  198. // Items = resultList
  199. // };
  200. // //return resultList.ToList();
  201. //}
  202. }
  203. /// <summary>
  204. /// 获取数字
  205. /// </summary>
  206. /// <returns></returns>
  207. [HttpGet("count")]
  208. [AllowAnonymous]
  209. public async Task<GetCountResult> GetCount()
  210. {
  211. var userId = _loginContext.AccountId;
  212. var request = new FlowListRequest();
  213. var result = new GetCountResult
  214. {
  215. MyCheckingCount =
  216. await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), false,
  217. request),
  218. MyCheckedCount =
  219. await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request),
  220. SubmittedCheckingCount = await _flowRepository.GetCountByUserIdAsync(userId, true, request),
  221. //SubmittedCheckedCount= await _flowTodoRepository.GetUReadCountAsync(userId, "CarbonCopy",false,request),
  222. SubmittedCheckedCount = await _flowRepository.GetCountByUserIdAsync(userId, false, request),
  223. CcUnreadCount =
  224. await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false),
  225. CcAllCount = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true)
  226. };
  227. return result;
  228. }
  229. /// <summary>
  230. /// 获取筛选
  231. /// </summary>
  232. /// <returns></returns>
  233. [HttpGet("filter")]
  234. [AllowAnonymous]
  235. public async Task<List<Option>> Filter()
  236. {
  237. var processes = await _processRepository.GetListByDepartmentIdAsync(_loginContext.DepartmentId);
  238. var list = processes.Select(x => new Option
  239. {
  240. Label = x.Name,
  241. Value = x.Id
  242. }).ToList();
  243. list.Insert(0, new Option
  244. {
  245. Label = "全部",
  246. Value = 0
  247. });
  248. return list;
  249. }
  250. }
  251. }