From 8acd352a80dead11e42550f4500fd5513585d163 Mon Sep 17 00:00:00 2001 From: 18942506660 <18942506660@A18942506660> Date: Wed, 20 Dec 2023 15:57:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/WMS.Web.Api/Controllers/SysConfigController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WMS.Web.Api/Controllers/SysConfigController.cs b/src/WMS.Web.Api/Controllers/SysConfigController.cs index 1fb89dde..d2630ab5 100644 --- a/src/WMS.Web.Api/Controllers/SysConfigController.cs +++ b/src/WMS.Web.Api/Controllers/SysConfigController.cs @@ -222,7 +222,7 @@ namespace WMS.Web.Api.Controllers var subs = await _erpService.BillQueryForSubStock(); //var subs = await _erpService.BillQueryForSubStock(null, null); - list = subs.Data.Where(w => w.Name.Equals(name) && w.OrgCode.Equals(orgCode)).Select(s => new UcStockResponse() + list = subs.Data.Where(w => w.Name.Contains(name) && w.OrgCode.Equals(orgCode)).Select(s => new UcStockResponse() { Id = s.Id, Code = s.Code,