|
@@ -6,6 +6,7 @@ import (
|
|
|
"eta/eta_api/models/company"
|
|
|
"eta/eta_api/services"
|
|
|
"eta/eta_api/services/alarm_msg"
|
|
|
+ "eta/eta_api/services/data"
|
|
|
"eta/eta_api/utils"
|
|
|
"fmt"
|
|
|
"github.com/beego/beego/v2/server/web"
|
|
@@ -284,6 +285,15 @@ func (this *ReportController) PublishReport() {
|
|
|
br.Msg = "报告不存在"
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ refreshResult := data.CheckBatchChartRefreshResult("report", vint, 0)
|
|
|
+ if !refreshResult {
|
|
|
+ br.Msg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.ErrMsg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
var publishTime time.Time
|
|
|
if report.MsgIsSend == 1 && report.PublishTime != "" { //如果报告曾经发布过,并且已经发送过模版消息,则章节的发布时间为报告的发布时间
|
|
|
publishTime, _ = time.ParseInLocation(utils.FormatDateTime, report.PublishTime, time.Local)
|
|
@@ -2739,6 +2749,15 @@ func (this *ReportController) PublishDayWeekReportChapter() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ // 图表刷新状态
|
|
|
+ refreshResult := data.CheckBatchChartRefreshResult("report", chapterInfo.ReportId, chapterInfo.ReportChapterId)
|
|
|
+ if !refreshResult {
|
|
|
+ br.Msg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.ErrMsg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
// 获取规则配置
|
|
|
reportChapterTypeRule, err := models.GetReportChapterTypeById(chapterInfo.TypeId)
|
|
|
if err != nil {
|
|
@@ -2911,6 +2930,16 @@ func (this *ReportController) PublishDayWeekReport() {
|
|
|
br.Msg = "该报告已发布"
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ // 图表刷新状态
|
|
|
+ refreshResult := data.CheckBatchChartRefreshResult("report", reportId, 0)
|
|
|
+ if !refreshResult {
|
|
|
+ br.Msg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.ErrMsg = "图表刷新未完成,请稍后操作"
|
|
|
+ br.IsSendEmail = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
tips, err := services.PublishDayWeekReport(reportId)
|
|
|
if err != nil {
|
|
|
br.Msg = "发布失败"
|