Browse Source

290 省件被退回至热线中心时,需给当前节点对应角色用户进行弹窗提示

田爽 2 months ago
parent
commit
a6bef7c31d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Hotline.Api/Controllers/CommonPController.cs

+ 1 - 1
src/Hotline.Api/Controllers/CommonPController.cs

@@ -611,7 +611,7 @@ namespace Hotline.Api.Controllers
 								   (step.FlowAssignType == EFlowAssignType.User && step.HandlerId == _sessionContext.RequiredUserId)
 								   || (step.FlowAssignType == EFlowAssignType.Role && _sessionContext.Roles.Contains(step.RoleId))
 								   )).Any()
-					).ToListAsync();
+					).OrderByDescending(x=>x.AuditTime).ToListAsync();
 				if (orders != null && orders.Any())
 				{
 					var order = orders.FirstOrDefault();