采购模糊查询

This commit is contained in:
tongfei
2023-11-03 10:44:42 +08:00
parent 7afffdc84e
commit 4edfd4f5e2
5 changed files with 14 additions and 4 deletions

View File

@@ -76,7 +76,7 @@ namespace WMS.Web.Api.Controllers
if (loginInfo == null || loginInfo.UserInfo == null)
return ResultList<InStockTaskBillNoQueryResponse>.ReFailure(ResultCodes.Token_Invalid_Error);
var list= await _inStockTaskRepositories.GetListBy(code);
var list= await _inStockTaskRepositories.GetListBy(code, InstockType.Purchase);
return ResultList<InStockTaskBillNoQueryResponse>.ReSuccess(list);
}
}