duyongjia
2025-01-09 daf541c51a7687b338e17b1543266bacee4ff2d3
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_Tasks/BYDJob.cs
@@ -47,6 +47,27 @@
                WriteDebug(nameof(BYDJob), $"同步条码主数据异常,异常描述:"+ex.Message);
            }
            try
            {
                WriteDebug(nameof(BYDOutOrderJob), $"同步出库单");
                //同步WMS出库单数据
                var response = HttpHelpers.Post<WebResponseContent>(url.Replace("PDA", "Sys_Job") + "SelectOutStoreOrder", "", "同步条码主数据");
                if (response.Status)
                {
                    WriteDebug(nameof(BYDOutOrderJob), $"同步出库单");
                }
                else
                {
                    WriteDebug(nameof(BYDOutOrderJob), $"同步出库单失败,失败原因:{response.Message}");
                }
            }
            catch (Exception ex)
            {
                WriteDebug(nameof(BYDOutOrderJob), $"同步出库单异常,异常描述:" + ex.Message);
            }
            return Task.CompletedTask;
        }
    }