From 8df624a41b03581fc06132172156a5d33b2cfcd3 Mon Sep 17 00:00:00 2001
From: admin <qiutairan163@163.com>
Date: 星期四, 18 十二月 2025 14:24:24 +0800
Subject: [PATCH] 取消AGV移库任务CancelMoveTask目标储位去除仓库限制
---
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 0af5415..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.Remark == null) ? "" : s.Remark) + 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