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. //await _flowService.AddInboxAsyc(flow);
  91. return flow;
  92. }
  93. /// <summary>
  94. /// 获取详情
  95. /// </summary>
  96. /// <param name="id"></param>
  97. /// <returns></returns>
  98. [HttpGet("{id}")]
  99. [AllowAnonymous]
  100. public async Task<FlowResult> Get(int id)
  101. {
  102. await _flowTodoRepository.UpdateCCIsDoneAsync(_loginContext.AccountId, id);
  103. return await _flowService.GetFlowResult(id, _loginContext.AccountId);
  104. }
  105. /// <summary>
  106. /// 获取详情 web专属
  107. /// </summary>
  108. /// <param name="id"></param>
  109. /// <returns></returns>
  110. [HttpGet("web/{id}")]
  111. [AllowAnonymous]
  112. public async Task<FlowResult> GetWeb(int id)
  113. {
  114. //await _flowTodoRepository.UpdateCCIsDoneAsync(_loginContext.AccountId, id);
  115. return await _flowService.GetFlowResult(id, 0);
  116. }
  117. /// <summary>
  118. /// 获取工作项列表
  119. /// </summary>
  120. /// <returns></returns>
  121. [HttpGet]
  122. [AllowAnonymous]
  123. public async Task<ListResult> List([FromQuery] FlowListRequest request)
  124. {
  125. var userId = _loginContext.AccountId;
  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);
  141. }
  142. if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
  143. {
  144. return await _flowService.ListSubmittedCheckingAsync(userId, request);
  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. if (request.Type == nameof(FlowListTypeConst.MyChecking))
  161. {
  162. return await _flowService.ListMyCheckingAsync(userId, request, nameof(FlowListTypeConst.MyChecking));
  163. }
  164. if (request.Type == nameof(FlowListTypeConst.MyChecked))
  165. {
  166. return await _flowService.ListMyCheckedAsync(userId, request, nameof(FlowListTypeConst.MyChecked));
  167. }
  168. if (request.Type == nameof(FlowListTypeConst.CcUnread))
  169. {
  170. return await _flowService.ListCcUnreadAsync(userId, request);
  171. }
  172. if (request.Type == nameof(FlowListTypeConst.CcAll))
  173. {
  174. return await _flowService.ListCcAllAsync(userId, request, nameof(FlowListTypeConst.CcAll));
  175. }
  176. if (request.Type == nameof(FlowListTypeConst.SubmittedChecking))
  177. {
  178. return await _flowService.ListSubmittedCheckingAsync(userId, request, nameof(FlowListTypeConst.SubmittedChecking));
  179. }
  180. if (request.Type == nameof(FlowListTypeConst.SubmittedChecked))
  181. {
  182. return await _flowService.ListSubmittedCheckedAsync(userId, request);
  183. }
  184. return new ListResult();
  185. }
  186. /// <summary>
  187. /// 待办事项
  188. /// </summary>
  189. /// <returns></returns>
  190. [HttpGet("todo")]
  191. [AllowAnonymous]
  192. public async Task<ListResult> TodoList([FromQuery] AdminFlowController.ListRequest request)
  193. {
  194. var userId = _loginContext.AccountId;
  195. var flowListRequest = new FlowListRequest();
  196. flowListRequest.Page = request.Page;
  197. flowListRequest.PerPage = request.PerPage;
  198. var result = await _flowService.ListMyCheckingAsync(userId, flowListRequest, nameof(FlowListTypeConst.MyChecking));
  199. return new ListResult
  200. {
  201. Count = result.Count,
  202. Items = result.Items
  203. };
  204. // var flowTodoList = await _flowService.GetTodoListAsync(userId, request.Page, request.PerPage, request.ProcessId);
  205. // var resultList = new List<FlowTodoResult>();
  206. // foreach (var flowTodo in flowTodoList)
  207. // {
  208. // //新增
  209. // if (flowTodo.IsDone)
  210. // continue;
  211. // var flow = await _flowService.GetAsync(flowTodo.FlowId);
  212. // var user = await _userRepository.GetAsync(flow.UserId);
  213. // if (user == null || flow == null) continue;
  214. // var result = new FlowTodoResult
  215. // {
  216. // Id = flowTodo.Id,
  217. // ProcessId = flowTodo.ProcessId,
  218. // FlowId = flowTodo.FlowId,
  219. // UserId = flowTodo.UserId,
  220. // Type = flowTodo.Type,
  221. // State = flow.State,
  222. // IsDone = false,
  223. // CreatedDate = flowTodo.CreatedDate
  224. // };
  225. // var (title, summaries) = await _flowService.GetFlowTitleAndSummaryAsync(user, flow.ProcessId, flow.Id);
  226. // result.Title = title;
  227. // result.AvatarUrl = _userRepository.GetAvatarUrl(user);
  228. // result.Summaries = summaries;
  229. // resultList.Add(result);
  230. // }
  231. // return new TodoListResult
  232. // {
  233. // Count = await _flowService.GetTodoCountAsync(userId),
  234. // Items = resultList
  235. // };
  236. // //return resultList.ToList();
  237. //}
  238. }
  239. /// <summary>
  240. /// 获取数字
  241. /// </summary>
  242. /// <returns></returns>
  243. [HttpGet("count")]
  244. [AllowAnonymous]
  245. public async Task<GetCountResult> GetCount()
  246. {
  247. var userId = _loginContext.AccountId;
  248. var request = new FlowListRequest();
  249. var result = new GetCountResult
  250. {
  251. MyCheckingCount =
  252. await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), false,
  253. request),
  254. MyCheckedCount =
  255. await _flowTodoRepository.GetCountAsync(userId, nameof(TodoTypeConst.ApproverCheck), true, request),
  256. SubmittedCheckingCount = await _flowRepository.GetCountByUserIdAsync(userId, true, request),
  257. //SubmittedCheckedCount= await _flowTodoRepository.GetUReadCountAsync(userId, "CarbonCopy",false,request),
  258. SubmittedCheckedCount = await _flowRepository.GetCountByUserIdAsync(userId, false, request),
  259. CcUnreadCount =
  260. await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, false),
  261. CcAllCount = await _flowTodoRepository.GetReadCountAsync(userId, nameof(TodoTypeConst.CarbonCopy), request, true)
  262. };
  263. return result;
  264. }
  265. /// <summary>
  266. /// 获取筛选
  267. /// </summary>
  268. /// <returns></returns>
  269. [HttpGet("filter")]
  270. [AllowAnonymous]
  271. public async Task<List<Option>> Filter()
  272. {
  273. var processes = await _processRepository.GetListByDepartmentIdAsync(_loginContext.DepartmentId);
  274. var list = processes.Select(x => new Option
  275. {
  276. Label = x.Name,
  277. Value = x.Id
  278. }).ToList();
  279. list.Insert(0, new Option
  280. {
  281. Label = "全部",
  282. Value = 0
  283. });
  284. return list;
  285. }
  286. }
  287. }