搜索出库增加仓库

This commit is contained in:
18942506660
2024-07-27 11:34:10 +08:00
parent 18a01836d3
commit 5c566a9e47
6 changed files with 14 additions and 5 deletions

View File

@@ -209,7 +209,7 @@ namespace WMS.Web.Api.Controllers
if (loginInfo == null || loginInfo.UserInfo == null)
return ResultPagedList<string>.ReFailure(ResultCodes.Token_Invalid_Error);
var res = await _repositories.GetOutStockTaskNosByNo(dto.BillNo);
var res = await _repositories.GetOutStockTaskNosByNo(dto.BillNo,dto.StockCode);
int total = res.Count();
res = res.OrderByDescending(o => o).Skip((dto.PageNo - 1) * dto.PageSize).Take(dto.PageSize).ToList();