From 4aa2984048fd2a24500c5b5798ee103bd23bfafa Mon Sep 17 00:00:00 2001 From: gazebo Date: Thu, 26 Dec 2019 17:43:17 +0800 Subject: [PATCH] comment --- business/jxcallback/orderman/order.go | 1 + 1 file changed, 1 insertion(+) diff --git a/business/jxcallback/orderman/order.go b/business/jxcallback/orderman/order.go index b025a3ed4..aae59e8d4 100644 --- a/business/jxcallback/orderman/order.go +++ b/business/jxcallback/orderman/order.go @@ -175,6 +175,7 @@ func (c *OrderManager) OnOrderStatusChanged(vendorOrgCode string, orderStatus *m } } else if orderStatus.Status == model.OrderStatusFinished { if order, err2 := c.LoadOrder(orderStatus.VendorOrderID, orderStatus.VendorID); err2 == nil { + // 当前只针对三方运单更新配送费信息 if order.WaybillVendorID >= 0 && order.VendorWaybillID != "" && order.WaybillVendorID != order.VendorID { if waybill, err2 := c.LoadWaybill(order.VendorWaybillID, order.WaybillVendorID); err2 == nil { if handler := partner.GetWaybillTipUpdater(waybill.WaybillVendorID); handler != nil {