xf 6 месяцев назад
Родитель
Сommit
f64dc57cf8
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      src/Hotline.Api/Controllers/OrderController.cs

+ 4 - 0
src/Hotline.Api/Controllers/OrderController.cs

@@ -3515,6 +3515,10 @@ public class OrderController : BaseController
         }
 
         _mapper.Map(expiredTimeConfig, order);
+
+        if (dto.Workflow.BusinessType is EBusinessType.Department or EBusinessType.DepartmentLeader)
+            order.ProcessType = EProcessType.Jiaoban;
+
         await _orderRepository.UpdateAsync(order, HttpContext.RequestAborted);
 
         try