This commit is contained in:
2025-09-22 20:39:23 +08:00
parent 32549f64a1
commit 1b0eb339b1
8 changed files with 370 additions and 41 deletions
@@ -112,12 +112,13 @@ namespace FineUIPro.Web.PZHGL.GJSX
protected void SaveData()
{
var progressStatus = this.ddlProgressStatus.SelectedValue;
var progress_detail = this.txtProgress_detail.Text.Trim();
Model.SGGLDB db = Funs.DB;
var model = new Model.GJSX_detail
{
GJSXID = this.GJSXID,
//Cuid = this.GJSXDetailId,
Progress_detail = this.txtProgress_detail.Text.Trim(),
Progress_detail = progress_detail,
ProgressStatus = progressStatus,
Progress_user = this.CurrUser.UserId,
Date = DateTime.Now,
@@ -150,6 +151,11 @@ namespace FineUIPro.Web.PZHGL.GJSX
}
db.SubmitChanges();
if (progressStatus == "申请关闭")
{
//申请关闭邮件提醒:提出人和跟踪人
GJSXMonitorService.GJSXApplyCloseNoticeSendEmail(this.GJSXID, progress_detail);
}
//ShowNotify("保存成功", MessageBoxIcon.Success);
//PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}