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