AppFlowController.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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. [HttpGet]
  121. public async Task<ListResult> GetList([FromQuery]FlowListRequest request)
  122. {
  123. var userId = _loginContext.AccountId;
  124. request.Page = request.Page <= 0 ? 1 : request.Page;
  125. request.PerPage = request.PerPage <= 0 ? 15 : request.PerPage;
  126. if (request.Type == nameof(FlowListTypeConst.MyChecking))
  127. {
  128. return await _flowService.ListMyCheckingAsync(userId, request, nameof(FlowListTypeConst.MyChecking));
  129. }
  130. if (request.Type == nameof(FlowListTypeConst.MyChecked))
  131. {
  132. return await _flowService.ListMyCheckedAsync(userId, request, nameof(FlowListTypeConst.MyChecked));
  133. }
  134. if (request.Type == nameof(FlowListTypeConst.CcUnread))
  135. {
  136. return await _flowService.ListCcUnreadAsync(userId, request);
  137. }
  138. if (request.Type == nameof(FlowListTypeConst.CcAll))
  139. {
  140. return await _flowService.ListCcAllAsync(userId, request, nameof(FlowListTypeConst.CcAll));
  141. }
  142. if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
  143. {
  144. return await _flowService.ListSubmittedCheckingAsync(userId, request, nameof(FlowListTypeConst.SubmittedChecking));
  145. }
  146. if (request.Type == nameof(FlowListTypeConst.SubmittedChecked))
  147. {
  148. return await _flowService.ListSubmittedCheckedAsync(userId, request);
  149. }
  150. return new ListResult();
  151. }
  152. /// <summary>
  153. /// 获取工作项列表
  154. /// </summary>
  155. /// <returns></returns>
  156. [HttpPost("list")]
  157. public async Task<ListResult> PostList(FlowListRequest request)
  158. {
  159. var userId = _loginContext.AccountId;
  160. request.Page = request.Page <= 0 ? 1 : request.Page;
  161. request.PerPage = request.PerPage <= 0 ? 15 : request.PerPage;
  162. if (request.Type == nameof(FlowListTypeConst.MyChecking))
  163. {
  164. return await _flowService.ListMyCheckingAsync(userId, request, nameof(FlowListTypeConst.MyChecking));
  165. }
  166. if (request.Type == nameof(FlowListTypeConst.MyChecked))
  167. {
  168. return await _flowService.ListMyCheckedAsync(userId, request, nameof(FlowListTypeConst.MyChecked));
  169. }
  170. if (request.Type == nameof(FlowListTypeConst.CcUnread))
  171. {
  172. return await _flowService.ListCcUnreadAsync(userId, request);
  173. }
  174. if (request.Type == nameof(FlowListTypeConst.CcAll))
  175. {
  176. return await _flowService.ListCcAllAsync(userId, request, nameof(FlowListTypeConst.CcAll));
  177. }
  178. if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
  179. {
  180. return await _flowService.ListSubmittedCheckingAsync(userId, request, nameof(FlowListTypeConst.SubmittedChecking));
  181. }
  182. if (request.Type == nameof(FlowListTypeConst.SubmittedChecked))
  183. {
  184. return await _flowService.ListSubmittedCheckedAsync(userId, request);
  185. }
  186. return new ListResult();
  187. }
  188. /// <summary>
  189. /// 待办事项
  190. /// </summary>
  191. /// <returns></returns>
  192. [HttpGet("todo")]
  193. [AllowAnonymous]
  194. public async Task<ListResult> TodoList([FromQuery] AdminFlowController.ListRequest request)
  195. {
  196. var userId = _loginContext.AccountId;
  197. var flowListRequest = new FlowListRequest();
  198. flowListRequest.Page = request.Page;
  199. flowListRequest.PerPage = request.PerPage;
  200. var result = await _flowService.ListMyCheckingAsync(userId, flowListRequest, nameof(FlowListTypeConst.MyChecking));
  201. return new ListResult
  202. {
  203. Count = result.Count,
  204. Items = result.Items
  205. };
  206. // var flowTodoList = await _flowService.GetTodoListAsync(userId, request.Page, request.PerPage, request.ProcessId);
  207. // var resultList = new List<FlowTodoResult>();
  208. // foreach (var flowTodo in flowTodoList)
  209. // {
  210. // //新增
  211. // if (flowTodo.IsDone)
  212. // continue;
  213. // var flow = await _flowService.GetAsync(flowTodo.FlowId);
  214. // var user = await _userRepository.GetAsync(flow.UserId);
  215. // if (user == null || flow == null) continue;
  216. // var result = new FlowTodoResult
  217. // {
  218. // Id = flowTodo.Id,
  219. // ProcessId = flowTodo.ProcessId,
  220. // FlowId = flowTodo.FlowId,
  221. // UserId = flowTodo.UserId,
  222. // Type = flowTodo.Type,
  223. // State = flow.State,
  224. // IsDone = false,
  225. // CreatedDate = flowTodo.CreatedDate
  226. // };
  227. // var (title, summaries) = await _flowService.GetFlowTitleAndSummaryAsync(user, flow.ProcessId, flow.Id);
  228. // result.Title = title;
  229. // result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  230. // result.Summaries = summaries;
  231. // resultList.Add(result);
  232. // }
  233. // return new TodoListResult
  234. // {
  235. // Count = await _flowService.GetTodoCountAsync(userId),
  236. // Items = resultList
  237. // };
  238. // //return resultList.ToList();
  239. //}
  240. }
  241. /// <summary>
  242. /// 获取数字
  243. /// </summary>
  244. /// <returns></returns>
  245. [HttpGet("count")]
  246. [AllowAnonymous]
  247. public async Task<GetCountResult> GetCount()
  248. {
  249. var userId = _loginContext.AccountId;
  250. var request = new FlowListRequest();
  251. var result = new GetCountResult
  252. {
  253. MyCheckingCount =
  254. await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), false,
  255. request),
  256. MyCheckedCount =
  257. await _flowTodoRepository.GetMyCheckedCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request),
  258. SubmittedCheckingCount = await _flowRepository.GetCountByUserIdAsync(userId, true, request),
  259. //SubmittedCheckedCount= await _flowTodoRepository.GetUReadCountAsync(userId, "CarbonCopy",false,request),
  260. SubmittedCheckedCount = await _flowRepository.GetCountByUserIdAsync(userId, false, request),
  261. CcUnreadCount =
  262. await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false),
  263. CcAllCount = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true)
  264. };
  265. return result;
  266. }
  267. /// <summary>
  268. /// 获取筛选
  269. /// </summary>
  270. /// <returns></returns>
  271. [HttpGet("filter")]
  272. [AllowAnonymous]
  273. public async Task<List<Option>> Filter()
  274. {
  275. var processes = await _processRepository.GetListByDepartmentIdAsync(_loginContext.DepartmentId);
  276. var list = processes.Select(x => new Option
  277. {
  278. Label = x.Name,
  279. Value = x.Id
  280. }).ToList();
  281. list.Insert(0, new Option
  282. {
  283. Label = "全部",
  284. Value = 0
  285. });
  286. return list;
  287. }
  288. }
  289. }