From e294beba0debf8eebbb10470ff69421ea91d6083 Mon Sep 17 00:00:00 2001 From: suyl <770236076@qq.com> Date: Mon, 9 Aug 2021 10:48:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=95=E8=AF=89=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/jxcallback/orderman/waybill.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/business/jxcallback/orderman/waybill.go b/business/jxcallback/orderman/waybill.go index 3e21f898c..cae6394f4 100644 --- a/business/jxcallback/orderman/waybill.go +++ b/business/jxcallback/orderman/waybill.go @@ -265,9 +265,7 @@ func ComplaintRider(ctx *jxcontext.Context, vendorOrderID string, vendorID, wayb } func ComplaintRiderPlatform(ctx *jxcontext.Context, vendorOrderID string, vendorID, waybillVendorID, complaintID int) (err error) { - if vendorID != model.VendorIDJD { - return fmt.Errorf("目前只支持京东投诉!") - } - handler := partner.GetPurchaseOrderHandlerFromVendorID(vendorID) - return handler.ComplaintRider(vendorOrderID, complaintID, "") + return fmt.Errorf("只支持三方配送投诉!") + //handler := partner.GetPurchaseOrderHandlerFromVendorID(vendorID) + //return handler.ComplaintRider(vendorOrderID, complaintID, "") }