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