|
@@ -875,6 +875,13 @@ func (this *ReportController) ReportList() {
|
|
|
resp.HaveResearch = true
|
|
|
if departmentId > 0 {
|
|
|
condition += ` AND art.department_id = ` + strconv.Itoa(departmentId)
|
|
|
+ detail, err := models.GetArticleDepartmentDateilById(departmentId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.NickName = detail.NickName
|
|
|
}
|
|
|
if industrialManagementId > 0 {
|
|
|
condition += ` AND m.industrial_management_id = ` + strconv.Itoa(industrialManagementId)
|