|
@@ -0,0 +1,710 @@
|
|
|
+package report_approve
|
|
|
+
|
|
|
+import (
|
|
|
+ "encoding/json"
|
|
|
+ "eta/eta_api/controllers"
|
|
|
+ "eta/eta_api/models"
|
|
|
+ "eta/eta_api/models/report_approve"
|
|
|
+ "eta/eta_api/services"
|
|
|
+ "eta/eta_api/utils"
|
|
|
+ "fmt"
|
|
|
+ "github.com/rdlucklib/rdluck_tools/paging"
|
|
|
+ "strings"
|
|
|
+ "sync"
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+
|
|
|
+type ReportApproveFlowController struct {
|
|
|
+ controllers.BaseAuthController
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportApproveFlowController) List() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ if br.ErrMsg == "" {
|
|
|
+ br.IsSendEmail = false
|
|
|
+ }
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ sysUser := this.SysUser
|
|
|
+ if sysUser == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+ params := new(report_approve.ReportApproveFlowListReq)
|
|
|
+ if e := this.ParseForm(params); e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "入参解析失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var cond, orderRule string
|
|
|
+ var pars []interface{}
|
|
|
+
|
|
|
+ {
|
|
|
+ keyword := strings.TrimSpace(params.Keyword)
|
|
|
+ if keyword != "" {
|
|
|
+ kw := fmt.Sprint("%", keyword, "%")
|
|
|
+ cond += fmt.Sprintf(` AND %s LIKE ?`, report_approve.ReportApproveFlowCols.FlowName)
|
|
|
+ pars = append(pars, kw)
|
|
|
+ }
|
|
|
+ if params.ReportType > 0 && params.ClassifySecondId > 0 {
|
|
|
+ cond += fmt.Sprintf(` AND %s = ? AND %s = ?`, report_approve.ReportApproveFlowCols.ReportType, report_approve.ReportApproveFlowCols.ClassifySecondId)
|
|
|
+ pars = append(pars, params.ReportType, params.ClassifySecondId)
|
|
|
+ }
|
|
|
+ if params.SortRule > 0 {
|
|
|
+ orderMap := map[int]string{1: "ASC", 2: "DESC"}
|
|
|
+ orderRule = fmt.Sprintf("%s %s", report_approve.ReportApproveFlowCols.CreateTime, orderMap[params.SortRule])
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ resp := new(report_approve.ReportApproveFlowListResp)
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ total, e := flowOb.GetCountByCondition(cond, pars)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批流总数失败, Err:" + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if total <= 0 {
|
|
|
+ page := paging.GetPaging(params.CurrentIndex, params.PageSize, total)
|
|
|
+ resp.Paging = page
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ var startSize int
|
|
|
+ if params.PageSize <= 0 {
|
|
|
+ params.PageSize = utils.PageSize20
|
|
|
+ }
|
|
|
+ if params.CurrentIndex <= 0 {
|
|
|
+ params.CurrentIndex = 1
|
|
|
+ }
|
|
|
+ startSize = utils.StartIndex(params.CurrentIndex, params.PageSize)
|
|
|
+
|
|
|
+ list, e := flowOb.GetPageItemsByCondition(cond, pars, []string{}, orderRule, startSize, params.PageSize)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批流分页列表失败, Err:" + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ cnClassifyIdName, enClassifyIdName := make(map[int]string), make(map[int]string)
|
|
|
+ cnClassify, e := models.GetAllClassify()
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取中文分类失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v := range cnClassify {
|
|
|
+ cnClassifyIdName[v.Id] = v.ClassifyName
|
|
|
+ }
|
|
|
+ enClassify, e := models.GetAllEnglishClassify()
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取英文分类失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v := range enClassify {
|
|
|
+ enClassifyIdName[v.Id] = v.ClassifyName
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, v := range list {
|
|
|
+ t := report_approve.FormatReportApproveFlow2Item(v)
|
|
|
+ if v.ReportType == report_approve.FlowReportTypeEnglish {
|
|
|
+ t.ReportClassify = fmt.Sprintf("%s/%s/%s", report_approve.FlowReportTypeMap[v.ReportType], enClassifyIdName[v.ClassifyFirstId], enClassifyIdName[v.ClassifySecondId])
|
|
|
+ } else {
|
|
|
+ t.ReportClassify = fmt.Sprintf("%s/%s/%s", report_approve.FlowReportTypeMap[v.ReportType], cnClassifyIdName[v.ClassifyFirstId], cnClassifyIdName[v.ClassifySecondId])
|
|
|
+ }
|
|
|
+ resp.List = append(resp.List, t)
|
|
|
+ }
|
|
|
+
|
|
|
+ page := paging.GetPaging(params.CurrentIndex, params.PageSize, total)
|
|
|
+ resp.Paging = page
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportApproveFlowController) Add() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ if br.ErrMsg == "" {
|
|
|
+ br.IsSendEmail = false
|
|
|
+ }
|
|
|
+ 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 report_approve.ReportApproveFlowAddReq
|
|
|
+ if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ br.ErrMsg = "参数解析失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ req.FlowName = strings.TrimSpace(req.FlowName)
|
|
|
+ if req.FlowName == "" {
|
|
|
+ br.Msg = "请输入审批流名称"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len([]rune(req.FlowName)) > 20 {
|
|
|
+ br.Msg = "审批流名称最多输入20个字符"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ reportTypes := []int{report_approve.FlowReportTypeChinese, report_approve.FlowReportTypeEnglish, report_approve.FlowReportTypeSmart}
|
|
|
+ if !utils.InArrayByInt(reportTypes, req.ReportType) {
|
|
|
+ br.Msg = "审批流报告类型有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("审批流报告类型有误, ReportType: %d", req.ReportType)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.ClassifyFirstId <= 0 || req.ClassifySecondId <= 0 {
|
|
|
+ br.Msg = "请选择报告分类"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(req.Nodes) <= 0 {
|
|
|
+ br.Msg = "请添加审批流程"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ approveTypes := []int{report_approve.NodeApproveTypeRoll, report_approve.NodeApproveTypeAll, report_approve.NodeApproveTypeAny}
|
|
|
+ approveUserTypes := []string{report_approve.NodeUserTypeNormal, report_approve.NodeUserTypeRole}
|
|
|
+ for _, v := range req.Nodes {
|
|
|
+ if !utils.InArrayByInt(approveTypes, v.ApproveType) {
|
|
|
+ br.Msg = "审批流类型有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("审批流类型有误, ApproveType: %d", v.ApproveType)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v2 := range v.Users {
|
|
|
+ if !utils.InArrayByStr(approveUserTypes, v2.UserType) {
|
|
|
+ br.Msg = "审批流用户类型有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("审批流用户类型有误, UserType: %d", v2.UserType)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ {
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ existCond := fmt.Sprintf(` AND %s = ? AND %s = ? AND %s = ?`, report_approve.ReportApproveFlowCols.ReportType, report_approve.ReportApproveFlowCols.ClassifyFirstId, report_approve.ReportApproveFlowCols.ClassifySecondId)
|
|
|
+ existPars := make([]interface{}, 0)
|
|
|
+ existPars = append(existPars, req.ReportType, req.ClassifyFirstId, req.ClassifySecondId)
|
|
|
+ exist, e := flowOb.GetItemByCondition(existCond, existPars, "")
|
|
|
+ if e != nil && e.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批流是否已存在失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if exist != nil {
|
|
|
+ br.Msg = "该分类已有审批流, 请勿重复添加"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ flowItem := new(report_approve.ReportApproveFlow)
|
|
|
+ flowItem.FlowName = req.FlowName
|
|
|
+ flowItem.ReportType = req.ReportType
|
|
|
+ flowItem.ClassifyFirstId = req.ClassifyFirstId
|
|
|
+ flowItem.ClassifySecondId = req.ClassifySecondId
|
|
|
+ flowItem.CurrVersion = 1
|
|
|
+ flowItem.CreateTime = time.Now().Local()
|
|
|
+ flowItem.ModifyTime = time.Now().Local()
|
|
|
+
|
|
|
+ nodeItems := make([]*report_approve.ReportApproveNode, 0)
|
|
|
+ for _, v := range req.Nodes {
|
|
|
+ n := new(report_approve.ReportApproveNode)
|
|
|
+ n.ApproveType = v.ApproveType
|
|
|
+ n.CurrVersion = flowItem.CurrVersion
|
|
|
+ j, _ := json.Marshal(v.Users)
|
|
|
+ n.Users = string(j)
|
|
|
+ n.CreateTime = time.Now().Local()
|
|
|
+ nodeItems = append(nodeItems, n)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if e := flowItem.CreateFlowAndNodes(flowItem, nodeItems); e != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "新增审批流和节点失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ detail, e := report_approve.FormatFlowAndNodesItem2Detail(flowItem, nodeItems)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批详情失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Data = detail
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "操作成功"
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportApproveFlowController) Edit() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ if br.ErrMsg == "" {
|
|
|
+ br.IsSendEmail = false
|
|
|
+ }
|
|
|
+ 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 report_approve.ReportApproveFlowEditReq
|
|
|
+ if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ br.ErrMsg = "参数解析失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.ReportApproveFlowId <= 0 {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("参数有误, ReportApproveFlowId: %d", req.ReportApproveFlowId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ req.FlowName = strings.TrimSpace(req.FlowName)
|
|
|
+ if req.FlowName == "" {
|
|
|
+ br.Msg = "请输入审批流名称"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len([]rune(req.FlowName)) > 20 {
|
|
|
+ br.Msg = "审批流名称最多输入20个字符"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ reportTypes := []int{report_approve.FlowReportTypeChinese, report_approve.FlowReportTypeEnglish, report_approve.FlowReportTypeSmart}
|
|
|
+ if !utils.InArrayByInt(reportTypes, req.ReportType) {
|
|
|
+ br.Msg = "审批流报告类型有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("审批流报告类型有误, ReportType: %d", req.ReportType)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.ClassifyFirstId <= 0 || req.ClassifySecondId <= 0 {
|
|
|
+ br.Msg = "请选择报告分类"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(req.Nodes) <= 0 {
|
|
|
+ br.Msg = "请添加审批流程"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ approveTypes := []int{report_approve.NodeApproveTypeRoll, report_approve.NodeApproveTypeAll, report_approve.NodeApproveTypeAny}
|
|
|
+ approveUserTypes := []string{report_approve.NodeUserTypeNormal, report_approve.NodeUserTypeRole}
|
|
|
+ for _, v := range req.Nodes {
|
|
|
+ if !utils.InArrayByInt(approveTypes, v.ApproveType) {
|
|
|
+ br.Msg = "审批流类型有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("审批流类型有误, ApproveType: %d", v.ApproveType)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v2 := range v.Users {
|
|
|
+ if !utils.InArrayByStr(approveUserTypes, v2.UserType) {
|
|
|
+ br.Msg = "审批流用户类型有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("审批流用户类型有误, UserType: %d", v2.UserType)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ flowItem, e := flowOb.GetItemById(req.ReportApproveFlowId)
|
|
|
+ if e != nil {
|
|
|
+ if e.Error() == utils.ErrNoRow() {
|
|
|
+ br.Msg = "审批流已被删除, 请刷新页面"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "获取审批流信息失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ {
|
|
|
+ existCond := fmt.Sprintf(` AND %s = ? AND %s = ? AND %s = ? AND %s <> ?`, report_approve.ReportApproveFlowCols.ReportType, report_approve.ReportApproveFlowCols.ClassifyFirstId, report_approve.ReportApproveFlowCols.ClassifySecondId, report_approve.ReportApproveFlowCols.ReportApproveFlowId)
|
|
|
+ existPars := make([]interface{}, 0)
|
|
|
+ existPars = append(existPars, req.ReportType, req.ClassifyFirstId, req.ClassifySecondId, req.ReportApproveFlowId)
|
|
|
+ exist, e := flowOb.GetItemByCondition(existCond, existPars, "")
|
|
|
+ if e != nil && e.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "获取审批流是否已存在失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if exist != nil {
|
|
|
+ br.Msg = "该分类已有审批流, 请勿重复添加"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if req.ReportType != flowItem.ReportType || req.ClassifyFirstId != flowItem.ClassifyFirstId || req.ClassifySecondId != flowItem.ClassifySecondId {
|
|
|
+ checkOk, e := services.CheckReportApproveFlowChange(flowItem.ReportType, flowItem.ClassifyFirstId, flowItem.ClassifySecondId)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "校验审批流是否可变更失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !checkOk {
|
|
|
+ br.Msg = "当前有未走完流程的报告, 请走完流程后再做变更!"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ flowItem.FlowName = req.FlowName
|
|
|
+ flowItem.ReportType = req.ReportType
|
|
|
+ flowItem.ClassifyFirstId = req.ClassifyFirstId
|
|
|
+ flowItem.ClassifySecondId = req.ClassifySecondId
|
|
|
+ flowItem.CurrVersion += 1
|
|
|
+ flowItem.ModifyTime = time.Now().Local()
|
|
|
+
|
|
|
+ nodeItems := make([]*report_approve.ReportApproveNode, 0)
|
|
|
+ for _, v := range req.Nodes {
|
|
|
+ n := new(report_approve.ReportApproveNode)
|
|
|
+ n.ApproveType = v.ApproveType
|
|
|
+ n.CurrVersion = flowItem.CurrVersion
|
|
|
+ j, _ := json.Marshal(v.Users)
|
|
|
+ n.Users = string(j)
|
|
|
+ n.CreateTime = time.Now().Local()
|
|
|
+ nodeItems = append(nodeItems, n)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if e := flowItem.UpdateFlowAndNodes(flowItem, nodeItems); e != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "更新审批流和节点失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ detail, e := report_approve.FormatFlowAndNodesItem2Detail(flowItem, nodeItems)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批详情失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Data = detail
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "操作成功"
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportApproveFlowController) Detail() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ if br.ErrMsg == "" {
|
|
|
+ br.IsSendEmail = false
|
|
|
+ }
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ sysUser := this.SysUser
|
|
|
+ if sysUser == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+ flowId, _ := this.GetInt("ReportApproveFlowId")
|
|
|
+ if flowId <= 0 {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("参数有误, ReportApproveFlowId: %d", flowId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ flowItem, e := flowOb.GetItemById(flowId)
|
|
|
+ if e != nil {
|
|
|
+ if e.Error() == utils.ErrNoRow() {
|
|
|
+ br.Msg = "审批流已被删除, 请刷新页面"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批流信息失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ nodeOb := new(report_approve.ReportApproveNode)
|
|
|
+ nodeCond := fmt.Sprintf(` AND %s = ? AND %s = ?`, report_approve.ReportApproveNodeCols.ReportApproveFlowId, report_approve.ReportApproveNodeCols.CurrVersion)
|
|
|
+ nodePars := make([]interface{}, 0)
|
|
|
+ nodePars = append(nodePars, flowItem.ReportApproveFlowId, flowItem.CurrVersion)
|
|
|
+ nodes, e := nodeOb.GetItemsByCondition(nodeCond, nodePars, []string{}, "")
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批节点失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ detail, e := report_approve.FormatFlowAndNodesItem2Detail(flowItem, nodes)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批详情失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Data = detail
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportApproveFlowController) Remove() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ if br.ErrMsg == "" {
|
|
|
+ br.IsSendEmail = false
|
|
|
+ }
|
|
|
+ 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 report_approve.ReportApproveFlowRemoveReq
|
|
|
+ if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ br.ErrMsg = "参数解析失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.ReportApproveFlowId <= 0 {
|
|
|
+ br.Msg = "参数有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("参数有误, ReportApproveFlowId: %d", req.ReportApproveFlowId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ flowItem, e := flowOb.GetItemById(req.ReportApproveFlowId)
|
|
|
+ if e != nil {
|
|
|
+ if e.Error() == utils.ErrNoRow() {
|
|
|
+ br.Msg = "审批流已被删除, 请刷新页面"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "获取审批流信息失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ checkOk, e := services.CheckReportApproveFlowChange(flowItem.ReportType, flowItem.ClassifyFirstId, flowItem.ClassifySecondId)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "校验审批流是否可变更失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !checkOk {
|
|
|
+ br.Msg = "当前有未走完流程的报告, 请走完流程后再做删除!"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if e = flowItem.Del(); e != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "删除审批流失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "操作成功"
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportApproveFlowController) ReportClassifyTree() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ if br.ErrMsg == "" {
|
|
|
+ br.IsSendEmail = false
|
|
|
+ }
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ sysUser := this.SysUser
|
|
|
+ if sysUser == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+ flowId, _ := this.GetInt("ReportApproveFlowId")
|
|
|
+
|
|
|
+
|
|
|
+ var flowKey string
|
|
|
+ if flowId > 0 {
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ flowItem, e := flowOb.GetItemById(flowId)
|
|
|
+ if e != nil {
|
|
|
+ if e.Error() == utils.ErrNoRow() {
|
|
|
+ br.Msg = "审批流已被删除, 请刷新页面"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批流信息失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ flowKey = fmt.Sprintf("%d-%d-%d", flowItem.ReportType, flowItem.ClassifyFirstId, flowItem.ClassifySecondId)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ flowOb := new(report_approve.ReportApproveFlow)
|
|
|
+ flows, e := flowOb.GetItemsByCondition(``, make([]interface{}, 0), []string{}, "")
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取审批流列表失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ hasFlowMap := make(map[string]bool)
|
|
|
+ for _, v := range flows {
|
|
|
+ k := fmt.Sprintf("%d-%d-%d", v.ReportType, v.ClassifyFirstId, v.ClassifySecondId)
|
|
|
+ if k == flowKey {
|
|
|
+
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ hasFlowMap[k] = true
|
|
|
+ }
|
|
|
+
|
|
|
+ resp, cnTree, smartTree, enTree := make([]*report_approve.ReportClassifyTreeItem, 0), make([]*report_approve.ReportClassifyTreeItem, 0), make([]*report_approve.ReportClassifyTreeItem, 0), make([]*report_approve.ReportClassifyTreeItem, 0)
|
|
|
+
|
|
|
+ var cnErr, enErr error
|
|
|
+ wg := sync.WaitGroup{}
|
|
|
+ wg.Add(2)
|
|
|
+
|
|
|
+
|
|
|
+ go func() {
|
|
|
+ defer func() {
|
|
|
+ wg.Done()
|
|
|
+ }()
|
|
|
+
|
|
|
+ classify, e := models.GetAllClassify()
|
|
|
+ if e != nil {
|
|
|
+ cnErr = fmt.Errorf("GetAllClassify err: %s", e.Error())
|
|
|
+ return
|
|
|
+ }
|
|
|
+ cnTree = services.GetReportClassifyTreeRecursive(classify, 0)
|
|
|
+ for _, v := range cnTree {
|
|
|
+ for _, v2 := range v.Children {
|
|
|
+ k := fmt.Sprintf("%d-%d-%d", report_approve.FlowReportTypeChinese, v.ClassifyId, v2.ClassifyId)
|
|
|
+ v2.HasFlow = hasFlowMap[k]
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ smartTree = services.GetReportClassifyTreeRecursive(classify, 0)
|
|
|
+ for _, v := range smartTree {
|
|
|
+ for _, v2 := range v.Children {
|
|
|
+ k := fmt.Sprintf("%d-%d-%d", report_approve.FlowReportTypeSmart, v.ClassifyId, v2.ClassifyId)
|
|
|
+ v2.HasFlow = hasFlowMap[k]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }()
|
|
|
+
|
|
|
+
|
|
|
+ go func() {
|
|
|
+ defer func() {
|
|
|
+ wg.Done()
|
|
|
+ }()
|
|
|
+
|
|
|
+ classify, e := models.GetAllEnglishClassify()
|
|
|
+ if e != nil {
|
|
|
+ enErr = fmt.Errorf("GetAllEnglishClassify err: %s", e.Error())
|
|
|
+ return
|
|
|
+ }
|
|
|
+ enTree = services.GetReportClassifyTreeRecursive(classify, 0)
|
|
|
+ for _, v := range enTree {
|
|
|
+ for _, v2 := range v.Children {
|
|
|
+ k := fmt.Sprintf("%d-%d-%d", report_approve.FlowReportTypeEnglish, v.ClassifyId, v2.ClassifyId)
|
|
|
+ v2.HasFlow = hasFlowMap[k]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }()
|
|
|
+
|
|
|
+ wg.Wait()
|
|
|
+
|
|
|
+ if cnErr != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取中文分类失败, Err: " + cnErr.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if enErr != nil {
|
|
|
+ br.Msg = "获取失败"
|
|
|
+ br.ErrMsg = "获取英文分类失败, Err: " + enErr.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ resp = append(resp, &report_approve.ReportClassifyTreeItem{
|
|
|
+ ClassifyId: report_approve.FlowReportTypeChinese,
|
|
|
+ ClassifyName: "研报列表",
|
|
|
+ Children: cnTree,
|
|
|
+ }, &report_approve.ReportClassifyTreeItem{
|
|
|
+ ClassifyId: report_approve.FlowReportTypeEnglish,
|
|
|
+ ClassifyName: "英文研报",
|
|
|
+ Children: enTree,
|
|
|
+ }, &report_approve.ReportClassifyTreeItem{
|
|
|
+ ClassifyId: report_approve.FlowReportTypeSmart,
|
|
|
+ ClassifyName: "智能研报",
|
|
|
+ Children: smartTree,
|
|
|
+ })
|
|
|
+
|
|
|
+ br.Data = resp
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+}
|