20230530集团看板数据来源页面添加
This commit is contained in:
@@ -162,12 +162,13 @@
|
||||
</f:DropDownBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<f:FormRow ColumnWidths="50% 35% 15%">
|
||||
<Items>
|
||||
<f:DatePicker ID="txtInTime" runat="server" Label="入场时间" ShowRedStar="true" Required="true">
|
||||
</f:DatePicker>
|
||||
<f:RadioButtonList ID="rbPersonType" runat="server" Label="人员类型">
|
||||
</f:RadioButtonList>
|
||||
<f:CheckBox runat="server" ID="ckIsSafetyMonitoring" Label="安全监护"></f:CheckBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
@@ -179,7 +180,6 @@
|
||||
</f:DatePicker>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:DatePicker ID="txtOutTime" runat="server" Label="出场时间">
|
||||
|
||||
@@ -351,6 +351,10 @@ namespace FineUIPro.Web.Person
|
||||
this.txtOutResult.Text = getProjectPerson.OutResult;
|
||||
this.txtRealNameTime.Text = string.Format("{0:yyyy-MM-dd HH:mm:ss}", getProjectPerson.RealNameAddTime);
|
||||
this.txtAuditorDate.Text = string.Format("{0:yyyy-MM-dd}", getProjectPerson.AuditorDate);
|
||||
if (getProjectPerson.IsSafetyMonitoring.HasValue)
|
||||
{
|
||||
this.ckIsSafetyMonitoring.Checked = getProjectPerson.IsSafetyMonitoring.Value;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -845,6 +849,7 @@ namespace FineUIPro.Web.Person
|
||||
OutTime = Funs.GetNewDateTime(this.txtOutTime.Text),
|
||||
OutResult = this.txtOutResult.Text.Trim(),
|
||||
States = string.IsNullOrEmpty(this.hdStates.Text) ? Const.ProjectPersonStates_0 : this.hdStates.Text,
|
||||
IsSafetyMonitoring=this.ckIsSafetyMonitoring.Checked
|
||||
};
|
||||
if (newPerson.States == Const.ProjectPersonStates_2 || newPerson.States == Const.ProjectPersonStates_R)
|
||||
{
|
||||
|
||||
@@ -320,6 +320,15 @@ namespace FineUIPro.Web.Person
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.RadioButtonList rbPersonType;
|
||||
|
||||
/// <summary>
|
||||
/// ckIsSafetyMonitoring 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.CheckBox ckIsSafetyMonitoring;
|
||||
|
||||
/// <summary>
|
||||
/// drpAuditor 控件。
|
||||
/// </summary>
|
||||
|
||||
@@ -144,12 +144,13 @@
|
||||
</f:DropDownBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<f:FormRow ColumnWidths="50% 35% 15%">
|
||||
<Items>
|
||||
<f:DatePicker ID="txtInTime" runat="server" Label="入场时间" ShowRedStar="true" Required="true">
|
||||
</f:DatePicker>
|
||||
<f:RadioButtonList ID="rbPersonType" runat="server" Label="人员类型">
|
||||
<f:RadioButtonList ID="rbPersonType" runat="server" Label="人员类型" Readonly="true">
|
||||
</f:RadioButtonList>
|
||||
<f:CheckBox runat="server" ID="ckIsSafetyMonitoring" Label="安全监护" Readonly="true"></f:CheckBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
|
||||
@@ -246,6 +246,10 @@ namespace FineUIPro.Web.Person
|
||||
this.txtOutResult.Text = getProjectPerson.OutResult;
|
||||
this.txtRealNameTime.Text = string.Format("{0:yyyy-MM-dd HH:mm:ss}", getProjectPerson.RealNameAddTime);
|
||||
this.txtAuditorDate.Text = string.Format("{0:yyyy-MM-dd}", getProjectPerson.AuditorDate);
|
||||
if (getProjectPerson.IsSafetyMonitoring.HasValue)
|
||||
{
|
||||
this.ckIsSafetyMonitoring.Checked = getProjectPerson.IsSafetyMonitoring.Value;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -266,6 +266,15 @@ namespace FineUIPro.Web.Person
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.RadioButtonList rbPersonType;
|
||||
|
||||
/// <summary>
|
||||
/// ckIsSafetyMonitoring 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.CheckBox ckIsSafetyMonitoring;
|
||||
|
||||
/// <summary>
|
||||
/// drpAuditor 控件。
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user