|
@@ -193,7 +193,7 @@ func moveReportClassify(classifyInfo, prevClassify, nextClassify *models.Classif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-func AddReportClassify(classifyName string, parentId int, classifyType, isRemind int, remindTime string) (err error, errMsg string, isSendEmail bool) {
|
|
+func AddReportClassify(classifyName string, parentId int, classifyType, isRemind int, remindTime string, visibleUserIds []int) (err error, errMsg string, isSendEmail bool) {
|
|
isSendEmail = true
|
|
isSendEmail = true
|
|
errMsg = `添加失败`
|
|
errMsg = `添加失败`
|
|
item, err := models.GetClassifyByName(classifyName, parentId)
|
|
item, err := models.GetClassifyByName(classifyName, parentId)
|
|
@@ -276,8 +276,7 @@ func AddReportClassify(classifyName string, parentId int, classifyType, isRemind
|
|
classify.ClassifyType = classifyType
|
|
classify.ClassifyType = classifyType
|
|
classify.IsRemind = isRemind
|
|
classify.IsRemind = isRemind
|
|
classify.RemindTime = remindTime
|
|
classify.RemindTime = remindTime
|
|
-
|
|
+ err = models.AddClassify(classify, parentId, visibleUserIds)
|
|
- err = models.AddClassify(classify)
|
|
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
@@ -297,8 +296,12 @@ func AddReportClassify(classifyName string, parentId int, classifyType, isRemind
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
moveReportByAddClassify(parentClassifyItem, classify)
|
|
moveReportByAddClassify(parentClassifyItem, classify)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -317,6 +320,21 @@ func AddReportClassify(classifyName string, parentId int, classifyType, isRemind
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -660,7 +678,7 @@ func inheritReportApproveFlow(parentClassifyItem, currClassifyItem *models.Class
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-func EditReportClassify(classifyId int, classifyName string, isRemind int, remindTime string) (err error, errMsg string, isSendEmail bool) {
|
|
+func EditReportClassify(classifyId int, classifyName string, isRemind int, remindTime string, visibleUserIds []int) (err error, errMsg string, isSendEmail bool) {
|
|
isSendEmail = true
|
|
isSendEmail = true
|
|
errMsg = `修改失败`
|
|
errMsg = `修改失败`
|
|
|
|
|
|
@@ -713,6 +731,11 @@ func EditReportClassify(classifyId int, classifyName string, isRemind int, remin
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ err = models.UpdateClassifyVisible(item.Id, visibleUserIds)
|
|
|
|
+ if err != nil {
|
|
|
|
+ errMsg = "更新可见权限失败"
|
|
|
|
+ return
|
|
|
|
+ }
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|