|
@@ -793,6 +793,50 @@ func (this *ReportController) Detail() {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ classifyMap := make(map[int]*models.Classify) // 分类map
|
|
|
+ classifyIdList := make([]int, 0)
|
|
|
+
|
|
|
+ if item.ClassifyIdFirst > 0 {
|
|
|
+ classifyIdList = append(classifyIdList, item.ClassifyIdFirst)
|
|
|
+ }
|
|
|
+ if item.ClassifyIdSecond > 0 {
|
|
|
+ classifyIdList = append(classifyIdList, item.ClassifyIdSecond)
|
|
|
+ }
|
|
|
+ if item.ClassifyIdThird > 0 {
|
|
|
+ classifyIdList = append(classifyIdList, item.ClassifyIdThird)
|
|
|
+ }
|
|
|
+
|
|
|
+ if len(classifyIdList) > 0 {
|
|
|
+ classifyList, e := models.GetClassifyListByIdList(classifyIdList)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取报告分类失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v := range classifyList {
|
|
|
+ classifyMap[v.Id] = v
|
|
|
+ }
|
|
|
+ if item.ClassifyIdThird > 0 {
|
|
|
+ if classify, ok := classifyMap[item.ClassifyIdThird]; ok {
|
|
|
+ if classify.Enabled == 1 {
|
|
|
+ item.ClassifyEnabled = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else if item.ClassifyIdSecond > 0 {
|
|
|
+ if classify, ok := classifyMap[item.ClassifyIdSecond]; ok {
|
|
|
+ if classify.Enabled == 1 {
|
|
|
+ item.ClassifyEnabled = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else if item.ClassifyIdFirst > 0 {
|
|
|
+ if classify, ok := classifyMap[item.ClassifyIdFirst]; ok {
|
|
|
+ if classify.Enabled == 1 {
|
|
|
+ item.ClassifyEnabled = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
resp := &models.ReportDetailView{
|
|
|
ReportDetail: item,
|
|
|
ChapterList: chapterList,
|
|
@@ -960,17 +1004,17 @@ func (this *ReportController) AuthorizedListReport() {
|
|
|
var list []*models.ReportList
|
|
|
|
|
|
// 没有输入信息,那就不展示
|
|
|
- if keyword == `` && classifyIdFirst <= 0 {
|
|
|
- page := paging.GetPaging(currentIndex, pageSize, 0)
|
|
|
- resp := new(models.ReportListResp)
|
|
|
- resp.Paging = page
|
|
|
- resp.List = list
|
|
|
- br.Ret = 200
|
|
|
- br.Success = true
|
|
|
- br.Msg = "获取成功"
|
|
|
- br.Data = resp
|
|
|
- return
|
|
|
- }
|
|
|
+ //if keyword == `` && classifyIdFirst <= 0 {
|
|
|
+ // page := paging.GetPaging(currentIndex, pageSize, 0)
|
|
|
+ // resp := new(models.ReportListResp)
|
|
|
+ // resp.Paging = page
|
|
|
+ // resp.List = list
|
|
|
+ // br.Ret = 200
|
|
|
+ // br.Success = true
|
|
|
+ // br.Msg = "获取成功"
|
|
|
+ // br.Data = resp
|
|
|
+ // return
|
|
|
+ //}
|
|
|
|
|
|
// 当前用户有权限的报告id列表
|
|
|
grantReportIdList := make([]int, 0)
|