From fbd1dae61bb8eeccd303341ff3b5290d805a8155 Mon Sep 17 00:00:00 2001
From: tjx <t2856754968@163.com>
Date: 星期五, 19 十二月 2025 18:40:25 +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