|
@@ -172,7 +172,14 @@ func (c *ChartPublicController) Cancel() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- chartInfoId, _ := c.GetInt("ChartInfoId")
|
|
|
+ var req request.CancelChartPublicReq
|
|
|
+ err := json.Unmarshal(c.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ chartInfoId := req.ChartInfoId
|
|
|
if chartInfoId <= 0 {
|
|
|
br.Msg = "参数错误"
|
|
|
br.ErrMsg = "参数错误"
|
|
@@ -214,8 +221,21 @@ func (c *ChartPublicController) Cancel() {
|
|
|
return
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
checkUserIdList := []int{sysUser.AdminId}
|
|
|
+ // 已经分享的用户
|
|
|
+ {
|
|
|
+ obj := data_manage.ChartInfoShare{}
|
|
|
+ userIdList, err := obj.GetAllUserIdListByChartInfoId(chartInfo.ChartInfoId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "设置失败!"
|
|
|
+ br.ErrMsg = "设置失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(userIdList) > 0 {
|
|
|
+ checkUserIdList = append(checkUserIdList, userIdList...)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
noReferenced, otherUserIdList, err, tips := data.CheckChartReferencedByOthers([]int{chartInfo.ChartInfoId}, []string{chartInfo.UniqueCode}, checkUserIdList)
|
|
|
if err != nil {
|
|
|
br.Msg = "保存失败"
|