|
@@ -5,9 +5,8 @@ import (
|
|
|
"eta/eta_hub/models"
|
|
|
"eta/eta_hub/services"
|
|
|
"eta/eta_hub/utils"
|
|
|
+ "fmt"
|
|
|
"github.com/rdlucklib/rdluck_tools/paging"
|
|
|
- "strconv"
|
|
|
- "strings"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
@@ -21,14 +20,6 @@ type SmartReportController struct {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
|
|
|
func (this *SmartReportController) List() {
|
|
@@ -39,16 +30,8 @@ func (this *SmartReportController) List() {
|
|
|
}()
|
|
|
|
|
|
type SmartReportListReq struct {
|
|
|
- PageSize int `form:"PageSize"`
|
|
|
- CurrentIndex int `form:"CurrentIndex"`
|
|
|
- TimeType string `form:"TimeType"`
|
|
|
- StartDate string `form:"StartDate"`
|
|
|
- EndDate string `form:"EndDate"`
|
|
|
- Frequency string `form:"Frequency"`
|
|
|
- ClassifyIdFirst int `form:"ClassifyIdFirst"`
|
|
|
- ClassifyIdSecond int `form:"ClassifyIdSecond"`
|
|
|
- State int `form:"State"`
|
|
|
- Keyword string `form:"Keyword"`
|
|
|
+ PageSize int `form:"PageSize"`
|
|
|
+ CurrentIndex int `form:"CurrentIndex"`
|
|
|
}
|
|
|
params := new(SmartReportListReq)
|
|
|
if e := this.ParseForm(params); e != nil {
|
|
@@ -56,52 +39,10 @@ func (this *SmartReportController) List() {
|
|
|
br.ErrMsg = "入参解析失败, Err: " + e.Error()
|
|
|
return
|
|
|
}
|
|
|
- if params.TimeType == "" {
|
|
|
- params.TimeType = "publish_time"
|
|
|
- }
|
|
|
- if params.TimeType != "publish_time" && params.TimeType != "modify_time" {
|
|
|
- br.Msg = "请选择正确的时间类型"
|
|
|
- return
|
|
|
- }
|
|
|
-
|
|
|
- if params.TimeType == "modify_time" {
|
|
|
- params.TimeType = "content_modify_time"
|
|
|
- }
|
|
|
|
|
|
var condition string
|
|
|
var pars []interface{}
|
|
|
-
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- condition += ` AND state <> 1 `
|
|
|
+
|
|
|
resp := new(models.SmartReportListResp)
|
|
|
reportOB := new(models.SmartReport)
|
|
|
total, e := reportOB.GetCountByCondition(condition, pars)
|
|
@@ -129,20 +70,17 @@ func (this *SmartReportController) List() {
|
|
|
}
|
|
|
startSize = utils.StartIndex(params.CurrentIndex, params.PageSize)
|
|
|
|
|
|
-
|
|
|
- fields := []string{
|
|
|
- "smart_report_id", "report_code", "classify_id_first", "classify_name_first", "classify_id_second", "classify_name_second", "add_type",
|
|
|
- "title", "abstract", "author", "frequency", "stage", "video_url", "video_name", "video_play_seconds", "video_size", "detail_img_url", "detail_pdf_url",
|
|
|
- "admin_id", "admin_real_name", "state", "publish_time", "pre_publish_time", "pre_msg_send", "msg_is_send", "msg_send_time", "create_time", "modify_time",
|
|
|
- "last_modify_admin_id", "last_modify_admin_name", "content_modify_time", "pv", "uv",
|
|
|
- }
|
|
|
- list, e := reportOB.GetPageItemsByCondition(condition, pars, fields, "", startSize, params.PageSize)
|
|
|
+ list, e := reportOB.GetPageItemsByCondition(condition, pars, []string{}, "", startSize, params.PageSize)
|
|
|
if e != nil {
|
|
|
br.Msg = "获取失败"
|
|
|
br.ErrMsg = "获取报告分页列表失败, Err:" + e.Error()
|
|
|
return
|
|
|
}
|
|
|
- resp.List = list
|
|
|
+ resp.List = make([]*models.SmartReportItem, 0)
|
|
|
+ for _, v := range list {
|
|
|
+ t := models.FormatSmartReport2Item(v)
|
|
|
+ resp.List = append(resp.List, t)
|
|
|
+ }
|
|
|
|
|
|
page := paging.GetPaging(params.CurrentIndex, params.PageSize, total)
|
|
|
resp.Paging = page
|
|
@@ -175,19 +113,13 @@ func (this *SmartReportController) Detail() {
|
|
|
item, e := ob.GetItemById(reportId)
|
|
|
if e != nil {
|
|
|
if e.Error() == utils.ErrNoRow() {
|
|
|
- br.Msg = "报告不存在, 请刷新页面"
|
|
|
+ br.Msg = "报告已被删除"
|
|
|
return
|
|
|
}
|
|
|
br.Msg = "操作失败"
|
|
|
br.ErrMsg = "获取研报失败, Err: " + e.Error()
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
- if !utils.InArrayByInt([]int{models.SmartReportStatePublished, models.SmartReportStateRejected, models.SmartReportStateApprovaled}, item.State) {
|
|
|
- br.Msg = "报告状态错误"
|
|
|
- br.ErrMsg = "报告状态错误"
|
|
|
- return
|
|
|
- }
|
|
|
resp := models.FormatSmartReport2Item(item)
|
|
|
|
|
|
br.Ret = 200
|
|
@@ -195,86 +127,120 @@ func (this *SmartReportController) Detail() {
|
|
|
br.Data = resp
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-
|
|
|
-func (this *SmartReportController) Publish() {
|
|
|
+
|
|
|
+func (this *SmartReportController) Approve() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
defer func() {
|
|
|
this.Data["json"] = br
|
|
|
this.ServeJSON()
|
|
|
}()
|
|
|
|
|
|
- var req models.SmartReportPublishReq
|
|
|
+ var req models.SmartReportApproveReq
|
|
|
err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
if err != nil {
|
|
|
br.Msg = "参数解析异常!"
|
|
|
br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- if req.SmartReportIds == "" {
|
|
|
- br.Msg = "参数有误"
|
|
|
- br.ErrMsg = "报告ID为空"
|
|
|
- return
|
|
|
- }
|
|
|
- if req.PublishState != models.SmartReportStateRejected && req.PublishState != models.SmartReportStateApprovaled {
|
|
|
- br.Msg = "参数有误"
|
|
|
+ if req.ReportId <= 0 {
|
|
|
+ br.Msg = "参数错误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("参数有误, SmartReportId: %d", req.ReportId)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- reportArr := strings.Split(req.SmartReportIds, ",")
|
|
|
- for _, v := range reportArr {
|
|
|
- vint, err := strconv.Atoi(v)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "参数错误"
|
|
|
- br.ErrMsg = "参数错误,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
- ob := new(models.SmartReport)
|
|
|
- item, e := ob.GetItemById(vint)
|
|
|
- if e != nil {
|
|
|
- if e.Error() == utils.ErrNoRow() {
|
|
|
- br.Msg = "报告不存在, 请刷新页面"
|
|
|
- return
|
|
|
- }
|
|
|
- br.Msg = "操作失败"
|
|
|
- br.ErrMsg = "获取研报失败, Err: " + e.Error()
|
|
|
+ ob := new(models.SmartReport)
|
|
|
+ item, e := ob.GetItemById(req.ReportId)
|
|
|
+ if e != nil {
|
|
|
+ if e.Error() == utils.ErrNoRow() {
|
|
|
+ br.Msg = "报告已被删除"
|
|
|
return
|
|
|
}
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "获取智能研报失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if item.State != models.ReportStateWaitApprove {
|
|
|
+ br.Msg = "报告状态有误"
|
|
|
+ br.ErrMsg = fmt.Sprintf("报告状态有误, State: %d", item.State)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if item.Content == "" {
|
|
|
+ br.Msg = "报告内容为空,请检查内容"
|
|
|
+ return
|
|
|
+ }
|
|
|
|
|
|
- cols := []string{"State", "ModifyTime"}
|
|
|
- item.State = req.PublishState
|
|
|
- item.ModifyTime = time.Now().Local()
|
|
|
+
|
|
|
+ confMap, e := models.GetBusinessConf()
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "操作失败"
|
|
|
+ br.ErrMsg = "获取审批配置失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if confMap[models.BusinessConfIsReportApprove] != "true" {
|
|
|
+ br.Msg = "未开启审批, 请开启后重新操作"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if confMap[models.BusinessConfReportApproveType] != models.BusinessConfReportApproveTypeOther {
|
|
|
+ br.Msg = "未开启第三方审批, 请开启后重新操作"
|
|
|
+ return
|
|
|
+ }
|
|
|
|
|
|
+ stateMap := map[bool]int{false: models.ReportStateRefused, true: models.ReportStatePass}
|
|
|
+
|
|
|
+ now := time.Now().Local()
|
|
|
+ if !req.Pass {
|
|
|
+ cols := []string{"State", "ModifyTime", "ApproveTime"}
|
|
|
+ item.State = stateMap[req.Pass]
|
|
|
+ item.ModifyTime = now
|
|
|
+ item.ApproveTime = now
|
|
|
if e = item.Update(cols); e != nil {
|
|
|
- br.Msg = "操作失败"
|
|
|
- br.ErrMsg = "更新研报失败, Err: " + e.Error()
|
|
|
+ br.Msg = "审批失败"
|
|
|
+ br.ErrMsg = "报告审批驳回失败, Err: " + e.Error()
|
|
|
return
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- recordItem := &models.ReportStateRecord{
|
|
|
- ReportId: vint,
|
|
|
- ReportType: 2,
|
|
|
- State: req.PublishState,
|
|
|
- CreateTime: time.Now(),
|
|
|
+
|
|
|
+ if req.Pass {
|
|
|
+ cols := []string{"State", "ModifyTime", "ApproveTime", "PublishTime"}
|
|
|
+ item.State = stateMap[req.Pass]
|
|
|
+ item.ModifyTime = now
|
|
|
+ item.ApproveTime = now
|
|
|
+ item.PublishTime = now
|
|
|
+ if e = item.Update(cols); e != nil {
|
|
|
+ br.Msg = "审批失败"
|
|
|
+ br.ErrMsg = "报告审批通过失败, Err: " + e.Error()
|
|
|
+ return
|
|
|
}
|
|
|
- go func() {
|
|
|
- _, _ = models.AddReportStateRecord(recordItem)
|
|
|
- }()
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+ var queue models.Report2ImgQueueReq
|
|
|
+ queue.ReportType = 2
|
|
|
+ queue.ReportCode = item.ReportCode
|
|
|
+ _ = utils.Rc.LPush(utils.CACHE_CREATE_REPORT_IMGPDF_QUEUE, queue)
|
|
|
+
|
|
|
+
|
|
|
go func() {
|
|
|
- _ = services.SmartReportElasticUpsert(item.SmartReportId, req.PublishState)
|
|
|
+ _ = services.SmartReportElasticUpsert(item.SmartReportId, models.ReportStatePublished)
|
|
|
}()
|
|
|
}
|
|
|
|
|
|
- if req.PublishState == models.SmartReportStateRejected {
|
|
|
- br.Msg = "驳回成功"
|
|
|
- } else {
|
|
|
- br.Msg = "审批通过"
|
|
|
- }
|
|
|
+
|
|
|
+ go func() {
|
|
|
+ recordItem := &models.ReportStateRecord{
|
|
|
+ ReportId: req.ReportId,
|
|
|
+ ReportType: models.ReportTypeSmart,
|
|
|
+ State: item.State,
|
|
|
+ CreateTime: time.Now(),
|
|
|
+ }
|
|
|
+ _, _ = models.AddReportStateRecord(recordItem)
|
|
|
+ }()
|
|
|
+
|
|
|
br.Ret = 200
|
|
|
+ br.Msg = "审批成功"
|
|
|
}
|