From bb09e7affb602791af4064cda8cddcfae8b3f3aa Mon Sep 17 00:00:00 2001 From: kazelee <1847801760@qq.com> Date: 星期四, 22 五月 2025 13:17:46 +0800 Subject: [PATCH] 内部联调测试,修复产品入库货区判断逻辑等问题 --- api/ErpController.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/ErpController.cs b/api/ErpController.cs index 191162c..dd038f7 100644 --- a/api/ErpController.cs +++ b/api/ErpController.cs @@ -15,7 +15,7 @@ /// <returns></returns> [HttpPost] [Route("InboundDataSync")] - public static ErpResult InboundDataSync(InboundDataSyncInfo model) { + public ErpResult InboundDataSync(InboundDataSyncInfo model) { return ApiHelper.InboundDataSync(model); } @@ -26,7 +26,7 @@ /// <returns></returns> [HttpPost] [Route("OutboundDataSync")] - public static ErpResult OutboundDataSync(OutboundDataSyncInfo model) { + public ErpResult OutboundDataSync(OutboundDataSyncInfo model) { return ApiHelper.OutboundDataSync(model); } } -- Gitblit v1.9.1