260 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			260 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using BLL; | |||
|  | using System; | |||
|  | using System.Linq; | |||
|  | using System.Web.UI.WebControls; | |||
|  | 
 | |||
|  | namespace FineUIPro.Web.HSSE.Technique | |||
|  | { | |||
|  |     public partial class SpecialSchemeEdit : PageBase | |||
|  |     { | |||
|  |         #region 定义变量 | |||
|  |         /// <summary> | |||
|  |         /// 专项方案 | |||
|  |         /// </summary> | |||
|  |         public string SpecialSchemeId | |||
|  |         { | |||
|  |             get | |||
|  |             { | |||
|  |                 return (string)ViewState["SpecialSchemeId"]; | |||
|  |             } | |||
|  |             set | |||
|  |             { | |||
|  |                 ViewState["SpecialSchemeId"] = value; | |||
|  |             } | |||
|  |         } | |||
|  |         #endregion | |||
|  | 
 | |||
|  |         #region 加载页面 | |||
|  |         /// <summary> | |||
|  |         /// 加载页面 | |||
|  |         /// </summary> | |||
|  |         /// <param name="sender"></param> | |||
|  |         /// <param name="e"></param> | |||
|  |         protected void Page_Load(object sender, EventArgs e) | |||
|  |         { | |||
|  |             if (!IsPostBack) | |||
|  |             { | |||
|  |                 ////权限按钮方法 | |||
|  |                 this.GetButtonPower(); | |||
|  |                 btnClose.OnClientClick = ActiveWindow.GetHideReference(); | |||
|  |                 //单位 | |||
|  |                 UnitService.InitUnitDropDownList(this.ddlUnit, string.Empty, true); | |||
|  |                 //类型                 | |||
|  |                 SpecialSchemeTypeService.InitSpecialSchemeTypeDropDownList(this.ddlSpecialSchemeType,true); | |||
|  |                 //人员               | |||
|  |                 UserService.InitUserDropDownList(this.ddlCompileMan, string.Empty, true); | |||
|  | 
 | |||
|  |                 //加载默认整理人、整理日期 | |||
|  |                 this.ddlCompileMan.SelectedValue = this.CurrUser.UserId; | |||
|  |                 this.dpkCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now); | |||
|  | 
 | |||
|  |                 this.SpecialSchemeId = Request.Params["SpecialSchemeId"]; | |||
|  |                 if (!string.IsNullOrEmpty(this.SpecialSchemeId)) | |||
|  |                 { | |||
|  |                     var SpecialScheme = BLL.SpecialSchemeService.GetSpecialSchemeListById(this.SpecialSchemeId); | |||
|  |                     if (SpecialScheme != null) | |||
|  |                     { | |||
|  |                         this.txtSpecialSchemeCode.Text = SpecialScheme.SpecialSchemeCode; | |||
|  |                         this.txtSpecialSchemeName.Text = SpecialScheme.SpecialSchemeName; | |||
|  |                         this.txtSummary.Text = SpecialScheme.Summary; | |||
|  |                         this.dpkCompileDate.Text = string.Format("{0:yyyy-MM-dd}", SpecialScheme.CompileDate); | |||
|  |                         if (!string.IsNullOrEmpty(SpecialScheme.SpecialSchemeTypeId)) | |||
|  |                         { | |||
|  |                             this.ddlSpecialSchemeType.SelectedValue = SpecialScheme.SpecialSchemeTypeId; | |||
|  |                         } | |||
|  |                         if (!string.IsNullOrEmpty(SpecialScheme.UnitId)) | |||
|  |                         { | |||
|  |                             this.ddlUnit.SelectedValue = SpecialScheme.UnitId; | |||
|  |                         } | |||
|  |                         if (!string.IsNullOrEmpty(SpecialScheme.CompileMan)) | |||
|  |                         { | |||
|  |                             this.ddlCompileMan.SelectedItem.Text = SpecialScheme.CompileMan; | |||
|  |                         } | |||
|  |                     } | |||
|  |                 } | |||
|  |             } | |||
|  |         } | |||
|  |         #endregion | |||
|  | 
 | |||
|  |         #region 保存 | |||
|  |         /// <summary> | |||
|  |         /// 保存按钮 | |||
|  |         /// </summary> | |||
|  |         /// <param name="sender"></param> | |||
|  |         /// <param name="e"></param> | |||
|  |         protected void btnSave_Click(object sender, EventArgs e) | |||
|  |         { | |||
|  |             SaveData(); | |||
|  |             PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); | |||
|  |         } | |||
|  |          | |||
|  |         /// <summary> | |||
|  |         /// 保存数据 | |||
|  |         /// </summary> | |||
|  |         private void SaveData() | |||
|  |         { | |||
|  |             Model.Technique_SpecialScheme specialScheme = new Model.Technique_SpecialScheme();            | |||
|  |             if (!string.IsNullOrEmpty(this.txtSpecialSchemeCode.Text.Trim())) | |||
|  |             { | |||
|  |                 specialScheme.SpecialSchemeCode = this.txtSpecialSchemeCode.Text.Trim(); | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 ShowNotify("请输入方案编号", MessageBoxIcon.Warning); | |||
|  |                 return; | |||
|  |             } | |||
|  |             if (!string.IsNullOrEmpty(this.txtSpecialSchemeName.Text.Trim())) | |||
|  |             { | |||
|  |                 specialScheme.SpecialSchemeName = this.txtSpecialSchemeName.Text.Trim(); | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 ShowNotify("请输入方案名称", MessageBoxIcon.Warning); | |||
|  |                 return; | |||
|  |             } | |||
|  |             specialScheme.Summary = this.txtSummary.Text.Trim(); | |||
|  |             if (this.ddlUnit.SelectedValue != Const._Null) | |||
|  |             { | |||
|  |                 specialScheme.UnitId = this.ddlUnit.SelectedValue; | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 ShowNotify("请选择单位", MessageBoxIcon.Warning); | |||
|  |                 return; | |||
|  |             } | |||
|  |             ////专项方案类型下拉框 | |||
|  |             if (this.ddlSpecialSchemeType.SelectedValue != BLL.Const._Null || !string.IsNullOrEmpty(this.ddlSpecialSchemeType.Text)) | |||
|  |             { | |||
|  |                 var specialSchemeType = BLL.SpecialSchemeTypeService.GetSpecialSchemeTypeByName(this.ddlSpecialSchemeType.SelectedText); | |||
|  |                 if (specialSchemeType != null) | |||
|  |                 { | |||
|  |                     specialScheme.SpecialSchemeTypeId = specialSchemeType.SpecialSchemeTypeId; | |||
|  |                 } | |||
|  |                 else | |||
|  |                 { | |||
|  |                     Model.Base_SpecialSchemeType newSpecialSchemeType = new Model.Base_SpecialSchemeType | |||
|  |                     { | |||
|  |                         SpecialSchemeTypeId = SQLHelper.GetNewID(typeof(Model.Base_SpecialSchemeType)), | |||
|  |                         SpecialSchemeTypeName = this.ddlSpecialSchemeType.Text | |||
|  |                     }; | |||
|  |                     BLL.SpecialSchemeTypeService.AddSpecialSchemeType(newSpecialSchemeType); | |||
|  |                     specialScheme.SpecialSchemeTypeId = newSpecialSchemeType.SpecialSchemeTypeId; | |||
|  |                 } | |||
|  |             } | |||
|  |             if (this.ddlCompileMan.SelectedValue != null) | |||
|  |             { | |||
|  |                 specialScheme.CompileMan = this.ddlCompileMan.SelectedItem.Text; | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 specialScheme.CompileMan = this.CurrUser.UserName; | |||
|  |             } | |||
|  |             if (!string.IsNullOrEmpty(this.dpkCompileDate.Text)) | |||
|  |             { | |||
|  |                 specialScheme.CompileDate = Convert.ToDateTime(this.dpkCompileDate.Text); | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 specialScheme.CompileDate = DateTime.Now; | |||
|  |             } | |||
|  |             if (string.IsNullOrEmpty(this.SpecialSchemeId)) | |||
|  |             { | |||
|  |                 specialScheme.IsPass = true; | |||
|  |                 this.SpecialSchemeId = specialScheme.SpecialSchemeId = SQLHelper.GetNewID(typeof(Model.Technique_SpecialScheme)); | |||
|  |                 BLL.SpecialSchemeService.AddSpecialSchemeList(specialScheme); | |||
|  | 
 | |||
|  |                 BLL.LogService.AddSys_Log(this.CurrUser, specialScheme.SpecialSchemeCode, specialScheme.SpecialSchemeId, BLL.Const.SpecialSchemeMenuId, Const.BtnAdd); | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 specialScheme.SpecialSchemeId = this.SpecialSchemeId; | |||
|  |                 BLL.SpecialSchemeService.UpdateSpecialSchemeList(specialScheme); | |||
|  |                 BLL.LogService.AddSys_Log(this.CurrUser, specialScheme.SpecialSchemeCode, specialScheme.SpecialSchemeId, BLL.Const.SpecialSchemeMenuId, Const.BtnModify);                 | |||
|  |             } | |||
|  |         } | |||
|  |         #endregion | |||
|  |          | |||
|  |         #region 附件上传 | |||
|  |         /// <summary> | |||
|  |         /// 上传附件资源 | |||
|  |         /// </summary> | |||
|  |         /// <param name="sender"></param> | |||
|  |         /// <param name="e"></param> | |||
|  |         protected void btnUploadResources_Click(object sender, EventArgs e) | |||
|  |         { | |||
|  |             if (this.btnSave.Hidden) | |||
|  |             { | |||
|  |                 PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/SpecialScheme&type=-1", this.SpecialSchemeId))); | |||
|  |             } | |||
|  |             else | |||
|  |             { | |||
|  |                 if (string.IsNullOrEmpty(this.txtSpecialSchemeCode.Text.Trim())) | |||
|  |                 { | |||
|  |                     ShowNotify("请输入方案编号", MessageBoxIcon.Warning); | |||
|  |                     return; | |||
|  |                 } | |||
|  |                 if (string.IsNullOrEmpty(this.txtSpecialSchemeName.Text.Trim())) | |||
|  |                 { | |||
|  |                     ShowNotify("请输入方案名称", MessageBoxIcon.Warning); | |||
|  |                     return; | |||
|  |                 } | |||
|  |                 if (this.ddlUnit.SelectedValue == Const._Null) | |||
|  |                 { | |||
|  |                     ShowNotify("请选择单位", MessageBoxIcon.Warning); | |||
|  |                     return; | |||
|  |                 } | |||
|  |                 if (string.IsNullOrEmpty(this.SpecialSchemeId)) | |||
|  |                 { | |||
|  |                     SaveData(); | |||
|  |                 } | |||
|  |                 PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/SpecialScheme&menuId={1}", this.SpecialSchemeId, BLL.Const.SpecialSchemeMenuId))); | |||
|  |             } | |||
|  |         } | |||
|  |         #endregion | |||
|  | 
 | |||
|  |         #region 验证方案编号、名称是否存在 | |||
|  |         /// <summary> | |||
|  |         /// 验证方案编号、名称是否存在 | |||
|  |         /// </summary> | |||
|  |         /// <param name="sender"></param> | |||
|  |         /// <param name="e"></param> | |||
|  |         protected void TextBox_TextChanged(object sender, EventArgs e) | |||
|  |         { | |||
|  |             var q = Funs.DB.Technique_SpecialScheme.FirstOrDefault(x => x.IsPass == true && x.SpecialSchemeCode == this.txtSpecialSchemeCode.Text.Trim() && (x.SpecialSchemeId != this.SpecialSchemeId || (this.SpecialSchemeId == null && x.SpecialSchemeId != null))); | |||
|  |             if (q != null) | |||
|  |             { | |||
|  |                 ShowNotify("输入的方案编号已存在!", MessageBoxIcon.Warning); | |||
|  |             } | |||
|  |             var q2 = Funs.DB.Technique_SpecialScheme.FirstOrDefault(x => x.IsPass == true && x.SpecialSchemeName == this.txtSpecialSchemeName.Text.Trim() && (x.SpecialSchemeId != this.SpecialSchemeId || (this.SpecialSchemeId == null && x.SpecialSchemeId != null))); | |||
|  |             if (q2 != null) | |||
|  |             { | |||
|  |                 ShowNotify("输入的方案名称已存在!", MessageBoxIcon.Warning); | |||
|  |             } | |||
|  |         } | |||
|  |         #endregion | |||
|  | 
 | |||
|  |         #region 获取按钮权限 | |||
|  |         /// <summary> | |||
|  |         /// 获取按钮权限 | |||
|  |         /// </summary> | |||
|  |         /// <param name="button"></param> | |||
|  |         /// <returns></returns> | |||
|  |         private void GetButtonPower() | |||
|  |         { | |||
|  |             if (Request.Params["value"] == "0") | |||
|  |             { | |||
|  |                 return; | |||
|  |             } | |||
|  | 
 | |||
|  |             var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.SpecialSchemeMenuId); | |||
|  |             if (buttonList.Count() > 0) | |||
|  |             { | |||
|  |                 if (buttonList.Contains(BLL.Const.BtnSave)) | |||
|  |                 { | |||
|  |                     this.btnSave.Hidden = false; | |||
|  |                 } | |||
|  |             } | |||
|  |         } | |||
|  |         #endregion | |||
|  |     } | |||
|  | } |