Browse Source

跨级派单时,当前办理节点的办理意见不进行修改

xf 6 months ago
parent
commit
0d9d532800
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Hotline.Api/Controllers/OrderController.cs

+ 2 - 1
src/Hotline.Api/Controllers/OrderController.cs

@@ -3691,7 +3691,8 @@ public class OrderController : BaseController
                         nextflowDto.StepId = unhandleStep.Id;
                         nextflowDto.StepId = unhandleStep.Id;
                         nextflowDto.IsStartCountersign = lowerLevelHandlers.Count > 1;
                         nextflowDto.IsStartCountersign = lowerLevelHandlers.Count > 1;
                         nextflowDto.NextHandlers = lowerLevelHandlers;
                         nextflowDto.NextHandlers = lowerLevelHandlers;
-                        nextflowDto.Opinion = "跨级派单,自动办理";
+                        if(unhandleStep.Id != startStep.Id)
+                          nextflowDto.Opinion = "跨级派单,自动办理";
 
 
                         var operater = new FakeSessionContext
                         var operater = new FakeSessionContext
                         {
                         {