fix:危大工程

This commit is contained in:
geh
2025-03-25 21:54:21 +08:00
parent b8449b3139
commit 3e7c5e5804
23 changed files with 2895 additions and 1619 deletions
@@ -35,6 +35,7 @@ namespace FineUIPro.Web.HSSE.Solution
if (!IsPostBack)
{
btnClose.OnClientClick = ActiveWindow.GetHideReference();
BLL.UnitWorkService.InitUnitWorkDownList(this.drpAddress, this.CurrUser.LoginProjectId, false);
this.HazardId = Request.Params["HazardId"];
var largerHazard = BLL.LargerHazardService.GetLargerHazardByHazardId(this.HazardId);
if (largerHazard != null)
@@ -44,7 +45,11 @@ namespace FineUIPro.Web.HSSE.Solution
{
this.txtHazardType.Text = ConstValue.drpConstItemList(ConstValue.Group_LargerHazardType).FirstOrDefault(x => x.ConstValue == largerHazard.HazardType).ConstText;
}
this.txtAddress.Text = largerHazard.Address;
if (!string.IsNullOrEmpty(largerHazard.Address))
{
this.drpAddress.SelectedValue = largerHazard.Address;
}
// this.txtAddress.Text = largerHazard.Address;
if (largerHazard.ExpectedTime != null)
{
this.txtExpectedTime.Text = string.Format("{0:yyyy-MM-dd}", largerHazard.ExpectedTime);
@@ -76,6 +81,16 @@ namespace FineUIPro.Web.HSSE.Solution
this.drpStates.SelectedValue = largerHazard.States;
this.txtDescriptions.Text = largerHazard.Descriptions;
this.txtRemark.Text = HttpUtility.HtmlDecode(largerHazard.Remark);
this.AttachUrl1.InnerHtml = BLL.UploadAttachmentService.ShowAttachment("../../", getUrl(this.HazardId + "_1"));
this.AttachUrl2.InnerHtml = BLL.UploadAttachmentService.ShowAttachment("../../", getUrl(this.HazardId + "_2"));
this.AttachUrl3.InnerHtml = BLL.UploadAttachmentService.ShowAttachment("../../", getUrl(this.HazardId + "_3"));
this.AttachUrl4.InnerHtml = BLL.UploadAttachmentService.ShowAttachment("../../", getUrl(this.HazardId + "_4"));
this.AttachUrl5.InnerHtml = BLL.UploadAttachmentService.ShowAttachment("../../", getUrl(this.HazardId + "_5"));
this.AttachUrl6.InnerHtml = BLL.UploadAttachmentService.ShowAttachment("../../", getUrl(this.HazardId + "_6"));
}
///初始化审核菜单
this.ctlAuditFlow.MenuId = BLL.Const.ProjectLargerHazardListMenuId;
@@ -97,6 +112,17 @@ namespace FineUIPro.Web.HSSE.Solution
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/LargerHazard&menuId={1}&type=-1", this.HazardId, BLL.Const.ProjectLargerHazardListMenuId)));
}
}
private string getUrl(string id)
{
string url = string.Empty;
var model = Funs.DB.AttachFile.FirstOrDefault(x => x.ToKeyId == id);
if (model != null)
{
url = model.AttachUrl;
}
return url;
}
#endregion
}
}