|
@@ -193,7 +193,7 @@ func moveReportClassify(classifyInfo, prevClassify, nextClassify *models.Classif
|
|
|
// @return err error
|
|
|
// @return errMsg string
|
|
|
// @return isSendEmail bool
|
|
|
-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
|
|
|
errMsg = `添加失败`
|
|
|
item, err := models.GetClassifyByName(classifyName, parentId)
|
|
@@ -276,8 +276,7 @@ func AddReportClassify(classifyName string, parentId int, classifyType, isRemind
|
|
|
classify.ClassifyType = classifyType
|
|
|
classify.IsRemind = isRemind
|
|
|
classify.RemindTime = remindTime
|
|
|
-
|
|
|
- err = models.AddClassify(classify)
|
|
|
+ err = models.AddClassify(classify, parentId, visibleUserIds)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -297,8 +296,12 @@ func AddReportClassify(classifyName string, parentId int, classifyType, isRemind
|
|
|
|
|
|
// 继承父级分类审批流
|
|
|
//go inheritReportApproveFlow(parentClassifyItem, classify)
|
|
|
-
|
|
|
moveReportByAddClassify(parentClassifyItem, classify)
|
|
|
+ // err = models.UpdateClassifyVisible(classify.Id, visibleUserIds)
|
|
|
+ // if err != nil {
|
|
|
+ // errMsg = "添加分类可见权限失败"
|
|
|
+ // return
|
|
|
+ // }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -317,6 +320,21 @@ func AddReportClassify(classifyName string, parentId int, classifyType, isRemind
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+// inheritParentClassifyVisibleUser 继承父类的可见用户
|
|
|
+// func inheritParentClassifyVisibleUser(parentClassifyId, currClassifyId int) (err error) {
|
|
|
+// parentUserIds, err := models.GetClassifyVisibleUserIdByClassifyId(parentClassifyId)
|
|
|
+// if err != nil {
|
|
|
+// return
|
|
|
+// }
|
|
|
+// currUserIds, err := models.GetClassifyVisibleUserIdByClassifyId(currClassifyId)
|
|
|
+// if err != nil {
|
|
|
+// return
|
|
|
+// }
|
|
|
+// parentUserIds = append(parentUserIds, currUserIds...)
|
|
|
+// err = models.ExtendClassifyVisible(parentClassifyId, currClassifyId, parentUserIds)
|
|
|
+// return
|
|
|
+// }
|
|
|
+
|
|
|
// checkClassifyApprove
|
|
|
// @Description: 判断分类是否存在待操作的审批单
|
|
|
// @author: Roc
|
|
@@ -660,7 +678,7 @@ func inheritReportApproveFlow(parentClassifyItem, currClassifyItem *models.Class
|
|
|
// @return err error
|
|
|
// @return errMsg string
|
|
|
// @return isSendEmail bool
|
|
|
-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
|
|
|
errMsg = `修改失败`
|
|
|
|
|
@@ -713,6 +731,11 @@ func EditReportClassify(classifyId int, classifyName string, isRemind int, remin
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
+ err = models.UpdateClassifyVisible(item.Id, visibleUserIds)
|
|
|
+ if err != nil {
|
|
|
+ errMsg = "更新可见权限失败"
|
|
|
+ return
|
|
|
+ }
|
|
|
return
|
|
|
}
|
|
|
|