SGGL_JT/SUBQHSE/FineUIPro.Web/HSSE/SafetyActivities/QualityMonthEdit.aspx.cs

186 lines
6.8 KiB
C#

using BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.HSSE.SafetyActivities
{
public partial class QualityMonthEdit : PageBase
{
#region
/// <summary>
/// 主键
/// </summary>
public string QualityMonthId
{
get
{
return (string)ViewState["QualityMonthId"];
}
set
{
ViewState["QualityMonthId"] = value;
}
}
/// <summary>
/// 项目主键
/// </summary>
public string ProjectId
{
get
{
return (string)ViewState["ProjectId"];
}
set
{
ViewState["ProjectId"] = value;
}
}
/// <summary>
/// 主键
/// </summary>
public string UnitId
{
get
{
return (string)ViewState["UnitId"];
}
set
{
ViewState["UnitId"] = value;
}
}
#endregion
#region
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.ProjectId = this.CurrUser.LoginProjectId;
this.UnitId = Request.Params["UnitId"];
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
this.InitDropDownList();
this.QualityMonthId = Request.Params["QualityMonthId"];
if (!string.IsNullOrEmpty(this.QualityMonthId))
{
var getData = BLL.QualityMonthService.GetQualityMonthById(this.QualityMonthId);
if (getData != null)
{
this.ProjectId = getData.ProjectId;
this.UnitId = getData.UnitId;
if (this.ProjectId != this.CurrUser.LoginProjectId)
{
this.InitDropDownList();
}
this.txtTitle.Text = getData.Title;
this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getData.CompileDate);
this.txtEndTime.Text = string.Format("{0:yyyy-MM-dd HH:mm}", getData.EndTime);
if (!string.IsNullOrEmpty(getData.CompileMan))
{
this.drpCompileMan.SelectedValue = getData.CompileMan;
}
this.txtRemark.Text = getData.Remark;
this.txtSeeFile.Text = HttpUtility.HtmlDecode(getData.SeeFile);
}
}
else
{
this.drpCompileMan.SelectedValue = this.CurrUser.UserId;
this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd HH:mm}", DateTime.Now);
var codeTemplateRule = BLL.ProjectData_CodeTemplateRuleService.GetProjectData_CodeTemplateRuleByMenuIdProjectId(BLL.Const.ProjectQualityMonthMenuId, this.ProjectId);
if (codeTemplateRule != null)
{
this.txtSeeFile.Text = HttpUtility.HtmlDecode(codeTemplateRule.Template);
}
this.txtTitle.Text = this.SimpleForm1.Title;
}
}
}
#endregion
/// <summary>
/// 初始化下拉框
/// </summary>
private void InitDropDownList()
{
UserService.InitFlowOperateControlUserDropDownList(this.drpCompileMan, this.ProjectId, this.UnitId, true);
this.drpCompileMan.SelectedValue = this.CurrUser.UserId;
}
#region
/// <summary>
/// 保存按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSave_Click(object sender, EventArgs e)
{
this.SaveData(BLL.Const.BtnSave);
PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference());
}
/// <summary>
/// 保存数据
/// </summary>
/// <param name="type"></param>
private void SaveData(string type)
{
Model.SafetyActivities_QualityMonth newQualityMonth = new Model.SafetyActivities_QualityMonth
{
ProjectId = this.ProjectId,
UnitId = this.UnitId,
Title = this.txtTitle.Text.Trim(),
CompileDate = Funs.GetNewDateTime(this.txtCompileDate.Text.Trim()),
EndTime = Funs.GetNewDateTime(this.txtEndTime.Text.Trim()),
};
if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
{
newQualityMonth.CompileMan = this.drpCompileMan.SelectedValue;
}
newQualityMonth.Remark = this.txtRemark.Text.Trim();
newQualityMonth.SeeFile = HttpUtility.HtmlEncode(this.txtSeeFile.Text);
if (!string.IsNullOrEmpty(this.QualityMonthId))
{
newQualityMonth.QualityMonthId = this.QualityMonthId;
BLL.QualityMonthService.UpdateQualityMonth(newQualityMonth);
BLL.LogService.AddSys_Log(this.CurrUser, newQualityMonth.Title, newQualityMonth.QualityMonthId, BLL.Const.ProjectQualityMonthMenuId, BLL.Const.BtnModify);
}
else
{
this.QualityMonthId = SQLHelper.GetNewID(typeof(Model.SafetyActivities_QualityMonth));
newQualityMonth.QualityMonthId = this.QualityMonthId;
BLL.QualityMonthService.AddQualityMonth(newQualityMonth);
BLL.LogService.AddSys_Log(this.CurrUser, newQualityMonth.Title, newQualityMonth.QualityMonthId, BLL.Const.ProjectQualityMonthMenuId, BLL.Const.BtnAdd);
}
}
#endregion
#region
/// <summary>
/// 上传附件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnAttachUrl_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.QualityMonthId))
{
SaveData(BLL.Const.BtnSave);
}
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/QualityMonthAttachUrl&menuId={1}", QualityMonthId, BLL.Const.ProjectQualityMonthMenuId)));
}
#endregion
}
}