Browse Source

fix:修复pdf研报bug

zqbao 8 months ago
parent
commit
aba59bebb5
4 changed files with 34 additions and 22 deletions
  1. 22 20
      controllers/report_pdf.go
  2. 1 1
      models/classify.go
  3. 1 1
      models/report_pdf.go
  4. 10 0
      models/request/report_pdf.go

+ 22 - 20
controllers/report_pdf.go

@@ -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
 }

+ 1 - 1
models/classify.go

@@ -38,7 +38,7 @@ func GetClassifyList() (items []*ClassifyView, err error) {
 
 func GetClassifyById(classifyId int) (item *ClassifyView, err error) {
 	o := orm.NewOrmUsingDB("rddp")
-	sql := `SELECT * FROM classify WHERE enabled=1 AND classify_id=?`
+	sql := `SELECT * FROM classify WHERE enabled=1 AND id=?`
 	err = o.Raw(sql, classifyId).QueryRow(&item)
 	return
 }

+ 1 - 1
models/report_pdf.go

@@ -30,7 +30,7 @@ func (r *ReportPdf) Add() (err error) {
 	o := orm.NewOrm()
 	// 计算研报期数
 	sql := `SELECT COUNT(*) + 1 AS count FROM report_pdf WHERE classify_id_second=?`
-	err = o.Raw(sql, r.ClassifyIdSecond).QueryRow(&r.State)
+	err = o.Raw(sql, r.ClassifyIdSecond).QueryRow(&r.Stage)
 	if err != nil {
 		return
 	}

+ 10 - 0
models/request/report_pdf.go

@@ -0,0 +1,10 @@
+package request
+
+type ReportPdfAddReq struct {
+	PdfUrl           string `description:"pdf文件URL"`
+	Title            string `description:"标题"`
+	Author           string `description:"作者"`
+	Abstract         string `description:"摘要"`
+	ClassifyIdFirst  int    `description:"一级分类id"`
+	ClassifyIdSecond int    `description:"二级分类id"`
+}