148 lines
5.4 KiB
C#
148 lines
5.4 KiB
C#
using BLL;
|
|
using System;
|
|
using System.Web;
|
|
|
|
namespace FineUIPro.Web.ZHGL.Environmental
|
|
{
|
|
public partial class EIAReportEdit : PageBase
|
|
{
|
|
#region 定义项
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string FileId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["FileId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["FileId"] = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 项目主键
|
|
/// </summary>
|
|
public string ProjectId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["ProjectId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["ProjectId"] = value;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 加载
|
|
/// <summary>
|
|
/// 加载页面
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
|
|
BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
|
|
this.ProjectId = this.CurrUser.LoginProjectId;
|
|
this.FileId = Request.Params["FileId"];
|
|
if (!string.IsNullOrEmpty(this.FileId))
|
|
{
|
|
Model.Environmental_EIAReport EIAReport = BLL.EIAReportService.GetEIAReportById(this.FileId);
|
|
if (EIAReport != null)
|
|
{
|
|
this.ProjectId = EIAReport.ProjectId;
|
|
this.txtFileCode.Text = BLL.CodeRecordsService.ReturnCodeByDataId(this.FileId);
|
|
this.txtFileName.Text = EIAReport.FileName;
|
|
if (!string.IsNullOrEmpty(EIAReport.CompileMan))
|
|
{
|
|
this.drpCompileMan.SelectedValue = EIAReport.CompileMan;
|
|
}
|
|
this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", EIAReport.CompileDate);
|
|
this.txtFileContent.Text = HttpUtility.HtmlDecode(EIAReport.FileContent);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
////自动生成编码
|
|
this.txtFileCode.Text = BLL.CodeRecordsService.ReturnCodeByMenuIdProjectId(BLL.Const.EIAReportMenuId, this.ProjectId, this.CurrUser.UnitId);
|
|
this.drpCompileMan.SelectedValue = this.CurrUser.UserId;
|
|
this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
|
|
this.txtFileName.Text = this.SimpleForm1.Title;
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#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.Environmental_EIAReport EIAReport = new Model.Environmental_EIAReport
|
|
{
|
|
FileCode = this.txtFileCode.Text.Trim(),
|
|
FileName = this.txtFileName.Text.Trim()
|
|
};
|
|
if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
|
|
{
|
|
EIAReport.CompileMan = this.drpCompileMan.SelectedValue;
|
|
}
|
|
EIAReport.CompileDate = Funs.GetNewDateTime(this.txtCompileDate.Text.Trim());
|
|
EIAReport.FileContent = HttpUtility.HtmlEncode(this.txtFileContent.Text);
|
|
////单据状态
|
|
EIAReport.States = BLL.Const.State_2;
|
|
if (!string.IsNullOrEmpty(this.FileId))
|
|
{
|
|
EIAReport.FileId = this.FileId;
|
|
BLL.EIAReportService.UpdateEIAReport(EIAReport);
|
|
BLL.LogService.AddSys_Log(this.CurrUser, EIAReport.FileCode, EIAReport.FileId, BLL.Const.EIAReportMenuId, BLL.Const.BtnModify);
|
|
}
|
|
else
|
|
{
|
|
this.FileId = SQLHelper.GetNewID(typeof(Model.Environmental_EIAReport));
|
|
EIAReport.FileId = this.FileId;
|
|
EIAReport.ProjectId = this.ProjectId;
|
|
BLL.EIAReportService.AddEIAReport(EIAReport);
|
|
BLL.LogService.AddSys_Log(this.CurrUser, EIAReport.FileCode, EIAReport.FileId, BLL.Const.EIAReportMenuId, 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.FileId))
|
|
{
|
|
SaveData(BLL.Const.BtnSave);
|
|
}
|
|
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/EIAReportAttachUrl&menuId={1}", FileId, BLL.Const.EIAReportMenuId)));
|
|
}
|
|
#endregion
|
|
}
|
|
} |