FlowRepository.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using AutoMapper;
  6. using GxPress.Common.AppOptions;
  7. using GxPress.Common.Tools;
  8. using GxPress.Entity.WorkFlow;
  9. using GxPress.Repository.Interface;
  10. using GxPress.Repository.Interface.WorkFlow;
  11. using GxPress.Repository.Interface.WorkProcess;
  12. using GxPress.Request.App.Flow;
  13. using Microsoft.Extensions.Options;
  14. using Datory;
  15. using GxPress.EnumConst;
  16. using Dapper;
  17. namespace GxPress.Repository.Implement.WorkFlow
  18. {
  19. public class FlowRepository : IFlowRepository
  20. {
  21. private readonly Repository<Flow> _repository;
  22. private readonly IMapper _mapper;
  23. private readonly IFlowFieldValueRepository _flowFieldValueRepository;
  24. private readonly IFlowTodoRepository _flowTodoRepository;
  25. private readonly IProcessRepository _processRepository;
  26. private readonly IProcessFieldRepository _processFieldRepository;
  27. private readonly IProcessGroupRepository _processGroupRepository;
  28. private readonly IProcessNodeRepository _processNodeRepository;
  29. private readonly IProcessRequestLimitRepository _processRequestLimitRepository;
  30. private readonly IRuleConditionRepository _conditionRuleRepository;
  31. private readonly IRuleCarbonCopyRepository _ruleCarbonCopyRepository;
  32. private readonly IRuleApproverCheckRepository _ruleApproverCheckRepository;
  33. private readonly IDepartmentRepository _departmentRepository;
  34. private readonly IRoleRepository _roleRepository;
  35. private readonly IUserRepository _userRepository;
  36. private readonly string _connectionString;
  37. private readonly string _databaseTypeStr;
  38. public FlowRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper,
  39. IFlowFieldValueRepository flowFieldValueRepository,
  40. IFlowTodoRepository flowTodoRepository,
  41. IProcessRepository processRepository,
  42. IProcessFieldRepository processFieldRepository,
  43. IProcessGroupRepository processGroupRepository,
  44. IProcessRequestLimitRepository processRequestLimitRepository,
  45. IProcessNodeRepository processNodeRepository,
  46. IRuleConditionRepository conditionRuleRepository,
  47. IRuleCarbonCopyRepository ruleCarbonCopyRepository,
  48. IRuleApproverCheckRepository ruleApproverCheckRepository,
  49. IDepartmentRepository departmentRepository,
  50. IRoleRepository roleRepository,
  51. IUserRepository userRepository)
  52. {
  53. _databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
  54. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  55. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  56. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  57. _repository = new Repository<Flow>(database);
  58. _mapper = mapper;
  59. _flowFieldValueRepository = flowFieldValueRepository;
  60. _flowTodoRepository = flowTodoRepository;
  61. _processRepository = processRepository;
  62. _processFieldRepository = processFieldRepository;
  63. _processGroupRepository = processGroupRepository;
  64. _processRequestLimitRepository = processRequestLimitRepository;
  65. _processNodeRepository = processNodeRepository;
  66. _conditionRuleRepository = conditionRuleRepository;
  67. _ruleCarbonCopyRepository = ruleCarbonCopyRepository;
  68. _ruleApproverCheckRepository = ruleApproverCheckRepository;
  69. _departmentRepository = departmentRepository;
  70. _roleRepository = roleRepository;
  71. _userRepository = userRepository;
  72. }
  73. public IDatabase Database => _repository.Database;
  74. public string TableName => _repository.TableName;
  75. public List<TableColumn> TableColumns => _repository.TableColumns;
  76. public async Task<IEnumerable<Flow>> GetListAsync(int processId)
  77. {
  78. return await _repository.GetAllAsync(Q
  79. .Where(nameof(Flow.ProcessId), processId)
  80. );
  81. }
  82. public async Task<int> InsertAsync(Flow flow)
  83. {
  84. var id = await _repository.InsertAsync(flow);
  85. var no = StringUtils.GetFlowNo(DateTime.Now, id);
  86. await _repository.UpdateAsync(Q
  87. .Set(nameof(Flow.No), no)
  88. .Where(nameof(Flow.Id), id)
  89. );
  90. return id;
  91. }
  92. public async Task<Flow> GetAsync(int flowId)
  93. {
  94. return await _repository.GetAsync(flowId);
  95. }
  96. public async Task<int> GetCountByUserIdAsync(int userId, bool checking, FlowListRequest request)
  97. {
  98. string sql = $@"SELECT
  99. count(1)
  100. FROM
  101. ccpph.tede_flow a
  102. WHERE 1=1 ";
  103. if (!checking)
  104. sql += $@" and a.State IN ('Denied','Checked')";
  105. else
  106. sql += $@" and a.State Not IN ('Denied','Checked')";
  107. sql += $@" AND a.UserId = {userId}
  108. AND a.ProcessId IN (SELECT
  109. id
  110. FROM
  111. ccpph.tede_process)";
  112. if (!string.IsNullOrWhiteSpace(request.Keyword))
  113. {
  114. sql += $@" AND (a.ProcessId IN (SELECT
  115. Id
  116. FROM
  117. tede_process
  118. WHERE
  119. name LIKE '%{request.Keyword}%')
  120. OR a.Id IN (SELECT
  121. FlowId
  122. FROM
  123. tede_flow_field_value
  124. WHERE
  125. StringValues LIKE '%{request.Keyword}%')
  126. OR a.UserId IN (SELECT
  127. Id
  128. FROM
  129. ccpph.tede_user
  130. WHERE
  131. Name LIKE '%{request.Keyword}%') or a.Id In(SELECT
  132. FlowId
  133. FROM
  134. tede_flow_todo
  135. WHERE
  136. UserId IN (SELECT
  137. Id
  138. FROM
  139. tede_user
  140. WHERE
  141. Name LIKE '%{request.Keyword}%'))
  142. or a.Id In(SELECT
  143. FlowId
  144. FROM
  145. tede_flow_message
  146. WHERE
  147. Message LIKE '%{request.Keyword}%'))";
  148. }
  149. if (request.ProcessIds.Count > 0)
  150. {
  151. var processIdValue = "";
  152. foreach (var item in request.ProcessIds)
  153. {
  154. if (item == 0)
  155. continue;
  156. processIdValue += $"{item},";
  157. }
  158. if (!string.IsNullOrWhiteSpace(processIdValue))
  159. {
  160. processIdValue = processIdValue.Remove(processIdValue.Length - 1, 1);
  161. sql += $" and a.ProcessId in({processIdValue})";
  162. }
  163. }
  164. sql += "ORDER BY a.CreatedDate DESC";
  165. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  166. var database = new Database(databaseType, _connectionString);
  167. var connection = database.GetConnection();
  168. return await connection.ExecuteScalarAsync<int>(sql);
  169. }
  170. /// <summary>
  171. /// 新增 未读数量
  172. /// </summary>
  173. /// <param name="userId"></param>
  174. /// <param name="checking"></param>
  175. /// <param name="request"></param>
  176. /// <returns></returns>
  177. public async Task<int> GetUReadCountByUserIdAsync(int userId, bool checking, FlowListRequest request)
  178. {
  179. var query = Q
  180. .Where(nameof(Flow.UserId), userId)
  181. .WhereNot(nameof(Flow.ProcessId), 0);
  182. if (checking)
  183. {
  184. query.WhereNotIn(nameof(Flow.State), new List<string>
  185. {
  186. //FlowState.Meeting.GetValue(),
  187. FlowState.Checked.GetValue(),
  188. FlowState.Denied.GetValue()
  189. });
  190. }
  191. else
  192. {
  193. query.WhereIn(nameof(Flow.State), new List<string>
  194. {
  195. //FlowState.Meeting.GetValue(),
  196. FlowState.Checked.GetValue(),
  197. FlowState.Denied.GetValue()
  198. });
  199. }
  200. if (request.ProcessIds != null && request.ProcessIds.Any())
  201. {
  202. query.WhereIn(nameof(Flow.ProcessId), request.ProcessIds);
  203. }
  204. // if (!string.IsNullOrEmpty(request.Keyword))
  205. // {
  206. // var like = $"%{request.Keyword}%";
  207. // query.WhereLike(nameof(Flow.ProcessId), like);
  208. // }
  209. #region 新增
  210. if (!string.IsNullOrEmpty(request.Keyword))
  211. {
  212. if (int.TryParse(request.Keyword, out int dd))
  213. {
  214. var like = $"%{request.Keyword}%";
  215. query.WhereLike(nameof(Flow.ProcessId), like);
  216. }
  217. }
  218. if (!string.IsNullOrWhiteSpace(request.Keyword))
  219. {
  220. //获取用户
  221. var users = await _userRepository.GetAllAsync(Q.WhereLike(nameof(Entity.User.Name), $"%{request.Keyword}%"));
  222. query.WhereIn(nameof(FlowTodo.UserId), users.Select(n => n.Id));
  223. }
  224. #endregion
  225. return await _repository.CountAsync(query);
  226. }
  227. public async Task<IEnumerable<Flow>> GetListByUserIdAsync(int userId, bool checking, FlowListRequest request)
  228. {
  229. string sql = $@"SELECT
  230. a.*
  231. FROM
  232. ccpph.tede_flow a
  233. WHERE 1=1 ";
  234. if (!checking)
  235. sql += $@" and a.State IN ('Denied','Checked')";
  236. else
  237. sql += $@" and a.State Not IN ('Denied','Checked')";
  238. sql += $@" AND a.UserId = {userId}
  239. AND a.ProcessId IN (SELECT
  240. id
  241. FROM
  242. ccpph.tede_process)";
  243. if (!string.IsNullOrWhiteSpace(request.Keyword))
  244. {
  245. sql += $@" AND (a.ProcessId IN (SELECT
  246. Id
  247. FROM
  248. tede_process
  249. WHERE
  250. name LIKE '%{request.Keyword}%')
  251. OR a.Id IN (SELECT
  252. FlowId
  253. FROM
  254. tede_flow_field_value
  255. WHERE
  256. StringValues LIKE '%{request.Keyword}%')
  257. OR a.UserId IN (SELECT
  258. Id
  259. FROM
  260. ccpph.tede_user
  261. WHERE
  262. Name LIKE '%{request.Keyword}%') or a.Id In(SELECT
  263. FlowId
  264. FROM
  265. tede_flow_todo
  266. WHERE
  267. UserId IN (SELECT
  268. Id
  269. FROM
  270. tede_user
  271. WHERE
  272. Name LIKE '%{request.Keyword}%'))
  273. or a.Id In(SELECT
  274. FlowId
  275. FROM
  276. tede_flow_message
  277. WHERE
  278. Message LIKE '%{request.Keyword}%'))";
  279. }
  280. if (request.ProcessIds.Count > 0)
  281. {
  282. var processIdValue = "";
  283. foreach (var item in request.ProcessIds)
  284. {
  285. if (item == 0)
  286. continue;
  287. processIdValue += $"{item},";
  288. }
  289. if (!string.IsNullOrWhiteSpace(processIdValue))
  290. {
  291. processIdValue = processIdValue.Remove(processIdValue.Length - 1, 1);
  292. sql += $" and a.ProcessId in({processIdValue})";
  293. }
  294. }
  295. sql += $"ORDER BY a.CreatedDate DESC limit {(request.Page - 1) * request.PerPage},{request.PerPage}";
  296. var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
  297. var database = new Database(databaseType, _connectionString);
  298. var connection = database.GetConnection();
  299. var items = await connection.QueryAsync<Flow>(sql);
  300. //result.Total = await connection.ExecuteScalarAsync<int>(AssembleSqlCount(request));
  301. return items;
  302. }
  303. public async Task<IEnumerable<Flow>> GetListByIdListAsync(IEnumerable<int> flowIdList, int page, int perPage)
  304. {
  305. return await _repository.GetAllAsync(Q
  306. .WhereIn(nameof(Flow.Id), flowIdList)
  307. .WhereNot(nameof(Flow.ProcessId), 0)
  308. .ForPage(page, perPage)
  309. .OrderByDesc(nameof(Flow.Id))
  310. );
  311. }
  312. public async Task<int> GetCountAsync(int processId, string state, string startDate, string endDate)
  313. {
  314. var query = Q
  315. .WhereNot(nameof(Flow.ProcessId), 0);
  316. if (processId > 0)
  317. {
  318. query.Where(nameof(Flow.ProcessId), processId);
  319. }
  320. if (!string.IsNullOrEmpty(state) && !StringUtils.EqualsIgnoreCase(state, "all"))
  321. {
  322. query.Where(nameof(Flow.State), state);
  323. }
  324. if (!string.IsNullOrEmpty(startDate) && !string.IsNullOrEmpty(endDate))
  325. {
  326. query.WhereBetween(nameof(Flow.CreatedDate), StringUtils.ToDateTime(startDate), StringUtils.ToDateTime(endDate));
  327. }
  328. return await _repository.CountAsync(query);
  329. }
  330. public async Task<IEnumerable<Flow>> GetListAllAsync(int page, int perPage, int processId, string state, string startDate, string endDate)
  331. {
  332. var query = Q
  333. .WhereNot(nameof(Flow.ProcessId), 0)
  334. .ForPage(page, perPage)
  335. .OrderByDesc(nameof(Flow.Id));
  336. if (processId > 0)
  337. {
  338. query.Where(nameof(Flow.ProcessId), processId);
  339. }
  340. if (!string.IsNullOrEmpty(state) && !StringUtils.EqualsIgnoreCase(state, "all"))
  341. {
  342. query.Where(nameof(Flow.State), state);
  343. }
  344. if (!string.IsNullOrEmpty(startDate) && !string.IsNullOrEmpty(endDate))
  345. {
  346. query.WhereBetween(nameof(Flow.CreatedDate), StringUtils.ToDateTime(startDate), StringUtils.ToDateTime(endDate));
  347. }
  348. return await _repository.GetAllAsync(query);
  349. }
  350. public async Task<bool> DeleteAsync(int flowId)
  351. {
  352. return await _repository.DeleteAsync(flowId);
  353. }
  354. public async Task UpdateStateAsync(int flowId, string state)
  355. {
  356. await _repository.UpdateAsync(Q
  357. .Set(nameof(Flow.State), state)
  358. .Where(nameof(Flow.Id), flowId)
  359. );
  360. }
  361. public async Task UpdateProcessNodeIdAsync(int flowId, int processNodeId)
  362. {
  363. await _repository.UpdateAsync(Q
  364. .Set(nameof(Flow.ProcessNodeId), processNodeId)
  365. .Where(nameof(Flow.Id), flowId)
  366. );
  367. }
  368. public async Task<int> CountAsync(SqlKata.Query query)
  369. {
  370. return await _repository.CountAsync(query);
  371. }
  372. }
  373. }