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 {