Browse Source

fix:pdf添加筛选条件

zqbao 8 months ago
parent
commit
7c874733a1
2 changed files with 4 additions and 2 deletions
  1. 3 1
      controllers/report.go
  2. 1 1
      models/report_pdf.go

+ 3 - 1
controllers/report.go

@@ -445,7 +445,9 @@ func (this *ReportController) RecentList() {
 		br.ErrMsg = "研报列表查询失败,系统异常,Err:" + err.Error()
 		return
 	}
-	reportPdfList, err := models.GetReportPdfListByCondition("", []interface{}{}, 0, 3)
+	// 查询已发布的pdf
+	condition := ` AND state=1 `
+	reportPdfList, err := models.GetReportPdfListByCondition(condition, []interface{}{}, 0, 3)
 	if err != nil {
 		br.Msg = "研报列表查询失败"
 		br.ErrMsg = "研报列表查询失败,系统异常,Err:" + err.Error()

+ 1 - 1
models/report_pdf.go

@@ -60,7 +60,7 @@ func GetReportPdfListByCondition(condition string, pars []interface{}, startSize
 
 func GetReportPdfDailyList() (reportPdfs []*ReportPdf, err error) {
 	o := orm.NewOrm()
-	sql := `SELECT * FROM report_pdf WHERE 1=1 AND DATE(publish_time) = DATE(NOW()) ORDER BY publish_time DESC `
+	sql := `SELECT * FROM report_pdf WHERE 1=1 AND state=1 AND DATE(publish_time) = DATE(NOW()) ORDER BY publish_time DESC `
 	_, err = o.Raw(sql).QueryRows(&reportPdfs)
 	return
 }