From f5f3aef933f86da34d7332c49fdba529a61a8f85 Mon Sep 17 00:00:00 2001 From: gazebo Date: Mon, 30 Dec 2019 09:42:14 +0800 Subject: [PATCH] =?UTF-8?q?GetOrderWaybillInfo=E4=B8=AD=E5=BD=93isGetPos?= =?UTF-8?q?=E4=B8=BAtrue=E6=97=B6=EF=BC=8C=E6=9A=82=E6=97=B6=E5=BF=BD?= =?UTF-8?q?=E7=95=A5=E7=8A=B6=E6=80=81=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/jxcallback/orderman/orderman_ext.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/jxcallback/orderman/orderman_ext.go b/business/jxcallback/orderman/orderman_ext.go index 175b1584d..60ff706f3 100644 --- a/business/jxcallback/orderman/orderman_ext.go +++ b/business/jxcallback/orderman/orderman_ext.go @@ -181,7 +181,7 @@ func (c *OrderManager) GetOrderWaybillInfo(ctx *jxcontext.Context, vendorOrderID if err == nil && isGetPos { var taskBills []*model.WaybillExt for _, v := range bills { - if v.Status >= model.WaybillStatusAccepted && v.Status <= model.WaybillStatusDelivering { + if true /*v.Status >= model.WaybillStatusAccepted && v.Status <= model.WaybillStatusDelivering*/ { if handler := partner.GetRidderPositionGetter(v.WaybillVendorID); handler != nil { taskBills = append(taskBills, v) }