|
@@ -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)
|
|
|
}
|
|
|
|