20251017 焊接统计报表
This commit is contained in:
@@ -51,6 +51,13 @@
|
||||
</f:CheckBoxList>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow ColumnWidths="17% 83%">
|
||||
<Items>
|
||||
<f:DropDownList ID="drpSteType" runat="server" LabelWidth="80px" Label="钢材类型" EnableEdit="true">
|
||||
</f:DropDownList>
|
||||
<f:Label ID="Label1" runat="server"></f:Label>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
</Rows>
|
||||
</f:Form>
|
||||
</Items>
|
||||
|
||||
@@ -55,6 +55,12 @@ namespace FineUIPro.Web.HJGL.WeldingReport
|
||||
|
||||
|
||||
Funs.FineUIPleaseSelect(this.drpWorkArea);
|
||||
////钢材类型
|
||||
this.drpSteType.DataTextField = "Text";
|
||||
this.drpSteType.DataValueField = "Value";
|
||||
this.drpSteType.DataSource = BLL.DropListService.HJGL_GetSteTypeList();
|
||||
this.drpSteType.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpSteType);
|
||||
|
||||
BLL.TeamGroupService.InitTeamGroupProjectDropDownList(this.drpTeamGroupId, this.CurrUser.LoginProjectId, true);
|
||||
////钢材类型
|
||||
@@ -144,14 +150,14 @@ namespace FineUIPro.Web.HJGL.WeldingReport
|
||||
//{
|
||||
// listStr.Add(new SqlParameter("@supervisorUnitId", null));
|
||||
//}
|
||||
//if (this.drpSteType.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpSteType.SelectedValue))
|
||||
//{
|
||||
// listStr.Add(new SqlParameter("@ste_steeltype", this.drpSteType.SelectedValue));
|
||||
//}
|
||||
//else
|
||||
//{
|
||||
// listStr.Add(new SqlParameter("@ste_steeltype", null));
|
||||
//}
|
||||
if (this.drpSteType.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.drpSteType.SelectedValue))
|
||||
{
|
||||
listStr.Add(new SqlParameter("@ste_steeltype", this.drpSteType.SelectedValue));
|
||||
}
|
||||
else
|
||||
{
|
||||
listStr.Add(new SqlParameter("@ste_steeltype", null));
|
||||
}
|
||||
if (this.cb_IsStandard.SelectedIndexArray != null && this.cb_IsStandard.SelectedIndexArray.Length == 1)
|
||||
{
|
||||
listStr.Add(new SqlParameter("@IsStandard", this.cb_IsStandard.SelectedValueArray[0]));
|
||||
|
||||
@@ -140,6 +140,24 @@ namespace FineUIPro.Web.HJGL.WeldingReport
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.CheckBoxList cb_IsStandard;
|
||||
|
||||
/// <summary>
|
||||
/// drpSteType 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList drpSteType;
|
||||
|
||||
/// <summary>
|
||||
/// Label1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Label Label1;
|
||||
|
||||
/// <summary>
|
||||
/// Region2 控件。
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user