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

+ 2 - 2
controller/census/seller.go

@@ -536,11 +536,11 @@ func (this *SellerController) InvoiceListV2(c *gin.Context) {
 	raiSellerIds := strings.Join(raiSellers, ",")
 	sellerIds := ""
 
-	if req.CompanyType == 1 {
+	if req.SellerType == 1 {
 		cond += ` AND b.contract_type = 1 `
 		historyCond += ` AND new_company = 1 `
 		sellerIds = ficcSellerIds
-	} else if req.CompanyType == 2 {
+	} else if req.SellerType == 2 {
 		cond += ` AND b.contract_type IN (2,3,4) `
 		historyCond += ` AND new_company = 0 `
 		sellerIds = raiSellerIds