FlowService.Actions1.Add.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. using Datory;
  5. using GxPress.Common.Tools;
  6. using GxPress.Entity.WorkFlow;
  7. using GxPress.Entity.WorkFlowDto;
  8. using GxPress.EnumConst;
  9. namespace GxPress.Service.Implement
  10. {
  11. public partial class FlowService
  12. {
  13. /// <summary>
  14. /// 添加工作流
  15. /// </summary>
  16. /// <param name="flow"></param>
  17. /// <returns></returns>
  18. public async Task<int> AddAsync(FlowDto flow)
  19. {
  20. flow.Id = await _flowRepository.InsertAsync(new Flow
  21. {
  22. State = FlowState.Checking,
  23. ProcessId = flow.ProcessId,
  24. UserId = flow.UserId,
  25. IsRead = false
  26. });
  27. foreach (var flowField in flow.Fields)
  28. {
  29. await _flowFieldValueRepository.InsertAsync(new FlowFieldValue
  30. {
  31. ProcessId = flow.ProcessId,
  32. FlowId = flow.Id,
  33. FieldId = flowField.Id,
  34. UserId = flow.UserId,
  35. FieldType = flowField.Type,
  36. StringValue = flowField.Value,
  37. StringValues = flowField.Value,
  38. IntValue = StringUtils.ToInt(flowField.Value)
  39. });
  40. }
  41. //添加审核人
  42. if (flow.ApproverCheckUserIds != null)
  43. {
  44. for (int i = 0; i < flow.ApproverCheckUserIds.Count(); i++)
  45. {
  46. var todo = new FlowTodo
  47. {
  48. ProcessId = flow.ProcessId,
  49. FlowId = flow.Id,
  50. UserId = flow.ApproverCheckUserIds[i],
  51. Type = nameof(TodoTypeConst.ApproverCheck),
  52. IsDone = false,
  53. IsOperate = i == 0,
  54. };
  55. await _flowTodoRepository.InsertAsync(todo);
  56. if (i == 0)
  57. {
  58. //发送短信
  59. var user = await _userRepository.GetAsync(todo.UserId);
  60. //Common.Sms.AliySms.FolwCheckSendSms(user.Phone);
  61. Common.Sms.MasSms.SendSmsTemplate(new List<string>() { user.Phone }, "c9bdae1685514a9b821299720e2c5fe8");
  62. }
  63. }
  64. }
  65. if (flow.CarbonCopyUserIds != null)
  66. {
  67. foreach (var userId in flow.CarbonCopyUserIds)
  68. {
  69. var todo = new FlowTodo
  70. {
  71. ProcessId = flow.ProcessId,
  72. FlowId = flow.Id,
  73. UserId = userId,
  74. Type = nameof(TodoTypeConst.CarbonCopy),
  75. IsDone = false,
  76. IsOperate = false
  77. };
  78. await _flowTodoRepository.InsertAsync(todo);
  79. }
  80. }
  81. var nodes = await _processService.GetAllAsync(flow.ProcessId);
  82. foreach (var processNodeDto in nodes.Where(n => n.ParentId == 0))
  83. {
  84. if (processNodeDto.Type == nameof(ProcessNodeTypeConst.Start))
  85. {
  86. await NodeExecuteAsync(flow, processNodeDto);
  87. }
  88. //插入审核人
  89. if (processNodeDto.Type == nameof(ProcessNodeTypeConst.Approver) && processNodeDto.ParentId == 0)
  90. {
  91. await NodeExecuteAsync(flow, processNodeDto);
  92. //break;
  93. }
  94. if (processNodeDto.Type == nameof(ProcessNodeTypeConst.Switch))
  95. {
  96. //工作流条件
  97. await NodeExecuteSwitchAsync(flow, processNodeDto);
  98. }
  99. if (processNodeDto.Type == nameof(ProcessNodeTypeConst.End))
  100. {
  101. await NodeExecuteAsync(flow, processNodeDto);
  102. break;
  103. }
  104. }
  105. //创建工作流
  106. foreach (var item in flow.flowAttachments)
  107. {
  108. item.FlowId = flow.Id;
  109. item.TypeId = 1;
  110. }
  111. await flowAttachmentRepository.InsertsAsync(flow.flowAttachments);
  112. return flow.Id;
  113. }
  114. public async Task<int> ReAddAsync(int flowId)
  115. {
  116. var flow = await GetAsync(flowId);
  117. if (flow == null) return 0;
  118. flow.Id = await _flowRepository.InsertAsync(new Flow
  119. {
  120. ProcessId = flow.ProcessId,
  121. State = FlowState.Checking,
  122. UserId = flow.UserId
  123. });
  124. //获取上一个的文件
  125. var flowAttachments = (await flowAttachmentRepository.GetAllAsync(flowId)).ToList();
  126. foreach (var item in flowAttachments)
  127. {
  128. item.FlowId = flow.Id;
  129. item.TypeId = 1;
  130. }
  131. await flowAttachmentRepository.InsertsAsync(flowAttachments);
  132. if (flow.Fields != null)
  133. {
  134. foreach (var flowField in flow.Fields)
  135. {
  136. await _flowFieldValueRepository.InsertAsync(new FlowFieldValue
  137. {
  138. ProcessId = flow.ProcessId,
  139. FlowId = flow.Id,
  140. FieldId = flowField.Id,
  141. UserId = flow.UserId,
  142. FieldType = flowField.Type,
  143. StringValue = flowField.Value,
  144. StringValues = flowField.Value,
  145. IntValue = StringUtils.ToInt(flowField.Value)
  146. });
  147. }
  148. }
  149. for (int i = 0; i < flow.ApproverCheckUserIds.Count(); i++)
  150. {
  151. var todo = new FlowTodo
  152. {
  153. ProcessId = flow.ProcessId,
  154. FlowId = flow.Id,
  155. UserId = flow.ApproverCheckUserIds[i],
  156. Type = nameof(TodoTypeConst.ApproverCheck),
  157. IsDone = false,
  158. IsOperate = i == 0,
  159. };
  160. await _flowTodoRepository.InsertAsync(todo);
  161. }
  162. if (flow.ApproverCheckUserIds != null)
  163. {
  164. foreach (var userId in flow.ApproverCheckUserIds)
  165. {
  166. var todo = new FlowTodo
  167. {
  168. ProcessId = flow.ProcessId,
  169. FlowId = flow.Id,
  170. UserId = userId,
  171. Type = nameof(TodoTypeConst.CarbonCopy),
  172. IsDone = false
  173. };
  174. await _flowTodoRepository.InsertAsync(todo);
  175. }
  176. }
  177. var nodes = await GetNodesAsync(flow, await _processService.GetNodesAsync(flow.ProcessId, 0));
  178. if (nodes != null)
  179. {
  180. foreach (var processNodeDto in nodes)
  181. {
  182. if (processNodeDto.Type == nameof(ProcessNodeTypeConst.Start) ||
  183. processNodeDto.Type == nameof(ProcessNodeTypeConst.End))
  184. {
  185. await NodeExecuteAsync(flow, processNodeDto);
  186. }
  187. else if (processNodeDto.Type == nameof(ProcessNodeTypeConst.Approver))
  188. {
  189. await NodeExecuteAsync(flow, processNodeDto);
  190. }
  191. }
  192. }
  193. await DeleteAsync(flow.Id);
  194. return flow.Id;
  195. }
  196. /// <summary>
  197. /// 上会待定
  198. /// </summary>
  199. /// <param name="flowId"></param>
  200. /// <param name="userId"></param>
  201. /// <returns></returns>
  202. public async Task<bool> ActionsWait(int flowId, int userId)
  203. {
  204. var flow = await GetAsync(flowId);
  205. if (flow == null) return false;
  206. var flowTode = await _flowTodoRepository.GetAsync(Q.Where(nameof(Entity.WorkFlow.FlowTodo.FlowId), flowId).Where(nameof(Entity.WorkFlow.FlowTodo.UserId), userId));
  207. if (flowTode == null)
  208. return false;
  209. flowTode.IsDone = true;
  210. flowTode.DoneType = 2;
  211. flowTode.IsChecked = false;
  212. return await _flowTodoRepository.UpdateAsync(flowTode);
  213. }
  214. }
  215. }