From ace83e08bedac4362423e7a38369baf35d2468c1 Mon Sep 17 00:00:00 2001
From: admin <qiutairan163@163.com>
Date: 星期五, 19 十二月 2025 11:30:38 +0800
Subject: [PATCH] 拼托出库pda拣货-标签SoSetPinPick34允许绑定多个出库单物料

---
 Wms/WMS.BLL/BllPdaServer/PdaCrServer.cs |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/Wms/WMS.BLL/BllPdaServer/PdaCrServer.cs b/Wms/WMS.BLL/BllPdaServer/PdaCrServer.cs
index 47e0c36..0550afc 100644
--- a/Wms/WMS.BLL/BllPdaServer/PdaCrServer.cs
+++ b/Wms/WMS.BLL/BllPdaServer/PdaCrServer.cs
@@ -893,7 +893,7 @@
         /// <param name="areaNo"></param>
         /// <returns></returns>
         /// <exception cref="Exception"></exception>
-        public List<string> GetLocatByArea(string areaNo)
+        public List<SysStorageLocatDto> GetLocatByArea(string areaNo)
         {
             try
             {
@@ -901,7 +901,11 @@
                 {
                     throw new Exception("璇烽�夋嫨鍖哄煙");
                 }
-                var _list = Db.Queryable<SysStorageLocat>().Where(w => w.IsDel == "0" && w.AreaNo == areaNo && w.WareHouseNo == "W04").Select(s => s.LocatNo).ToList();
+                var _list = Db.Queryable<SysStorageLocat>().Where(w => w.IsDel == "0" && w.AreaNo == areaNo && w.WareHouseNo == "W04").Select(s => new SysStorageLocatDto()
+                {
+                    LocatNo = s.LocatNo,
+                    Remark = s.Remark
+                }).ToList();
 
                 return _list;
             }

--
Gitblit v1.8.0