Browse Source

Merge branch 'feature/eta_1.1.9' into debug

hsun 1 year ago
parent
commit
3d0bb74fdf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controllers/smart_report/smart_report.go

+ 2 - 2
controllers/smart_report/smart_report.go

@@ -98,7 +98,7 @@ func (this *SmartReportController) Add() {
 	// 继承报告
 	if req.AddType == 2 {
 		ob := new(smart_report.SmartReport)
-		cond := ` AND classify_id_first = ? AND classify_id_second = ? AND state = 2`
+		cond := ` AND classify_id_first = ? AND classify_id_second = ?`
 		pars := make([]interface{}, 0)
 		pars = append(pars, req.ClassifyIdFirst, req.ClassifyIdSecond)
 		lastReport, e := ob.GetItemByCondition(cond, pars, "stage DESC")
@@ -1068,7 +1068,7 @@ func (this *SmartReportController) LastPublishedReport() {
 	secondId, _ := this.GetInt("ClassifyIdSecond")
 
 	ob := new(smart_report.SmartReport)
-	cond := ` AND classify_id_first = ? AND classify_id_second = ? AND state = 2`
+	cond := ` AND classify_id_first = ? AND classify_id_second = ?`
 	pars := make([]interface{}, 0)
 	pars = append(pars, firstId, secondId)
 	item, e := ob.GetItemByCondition(cond, pars, "stage DESC")