|
@@ -128,18 +128,37 @@ func (c *ExcelInfoController) Rename() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- // todo 操作权限校验, 增加协作人判断
|
|
|
+ // 操作权限校验, 增加协作人判断
|
|
|
{
|
|
|
+ checkExcelInfo := excelInfo
|
|
|
+ if excelInfo.Source == utils.BALANCE_TABLE {
|
|
|
+ checkExcelInfoId := excelInfo.ExcelInfoId
|
|
|
+ if excelInfo.BalanceType == 1 {
|
|
|
+ checkExcelInfoId = excelInfo.RelExcelInfoId
|
|
|
+ } else {
|
|
|
+ if excelInfo.ParentId > 0 {
|
|
|
+ checkExcelInfoId = excelInfo.ParentId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if checkExcelInfoId != excelInfo.ExcelInfoId {
|
|
|
+ checkExcelInfo, err = excel.GetExcelInfoById(checkExcelInfoId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取平衡表格信息失败"
|
|
|
+ br.ErrMsg = "获取平衡表格信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
// 数据权限
|
|
|
- haveOperaAuth, err := data_manage_permission.CheckExcelPermissionByExcelInfoId(excelInfo.ExcelInfoId, excelInfo.ExcelClassifyId, excelInfo.IsJoinPermission, c.SysUser.AdminId)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "获取ETA表格失败"
|
|
|
- br.ErrMsg = "获取ETA表格权限失败,Err:" + err.Error()
|
|
|
+ haveOperaAuth, e := data_manage_permission.CheckExcelPermissionByExcelInfoId(checkExcelInfo.ExcelInfoId, checkExcelInfo.ExcelClassifyId, checkExcelInfo.IsJoinPermission, c.SysUser.AdminId)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取ETA表格权限失败"
|
|
|
+ br.ErrMsg = "获取表格权限信息失败,Err" + e.Error()
|
|
|
return
|
|
|
}
|
|
|
- button := excelService.GetExcelInfoOpButton(sysUser, excelInfo.SysUserId, excelInfo.Source, haveOperaAuth)
|
|
|
+
|
|
|
+ button := excelService.GetBalanceExcelInfoOpButton(sysUser.AdminId, checkExcelInfo.SysUserId, haveOperaAuth, checkExcelInfo.ExcelInfoId)
|
|
|
if !button.OpButton {
|
|
|
- br.Msg = "无操作权限"
|
|
|
br.Msg = "无操作权限"
|
|
|
br.IsSendEmail = false
|
|
|
return
|
|
@@ -219,7 +238,7 @@ func (c *ExcelInfoController) SaveExcelWorker() {
|
|
|
br.ErrMsg = "您没有权限操作!"
|
|
|
return
|
|
|
}
|
|
|
- // todo 操作权限校验, 增加协作人判断
|
|
|
+ // 操作权限校验, 增加协作人判断
|
|
|
{
|
|
|
// 数据权限
|
|
|
haveOperaAuth, err := data_manage_permission.CheckExcelPermissionByExcelInfoId(excelInfo.ExcelInfoId, excelInfo.ExcelClassifyId, excelInfo.IsJoinPermission, c.SysUser.AdminId)
|
|
@@ -230,7 +249,6 @@ func (c *ExcelInfoController) SaveExcelWorker() {
|
|
|
}
|
|
|
button := excelService.GetExcelInfoOpButton(sysUser, excelInfo.SysUserId, excelInfo.Source, haveOperaAuth)
|
|
|
if !button.OpButton {
|
|
|
- br.Msg = "无操作权限"
|
|
|
br.Msg = "无操作权限"
|
|
|
br.IsSendEmail = false
|
|
|
return
|
|
@@ -320,8 +338,8 @@ func (c *ExcelInfoController) GetWorker() {
|
|
|
br.ErrMsg = "获取表格协作人失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- data := &response.BalanceTableWorkerResp{List: list}
|
|
|
- br.Data = data
|
|
|
+ ret := &response.BalanceTableWorkerResp{List: list}
|
|
|
+ br.Data = ret
|
|
|
br.Ret = 200
|
|
|
br.Success = true
|
|
|
br.Msg = "操作成功"
|
|
@@ -656,7 +674,7 @@ func (c *ExcelInfoController) DeleteBalanceChart() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- // todo 查询权限
|
|
|
+ // todo 查询图表权限
|
|
|
/*chartClassifyItem, err := data_manage.GetChartClassifyById(chartInfo.ChartClassifyId)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取失败"
|
|
@@ -795,7 +813,6 @@ func (c *ExcelInfoController) BalanceSeasonChartLegendPreview() {
|
|
|
dataList := make([]*data_manage.EdbDataList, 0)
|
|
|
|
|
|
for i, v := range req.DateArr {
|
|
|
- // todo 处理DataTimestamp
|
|
|
dataTime, e := time.ParseInLocation(utils.FormatDate, v, time.Local)
|
|
|
if e != nil {
|
|
|
br.Msg = "日期格式错误"
|
|
@@ -885,6 +902,22 @@ func (c *ExcelInfoController) AddStaticExcel() {
|
|
|
br.Msg = "获取ETA表格失败"
|
|
|
return
|
|
|
}
|
|
|
+ // 操作权限校验, 增加协作人判断
|
|
|
+ {
|
|
|
+ // 数据权限
|
|
|
+ haveOperaAuth, err := data_manage_permission.CheckExcelPermissionByExcelInfoId(oldExcelInfo.ExcelInfoId, oldExcelInfo.ExcelClassifyId, oldExcelInfo.IsJoinPermission, c.SysUser.AdminId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取ETA表格失败"
|
|
|
+ br.ErrMsg = "获取ETA表格权限失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ button := excelService.GetExcelInfoOpButton(sysUser, oldExcelInfo.SysUserId, oldExcelInfo.Source, haveOperaAuth)
|
|
|
+ if !button.OpButton {
|
|
|
+ br.Msg = "无操作权限"
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
// 查询出每个子表的内容,并将内容转为静态版本
|
|
|
//查询动态表所有的子表,并复制为静态表
|
|
|
condition := " AND parent_id = ? AND balance_type = 0 "
|
|
@@ -1059,6 +1092,43 @@ func (c *ExcelInfoController) ModifyBalanceExcelVersion() {
|
|
|
br.Msg = "请选择静态表"
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ // 操作权限校验, 增加协作人判断
|
|
|
+ {
|
|
|
+ checkExcelInfo := excelInfo
|
|
|
+ if excelInfo.Source == utils.BALANCE_TABLE {
|
|
|
+ checkExcelInfoId := excelInfo.ExcelInfoId
|
|
|
+ if excelInfo.BalanceType == 1 {
|
|
|
+ checkExcelInfoId = excelInfo.RelExcelInfoId
|
|
|
+ } else {
|
|
|
+ if excelInfo.ParentId > 0 {
|
|
|
+ checkExcelInfoId = excelInfo.ParentId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if checkExcelInfoId != excelInfo.ExcelInfoId {
|
|
|
+ checkExcelInfo, err = excel.GetExcelInfoById(checkExcelInfoId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "获取平衡表格信息失败"
|
|
|
+ br.ErrMsg = "获取平衡表格信息失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 数据权限
|
|
|
+ haveOperaAuth, e := data_manage_permission.CheckExcelPermissionByExcelInfoId(checkExcelInfo.ExcelInfoId, checkExcelInfo.ExcelClassifyId, checkExcelInfo.IsJoinPermission, c.SysUser.AdminId)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取ETA表格权限失败"
|
|
|
+ br.ErrMsg = "获取表格权限信息失败,Err" + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ button := excelService.GetBalanceExcelInfoOpButton(sysUser.AdminId, checkExcelInfo.SysUserId, haveOperaAuth, checkExcelInfo.ExcelInfoId)
|
|
|
+ if !button.OpButton {
|
|
|
+ br.Msg = "无操作权限"
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
// 检验分类下是否存在该版本号
|
|
|
{
|
|
|
var condition string
|