Kaynağa Gözat

Merge branch 'hotfix/smart_report_1114' into debug

hsun 1 yıl önce
ebeveyn
işleme
375e840e8e

+ 4 - 4
controllers/sandbox/sandbox.go

@@ -789,8 +789,8 @@ func (this *SandboxController) ListByQuote() {
 	}
 
 	if keyword != "" {
-		condition += ` AND  ( a.name LIKE ?  OR  b.name LIKE ? OR  a.chart_permission_name LIKE ? )`
-		pars = utils.GetLikeKeywordPars(pars, keyword, 3)
+		condition += ` AND  ( a.name LIKE ? OR  a.chart_permission_name LIKE ? )`
+		pars = utils.GetLikeKeywordPars(pars, keyword, 2)
 	}
 
 	//获取指标信息
@@ -1795,7 +1795,7 @@ func (this *SandboxController) SaveV2() {
 		}
 		//缩略图为空时不更新
 		var updateSandboxColumn = []string{}
-		if req.PicUrl == ""{
+		if req.PicUrl == "" {
 			updateSandboxColumn = []string{"Content", "MindmapData", "ModifyTime", "SandboxClassifyId"}
 		} else {
 			updateSandboxColumn = []string{"Content", "MindmapData", "PicUrl", "ModifyTime", "SandboxClassifyId"}
@@ -2372,4 +2372,4 @@ func (this *SandboxController) LinkEdbInfoCheck() {
 	br.Msg = "检测成功"
 	br.Success = true
 	br.Data = resp
-}
+}

+ 1 - 0
controllers/smart_report/smart_report.go

@@ -225,6 +225,7 @@ func (this *SmartReportController) Edit() {
 		item.Title != req.Title ||
 		item.Abstract != req.Abstract ||
 		item.Frequency != req.Frequency ||
+		item.Author != req.Author ||
 		utils.MD5(item.Content) != utils.MD5(req.Content) {
 		contentModify = true
 	}