1、关键事项导出文件名:关键事项跟踪一览表

2、质量月报,保存提示文本调整
This commit is contained in:
2025-03-26 15:43:05 +08:00
parent 05e9432c5b
commit 7724d823a7
5 changed files with 10 additions and 5 deletions
@@ -2867,7 +2867,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
}
SaveMethod();
ShowNotify("保存成功!", MessageBoxIcon.Success);
//ShowNotify("保存成功!", MessageBoxIcon.Success);
//PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
//Model.Report_WeekAndMonthReport_New weekAndMonthReport = WeekAndMonthReportNewService.Detail(this.ReportId);
@@ -3147,14 +3147,21 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
saveTxtContent();
#endregion
bool save = false;
if (AddOrUpdate == "add")
{
save = true;
WeekAndMonthReportNewService.Insert(report);
}
else
{
save = true;
WeekAndMonthReportNewService.Update(report);
}
if (save)
{
ShowNotify("保存成功!", MessageBoxIcon.Success);
}
}
#region