|
@@ -1,7 +1,9 @@
|
|
|
package controllers
|
|
|
|
|
|
import (
|
|
|
+ "encoding/json"
|
|
|
"eta/eta_mini_crm/models"
|
|
|
+ "eta/eta_mini_crm/models/request"
|
|
|
"eta/eta_mini_crm/models/response"
|
|
|
"eta/eta_mini_crm/services"
|
|
|
"eta/eta_mini_crm/utils"
|
|
@@ -59,42 +61,42 @@ func (this *ReportPdfController) Add() {
|
|
|
this.ServeJSON()
|
|
|
}()
|
|
|
|
|
|
- pdfUrl := this.GetString("PdfUrl")
|
|
|
- author := this.GetString("Author")
|
|
|
- abstract := this.GetString("Abstract")
|
|
|
- classifyIdFirst, _ := this.GetInt("ClassifyIdFirst")
|
|
|
- classifyIdSecond, _ := this.GetInt("ClassifyIdSecond")
|
|
|
- title := this.GetString("Title")
|
|
|
- if classifyIdFirst <= 0 {
|
|
|
+ var req request.ReportPdfAddReq
|
|
|
+ if err := json.Unmarshal(this.Ctx.Input.RequestBody, &req); err != nil {
|
|
|
+ br.Msg = "参数解析失败"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if req.ClassifyIdFirst <= 0 {
|
|
|
br.Msg = "请选择研报所属的一级分类"
|
|
|
return
|
|
|
}
|
|
|
- if classifyIdSecond <= 0 {
|
|
|
+ if req.ClassifyIdSecond <= 0 {
|
|
|
br.Msg = "请选择研报所属的二级分类"
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- nameFirst, err := models.GetClassifyById(classifyIdFirst)
|
|
|
+ nameFirst, err := models.GetClassifyById(req.ClassifyIdFirst)
|
|
|
if err != nil {
|
|
|
- br.Msg = "文件上传失败"
|
|
|
+ br.Msg = "添加失败"
|
|
|
br.ErrMsg = "一级类名获取失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- nameSecond, err := models.GetClassifyById(classifyIdSecond)
|
|
|
+ nameSecond, err := models.GetClassifyById(req.ClassifyIdSecond)
|
|
|
if err != nil {
|
|
|
- br.Msg = "文件上传失败"
|
|
|
+ br.Msg = "添加失败"
|
|
|
br.ErrMsg = "二级类名获取失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
|
|
|
pdf := &models.ReportPdf{
|
|
|
- PdfUrl: pdfUrl,
|
|
|
- Title: title,
|
|
|
- Author: author,
|
|
|
- Abstract: abstract,
|
|
|
- ClassifyIdFirst: classifyIdFirst,
|
|
|
+ PdfUrl: req.PdfUrl,
|
|
|
+ Title: req.Title,
|
|
|
+ Author: req.Author,
|
|
|
+ Abstract: req.Abstract,
|
|
|
+ ClassifyIdFirst: req.ClassifyIdFirst,
|
|
|
ClassifyNameFirst: nameFirst.ClassifyName,
|
|
|
- ClassifyIdSecond: classifyIdSecond,
|
|
|
+ ClassifyIdSecond: req.ClassifyIdSecond,
|
|
|
ClassifyNameSecond: nameSecond.ClassifyName,
|
|
|
PublishTime: time.Now(),
|
|
|
ModifyTime: time.Now(),
|
|
@@ -104,12 +106,12 @@ func (this *ReportPdfController) Add() {
|
|
|
}
|
|
|
err = pdf.Add()
|
|
|
if err != nil {
|
|
|
- br.Msg = "文件上传失败"
|
|
|
+ br.Msg = "添加失败"
|
|
|
br.ErrMsg = "pdf研报新增失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- br.Msg = "上传成功"
|
|
|
+ br.Msg = "添加成功"
|
|
|
br.Ret = 200
|
|
|
br.Success = true
|
|
|
}
|