From 82149871f30f4564d84272649352496a2ab0a38e Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期四, 23 十月 2025 17:12:52 +0800
Subject: [PATCH] 1

---
 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Order/OutboundOrderController.cs |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Order/OutboundOrderController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Order/OutboundOrderController.cs"
index 0e01de4..56d298f 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Order/OutboundOrderController.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Order/OutboundOrderController.cs"
@@ -1,6 +1,7 @@
 锘縰sing Microsoft.AspNetCore.Mvc;
 using WIDESEA_BusinessServices;
 using WIDESEA_Core.BaseController;
+using WIDESEA_DTO.Order;
 using WIDESEA_IBusinessServices;
 using WIDESEA_IOrderServices;
 using WIDESEA_Model.Models;
@@ -20,5 +21,21 @@
             _httpContextAccessor = httpContextAccessor;
         }
 
+        /// <summary>
+        /// 鑾峰彇鍑哄簱鍗曟嵁淇℃伅
+        /// </summary>
+        /// <param name="outboundOrderGetDTO"></param>
+        /// <returns></returns>
+        [HttpPost, AllowAnonymous, Route("GetOutboundOrder")]
+        public WebResponseContent GetOutboundOrder([FromBody]OutboundOrderGetDTO outboundOrderGetDTO)
+        {
+            return Service.GetOutboundOrder(outboundOrderGetDTO);
+        }
+
+        [HttpPost, AllowAnonymous, Route("GetOutboundOrderDetail")]
+        public WebResponseContent GetOutboundOrder(int id)
+        {
+            return Service.GetOutboundOrder(id);
+        }
     }
 }

--
Gitblit v1.9.3