diff --git a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs
index a10ebca8..8344c42a 100644
--- a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs
@@ -1161,6 +1161,7 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
BLL.WeldTaskService.UpdateWelderTask(weldTaskId, drpCanWelder.SelectedValue);
}
this.BindGrid(null);
+ this.Grid1.SelectedRowIDArray = selectedRowId;
drpCanWelder.Items.Clear();
}
}
diff --git a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx
index de444054..37482908 100644
--- a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx
+++ b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx
@@ -32,6 +32,17 @@
+
+
+
+
+
+
+
+
+
+ /// 树查询
+ ///
+ ///
+ ///
+ protected void btnTreeFind_Click(object sender, EventArgs e)
+ {
+ this.InitTreeMenu();
+ }
+
#region 加载树装置-单位
///
/// 加载树
@@ -114,8 +124,8 @@ namespace FineUIPro.Web.HJGL.WeldingManage
//}
//else
//{
- unitWork1 = (from x in unitWorkList where x.ProjectType == "1" select x).ToList();
- unitWork2 = (from x in unitWorkList where x.ProjectType == "2" select x).ToList();
+ unitWork1 = (from x in unitWorkList where x.ProjectType == "1" select x).ToList();
+ unitWork2 = (from x in unitWorkList where x.ProjectType == "2" select x).ToList();
//}
if (unitWork1.Count() > 0)
{
@@ -151,26 +161,57 @@ namespace FineUIPro.Web.HJGL.WeldingManage
foreach (var q in unitWork2)
{
var unitNamesUnitIds = BLL.UnitService.getUnitNamesUnitIds(q.UnitId);
- var a = (from x in Funs.DB.HJGL_WeldTask
- where x.UnitWorkId == q.UnitWorkId
- && x.TaskDate < Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01").AddMonths(1)
- && x.TaskDate >= Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01")
- select x.TaskDate.Value.Date).Distinct().Count();
- TreeNode tn2 = new TreeNode();
- tn2.NodeID = q.UnitWorkId;
- tn2.Text = q.UnitWorkName;
- tn2.CommandName = "单位工程";
- tn2.ToolTip = "施工单位:" + unitNamesUnitIds;
- tn2.EnableClickEvent = true;
- tn2.EnableExpandEvent = true;
- rootNode2.Nodes.Add(tn2);
- if (a > 0)
+ if (string.IsNullOrEmpty(this.txtWeldJointCode.Text.Trim()))
{
- // BindNodes(tn1);
- TreeNode newNode = new TreeNode();
- newNode.Text = "加载管线...";
- newNode.NodeID = "加载管线...";
- tn2.Nodes.Add(newNode);
+ var a = (from x in Funs.DB.HJGL_WeldTask
+ where x.UnitWorkId == q.UnitWorkId
+ && x.TaskDate < Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01").AddMonths(1)
+ && x.TaskDate >= Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01")
+ select x.TaskDate.Value.Date).Distinct().Count();
+ TreeNode tn2 = new TreeNode();
+ tn2.NodeID = q.UnitWorkId;
+ tn2.Text = q.UnitWorkName;
+ tn2.CommandName = "单位工程";
+ tn2.ToolTip = "施工单位:" + unitNamesUnitIds;
+ tn2.EnableClickEvent = true;
+ tn2.EnableExpandEvent = true;
+ rootNode2.Nodes.Add(tn2);
+ if (a > 0)
+ {
+ // BindNodes(tn1);
+ TreeNode newNode = new TreeNode();
+ newNode.Text = "加载管线...";
+ newNode.NodeID = "加载管线...";
+ tn2.Nodes.Add(newNode);
+ }
+ }
+ else
+ {
+ var a = (from x in Funs.DB.HJGL_WeldTask
+ join y in Funs.DB.HJGL_WeldJoint on x.WeldJointId equals y.WeldJointId
+ where x.UnitWorkId == q.UnitWorkId && y.WeldJointCode.Contains(this.txtWeldJointCode.Text.Trim())
+ select x.TaskDate.Value.Date).Distinct().Count();
+ TreeNode tn2 = new TreeNode();
+ tn2.NodeID = q.UnitWorkId;
+ tn2.Text = q.UnitWorkName;
+ tn2.CommandName = "单位工程";
+ tn2.ToolTip = "施工单位:" + unitNamesUnitIds;
+ tn2.EnableClickEvent = true;
+ tn2.EnableExpandEvent = true;
+ rootNode2.Nodes.Add(tn2);
+ if (a > 0)
+ {
+ var date = (from x in Funs.DB.HJGL_WeldTask
+ join y in Funs.DB.HJGL_WeldJoint on x.WeldJointId equals y.WeldJointId
+ where x.UnitWorkId == q.UnitWorkId && y.WeldJointCode.Contains(this.txtWeldJointCode.Text.Trim())
+ select x.TaskDate.Value.Date).First();
+ this.txtTaskDateMonth.Text = string.Format("{0:yyyy-MM}", date);
+ // BindNodes(tn1);
+ TreeNode newNode = new TreeNode();
+ newNode.Text = "加载管线...";
+ newNode.NodeID = "加载管线...";
+ tn2.Nodes.Add(newNode);
+ }
}
}
}
@@ -187,21 +228,43 @@ namespace FineUIPro.Web.HJGL.WeldingManage
}
private void BindNodes(TreeNode node)
{
- var p = (from x in Funs.DB.HJGL_WeldTask
- where x.UnitWorkId == node.NodeID
- && x.TaskDate < Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01").AddMonths(1)
- && x.TaskDate >= Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01")
- select new { x.TaskDate.Value.Date ,x.UnitId}).Distinct();
- if (p.Count() > 0)
+ if (string.IsNullOrEmpty(this.txtWeldJointCode.Text.Trim()))
{
- foreach (var item in p)
+ var p = (from x in Funs.DB.HJGL_WeldTask
+ where x.UnitWorkId == node.NodeID
+ && x.TaskDate < Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01").AddMonths(1)
+ && x.TaskDate >= Convert.ToDateTime(this.txtTaskDateMonth.Text.Trim() + "-01")
+ select new { x.TaskDate.Value.Date, x.UnitId }).Distinct();
+ if (p.Count() > 0)
{
- TreeNode newNode = new TreeNode();
- newNode.CommandName = "Date";
- newNode.Text = string.Format("{0:yyyy-MM-dd}", item.Date)+"("+BLL.UnitService.getUnitNamesUnitIds(item.UnitId)+")";
- newNode.NodeID = node.NodeID + "|" + string.Format("{0:yyyy-MM-dd}", item.Date);
- newNode.EnableClickEvent = true;
- node.Nodes.Add(newNode);
+ foreach (var item in p)
+ {
+ TreeNode newNode = new TreeNode();
+ newNode.CommandName = "Date";
+ newNode.Text = string.Format("{0:yyyy-MM-dd}", item.Date) + "(" + BLL.UnitService.getUnitNamesUnitIds(item.UnitId) + ")";
+ newNode.NodeID = node.NodeID + "|" + string.Format("{0:yyyy-MM-dd}", item.Date);
+ newNode.EnableClickEvent = true;
+ node.Nodes.Add(newNode);
+ }
+ }
+ }
+ else
+ {
+ var p = (from x in Funs.DB.HJGL_WeldTask
+ join y in Funs.DB.HJGL_WeldJoint on x.WeldJointId equals y.WeldJointId
+ where x.UnitWorkId == node.NodeID && y.WeldJointCode.Contains(this.txtWeldJointCode.Text.Trim())
+ select new { x.TaskDate.Value.Date, x.UnitId }).Distinct();
+ if (p.Count() > 0)
+ {
+ foreach (var item in p)
+ {
+ TreeNode newNode = new TreeNode();
+ newNode.CommandName = "Date";
+ newNode.Text = string.Format("{0:yyyy-MM-dd}", item.Date) + "(" + BLL.UnitService.getUnitNamesUnitIds(item.UnitId) + ")";
+ newNode.NodeID = node.NodeID + "|" + string.Format("{0:yyyy-MM-dd}", item.Date);
+ newNode.EnableClickEvent = true;
+ node.Nodes.Add(newNode);
+ }
}
}
@@ -219,7 +282,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
weldingTask = weldingTask.Where(e => e.PipelineCode.Contains(this.txtPipelineCode.Text.Trim())).ToList();
}
DataTable tb = this.LINQToDataTable(weldingTask);
-
+
// 2.获取当前分页数据
//var table = this.GetPagedDataTable(GridNewDynamic, tb1);
Grid1.RecordCount = tb.Rows.Count;
@@ -823,7 +886,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
NewItem.WeldingWireCode = values.Value("WeldingWireCode").ToString();
}
- if (!string.IsNullOrEmpty(values.Value("Size"))&&!string.IsNullOrEmpty(values.Value("Size").ToString()))
+ if (!string.IsNullOrEmpty(values.Value("Size")) && !string.IsNullOrEmpty(values.Value("Size").ToString()))
{
NewItem.Size = values.Value("Size");
}
@@ -853,7 +916,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
{
string UnitWorkId = w.UnitWorkId;
string taskDate = "";
- string strList = UnitWorkId + "|" + taskDate;
+ string strList = UnitWorkId + "|" + taskDate;
string window = String.Format("SelectTaskWeldJoint.aspx?strList={0}", strList, "编辑 - ");
PageContext.RegisterStartupScript(Window1.GetSaveStateReference(hdTaskWeldJoint.ClientID) + Window1.GetShowReference(window));
@@ -880,7 +943,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
{
taskDate = tvControlItem.SelectedNodeID;
}
- string strList = UnitWorkId + "|" + taskDate;
+ string strList = UnitWorkId + "|" + taskDate;
string window = String.Format("SelectTaskWeldJoint.aspx?strList={0}", strList, "编辑 - ");
PageContext.RegisterStartupScript(Window1.GetSaveStateReference(hdTaskWeldJoint.ClientID) + Window1.GetShowReference(window));
@@ -994,7 +1057,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
{
List GetWeldingTaskList = BLL.WeldTaskService.GetWeldingTaskList(this.CurrUser.LoginProjectId, tvControlItem.SelectedNode.ParentNode.NodeID, Convert.ToDateTime(taskTime));
this.BindGrid(GetWeldingTaskList);
-
+
}
}
@@ -1122,48 +1185,48 @@ namespace FineUIPro.Web.HJGL.WeldingManage
DateTime? taskTime = Funs.GetNewDateTime(tvControlItem.SelectedNodeID.Split('|')[1]);
if (taskTime != null)
{
- var pipelines = BLL.WeldTaskService.GetWeldingTaskList(this.CurrUser.LoginProjectId, tvControlItem.SelectedNode.ParentNode.NodeID, Convert.ToDateTime(taskTime)).Select(x=>x.PipelineId).Distinct().ToList();
+ var pipelines = BLL.WeldTaskService.GetWeldingTaskList(this.CurrUser.LoginProjectId, tvControlItem.SelectedNode.ParentNode.NodeID, Convert.ToDateTime(taskTime)).Select(x => x.PipelineId).Distinct().ToList();
- if (pipelines.Any())
- {
- BLL.FastReportService.ResetData();
+ if (pipelines.Any())
+ {
+ BLL.FastReportService.ResetData();
- var result = HJGL_PipelineComponentService.GetPrintModelByPipelineComponentIds(null, pipelines.ToArray(),true);
- var PipelineComponentIds = result.Select(x => x.PipelineComponentId).ToArray();
- var tb = LINQToDataTable(result);
- if (tb != null && tb.Rows.Count>0)
- {
- tb.TableName = "Table1";
- }
- else
- {
- ShowNotify("该管线已打印完成", MessageBoxIcon.Question);
- return;
- }
- BLL.FastReportService.AddFastreportTable(tb);
- string initTemplatePath = "";
- string rootPath = Server.MapPath("~/");
- initTemplatePath = "File\\Fastreport\\组件打印.frx";
+ var result = HJGL_PipelineComponentService.GetPrintModelByPipelineComponentIds(null, pipelines.ToArray(), true);
+ var PipelineComponentIds = result.Select(x => x.PipelineComponentId).ToArray();
+ var tb = LINQToDataTable(result);
+ if (tb != null && tb.Rows.Count > 0)
+ {
+ tb.TableName = "Table1";
+ }
+ else
+ {
+ ShowNotify("该管线已打印完成", MessageBoxIcon.Question);
+ return;
+ }
+ BLL.FastReportService.AddFastreportTable(tb);
+ string initTemplatePath = "";
+ string rootPath = Server.MapPath("~/");
+ initTemplatePath = "File\\Fastreport\\组件打印.frx";
- if (File.Exists(rootPath + initTemplatePath))
- {
- PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("~/Controls/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
+ if (File.Exists(rootPath + initTemplatePath))
+ {
+ PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("~/Controls/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
- HJGL_PipelineComponentService.UpdateIsPrint(PipelineComponentIds);
+ HJGL_PipelineComponentService.UpdateIsPrint(PipelineComponentIds);
}
- }
- else
- {
- ShowNotify("无关联管线", MessageBoxIcon.Question);
+ }
+ else
+ {
+ ShowNotify("无关联管线", MessageBoxIcon.Question);
+
+ }
- }
-
}
else
{
- ShowNotify("请选择任务单",MessageBoxIcon.Question);
+ ShowNotify("请选择任务单", MessageBoxIcon.Question);
}
}
}
diff --git a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx.designer.cs b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx.designer.cs
index 7f5b853e..8661dc66 100644
--- a/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/HJGL/WeldingManage/WeldTask.aspx.designer.cs
@@ -7,13 +7,11 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.HJGL.WeldingManage
-{
-
-
- public partial class WeldTask
- {
-
+namespace FineUIPro.Web.HJGL.WeldingManage {
+
+
+ public partial class WeldTask {
+
///
/// form1 控件。
///
@@ -22,7 +20,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -31,7 +29,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -40,7 +38,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// panelLeftRegion 控件。
///
@@ -49,7 +47,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelLeftRegion;
-
+
///
/// Toolbar2 控件。
///
@@ -58,7 +56,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// txtTaskDateMonth 控件。
///
@@ -67,7 +65,34 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtTaskDateMonth;
-
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// txtWeldJointCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtWeldJointCode;
+
+ ///
+ /// btnTreeFind 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnTreeFind;
+
///
/// tvControlItem 控件。
///
@@ -76,7 +101,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Tree tvControlItem;
-
+
///
/// panelCenterRegion 控件。
///
@@ -85,7 +110,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelCenterRegion;
-
+
///
/// Grid1 控件。
///
@@ -94,7 +119,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// Toolbar4 控件。
///
@@ -103,7 +128,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar4;
-
+
///
/// hdItemsString 控件。
///
@@ -112,7 +137,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdItemsString;
-
+
///
/// hdTaskWeldJoint 控件。
///
@@ -121,7 +146,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdTaskWeldJoint;
-
+
///
/// CreatWeldableWeldJoint 控件。
///
@@ -130,7 +155,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button CreatWeldableWeldJoint;
-
+
///
/// btnSelectWelder 控件。
///
@@ -139,7 +164,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSelectWelder;
-
+
///
/// drpCanWelder 控件。
///
@@ -148,7 +173,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpCanWelder;
-
+
///
/// btnSaveWelder 控件。
///
@@ -157,7 +182,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSaveWelder;
-
+
///
/// txtPipelineCode 控件。
///
@@ -166,7 +191,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtPipelineCode;
-
+
///
/// btnSearch 控件。
///
@@ -175,7 +200,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSearch;
-
+
///
/// btnPrint 控件。
///
@@ -184,7 +209,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnPrint;
-
+
///
/// txtTaskDate 控件。
///
@@ -193,7 +218,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtTaskDate;
-
+
///
/// btnSave 控件。
///
@@ -202,7 +227,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSave;
-
+
///
/// drpJointAttribute 控件。
///
@@ -211,7 +236,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpJointAttribute;
-
+
///
/// drpWeldingMode 控件。
///
@@ -220,7 +245,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpWeldingMode;
-
+
///
/// drpWeldingRod 控件。
///
@@ -229,7 +254,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpWeldingRod;
-
+
///
/// drpWeldingWire 控件。
///
@@ -238,7 +263,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpWeldingWire;
-
+
///
/// drpCoverWelderId 控件。
///
@@ -247,7 +272,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpCoverWelderId;
-
+
///
/// drpBackingWelderId 控件。
///
@@ -256,7 +281,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpBackingWelderId;
-
+
///
/// ToolbarSeparator1 控件。
///
@@ -265,7 +290,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
-
+
///
/// ToolbarText1 控件。
///
@@ -274,7 +299,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarText ToolbarText1;
-
+
///
/// ddlPageSize 控件。
///
@@ -283,7 +308,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlPageSize;
-
+
///
/// Window1 控件。
///
@@ -292,7 +317,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Window Window1;
-
+
///
/// Window2 控件。
///
@@ -301,7 +326,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Window Window2;
-
+
///
/// Menu1 控件。
///
@@ -310,7 +335,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Menu Menu1;
-
+
///
/// btnMenuAdd 控件。
///
@@ -319,7 +344,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.MenuButton btnMenuAdd;
-
+
///
/// btnMotify 控件。
///
@@ -328,7 +353,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.MenuButton btnMotify;
-
+
///
/// Menu2 控件。
///
@@ -337,7 +362,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Menu Menu2;
-
+
///
/// btnMenuDelete 控件。
///