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