ChengDa_English/SGGL/FineUIPro.Web/CQMS/ProcessControl/HotProessManageEdit.aspx.cs

122 lines
4.7 KiB
C#

using BLL;
using System;
namespace FineUIPro.Web.CQMS.ProcessControl
{
public partial class HotProessManageEdit :PageBase
{
#region
/// <summary>
/// 主键
/// </summary>
private string HotProessManageId
{
get
{
return (string)ViewState["HotProessManageId"];
}
set
{
ViewState["HotProessManageId"] = value;
}
}
#endregion
#region
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GetButtonPower();
BLL.SteelService.InitSteel(drpSteel, true);
this.HotProessManageId = Request.Params["HotProessManageId"];
if (!string.IsNullOrEmpty(this.HotProessManageId))
{
Model.ProcessControl_HotProessManage hotProessManage = BLL.HotProessManageService.GetHotProessManageById(this.HotProessManageId);
if (hotProessManage != null)
{
if (!string.IsNullOrEmpty(hotProessManage.STE_ID))
{
this.drpSteel.SelectedValue = hotProessManage.STE_ID;
}
this.txtPipelineManageCode.Text = hotProessManage.PipelineManageCode;
this.txtJointInfoCode.Text = hotProessManage.JointInfoCode;
this.txtSpecification.Text = hotProessManage.Specification;
this.txtHotProessReportCode.Text = hotProessManage.HotProessReportCode;
this.txtHotHardManageCode.Text = hotProessManage.HotHardManageCode;
}
}
}
}
#endregion
#region
/// <summary>
/// 保存按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSave_Click(object sender, EventArgs e)
{
if (this.drpSteel.SelectedValue==BLL.Const._Null)
{
Alert.ShowInTop("请选择材质!", MessageBoxIcon.Warning);
return;
}
Model.ProcessControl_HotProessManage inspectionManagement = new Model.ProcessControl_HotProessManage();
inspectionManagement.ProjectId = this.CurrUser.LoginProjectId;
if (this.drpSteel.SelectedValue != BLL.Const._Null)
{
inspectionManagement.STE_ID = this.drpSteel.SelectedValue;
}
inspectionManagement.PipelineManageCode = this.txtPipelineManageCode.Text.Trim();
inspectionManagement.JointInfoCode = this.txtJointInfoCode.Text.Trim();
inspectionManagement.Specification = this.txtSpecification.Text.Trim();
inspectionManagement.HotProessReportCode = this.txtHotProessReportCode.Text.Trim();
inspectionManagement.HotHardManageCode = this.txtHotHardManageCode.Text.Trim();
if (string.IsNullOrEmpty(this.HotProessManageId))
{
inspectionManagement.CompileMan = this.CurrUser.UserId;
inspectionManagement.HotProessManageId = SQLHelper.GetNewID(typeof(Model.ProcessControl_HotProessManage));
BLL.HotProessManageService.AddHotProessManage(inspectionManagement);
}
else
{
inspectionManagement.HotProessManageId = this.HotProessManageId;
BLL.HotProessManageService.UpdateHotProessManage(inspectionManagement);
}
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}
#endregion
#region
/// <summary>
/// 获取按钮权限
/// </summary>
/// <param name="button"></param>
/// <returns></returns>
private void GetButtonPower()
{
if (Request.Params["value"] == BLL.Const._Null)
{
return;
}
var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.HotProessManageMenuId);
if (buttonList.Count > 0)
{
if (buttonList.Contains(BLL.Const.BtnSave))
{
this.btnSave.Hidden = false;
}
}
}
#endregion
}
}