From 9ef595bee616468629a0569cf181156feb77c6f6 Mon Sep 17 00:00:00 2001 From: gazebo Date: Tue, 14 May 2019 11:28:04 +0800 Subject: [PATCH] =?UTF-8?q?-=20GetOrders=E4=B8=ADwaybillVendorIDs=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E5=BA=94=E8=AF=A5=E4=BD=BF=E7=94=A8goods=5Forder?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E5=AD=97=E6=AE=B5?= 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 e20bdf037..652725eda 100644 --- a/business/jxcallback/orderman/orderman_ext.go +++ b/business/jxcallback/orderman/orderman_ext.go @@ -312,7 +312,7 @@ func (c *OrderManager) GetOrders(ctx *jxcontext.Context, fromDateStr, toDateStr return nil, err } if len(waybillVendorIDs) > 0 { - sqlWhere += " AND t2.waybill_vendor_id IN (" + dao.GenQuestionMarks(len(waybillVendorIDs)) + ")" + sqlWhere += " AND t1.waybill_vendor_id IN (" + dao.GenQuestionMarks(len(waybillVendorIDs)) + ")" sqlParams = append(sqlParams, waybillVendorIDs) } }