130 lines
5.2 KiB
C#
130 lines
5.2 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 PartyMeetingEdit : 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["partyMeetingId"];
|
|
string year = DateTime.Now.Year.ToString();
|
|
if (!string.IsNullOrEmpty(Request.Params["Year"]))
|
|
{
|
|
year = Request.Params["Year"];
|
|
}
|
|
ConstValue.InitConstValueDropDownList(this.drpMonth, ConstValue.Group_0009, true);
|
|
if (!string.IsNullOrEmpty(id))
|
|
{
|
|
Model.Party_PartyMeeting partyMeeting = BLL.PartyMeetingService.GetPartyMeetingById(id);
|
|
if (partyMeeting != null)
|
|
{
|
|
this.hdId.Text = id;
|
|
if (partyMeeting.Year != null)
|
|
{
|
|
this.txtYear.Text = partyMeeting.Year.ToString();
|
|
}
|
|
if (partyMeeting.Month != null)
|
|
{
|
|
this.drpMonth.SelectedValue = partyMeeting.Month.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_PartyMeeting));
|
|
}
|
|
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/Party/PartyMeeting&menuId={1}", this.hdId.Text, BLL.Const.PartyMeetingMenuId)));
|
|
}
|
|
|
|
protected void btnAttach2_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录
|
|
{
|
|
this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Party_PartyMeeting));
|
|
}
|
|
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/Party/PartyMeeting&menuId={1}", this.hdId.Text + "2", BLL.Const.PartyMeetingMenuId)));
|
|
}
|
|
|
|
protected void btnAttach3_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录
|
|
{
|
|
this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Party_PartyMeeting));
|
|
}
|
|
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/Party/PartyMeeting&menuId={1}", this.hdId.Text + "3", BLL.Const.PartyMeetingMenuId)));
|
|
}
|
|
#endregion
|
|
|
|
#region 保存
|
|
/// <summary>
|
|
/// 保存按钮
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (this.drpMonth.SelectedValue == BLL.Const._Null)
|
|
{
|
|
Alert.ShowInTop("请选择月份", MessageBoxIcon.Warning);
|
|
return;
|
|
}
|
|
string id = Request.Params["partyMeetingId"];
|
|
Model.Party_PartyMeeting newPartyMeeting = new Model.Party_PartyMeeting();
|
|
newPartyMeeting.Year = Funs.GetNewIntOrZero(this.txtYear.Text.Trim());
|
|
newPartyMeeting.Month = Funs.GetNewInt(this.drpMonth.SelectedValue);
|
|
if (!string.IsNullOrEmpty(id))
|
|
{
|
|
newPartyMeeting.PartyMeetingId = id;
|
|
BLL.PartyMeetingService.UpdatePartyMeeting(newPartyMeeting);
|
|
}
|
|
else
|
|
{
|
|
if (!string.IsNullOrEmpty(this.hdId.Text))
|
|
{
|
|
newPartyMeeting.PartyMeetingId = this.hdId.Text.Trim();
|
|
}
|
|
else
|
|
{
|
|
newPartyMeeting.PartyMeetingId = SQLHelper.GetNewID(typeof(Model.Party_PartyMeeting));
|
|
this.hdId.Text = newPartyMeeting.PartyMeetingId;
|
|
}
|
|
newPartyMeeting.CompileMan = this.CurrUser.UserId;
|
|
newPartyMeeting.CompileDate = DateTime.Now;
|
|
BLL.PartyMeetingService.AddPartyMeeting(newPartyMeeting);
|
|
}
|
|
ShowNotify("保存成功!", MessageBoxIcon.Success);
|
|
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
|
}
|
|
#endregion
|
|
}
|
|
} |