From ccb1ebbf88c1fb456ca30f121c6ef108246689cc Mon Sep 17 00:00:00 2001
From: tjx <t2856754968@163.com>
Date: 星期六, 13 十二月 2025 17:10:32 +0800
Subject: [PATCH] 111
---
StandardPda/MESApplication/Controllers/Warehouse/SalesPalletController.cs | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/StandardPda/MESApplication/Controllers/Warehouse/SalesPalletController.cs b/StandardPda/MESApplication/Controllers/Warehouse/SalesPalletController.cs
index 7c73129..9c8eb02 100644
--- a/StandardPda/MESApplication/Controllers/Warehouse/SalesPalletController.cs
+++ b/StandardPda/MESApplication/Controllers/Warehouse/SalesPalletController.cs
@@ -66,4 +66,30 @@
return ResponseResult.ResponseError(ex);
}
}
+
+ /// <summary>
+ /// 鍒涘缓閿�鍞鍗曞彂璐�
+ /// </summary>
+ /// <param name="request">鍙戣揣璇锋眰鍙傛暟</param>
+ /// <returns>鍙戣揣缁撴灉</returns>
+ [HttpPost("CreateSalesOrderShipping")]
+ public ResponseResult CreateSalesOrderShipping(
+ [FromBody] CreateSalesOrderShippingRequestDto request)
+ {
+ try
+ {
+ var result = _manager.CreateSalesOrderShipping(request);
+
+ return new ResponseResult
+ {
+ status = 0,
+ message = "閿�鍞鍗曞彂璐ф垚鍔�",
+ data = result
+ };
+ }
+ catch (Exception ex)
+ {
+ return ResponseResult.ResponseError(ex);
+ }
+ }
}
\ No newline at end of file
--
Gitblit v1.9.3