From 671b60339271875c3d15357e7c792727d67e6c91 Mon Sep 17 00:00:00 2001
From: 南骏 池 <chiffly@163.com>
Date: 星期二, 06 五月 2025 09:46:54 +0800
Subject: [PATCH] 1.现场收料 2.MES->OA优化 3.采购入库新增日志。

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

diff --git a/Controllers/Wom/WomdaaController.cs b/Controllers/Wom/WomdaaController.cs
index 37724e4..fa38828 100644
--- a/Controllers/Wom/WomdaaController.cs
+++ b/Controllers/Wom/WomdaaController.cs
@@ -427,7 +427,7 @@
 
     //GetItemsXcsl
     /// <summary>
-    ///     鏍规嵁宸ュ崟鍙疯幏鍙栦唬棰嗙墿鏂欐槑缁�
+    ///     鏍规嵁宸ュ崟鍙疯幏鍙栧緟鏀舵枡鐗╂枡鏄庣粏
     /// </summary>
     /// <returns></returns>
     [HttpPost("GetItemsXcsl")]
@@ -450,5 +450,31 @@
         }
     }
 
+
+    //GetItemsXcsl
+    /// <summary>
+    ///     鐗╂枡鏉$爜鏀舵枡
+    /// </summary>
+    /// <returns></returns>
+    [HttpPost("ScanXcsl")]
+    public ResponseResult ScanXcsl(dynamic query)
+    {
+        try
+        {
+            dynamic resultInfos = new ExpandoObject();
+            resultInfos.tbBillList = m.ScanXcsl(query);
+            return new ResponseResult
+            {
+                status = 0,
+                message = "OK",
+                data = resultInfos
+            };
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
+
     #endregion
 }
\ No newline at end of file

--
Gitblit v1.9.3