From 1b6bf29ff7daa1987de65940af52f452cabd6881 Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期二, 15 七月 2025 17:27:50 +0800 Subject: [PATCH] 优化AGV任务部分日志、货位绑定内部方法 --- api/ErpController.cs | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/api/ErpController.cs b/api/ErpController.cs index 1e46eb3..78b7ae5 100644 --- a/api/ErpController.cs +++ b/api/ErpController.cs @@ -2,7 +2,7 @@ using Newtonsoft.Json; using System.Collections.Generic; using System.Web.Http; - +using static HH.WCS.Mobox3.DSZSH.api.OtherModel; namespace HH.WCS.Mobox3.DSZSH.api { /// <summary> @@ -10,8 +10,16 @@ /// </summary> [RoutePrefix("api")] public class ErpController : ApiController { - - - + /// <summary> + /// ERP涓嬪彂鍑哄簱璁″垝鍗�+ /// </summary> + /// <param name="model"></param> + /// <returns></returns> + [HttpPost] + [Route("ErpSendOutboundPlan")] + public ErpResult ErpSendOutboundPlan(ErpSendOutboundPlanInfo model) { + LogHelper.InfoApi("ERP涓嬪彂鍑哄簱璁″垝鍗�, model); + return ApiHelper.ErpSendOutboundPlan(model); + } } } \ No newline at end of file -- Gitblit v1.9.1