|
@@ -123,7 +123,7 @@ func (this *ReportSelectionController) PreserveAndPublish() {
|
|
item.IndustrialSubjectId = v.IndustrialSubjectId
|
|
item.IndustrialSubjectId = v.IndustrialSubjectId
|
|
item.SubjectName = v.IndustrialSubjectName
|
|
item.SubjectName = v.IndustrialSubjectName
|
|
item.IndustrialManagementId = v.IndustrialManagementId
|
|
item.IndustrialManagementId = v.IndustrialManagementId
|
|
- item.IndustrialManagementNames = v.IndustrialManagementName
|
|
|
|
|
|
+ item.IndustrialManagementNames = v.IndustrialManagementNames
|
|
item.OverviewArticleId = v.OverviewArticleId
|
|
item.OverviewArticleId = v.OverviewArticleId
|
|
item.IsNew = v.IsNew
|
|
item.IsNew = v.IsNew
|
|
item.IsShowOverviewArticle = v.IsShowOverviewArticle
|
|
item.IsShowOverviewArticle = v.IsShowOverviewArticle
|
|
@@ -1015,12 +1015,12 @@ func (this *ReportSelectionController) History() {
|
|
br.ErrMsg = "GetCygxReportSelectionSubjectHistoryList,Err:" + err.Error()
|
|
br.ErrMsg = "GetCygxReportSelectionSubjectHistoryList,Err:" + err.Error()
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- mapSubjectHistory := make(map[string]int) // 标的点击数量
|
|
|
|
- industrialHistory := make(map[string]int) // 产业点击数量
|
|
|
|
|
|
+ mapSubjectHistory := make(map[string]int) // 标的点击数量
|
|
|
|
+ mapIndustrialHistory := make(map[string]int) // 产业点击数量
|
|
for _, v := range listSelectionSubjectHistory {
|
|
for _, v := range listSelectionSubjectHistory {
|
|
mapSubjectHistory[v.IndustrialSubjectId]++
|
|
mapSubjectHistory[v.IndustrialSubjectId]++
|
|
if v.IndustrialSubjectId == "0" && v.IndustrialManagementId > 0 {
|
|
if v.IndustrialSubjectId == "0" && v.IndustrialManagementId > 0 {
|
|
- industrialHistory[strconv.Itoa(v.IndustrialManagementId)]++
|
|
|
|
|
|
+ mapIndustrialHistory[strconv.Itoa(v.IndustrialManagementId)]++
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1033,7 +1033,7 @@ func (this *ReportSelectionController) History() {
|
|
item := new(cygx.HistoryReportSelectionLogResp)
|
|
item := new(cygx.HistoryReportSelectionLogResp)
|
|
if (v2.IndustrialSubjectId == "" || v2.IndustrialSubjectId == "0") && v2.IndustrialManagementId != "" {
|
|
if (v2.IndustrialSubjectId == "" || v2.IndustrialSubjectId == "0") && v2.IndustrialManagementId != "" {
|
|
item.SubjectName = v2.IndustrialManagementNames
|
|
item.SubjectName = v2.IndustrialManagementNames
|
|
- item.Count = mapSubjectHistory[v2.IndustrialSubjectId]
|
|
|
|
|
|
+ item.Count = mapIndustrialHistory[v2.IndustrialManagementId]
|
|
} else {
|
|
} else {
|
|
item.SubjectName = v2.SubjectName
|
|
item.SubjectName = v2.SubjectName
|
|
item.IndustrialSubjectId = v2.IndustrialSubjectId
|
|
item.IndustrialSubjectId = v2.IndustrialSubjectId
|