|
@@ -201,6 +201,16 @@ func (this *ReportController) PublishReport() {
|
|
|
br.ErrMsg = "报告审核失败, Err:" + tmpErr.Error() + ", report_id:" + strconv.Itoa(report.Id)
|
|
|
return
|
|
|
}
|
|
|
+ recordItem := &models.ReportStateRecord{
|
|
|
+ ReportId: vint,
|
|
|
+ ReportType: 1,
|
|
|
+ State: req.State,
|
|
|
+ CreateTime: time.Now(),
|
|
|
+ }
|
|
|
+ go func() {
|
|
|
+ _, _ = models.AddReportStateRecord(recordItem)
|
|
|
+ }()
|
|
|
+
|
|
|
go func() {
|
|
|
|
|
|
_ = services.UpdateReportEs(report.Id, req.State)
|