瀏覽代碼

Merge branch 'eta/1.8.3' into debug

Roc 8 月之前
父節點
當前提交
2f666179d5
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      services/report.go

+ 4 - 4
services/report.go

@@ -200,9 +200,9 @@ func PublishReport(cont context.Context) (err error) {
 		} else {
 			publishTime = time.Now()
 		}
-		if item.HasChapter == 1 && (item.ChapterType == utils.REPORT_TYPE_DAY || item.ChapterType == utils.REPORT_TYPE_WEEK) {
-			continue
-		}
+		//if item.HasChapter == 1 && (item.ChapterType == utils.REPORT_TYPE_DAY || item.ChapterType == utils.REPORT_TYPE_WEEK) {
+		//	continue
+		//}
 
 		var tmpErr error
 		if item.HasChapter == 1 { // 章节类型的报告
@@ -211,7 +211,7 @@ func PublishReport(cont context.Context) (err error) {
 			item.PublishTime = publishTime
 			item.ModifyTime = time.Now().Local()
 			updateCols := make([]string, 0)
-			updateCols = append(updateCols, "Title", "State", "ModifyTime")
+			updateCols = append(updateCols, "PublishTime", "State", "ModifyTime")
 			tmpErr = models.PublishReportAndChapter(item, true, updateCols)
 		} else {
 			tmpErr = models.PublishReportById(item.Id, publishTime)