1、车辆交易安全管理,现场车辆管理:补充批量退场和导入功能;

2、危大工程方案调整
3、企业安全检查调整
4、安全活动调整
This commit is contained in:
2026-03-16 14:38:56 +08:00
parent 2c1f892dec
commit 13364fcbf7
69 changed files with 4291 additions and 746 deletions
@@ -41,23 +41,27 @@
</f:FormRow>
<f:FormRow>
<Items>
<f:RadioButtonList ID="rblIsSuperLargerHazard" runat="server" Label="超危大工程" LabelWidth="100px" Required="true" ShowRedStar="true">
</f:RadioButtonList>
<f:NumberBox runat="server" ID="txtTrainPersonNum" NoDecimal="true" NoNegative="true" Label="培训人次" LabelWidth="100px" Required="true" ShowRedStar="true"></f:NumberBox>
<f:DropDownList ID="drpStates" runat="server" Label="状态" LabelAlign="Right">
<f:ListItem Text="审批完成" Value="1" />
<f:ListItem Text="作业中" Value="2" />
<f:ListItem Text="已关闭" Value="3" />
<f:ListItem Text="已取消" Value="0" />
</f:DropDownList>
<f:NumberBox runat="server" ID="txtOperativesNum" NoDecimal="true" NoNegative="true" Label="作业人员数" LabelWidth="100px" Required="true" ShowRedStar="true"></f:NumberBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:NumberBox runat="server" ID="txtOperativesNum" NoDecimal="true" NoNegative="true" Label="作业人员数" LabelWidth="100px" Required="true" ShowRedStar="true"></f:NumberBox>
<f:DropDownList ID="drpStates" runat="server" Label="作业状态" LabelAlign="Right">
<f:ListItem Text="未开始" Value="1" />
<%--<f:ListItem Text="审批完成" Value="1" />--%>
<f:ListItem Text="作业中" Value="2" />
<f:ListItem Text="已关闭" Value="3" />
<f:ListItem Text="已取消" Value="0" />
</f:DropDownList>
<f:DropDownList ID="drpApprovalState" runat="server" Label="审批状态" LabelAlign="Right">
<f:ListItem Text="待审核" Value="0" />
<f:ListItem Text="审核中" Value="1" />
<f:ListItem Text="已完成" Value="2" />
</f:DropDownList>
<f:Label runat="server" ID="txtOperativesNum1"></f:Label>
<f:Label runat="server" ID="txtOperativesNum2"></f:Label>
</Items>
</f:FormRow>
@@ -106,8 +106,9 @@ namespace FineUIPro.Web.HSSE.Solution
this.txtOperativesNum.Text = largerHazard.OperativesNum.ToString();
}
this.drpStates.SelectedValue = largerHazard.States;
this.drpApprovalState.SelectedValue = largerHazard.ApprovalState;
this.txtRemark.Text = HttpUtility.HtmlDecode(largerHazard.Remark);
this.txtDescriptions.Text = largerHazard.Descriptions;
this.txtDescriptions.Text = largerHazard.Descriptions;
this.txtHazardName.Text = largerHazard.HazardName;
}
else
@@ -204,6 +205,7 @@ namespace FineUIPro.Web.HSSE.Solution
RecordTime = Funs.GetNewDateTime(this.txtRecordTime.Text.Trim()),
ProjectId = this.ProjectId,
States = this.drpStates.SelectedValue,
ApprovalState = this.drpApprovalState.SelectedValue,
HazardName = txtHazardName.Text.Trim()
};
if (!string.IsNullOrEmpty(this.HazardId))
@@ -122,15 +122,6 @@ namespace FineUIPro.Web.HSSE.Solution
/// </remarks>
protected global::FineUIPro.NumberBox txtTrainPersonNum;
/// <summary>
/// drpStates 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpStates;
/// <summary>
/// txtOperativesNum 控件。
/// </summary>
@@ -140,6 +131,24 @@ namespace FineUIPro.Web.HSSE.Solution
/// </remarks>
protected global::FineUIPro.NumberBox txtOperativesNum;
/// <summary>
/// drpStates 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpStates;
/// <summary>
/// drpApprovalState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpApprovalState;
/// <summary>
/// txtOperativesNum1 控件。
/// </summary>
@@ -149,15 +158,6 @@ namespace FineUIPro.Web.HSSE.Solution
/// </remarks>
protected global::FineUIPro.Label txtOperativesNum1;
/// <summary>
/// txtOperativesNum2 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label txtOperativesNum2;
/// <summary>
/// txtDescriptions 控件。
/// </summary>
@@ -111,9 +111,13 @@
FieldType="String" HeaderText="专家论证" TextAlign="Center" HeaderTextAlign="Center">
</f:RenderField>
<f:RenderField Width="150px" ColumnID="StatesStr" DataField="StatesStr"
SortField="StatesStr" FieldType="String" HeaderText="状态" HeaderTextAlign="Center"
SortField="StatesStr" FieldType="String" HeaderText="作业状态" HeaderTextAlign="Center"
TextAlign="Left">
</f:RenderField>
<f:RenderField Width="120px" ColumnID="ApprovalStateStr" DataField="ApprovalStateStr"
SortField="ApprovalStateStr" FieldType="String" HeaderText="审批状态" HeaderTextAlign="Center"
TextAlign="Center">
</f:RenderField>
</Columns>
<Listeners>
<f:Listener Event="beforerowcontextmenu" Handler="onRowContextMenu" />
@@ -72,11 +72,15 @@ namespace FineUIPro.Web.HSSE.Solution
if (!string.IsNullOrEmpty(this.ProjectId))
{
string strSql = @"SELECT LargerHazard.HazardId,LargerHazard.ProjectId,LargerHazard.HazardCode,LargerHazard.Address,Users.UserName,LargerHazard.ExpectedTime,LargerHazard.RecordTime "
+ @" ,case LargerHazard.States when '1' then '审批完成'
+ @" ,case LargerHazard.States when '1' then '未开始'
when '2' then '作业中'
when '3' then '已关闭'
when '0' then '已取消'
else '' end as StatesStr"
+ @" ,case LargerHazard.ApprovalState when '0' then '待审核'
when '1' then '审核中'
when '2' then '已完成'
else '' end as ApprovalStateStr"
+ @", case when LargerHazard.IsArgument=1 then '是' else '否' end as IsArgumentStr,Const.ConstText as TypeName,Project.ProjectName"
+ @", case when LargerHazard.IsSuperLargerHazard=1 then '超危大工程' else '危大工程' end as IsSuperLargerHazard "
+ @" FROM Solution_LargerHazard AS LargerHazard "
@@ -1,4 +1,5 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LargerHazardView.aspx.cs" ValidateRequest="false" Inherits="FineUIPro.Web.HSSE.Solution.LargerHazardView" %>
<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -8,216 +9,227 @@
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow>
<Items>
<f:TextBox ID="txtLargerHazardCode" runat="server" Label="文件编号"
LabelWidth="100px" Readonly="true" >
</f:TextBox>
<f:TextBox ID="txtHazardType" runat="server" Label="类型" LabelWidth="100px" Readonly="true" >
</f:TextBox>
<f:TextBox ID="txtExpectedTime" runat="server" Label="预计施工" LabelWidth="100px" Readonly="true" >
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtIsArgument" runat="server" Label="专家论证" LabelWidth="100px" Readonly="true" >
</f:TextBox>
<f:TextBox ID="txtRecordTime" runat="server" Label="编制时间" LabelWidth="100px" Readonly="true" >
</f:TextBox>
<%-- <f:TextBox ID="txtAddress" runat="server" Label="地点" Readonly="true" LabelWidth="100px" > --%>
<%-- </f:TextBox> --%>
<f:DropDownList ID="drpAddress" runat="server" Label="地点" EnableCheckBoxSelect="true" EnableMultiSelect="true" MaxLength="50" AutoSelectFirstItem="false" LabelAlign="Right"></f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtIsSuperLargerHazard" runat="server" Label="专家论证" LabelWidth="100px" Readonly="true" >
</f:TextBox>
<f:NumberBox runat="server" ID="txtTrainPersonNum" NoDecimal="true" Label="培训人次" LabelWidth="100px" Readonly="true"></f:NumberBox>
<f:DropDownList ID="drpStates" runat="server" Label="状态" LabelAlign="Right" Readonly="true">
<f:ListItem Text="审批完成" Value="1"/>
<f:ListItem Text="作业中" Value="2"/>
<f:ListItem Text="已关闭" Value="3"/>
<f:ListItem Text="已取消" Value="-1"/>
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow>
<Items>
<f:TextBox ID="txtLargerHazardCode" runat="server" Label="文件编号"
LabelWidth="100px" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtHazardType" runat="server" Label="类型" LabelWidth="100px" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtExpectedTime" runat="server" Label="预计施工" LabelWidth="100px" Readonly="true">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtIsArgument" runat="server" Label="专家论证" LabelWidth="100px" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtRecordTime" runat="server" Label="编制时间" LabelWidth="100px" Readonly="true">
</f:TextBox>
<%-- <f:TextBox ID="txtAddress" runat="server" Label="地点" Readonly="true" LabelWidth="100px" > --%>
<%-- </f:TextBox> --%>
<f:DropDownList ID="drpAddress" runat="server" Label="地点" EnableCheckBoxSelect="true" EnableMultiSelect="true" MaxLength="50" AutoSelectFirstItem="false" LabelAlign="Right"></f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtIsSuperLargerHazard" runat="server" Label="专家论证" LabelWidth="100px" Readonly="true">
</f:TextBox>
<f:NumberBox runat="server" ID="txtTrainPersonNum" NoDecimal="true" Label="培训人次" LabelWidth="100px" Readonly="true"></f:NumberBox>
<f:NumberBox runat="server" ID="txtOperativesNum" NoDecimal="true" NoNegative="true" Label="作业人员数" LabelWidth="100px" Readonly="true"></f:NumberBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:DropDownList ID="drpStates" runat="server" Label="作业状态" LabelAlign="Right" Readonly="true">
<f:ListItem Text="审批完成" Value="1" />
<f:ListItem Text="作业中" Value="2" />
<f:ListItem Text="已关闭" Value="3" />
<f:ListItem Text="已取消" Value="-1" />
</f:DropDownList>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextArea ID="txtDescriptions" runat="server" Label="描述" LabelWidth="100px"
LabelAlign="Right" MaxLength="500" Height="100px"></f:TextArea>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:HtmlEditor runat="server" Label="描述" ID="txtRemark" ShowLabel="false" Hidden="true"
Editor="UMEditor" BasePath="~/res/umeditor/" ToolbarSet="Full" Height="200px" LabelAlign="Right">
</f:HtmlEditor>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:ContentPanel ID="ContentPanel1" runat="server" ShowHeader="false" EnableCollapse="true"
BodyPadding="0px">
<uc1:FlowOperateControl ID="ctlAuditFlow" runat="server" />
</f:ContentPanel>
</Items>
</f:FormRow>
<f:DropDownList ID="drpApprovalState" runat="server" Label="审批状态" LabelAlign="Right" Readonly="true">
<f:ListItem Text="待审核" Value="0" />
<f:ListItem Text="审核中" Value="1" />
<f:ListItem Text="已完成" Value="2" />
</f:DropDownList>
<f:Label runat="server" ID="txtOperativesNum1"></f:Label>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextArea ID="txtDescriptions" runat="server" Label="描述" LabelWidth="100px"
LabelAlign="Right" MaxLength="500" Height="100px">
</f:TextArea>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:HtmlEditor runat="server" Label="描述" ID="txtRemark" ShowLabel="false" Hidden="true"
Editor="UMEditor" BasePath="~/res/umeditor/" ToolbarSet="Full" Height="200px" LabelAlign="Right">
</f:HtmlEditor>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:ContentPanel ID="ContentPanel1" runat="server" ShowHeader="false" EnableCollapse="true"
BodyPadding="0px">
<uc1:FlowOperateControl ID="ctlAuditFlow" runat="server" />
</f:ContentPanel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel2" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label1" runat="server" Label="附件1-论证后的方案"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel0" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl1" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel3" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label2" runat="server" Label="附件2-专家论证报告"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel2" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl2" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel4" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label3" runat="server" Label="附件3-论证会签到表"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel3" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl3" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel5" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label4" runat="server" Label="附件4-论证会会议照片"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel4" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl4" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel6" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label5" runat="server" Label="附件5-方案交底记录"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel5" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl5" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel7" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label6" runat="server" Label="附件6-方案交底会议照片"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel6" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl6" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:Label runat="server" ID="lbTemp">
</f:Label>
<%-- <f:Button ID="btnAttachUrl" Text="附件" ToolTip="附件上传及查看" Icon="TableCell" runat="server" --%>
<%-- OnClick="btnAttachUrl_Click" ValidateForms="SimpleForm1"> --%>
<%-- </f:Button> --%>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" Text="关闭" runat="server" Icon="SystemClose">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px"
Height="500px">
</f:Window>
<f:FormRow>
<Items>
<f:Panel ID="Panel2" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label1" runat="server" Label="附件1-论证后的方案"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel0" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl1" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel3" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label2" runat="server" Label="附件2-专家论证报告"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel2" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl2" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel4" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label3" runat="server" Label="附件3-论证会签到表"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel3" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl3" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel5" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label4" runat="server" Label="附件4-论证会会议照片"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel4" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl4" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel6" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label5" runat="server" Label="附件5-方案交底记录"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel5" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl5" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:Panel ID="Panel7" ShowHeader="false" ShowBorder="false" Layout="Column" CssClass="" runat="server">
<Items>
<f:Label ID="Label6" runat="server" Label="附件6-方案交底会议照片"
LabelAlign="Right" LabelWidth="180px">
</f:Label>
<f:ContentPanel ID="ContentPanel6" runat="server" ShowHeader="false" ShowBorder="false">
<table>
<tr style="height: 28px">
<td align="left">
<div id="AttachUrl6" runat="server">
</div>
</td>
</tr>
</table>
</f:ContentPanel>
</Items>
</f:Panel>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
<Items>
<f:Label runat="server" ID="lbTemp">
</f:Label>
<%-- <f:Button ID="btnAttachUrl" Text="附件" ToolTip="附件上传及查看" Icon="TableCell" runat="server" --%>
<%-- OnClick="btnAttachUrl_Click" ValidateForms="SimpleForm1"> --%>
<%-- </f:Button> --%>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" Text="关闭" runat="server" Icon="SystemClose">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px"
Height="500px">
</f:Window>
</form>
</body>
</html>
@@ -78,11 +78,16 @@ namespace FineUIPro.Web.HSSE.Solution
{
this.txtTrainPersonNum.Text = largerHazard.TrainPersonNum.ToString();
}
if (largerHazard.OperativesNum != null)
{
this.txtOperativesNum.Text = largerHazard.OperativesNum.ToString();
}
this.drpStates.SelectedValue = largerHazard.States;
this.drpApprovalState.SelectedValue = largerHazard.ApprovalState;
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"));
@@ -113,6 +113,15 @@ namespace FineUIPro.Web.HSSE.Solution
/// </remarks>
protected global::FineUIPro.NumberBox txtTrainPersonNum;
/// <summary>
/// txtOperativesNum 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.NumberBox txtOperativesNum;
/// <summary>
/// drpStates 控件。
/// </summary>
@@ -122,6 +131,24 @@ namespace FineUIPro.Web.HSSE.Solution
/// </remarks>
protected global::FineUIPro.DropDownList drpStates;
/// <summary>
/// drpApprovalState 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpApprovalState;
/// <summary>
/// txtOperativesNum1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label txtOperativesNum1;
/// <summary>
/// txtDescriptions 控件。
/// </summary>