@@ -267,6 +267,7 @@ func (this *ReportController) ListReport() {
grantUserMap = make(map[int]bool)
}
grantUserMap[v.AdminId] = true
+ grantMap[v.ReportId] = grantUserMap
for i, item := range list {
@@ -560,6 +560,12 @@ func inheritReportChapterType(parentClassifyId, currClassifyId int) (err error)
obj := models.ReportChapterType{}
err = obj.MultiCreate(addList)
+ // 修改CRM权限
+ go func() {
+ var syncReq ChapterTypeSyncReq
+ _, _ = ReportChapterTypeSync(&syncReq)
+ }()
+
return