Browse Source

编辑时不更新收件日期

xiziwen 5 months ago
parent
commit
42a0406c7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      services/document_manage_service/document_manage_service.go

+ 1 - 1
services/document_manage_service/document_manage_service.go

@@ -390,7 +390,7 @@ func DocumentUpdate(outsideReport *document_manage_model.OutsideReportBO) error
 		report.Content = outsideReport.Content
 	}
 	report.ModifyTime = utils.GetCurrentTime()
-	report.ReportUpdateTime = utils.GetCurrentTime()
+	//report.ReportUpdateTime = utils.GetCurrentTime()
 	err = document_manage_model.UpdateOutsideReport(report)
 	if err != nil {
 		return fmt.Errorf("更新报告失败, Err: %s", err.Error())