zwxi il y a 1 an
Parent
commit
063f6a7a48
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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)
 	}