98 lines
3.7 KiB
C#
98 lines
3.7 KiB
C#
using System;
|
|
|
|
namespace FineUIPro.Web.HSSE.Check
|
|
{
|
|
public partial class CheckWorkDetailEdit : PageBase
|
|
{
|
|
#region 定义变量
|
|
/// <summary>
|
|
/// 开工前检查明细id
|
|
/// </summary>
|
|
public string CheckWorkDetailId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["CheckWorkDetailId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["CheckWorkDetailId"] = 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();
|
|
this.CheckWorkDetailId = Request.Params["CheckWorkDetailId"];
|
|
if (!string.IsNullOrEmpty(this.CheckWorkDetailId))
|
|
{
|
|
var detail = BLL.Check_CheckWorkDetailService.GetCheckWorkDetailByCheckWorkDetailId(this.CheckWorkDetailId);
|
|
if (detail != null)
|
|
{
|
|
this.txtCheckItemType.Text = BLL.Check_ProjectCheckItemSetService.ConvertCheckItemType(detail.CheckItem);
|
|
if (detail != null)
|
|
{
|
|
if (!string.IsNullOrEmpty(detail.CheckContent))
|
|
{
|
|
this.txtCheckItem.Text = detail.CheckContent;
|
|
}
|
|
else
|
|
{
|
|
this.txtCheckItem.Text = this.txtCheckItemType.Text;
|
|
}
|
|
}
|
|
|
|
this.txtCheckResult.Text = detail.CheckResult;
|
|
this.txtCheckOpinion.Text = detail.CheckOpinion;
|
|
this.txtHandleResult.Text = detail.HandleResult;
|
|
this.txtCheckStation.Text = detail.CheckStation;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 保存
|
|
/// <summary>
|
|
/// 保存按钮事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnSave_Click(object sender, EventArgs e)
|
|
{
|
|
Model.Check_CheckWorkDetail detail = BLL.Check_CheckWorkDetailService.GetCheckWorkDetailByCheckWorkDetailId(this.CheckWorkDetailId);
|
|
if (detail != null)
|
|
{
|
|
detail.CheckResult = this.txtCheckResult.Text.Trim();
|
|
detail.CheckOpinion = this.txtCheckOpinion.Text.Trim();
|
|
detail.HandleResult = this.txtHandleResult.Text.Trim();
|
|
detail.CheckStation = this.txtCheckStation.Text.Trim();
|
|
detail.CheckContent = this.txtCheckItem.Text.Trim();
|
|
BLL.Check_CheckWorkDetailService.UpdateCheckWorkDetail(detail);
|
|
}
|
|
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
|
}
|
|
#endregion
|
|
|
|
#region 附件上传
|
|
/// <summary>
|
|
/// 上传附件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnAttachUrl_Click(object sender, EventArgs e)
|
|
{
|
|
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/CheckWork&menuId={1}", this.CheckWorkDetailId, BLL.Const.ProjectCheckWorkMenuId)));
|
|
}
|
|
#endregion
|
|
}
|
|
} |