zwxi 1 年間 前
コミット
ca1ecb5c7d
1 ファイル変更2 行追加2 行削除
  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