CNCEC_SUBQHSE_WUHUAN/SGGL/FineUIPro.Web/Party/LastWorkSummaryEdit.aspx.cs

101 lines
3.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using BLL;
namespace FineUIPro.Web.Party
{
public partial class LastWorkSummaryEdit : PageBase
{
#region
/// <summary>
/// 页面加载
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string id = Request.Params["lastWorkSummaryId"];
string year = DateTime.Now.Year.ToString();
if (!string.IsNullOrEmpty(Request.Params["Year"]))
{
year = Request.Params["Year"];
}
if (!string.IsNullOrEmpty(id))
{
Model.Party_LastWorkSummary lastWorkSummary = BLL.LastWorkSummaryService.GetLastWorkSummaryById(id);
if (lastWorkSummary != null)
{
this.hdId.Text = id;
if (lastWorkSummary.Year != null)
{
this.txtYear.Text = lastWorkSummary.Year.ToString();
}
}
}
else
{
this.txtYear.Text = year;
}
}
}
#endregion
#region
/// <summary>
/// 附件上传
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnAttach_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录
{
this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Party_LastWorkSummary));
}
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/Party/LastWorkSummary&menuId={1}", this.hdId.Text, BLL.Const.LastWorkSummaryMenuId)));
}
#endregion
#region
/// <summary>
/// 保存按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSave_Click(object sender, EventArgs e)
{
string id = Request.Params["lastWorkSummaryId"];
Model.Party_LastWorkSummary newLastWorkSummary = new Model.Party_LastWorkSummary();
newLastWorkSummary.Year = Funs.GetNewIntOrZero(this.txtYear.Text.Trim());
if (!string.IsNullOrEmpty(id))
{
newLastWorkSummary.LastWorkSummaryId = id;
BLL.LastWorkSummaryService.UpdateLastWorkSummary(newLastWorkSummary);
}
else
{
if (!string.IsNullOrEmpty(this.hdId.Text))
{
newLastWorkSummary.LastWorkSummaryId = this.hdId.Text.Trim();
}
else
{
newLastWorkSummary.LastWorkSummaryId = SQLHelper.GetNewID(typeof(Model.Party_LastWorkSummary));
this.hdId.Text = newLastWorkSummary.LastWorkSummaryId;
}
newLastWorkSummary.CompileMan = this.CurrUser.UserId;
newLastWorkSummary.CompileDate = DateTime.Now;
BLL.LastWorkSummaryService.AddLastWorkSummary(newLastWorkSummary);
}
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}
#endregion
}
}