From 6966c63c04c57ddec44e2e0c00c544a09737097b Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期一, 27 十月 2025 17:17:31 +0800
Subject: [PATCH] 优化PDA入库功能

---
 新建文件夹/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/DeliveryOrderController.cs |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git "a/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/DeliveryOrderController.cs" "b/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/DeliveryOrderController.cs"
index 7c65587..da3be19 100644
--- "a/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/DeliveryOrderController.cs"
+++ "b/\346\226\260\345\273\272\346\226\207\344\273\266\345\244\271/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/DeliveryOrderController.cs"
@@ -15,7 +15,16 @@
         public DeliveryOrderController(IDeliveryOrderServices service) : base(service)
         {
         }
-
+        /// <summary>
+        /// 瀹屾垚鍑哄簱鍗�
+        /// </summary>
+        /// <param name="keys"></param>
+        /// <returns></returns>
+        [HttpPost, HttpGet, Route("FinishOutOrder")]
+        public WebResponseContent FinishOutOrder(int key)
+        {
+            return Service.FinishOutOrder(key);
+        }
 
         /// <summary>
         /// 鍒涘缓鐩樼偣浠诲姟
@@ -23,7 +32,7 @@
         /// <param name="keys"></param>
         /// <returns></returns>
         [HttpPost, HttpGet, Route("CreateCheckOrder")]
-        public WebResponseContent CreateCheckOrder([FromBody]int[] keys)
+        public WebResponseContent CreateCheckOrder([FromBody] int[] keys)
         {
             return Service.CreateCheckOrder(keys);
         }
@@ -55,7 +64,7 @@
         [HttpPost, HttpGet, Route("GetDeliveryOrderDetail")]
         public WebResponseContent GetDeliveryOrderDetail(int pageNo, string orderNo, bool isPick)
         {
-            return Service.GetDeliveryOrderDetail(pageNo, orderNo,isPick);
+            return Service.GetDeliveryOrderDetail(pageNo, orderNo, isPick);
         }
         /// <summary>
         /// 瀹屾垚鐩樼偣浠诲姟
@@ -99,6 +108,6 @@
             return Service.InventoryGood(batchNo, goodsNo);
         }
 
-       
+
     }
 }

--
Gitblit v1.9.3