From e4f3c5ff76f7e410e61a52215b97799c07dd4a9b Mon Sep 17 00:00:00 2001
From: 南骏 池 <chiffly@163.com>
Date: 星期二, 04 十一月 2025 11:23:37 +0800
Subject: [PATCH] 1.调拨出库优化 2.WOMDAA里新增”库位查询“方法 3.一键调拨存储过程调用

---
 Controllers/Wom/WomdaaController.cs |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/Controllers/Wom/WomdaaController.cs b/Controllers/Wom/WomdaaController.cs
index f5dee1c..13093e9 100644
--- a/Controllers/Wom/WomdaaController.cs
+++ b/Controllers/Wom/WomdaaController.cs
@@ -295,6 +295,33 @@
             return ResponseResult.ResponseError(ex);
         }
     }
+
+
+
+    /// <summary>
+    ///     鐢熶骇棰嗘枡鐐瑰嚮鐗╂枡鏄庣粏鑾峰彇鐩稿叧鏉$爜淇℃伅
+    /// </summary>
+    /// <returns></returns>
+    [HttpPost("GetBarKwByItemCK")]
+    public ResponseResult GetBarKwByItemCK(dynamic unity)
+    {
+        try
+        {
+            dynamic resultInfos = new ExpandoObject();
+            resultInfos.tbBillList = m.GetBarKwByItemCK(unity);
+            return new ResponseResult
+            {
+                status = 0,
+                message = "OK",
+                data = resultInfos
+            };
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
+
     #endregion
 
     #region 鐜板満绠$悊

--
Gitblit v1.9.3