|
@@ -30,7 +30,8 @@ namespace Hotline.Api.Controllers.OrderModuleControllers
|
|
|
{
|
|
|
var orderccs = await _orderccRepository.Queryable()
|
|
|
.Includes(d => d.Order)
|
|
|
- .Where(d=> !string.IsNullOrEmpty())
|
|
|
+ //todo 按照抄送权限查询
|
|
|
+ //.Where(d=> !string.IsNullOrEmpty())
|
|
|
.WhereIF(!string.IsNullOrEmpty(dto.Keyword), d => d.Order.No == dto.Keyword)
|
|
|
.ToPageListWithoutTotalAsync(dto, HttpContext.RequestAborted);
|
|
|
|