Parcourir la source

Merge branch 'bzq/306_report_classify' of eta_gn_server/eta_report into debug

baoziqiang il y a 3 mois
Parent
commit
6b3ba0b229
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      services/report_open.go

+ 1 - 0
services/report_open.go

@@ -22,6 +22,7 @@ func GetReportClassifyTreeRecursive(list []*models.Classify, parentId int) []*mo
 			t.Sort = v.Sort
 			t.Level = v.Level
 			t.ClassifyType = v.ClassifyType
+			t.HasChild = v.HasChild
 			t.Children = GetReportClassifyTreeRecursive(list, v.Id)
 			res = append(res, t)
 		}