FlowService.Recall.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System.Threading.Tasks;
  2. using Datory;
  3. using GxPress.EnumConst;
  4. using System.Transactions;
  5. namespace GxPress.Service.Implement
  6. {
  7. public partial class FlowService
  8. {
  9. /// <summary>
  10. /// 撤回
  11. /// </summary>
  12. /// <param name="flowId"></param>
  13. /// <returns></returns>
  14. public async Task<bool> RecallAsync(int flowId, int userId)
  15. {
  16. try
  17. {
  18. using (var transactions = new TransactionScope())
  19. {
  20. var flow = await _flowRepository.GetAsync(flowId);
  21. if (flow == null || flow.UserId != userId)
  22. throw new Common.Exceptions.BusinessException("非本人操作!");
  23. //删除middle
  24. await middleRepository.DeleteAsync(Q.Where(nameof(Entity.Middle.Middle.FolderType), AllTypeConst.Inbox.GetHashCode()).Where(nameof(Entity.Middle.Middle.MiddleId), flowId).WhereNot(nameof(Entity.Middle.Middle.UserId), flow.UserId));
  25. //修改状态
  26. await middleRepository.UpdateAsync(Q.Where(nameof(Entity.Middle.Middle.FolderType), AllTypeConst.Inbox.GetHashCode()).Where(nameof(Entity.Middle.Middle.MiddleId), flowId).Where(nameof(Entity.Middle.Middle.UserId), flow.UserId).Set(nameof(Entity.Middle.Middle.IsRecall), true));
  27. transactions.Complete();
  28. }
  29. }
  30. catch
  31. {
  32. return false;
  33. }
  34. return true;
  35. }
  36. }
  37. }