fix(report):修正保存报表概览信息的时候无法获取到报表ID的问题。

This commit is contained in:
徐涛 2022-08-30 11:35:23 +08:00
parent e9a122fcda
commit e150a22174

View File

@ -166,6 +166,7 @@ func fillReportSummary(c *gin.Context) {
return
}
copier.Copy(originSummary, formData)
originSummary.ReportId = requestReportId
err = service.ReportService.UpdateReportSummary(originSummary)
if err != nil {
result.Error(http.StatusInternalServerError, err.Error())