提交定制会内容

This commit is contained in:
2025-06-19 18:59:39 +08:00
parent 6be8d160e0
commit e1eb091f3b
150 changed files with 24036 additions and 582 deletions
@@ -89,6 +89,7 @@ namespace FineUIPro.Web.HSSE.Technique
{
Model.Technique_Rectify rectify = new Model.Technique_Rectify
{
RectifyType = "0",//安全
RectifyCode = this.txtRectifyCode.Text.Trim(),
RectifyName = this.txtRectifyName.Text.Trim()
};
@@ -105,7 +106,7 @@ namespace FineUIPro.Web.HSSE.Technique
rectify.SupRectifyId = this.SupRectifyId;
rectify.RectifyId = SQLHelper.GetNewID(typeof(Model.Technique_Rectify));
BLL.RectifyService.AddRectify(rectify);
BLL.LogService.AddSys_Log(this.CurrUser, rectify.RectifyName, rectify.RectifyId, BLL.Const.RectifyMenuId, Const.BtnAdd);
}
else
@@ -117,7 +118,7 @@ namespace FineUIPro.Web.HSSE.Technique
}
rectify.RectifyId = this.RectifyId;
BLL.RectifyService.UpdateRectify(rectify);
BLL.LogService.AddSys_Log(this.CurrUser, rectify.RectifyName, rectify.RectifyId, BLL.Const.RectifyMenuId, Const.BtnModify);
}
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());