|
@@ -275,13 +275,13 @@ func (this *StatisticRaiDataSummaryController) RaiDataSummaryList() {
|
|
|
|
|
|
//新签部分的数据(服务组)
|
|
|
for _, v := range listRaiData {
|
|
|
- if !mapsellerDevelop[v.ShareSellerInit] {
|
|
|
+ if !mapsellerDevelop[v.ShareSellerIdInit] {
|
|
|
continue
|
|
|
}
|
|
|
yearStr := getYearStar(utils.StrDateToDate(v.StartDate), dataType)
|
|
|
|
|
|
- keyMap = fmt.Sprint(yearStr, "_Server_", v.ShareSellerInit)
|
|
|
- keySigned = fmt.Sprint(yearStr, "_Server_", v.CompanyId, "_SID_", v.ShareSellerInit)
|
|
|
+ keyMap = fmt.Sprint(yearStr, "_Server_", v.ShareSellerIdInit)
|
|
|
+ keySigned = fmt.Sprint(yearStr, "_Server_", v.CompanyId, "_SID_", v.ShareSellerIdInit)
|
|
|
keyMapTtoal = fmt.Sprint(yearStr, "_Server_")
|
|
|
|
|
|
if v.RaiContractType == "新签合同" {
|
|
@@ -1400,11 +1400,11 @@ func (this *StatisticRaiDataSummaryController) RaiDataSummaryDetail() {
|
|
|
var parsInherit []interface{}
|
|
|
if sellerId != "" {
|
|
|
if isServerSeller {
|
|
|
- condition += ` AND a.share_seller_id_last IN (` + sellerId + `) `
|
|
|
- conditionInherit += ` AND a.share_seller_id_last IN (` + sellerId + `) `
|
|
|
+ condition += ` AND a.share_seller_id_init IN (` + sellerId + `) `
|
|
|
+ conditionInherit += ` AND a.share_seller_id_init IN (` + sellerId + `) `
|
|
|
} else {
|
|
|
- condition += ` AND a.seller_id_last IN (` + sellerId + `) `
|
|
|
- conditionInherit += ` AND a.seller_id_last IN (` + sellerId + `) `
|
|
|
+ condition += ` AND a.seller_id_init IN (` + sellerId + `) `
|
|
|
+ conditionInherit += ` AND a.seller_id_init IN (` + sellerId + `) `
|
|
|
}
|
|
|
}
|
|
|
condition += " AND a.product_id = 2 AND a.status = 1 AND a.start_date >= ? AND a.start_date <= ? AND a.rai_contract_type = '新签合同' "
|