diff --git a/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs b/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs index 67e44948..17b41b68 100644 --- a/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs +++ b/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs @@ -429,6 +429,7 @@ namespace BBWY.Server.Business private void DeliveryCallback(string purchaseOrderId, Enums.Platform callbackPlatform) { string currentProgress = string.Empty; + string wayBillNoResponseInfo = string.Empty; try { #region 查询代发信息 @@ -457,6 +458,9 @@ namespace BBWY.Server.Business OrderId = purchaseOrderId, Platform = callbackPlatform }); + + if (wayBillNoResponse != null) + wayBillNoResponseInfo = JsonConvert.SerializeObject(wayBillNoResponse); #endregion #region 查询采购账号的归属店铺 @@ -496,7 +500,7 @@ namespace BBWY.Server.Business } catch (Exception ex) { - logger.Error(ex, $"DeliveryCallback 回调平台{callbackPlatform},采购单号{purchaseOrderId},执行进度[{currentProgress}]"); + logger.Error(ex, $"DeliveryCallback 回调平台{callbackPlatform},采购单号{purchaseOrderId},执行进度[{currentProgress}],物流信息:{wayBillNoResponseInfo}"); } }