Browse Source

Merge branch 'seller_census'

zwxi 1 year ago
parent
commit
0abb1a63bb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controller/census/seller.go

+ 2 - 2
controller/census/seller.go

@@ -492,9 +492,9 @@ func (this *SellerController) InvoiceListV2(c *gin.Context) {
 
 	if req.SellerIds != "" {
 		sellerIds := strings.Split(req.SellerIds, ",")
-		cond += ` AND (a.seller_id in ? ) `
+		//cond += ` AND (a.seller_id in ? ) `
 		historyCond += ` AND (seller_id in ? ) `
-		pars = append(pars, sellerIds)
+		//pars = append(pars, sellerIds)
 		historyPars = append(historyPars, sellerIds)
 	}