|
@@ -1907,7 +1907,7 @@ public class OrderController : BaseController
|
|
|
|
|
|
var (total, items) = await query
|
|
|
.WhereIF(dto.DataScope is 1, x => x.CreatorId == _sessionContext.RequiredUserId)
|
|
|
- .WhereIF(dto.Status.HasValue, x => x.Status == dto.Status)
|
|
|
+ //.WhereIF(dto.Status.HasValue, x => x.Status == dto.Status)
|
|
|
.WhereIF(!string.IsNullOrEmpty(dto.AcceptType), x => x.Order!.AcceptTypeCode! == dto.AcceptType!)
|
|
|
.WhereIF(!string.IsNullOrEmpty(dto.HotspotSpliceName), x => x.Order!.Hotspot.HotSpotFullName!.StartsWith(dto.HotspotSpliceName!))
|
|
|
.WhereIF(!string.IsNullOrEmpty(dto.SourceChannel), x => x.Order!.SourceChannelCode! == dto.SourceChannel!)
|