|
@@ -5535,7 +5535,8 @@ func (this *StatisticReportController) RenewCompanyStatistics() {
|
|
|
}
|
|
|
if tmpUnusualRenewId != "" {
|
|
|
tmpGroupUnusualRenewIdSliceMap[index] = append(tmpGroupUnusualRenewIdSliceMap[index], tmpUnusualRenewId)
|
|
|
- tmpAllUnusualRenewIdSlice[index] = append(tmpAllUnusualRenewIdSlice[index], tmpUnusualRenewId)
|
|
|
+ tmpSlice := strings.Split(tmpUnusualRenewId, ",")
|
|
|
+ tmpAllUnusualRenewIdSlice[index] = append(tmpAllUnusualRenewIdSlice[index], tmpSlice...)
|
|
|
}
|
|
|
|
|
|
//总数据汇总
|