Browse Source

es研报搜索增加发布状态的条件

kobe6258 7 months ago
parent
commit
d9de0451b3
2 changed files with 19 additions and 5 deletions
  1. 11 3
      domian/report/report_service.go
  2. 8 2
      models/ht/ht_report.go

+ 11 - 3
domian/report/report_service.go

@@ -444,7 +444,7 @@ func InitHTReportList(list []ht.HTReport) (noRecord bool, err error) {
 				//authorNames := strings.Split(htRp.PublishUserName, ",")
 				//authorNamesWithOutEmpty := stringUtils.RemoveEmptyStrings(authorNames)
 				//for _, authorName := range authorNamesWithOutEmpty {
-				destRp := convertHTReport(htRp)
+				destRp := convertHTReport(htRp, reportDao.StatusPublish)
 				//destRp.Author = authorName
 				var coverSrc int
 				permissionId, err := etaDao.GetPermissionIdByName(htRp.PermissionName)
@@ -485,6 +485,13 @@ func InitHTReportList(list []ht.HTReport) (noRecord bool, err error) {
 		return false, initES(reports)
 	}
 }
+
+func htStatus(status int, isDelete int) reportDao.ReportStatus {
+	if isDelete == 1 || status != ht.Publish {
+		return reportDao.StatusUnPublish
+	}
+	return reportDao.StatusUnPublish
+}
 func SyncHTReportList(list []ht.HTReport) (noRecord bool, err error) {
 	var reports []reportDao.Report
 	permissions, err := reportDao.GetGLAuthorNames()
@@ -501,7 +508,8 @@ func SyncHTReportList(list []ht.HTReport) (noRecord bool, err error) {
 				//authorNames := strings.Split(htRp.PublishUserName, ",")
 				//authorNamesWithOutEmpty := stringUtils.RemoveEmptyStrings(authorNames)
 				//for _, authorName := range authorNamesWithOutEmpty {
-				destRp := convertHTReport(htRp)
+				status := htStatus(htRp.Status, htRp.IsDelete)
+				destRp := convertHTReport(htRp, status)
 				//destRp.Author = authorName
 				var coverSrc int
 				permissionId, err := etaDao.GetPermissionIdByName(htRp.PermissionName)
@@ -612,7 +620,7 @@ func convertEtaReport(etaRp eta.ETAReport, status reportDao.ReportStatus) report
 	}
 }
 
-func convertHTReport(etaRp ht.HTReport) reportDao.Report {
+func convertHTReport(etaRp ht.HTReport, status reportDao.ReportStatus) reportDao.Report {
 	return reportDao.Report{
 		OrgID:         etaRp.Id,
 		Title:         etaRp.ReportName,

+ 8 - 2
models/ht/ht_report.go

@@ -5,6 +5,10 @@ import (
 	"time"
 )
 
+const (
+	Publish = 3
+)
+
 type HTReport struct {
 	Id              int    `gorm:"primary_key;auto_increment"`
 	PlateId         int    `grom:"plate_id"`
@@ -14,11 +18,13 @@ type HTReport struct {
 	ReportName      string `gorm:"column:report_name"`
 	PublishTime     int    `gorm:"column:publish_time"`
 	PublishedTime   string `gorm:"column:published_time"`
+	IsDelete        int    `gorm:"column:is_delete"`
+	Status          int    `gorm:"column:status"`
 }
 
 func GetHTReports(id int) (reports []HTReport, err error) {
 	db := models.HT()
-	sql := "select tirtp.plate_id as plate_id, tip.plate_name as plate_name, t.id as id ,t.report_name as report_name,t.publish_user_name as publish_user_name,t.publish_time as publish_time from t_iirp_report_to_plate tirtp left join t_iirp_report_info t on t.id=tirtp.report_id left JOIN t_iirp_plate tip on tip.id=tirtp.plate_id  where t.is_delete =0 and t.`status` =3 and t.report_file_path<>'' and t.id > ? order by t.id asc"
+	sql := "select tirtp.plate_id as plate_id, tip.plate_name as plate_name, t.id as id ,t.report_name as report_name,t.publish_user_name as publish_user_name,t.publish_time as publish_time,t.is_delete as is_delete,t.status as status from t_iirp_report_to_plate tirtp left join t_iirp_report_info t on t.id=tirtp.report_id left JOIN t_iirp_plate tip on tip.id=tirtp.plate_id  where t.is_delete =0 and t.`status` =3 and t.report_file_path<>'' and t.id > ? order by t.id asc"
 	err = db.Model(&HTReport{}).Raw(sql, id).Scan(&reports).Error
 	return
 }
@@ -26,7 +32,7 @@ func GetUpdateHTReports() (reports []HTReport, err error) {
 	duration := time.Now().Add(-30 * time.Second)
 	updateTime := duration.UnixMilli()
 	db := models.HT()
-	sql := "select tirtp.plate_id as plate_id, tip.plate_name as plate_name, t.id as id ,t.report_name as report_name,t.publish_user_name as publish_user_name,t.publish_time as publish_time from t_iirp_report_to_plate tirtp left join t_iirp_report_info t on t.id=tirtp.report_id left JOIN t_iirp_plate tip on tip.id=tirtp.plate_id  where t.is_delete =0 and t.`status` =3 and t.report_file_path<>'' and t.update_time > ? order by t.id asc"
+	sql := "select tirtp.plate_id as plate_id, tip.plate_name as plate_name, t.id as id ,t.report_name as report_name,t.publish_user_name as publish_user_name,t.publish_time as publish_time,t.is_delete as is_delete,t.status as status from t_iirp_report_to_plate tirtp left join t_iirp_report_info t on t.id=tirtp.report_id left JOIN t_iirp_plate tip on tip.id=tirtp.plate_id  where  t.report_file_path<>'' and t.update_time > ? order by t.id asc"
 	err = db.Model(&HTReport{}).Raw(sql, updateTime).Scan(&reports).Error
 	return
 }