From a6b54d7ff5139b6c5242d473aa3e30ae536d029c Mon Sep 17 00:00:00 2001 From: shanj <18996038927@163.com> Date: Thu, 5 May 2022 21:34:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=8F=91=E8=B4=A7=E5=9B=9E?= =?UTF-8?q?=E8=B0=83=E9=94=99=E8=AF=AF=E6=97=A5=E5=BF=97=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E7=89=A9=E6=B5=81=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs b/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs index 17b41b68..d8532351 100644 --- a/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs +++ b/BBWY.Server.Business/PurchaseOrder/PurchaseOrderBusiness.cs @@ -430,6 +430,7 @@ namespace BBWY.Server.Business { string currentProgress = string.Empty; string wayBillNoResponseInfo = string.Empty; + string logisticsCompanyListInfo = string.Empty; try { #region 查询代发信息 @@ -477,6 +478,8 @@ namespace BBWY.Server.Business AppToken = shop.AppToken, Platform = shop.Platform }); + if (logisticsCompanyList != null) + logisticsCompanyListInfo = JsonConvert.SerializeObject(logisticsCompanyList); #endregion #region 物流公司翻译 @@ -500,7 +503,7 @@ namespace BBWY.Server.Business } catch (Exception ex) { - logger.Error(ex, $"DeliveryCallback 回调平台{callbackPlatform},采购单号{purchaseOrderId},执行进度[{currentProgress}],物流信息:{wayBillNoResponseInfo}"); + logger.Error(ex, $"DeliveryCallback 回调平台{callbackPlatform},采购单号{purchaseOrderId},执行进度[{currentProgress}],采购单物流信息:{wayBillNoResponseInfo},店铺平台物流公司列表:{logisticsCompanyListInfo}"); } }