2022-11-9 焊接施工计划导入增加流水段
This commit is contained in:
@@ -171,6 +171,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
,line.ActStartDate
|
||||
,line.ActEndDate
|
||||
,line.IsFinished
|
||||
,line.FlowingSection
|
||||
,com.PipelineComponentId
|
||||
,com.PreUnit
|
||||
,com.PipelineComponentCode
|
||||
@@ -212,6 +213,12 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
strSql += " AND mat.MaterialCode LIKE @MaterialCode";
|
||||
listStr.Add(new SqlParameter("@MaterialCode", "%" + this.txtMaterialCode.Text.Trim() + "%"));
|
||||
}
|
||||
if (!string.IsNullOrEmpty(this.txtFlowingSection.Text.Trim()))
|
||||
{
|
||||
strSql += " AND line.FlowingSection LIKE @FlowingSection";
|
||||
listStr.Add(new SqlParameter("@FlowingSection", "%" + this.txtFlowingSection.Text.Trim() + "%"));
|
||||
}
|
||||
|
||||
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
||||
|
||||
Reference in New Issue
Block a user