From 657671caa42129794df41165c468f63cd62bc2cd Mon Sep 17 00:00:00 2001 From: shanj <18996038927@163.com> Date: Thu, 5 May 2022 21:17:45 +0800 Subject: [PATCH] =?UTF-8?q?1688=E5=8F=91=E8=B4=A7=E5=9B=9E=E8=B0=83?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E7=89=A9=E6=B5=81=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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}"); } }