Browse Source

orderdelay

Dun.Jason 1 year ago
parent
commit
97b98fa235
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Hotline.Api/Controllers/OrderController.cs

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

@@ -1266,7 +1266,7 @@ public class OrderController : BaseController
     [HttpGet("delay")]
     [HttpGet("delay")]
     public async Task<PagedDto<OrderDelayDto>> DelayList([FromQuery] DelayListDto dto)
     public async Task<PagedDto<OrderDelayDto>> DelayList([FromQuery] DelayListDto dto)
     {
     {
-        var (total, items) = await _orderDelayRepository.Queryable(permissionVerify: true)
+        var (total, items) = await _orderDelayRepository.Queryable()
             .Includes(x => x.Order)
             .Includes(x => x.Order)
             .Includes(x => x.Workflow)
             .Includes(x => x.Workflow)
             .WhereIF(!string.IsNullOrEmpty(dto.Keyword),
             .WhereIF(!string.IsNullOrEmpty(dto.Keyword),