From a9f563a1f242e1f64ca79a76d7033278dd471425 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期三, 07 五月 2025 22:03:20 +0800 Subject: [PATCH] 优化了一些已知问题 --- Tiger.Business.WMS/ERP/WMS_U9C.CreateRcvLineLocation.cs | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/Tiger.Business.WMS/ERP/WMS_U9C.CreateRcvLineLocation.cs b/Tiger.Business.WMS/ERP/WMS_U9C.CreateRcvLineLocation.cs index d80cd3e..8585900 100644 --- a/Tiger.Business.WMS/ERP/WMS_U9C.CreateRcvLineLocation.cs +++ b/Tiger.Business.WMS/ERP/WMS_U9C.CreateRcvLineLocation.cs @@ -30,7 +30,6 @@ public static string CreateRcvLineLocationUrl { get; set; } = "http://172.16.80.20/u9c/webapi/CustReceivement/CreateRcvLineLocation"; - /// <summary> /// 鍒涘缓鏀惰揣鍗曟柊澧炶搴撲綅 /// </summary> @@ -52,7 +51,7 @@ Logger.Interface.Info($"U9C鐧诲綍token: {input.token}"); } } - var response = await HttpHelper.PostAsync(MiscRcvTransApproveUrl, JsonConvert.SerializeObject(input.RcvLineLocationParam), new Dictionary<string, string>() { { "token", input.token } }); + var response = await HttpHelper.PostAsync(CreateRcvLineLocationUrl, JsonConvert.SerializeObject(input.RcvLineLocationParam), new Dictionary<string, string>() { { "token", input.token } }); var result = JsonConvert.DeserializeObject<U9CResult2>(response.Message); if (result != null) { -- Gitblit v1.9.3