2023-01-05 二次焊口设计修改
This commit is contained in:
parent
160663ec5a
commit
9df5ccc5a3
Binary file not shown.
|
|
@ -58,7 +58,7 @@
|
||||||
</f:Button>
|
</f:Button>
|
||||||
<f:Button ID="btnNew" Text="新增" Icon="Add" runat="server" OnClick="btnNew_Click">
|
<f:Button ID="btnNew" Text="新增" Icon="Add" runat="server" OnClick="btnNew_Click">
|
||||||
</f:Button>
|
</f:Button>
|
||||||
<f:Button ID="btnBatchAdd" Text="批量增加" Icon="TableAdd"
|
<f:Button ID="btnBatchAdd" Text="批量增加" Icon="TableAdd" Hidden="true"
|
||||||
runat="server" OnClick="btnBatchAdd_Click">
|
runat="server" OnClick="btnBatchAdd_Click">
|
||||||
</f:Button>
|
</f:Button>
|
||||||
<f:Button ID="btnAutoInput" Text="自动录入" Icon="Add" runat="server" OnClick="btnAutoInput_Click">
|
<f:Button ID="btnAutoInput" Text="自动录入" Icon="Add" runat="server" OnClick="btnAutoInput_Click">
|
||||||
|
|
|
||||||
|
|
@ -217,10 +217,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||||
{
|
{
|
||||||
Model.HJGL_Pipeline pipeline = BLL.PipelineService.GetPipelineByPipelineId(this.tvControlItem.SelectedNodeID);
|
Model.HJGL_Pipeline pipeline = BLL.PipelineService.GetPipelineByPipelineId(this.tvControlItem.SelectedNodeID);
|
||||||
this.hdUnitWorkId.Text = string.Empty;
|
this.hdUnitWorkId.Text = string.Empty;
|
||||||
if (pipeline != null)
|
|
||||||
{
|
|
||||||
this.hdUnitWorkId.Text = this.tvControlItem.SelectedNode.ParentNode.NodeID;
|
|
||||||
}
|
|
||||||
if (e.CommandName == "加载")
|
if (e.CommandName == "加载")
|
||||||
{
|
{
|
||||||
string CommandName = e.Node.ParentNode.CommandName;
|
string CommandName = e.Node.ParentNode.CommandName;
|
||||||
|
|
@ -229,7 +226,22 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||||
treeNode.Nodes.Remove(e.Node);
|
treeNode.Nodes.Remove(e.Node);
|
||||||
BindNodes(e.Node.ParentNode);
|
BindNodes(e.Node.ParentNode);
|
||||||
}
|
}
|
||||||
this.BindGrid();
|
else
|
||||||
|
{
|
||||||
|
if (pipeline != null)
|
||||||
|
{
|
||||||
|
this.hdUnitWorkId.Text = this.tvControlItem.SelectedNode.ParentNode.NodeID;
|
||||||
|
this.BindGrid();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.hdUnitWorkId.Text = this.tvControlItem.SelectedNodeID;
|
||||||
|
ckIsAudit.Checked = true;
|
||||||
|
NoAuditBindGrid();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
protected void tvControlItem_TreeNodeExpanded(object sender, TreeNodeEventArgs e)
|
protected void tvControlItem_TreeNodeExpanded(object sender, TreeNodeEventArgs e)
|
||||||
{
|
{
|
||||||
|
|
@ -287,6 +299,49 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||||
Grid1.DataSource = table;
|
Grid1.DataSource = table;
|
||||||
Grid1.DataBind();
|
Grid1.DataBind();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void NoAuditBindGrid()
|
||||||
|
{
|
||||||
|
string strSql = @"SELECT WeldJointId,WeldJointCode,PipelineId,PipelineCode,JointAttribute,TwoJointType,
|
||||||
|
ComponentsCode1,ComponentsCode2,IsWelding,IsHotProessStr,Material1Code,Material2Code,
|
||||||
|
WeldTypeCode,Specification,HeartNo1,HeartNo2,Size,Dia,Thickness,GrooveTypeCode,
|
||||||
|
WeldingMethodCode,WeldingWireCode,WeldingRodCode,WeldingDate,WeldingDailyCode,
|
||||||
|
BackingWelderCode,CoverWelderCode,MediumCode ,PreTemperature,JointArea,WPQCode,Remark,
|
||||||
|
(CASE WHEN AuditDate IS NOT NULL THEN '已审核' ELSE '未审核' END) AS IsAudit,
|
||||||
|
subMan.PersonName AS SubmitMan,auditMan.PersonName AS AuditMan,AuditDate
|
||||||
|
FROM View_HJGL_WeldJoint
|
||||||
|
LEFT JOIN dbo.Person_Persons auditMan ON auditMan.PersonId=View_HJGL_WeldJoint.AuditMan
|
||||||
|
LEFT JOIN dbo.Person_Persons subMan ON subMan.PersonId=View_HJGL_WeldJoint.SubmitMan
|
||||||
|
WHERE IsTwoJoint = 1";
|
||||||
|
List<SqlParameter> listStr = new List<SqlParameter> { };
|
||||||
|
|
||||||
|
strSql += " AND UnitWorkId =@UnitWorkId";
|
||||||
|
listStr.Add(new SqlParameter("@UnitWorkId", this.tvControlItem.SelectedNodeID));
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(this.txtWeldJointCode.Text.Trim()))
|
||||||
|
{
|
||||||
|
strSql += " AND WeldJointCode LIKE @WeldJointCode";
|
||||||
|
listStr.Add(new SqlParameter("@WeldJointCode", "%" + this.txtWeldJointCode.Text.Trim() + "%"));
|
||||||
|
}
|
||||||
|
if (DropTwoJointType.SelectedValue != BLL.Const._Null)
|
||||||
|
{
|
||||||
|
strSql += " AND TwoJointType = @TwoJointType";
|
||||||
|
listStr.Add(new SqlParameter("@TwoJointType", DropTwoJointType.SelectedValue));
|
||||||
|
}
|
||||||
|
if (ckIsAudit.Checked == true)
|
||||||
|
{
|
||||||
|
strSql += " and AuditDate is null";
|
||||||
|
}
|
||||||
|
SqlParameter[] parameter = listStr.ToArray();
|
||||||
|
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
||||||
|
|
||||||
|
// 2.获取当前分页数据
|
||||||
|
Grid1.RecordCount = tb.Rows.Count;
|
||||||
|
var table = this.GetPagedDataTable(Grid1, tb);
|
||||||
|
Grid1.DataSource = table;
|
||||||
|
Grid1.DataBind();
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region 分页排序
|
#region 分页排序
|
||||||
|
|
|
||||||
|
|
@ -50,9 +50,15 @@
|
||||||
<Rows>
|
<Rows>
|
||||||
<f:FormRow>
|
<f:FormRow>
|
||||||
<Items>
|
<Items>
|
||||||
<f:TextBox ID="txtWeldJointCode" Label="焊口号" Readonly="true"
|
<f:TextBox ID="txtWeldJointCode" Label="焊口号" Readonly="false"
|
||||||
runat="server" FocusOnPageLoad="true" LabelWidth="100px" LabelAlign="Right">
|
runat="server" LabelWidth="100px" LabelAlign="Right">
|
||||||
</f:TextBox>
|
</f:TextBox>
|
||||||
|
<f:Label runat="server"></f:Label>
|
||||||
|
</Items>
|
||||||
|
</f:FormRow>
|
||||||
|
<f:FormRow>
|
||||||
|
<Items>
|
||||||
|
|
||||||
<f:DropDownList ID="drpMaterial1" Label="材质1"
|
<f:DropDownList ID="drpMaterial1" Label="材质1"
|
||||||
runat="server" ShowRedStar="true" Required="true" EnableEdit="true" LabelWidth="100px" LabelAlign="Right">
|
runat="server" ShowRedStar="true" Required="true" EnableEdit="true" LabelWidth="100px" LabelAlign="Right">
|
||||||
</f:DropDownList>
|
</f:DropDownList>
|
||||||
|
|
@ -63,6 +69,8 @@
|
||||||
LabelWidth="100px" DecimalPrecision="4" NoNegative="true" ShowRedStar="true" Required="true"
|
LabelWidth="100px" DecimalPrecision="4" NoNegative="true" ShowRedStar="true" Required="true"
|
||||||
EnableBlurEvent="true" OnBlur="txtText_TextChanged" LabelAlign="Right">
|
EnableBlurEvent="true" OnBlur="txtText_TextChanged" LabelAlign="Right">
|
||||||
</f:NumberBox>
|
</f:NumberBox>
|
||||||
|
<f:TextBox ID="txtDNDia" Label="公称直径" runat="server" LabelWidth="100px" LabelAlign="Right">
|
||||||
|
</f:TextBox>
|
||||||
</Items>
|
</Items>
|
||||||
</f:FormRow>
|
</f:FormRow>
|
||||||
<f:FormRow>
|
<f:FormRow>
|
||||||
|
|
@ -103,8 +111,7 @@
|
||||||
</f:FormRow>
|
</f:FormRow>
|
||||||
<f:FormRow>
|
<f:FormRow>
|
||||||
<Items>
|
<Items>
|
||||||
<f:TextBox ID="txtDNDia" Label="公称直径" runat="server" LabelWidth="100px" LabelAlign="Right">
|
|
||||||
</f:TextBox>
|
|
||||||
<f:Label runat="server"></f:Label>
|
<f:Label runat="server"></f:Label>
|
||||||
<f:Label runat="server"></f:Label>
|
<f:Label runat="server"></f:Label>
|
||||||
<f:Label runat="server"></f:Label>
|
<f:Label runat="server"></f:Label>
|
||||||
|
|
|
||||||
|
|
@ -220,9 +220,13 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(isTwoJoint))
|
if (!string.IsNullOrEmpty(isTwoJoint))
|
||||||
{
|
{
|
||||||
string perfix = txtPipelineCode.Text + "/Z-";
|
//string perfix = txtPipelineCode.Text + "/Z-";
|
||||||
|
string perfix = txtPipelineCode.Text + "/";
|
||||||
|
this.txtWeldJointCode.Text = perfix;
|
||||||
|
|
||||||
|
// txtWeldJointCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCode4ByProjectId", "dbo.HJGL_WeldJoint", "WeldJointCode", this.CurrUser.LoginProjectId, perfix);
|
||||||
|
|
||||||
txtWeldJointCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCode4ByProjectId", "dbo.HJGL_WeldJoint", "WeldJointCode", this.CurrUser.LoginProjectId, perfix);
|
// txtWeldJointCode.Text = txtWeldJointCode.Text.Replace(perfix, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -167,6 +167,15 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.NumberBox txtDia;
|
protected global::FineUIPro.NumberBox txtDia;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// txtDNDia 控件。
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// 自动生成的字段。
|
||||||
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
|
/// </remarks>
|
||||||
|
protected global::FineUIPro.TextBox txtDNDia;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// txtSize 控件。
|
/// txtSize 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -239,15 +248,6 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.DropDownList DropTwoJointType;
|
protected global::FineUIPro.DropDownList DropTwoJointType;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// txtDNDia 控件。
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// 自动生成的字段。
|
|
||||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|
||||||
/// </remarks>
|
|
||||||
protected global::FineUIPro.TextBox txtDNDia;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// GroupPanel2 控件。
|
/// GroupPanel2 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue