|
@@ -95,6 +95,7 @@ func (this *ReportController) AddChapter() {
|
|
|
|
|
|
reportChapterInfo.Title = req.Title
|
|
|
reportChapterInfo.AddType = 1
|
|
|
+ reportChapterInfo.PublishState = 1
|
|
|
|
|
|
|
|
|
|
|
@@ -130,6 +131,74 @@ func (this *ReportController) AddChapter() {
|
|
|
br.Msg = "保存成功"
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportController) EditChapterBaseInfoAndPermission() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ sysUser := this.SysUser
|
|
|
+ if sysUser == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var req models.EditReportChapterBaseInfoAndPermissionReq
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ reportChapterId := req.ReportChapterId
|
|
|
+ if reportChapterId <= 0 {
|
|
|
+ br.Msg = "报告章节ID有误"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "报告章节信息有误"
|
|
|
+ br.ErrMsg = "报告章节信息有误, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "报告信息有误"
|
|
|
+ br.ErrMsg = "报告信息有误, Err: " + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if reportInfo.State == 2 {
|
|
|
+ br.Msg = "该报告已发布,不允许编辑"
|
|
|
+ br.ErrMsg = "该报告已发布,不允许编辑"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ err, errMsg := services.EditChapterBaseInfoAndPermission(reportInfo, reportChapterInfo, req.Title, req.PermissionIdList, req.AdminIdList)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "保存失败"
|
|
|
+ if errMsg != "" {
|
|
|
+ br.Msg = errMsg
|
|
|
+ }
|
|
|
+ br.ErrMsg = "保存失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "保存成功"
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -436,74 +505,6 @@ func (this *ReportController) DelChapter() {
|
|
|
br.Msg = "删除成功"
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-func (this *ReportController) EditChapterBaseInfoAndPermission() {
|
|
|
- br := new(models.BaseResponse).Init()
|
|
|
- defer func() {
|
|
|
- this.Data["json"] = br
|
|
|
- this.ServeJSON()
|
|
|
- }()
|
|
|
-
|
|
|
- sysUser := this.SysUser
|
|
|
- if sysUser == nil {
|
|
|
- br.Msg = "请登录"
|
|
|
- br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
- br.Ret = 408
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- var req models.EditReportChapterBaseInfoAndPermissionReq
|
|
|
- err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "参数解析异常!"
|
|
|
- br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
- reportChapterId := req.ReportChapterId
|
|
|
- if reportChapterId <= 0 {
|
|
|
- br.Msg = "报告章节ID有误"
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- reportChapterInfo, err := models.GetReportChapterInfoById(reportChapterId)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "报告章节信息有误"
|
|
|
- br.ErrMsg = "报告章节信息有误, Err: " + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- reportInfo, err := models.GetReportByReportId(reportChapterInfo.ReportId)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "报告信息有误"
|
|
|
- br.ErrMsg = "报告信息有误, Err: " + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
- if reportInfo.State == 2 {
|
|
|
- br.Msg = "该报告已发布,不允许编辑"
|
|
|
- br.ErrMsg = "该报告已发布,不允许编辑"
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- err, errMsg := services.EditChapterBaseInfoAndPermission(reportInfo, reportChapterInfo, req.Title, req.PermissionIdList, req.AdminIdList)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "保存失败"
|
|
|
- if errMsg != "" {
|
|
|
- br.Msg = errMsg
|
|
|
- }
|
|
|
- br.ErrMsg = "保存失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- br.Ret = 200
|
|
|
- br.Success = true
|
|
|
- br.Msg = "保存成功"
|
|
|
-}
|
|
|
-
|
|
|
|
|
|
|
|
|
|