Browse Source

Merge branch 'dev_dss' of Fengwo/hotline into dev

dengshengshuang 11 months ago
parent
commit
ec1a5cf76b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Hotline.Api/Controllers/OrderController.cs

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

@@ -1346,6 +1346,7 @@ public class OrderController : BaseController
         var (total, items) = await _orderDelayRepository
             .Queryable(viewFilter: true, handlerFilter: !isHandled)
             .Includes(x => x.Order)
+            .Includes(x=>x.Workflow)
             .WhereIF(!string.IsNullOrEmpty(dto.Keyword),
                 d => d.Order.Title.Contains(dto.Keyword!) || d.No.Contains(dto.Keyword!))
             .WhereIF(dto.IsApply == true, x => x.DelayState != EDelayState.Examining)