duyongjia
2025-01-07 48091350d466941e7d1a6a9c803ad4205d8c3d86
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/ConveyorLineJob/WMSApiInvoke.cs
@@ -19,15 +19,11 @@
            string response = "";
            try
            {
                response = HttpManager.HttpPostAsync(url, "SC01").Result;
                return response;
            }
            catch (Exception ex)
            {
            {
                return null;
            }
        }
@@ -35,13 +31,11 @@
        public static string SyncLabMaster()
        {
            string url = AppSettings.Configuration.GetSection("WMS").Value.Replace("","")+ "Sys_Job/SyncLabMaster";
            string url = AppSettings.Configuration.GetSection("WMS").Value.Replace("PDA", "Sys_Job") + "Sys_Job/SyncLabMaster";
            string response = "";
            try
            {
                response = HttpManager.HttpPostAsync(url, "SC01").Result;
                return response;
            }