ziwen 1 年之前
父节点
当前提交
eb7d342854
共有 2 个文件被更改,包括 5 次插入5 次删除
  1. 4 4
      controller/census/invoice_payment.go
  2. 1 1
      models/fms/contract_income_history.go

+ 4 - 4
controller/census/invoice_payment.go

@@ -1035,17 +1035,17 @@ func getCensusIncomeListV2(ch chan models.CensusIncomeChartResp, req fms.IncomeL
 
 
 	if req.SellerIds != "" {
 	if req.SellerIds != "" {
 		sellerIds := strings.Split(req.SellerIds, ",")
 		sellerIds := strings.Split(req.SellerIds, ",")
-		cond += ` AND (a.seller_id in ? )`
-		historyCond += ` AND (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)
 		historyPars = append(historyPars, sellerIds)
 	}
 	}
 	if req.CompanyType == 1 {
 	if req.CompanyType == 1 {
 		cond += ` AND b.contract_type = 1 `
 		cond += ` AND b.contract_type = 1 `
-		historyCond += ` AND new_company = 1`
+		historyCond += ` AND new_company = 1 `
 	} else if req.CompanyType == 2 {
 	} else if req.CompanyType == 2 {
 		cond += ` AND b.contract_type IN (2,3,4) `
 		cond += ` AND b.contract_type IN (2,3,4) `
-		historyCond += ` AND new_company = 0`
+		historyCond += ` AND new_company = 0 `
 	}
 	}
 
 
 	var latestTime time.Time
 	var latestTime time.Time

+ 1 - 1
models/fms/contract_income_history.go

@@ -54,7 +54,7 @@ func GetLatestHistoryIncome(condition string, pars []interface{}) (result *Contr
 FROM
 FROM
 	contract_income_history WHERE 1=1 `
 	contract_income_history WHERE 1=1 `
 	sql += condition
 	sql += condition
-	sql += `ORDER BY invoice_time DESC  `
+	sql += ` ORDER BY invoice_time DESC  `
 	err = global.DEFAULT_MYSQL.Raw(sql, pars...).First(&result).Error
 	err = global.DEFAULT_MYSQL.Raw(sql, pars...).First(&result).Error
 	return
 	return
 }
 }