From 6d4a7e82a78ce7fad114c0016a7e626f05c22ba0 Mon Sep 17 00:00:00 2001
From: shecs <408299694@qq.com>
Date: Fri, 14 Feb 2025 16:48:50 +0800
Subject: [PATCH] 111
---
.../HJGL_CH_HardTestReportService.cs | 3 +
.../WeldingManage/HJGL_PW_JointInfoService.cs | 18 +
HJGL_ZH/BLL/WeldMat/Stock/StockInService.cs | 12 +
.../CommissionRepairPrint.aspx | 6 +-
.../CommissionRepairPrint.aspx.cs | 20 +-
.../HardnessTestOrderPrint.aspx | 4 +-
.../HardnessTestOrderPrint.aspx.cs | 16 +-
.../HardnessTestReportPrint.aspx | 4 +-
.../HardnessTestReportPrint.aspx.cs | 17 +-
.../PipingSingleDiagramPrint.aspx | 4 +-
.../PipingSingleDiagramPrint.aspx.cs | 16 +-
.../ContinuousPrint/TestOrderPrint.aspx | 2 +-
.../ContinuousPrint/TestOrderPrint.aspx.cs | 14 +-
.../ContinuousPrint/TestRecordtPrint.aspx | 16 +-
.../ContinuousPrint/TestRecordtPrint.aspx.cs | 16 +-
.../WeldingJointInspection.aspx | 6 +-
.../WeldingJointInspection.aspx.cs | 15 +-
.../ContinuousPrint/WeldingRecordPrint.aspx | 4 +-
.../WeldingRecordPrint.aspx.cs | 15 +-
HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj | 8 +
.../HJGL/CheckManage/MTReportEdit.aspx.cs | 21 +-
.../HJGL/CheckManage/PTReportEdit.aspx.cs | 21 +-
.../HJGL/CheckManage/RTReportEdit.aspx.cs | 25 +-
.../CheckManage/TestingReportPrint.aspx.cs | 29 +-
.../HJGL/CheckManage/UTReportEdit.aspx.cs | 21 +-
.../HJGL/HotHardManage/HardReportSet.aspx | 5 +
.../HJGL/HotHardManage/HardReportSet.aspx.cs | 66 +-
.../HardReportSet.aspx.designer.cs | 65 +-
.../HotHardManage/HardTestReportEdit.aspx | 6 +
.../HotHardManage/HardTestReportEdit.aspx.cs | 19 +
.../HardTestReportEdit.aspx.designer.cs | 87 +--
.../HJGL/WeldingManage/JointInfo.aspx | 14 +-
.../HJGL/WeldingManage/JointInfo.aspx.cs | 62 ++
.../WeldingManage/JointInfo.aspx.designer.cs | 127 ++--
.../WeldingManage/JointInfoBatchModity.aspx | 156 +++++
.../JointInfoBatchModity.aspx.cs | 601 ++++++++++++++++++
.../JointInfoBatchModity.aspx.designer.cs | 359 +++++++++++
.../PipelineManage.aspx.designer.cs | 56 +-
.../WeldingReport/InspectionBatch.aspx.cs | 10 +-
.../WeldingReport/IsoCheckStatistics.aspx | 11 +-
.../WeldingReport/IsoCheckStatistics.aspx.cs | 2 +-
.../IsoCheckStatistics.aspx.designer.cs | 44 +-
.../FineUIPro.Web/WeldMat/Stock/StockIn.aspx | 11 +-
.../WeldMat/Stock/StockIn.aspx.cs | 70 +-
.../WeldMat/Stock/StockIn.aspx.designer.cs | 57 +-
.../WeldMat/Stock/StockInEdit.aspx | 2 +-
.../WeldMat/Stock/StockInit.aspx | 2 +-
.../WeldMat/Stock/StockInitEdit.aspx | 2 +-
.../WeldMat/UsingSentMat/ShowStockIn.aspx.cs | 2 +-
.../WeldMat/UsingSentMat/UsingMat.aspx.cs | 52 +-
.../FineUIPro.Web/Welder/FilmInfoQuery.aspx | 6 +
51 files changed, 1888 insertions(+), 339 deletions(-)
create mode 100644 HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfoBatchModity.aspx
create mode 100644 HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfoBatchModity.aspx.cs
create mode 100644 HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfoBatchModity.aspx.designer.cs
diff --git a/HJGL_ZH/BLL/HJGL/HotHardManage/HJGL_CH_HardTestReportService.cs b/HJGL_ZH/BLL/HJGL/HotHardManage/HJGL_CH_HardTestReportService.cs
index 03d0865..de4d9e3 100644
--- a/HJGL_ZH/BLL/HJGL/HotHardManage/HJGL_CH_HardTestReportService.cs
+++ b/HJGL_ZH/BLL/HJGL/HotHardManage/HJGL_CH_HardTestReportService.cs
@@ -236,6 +236,7 @@ namespace BLL
newCH_HardTestReport.STE_ID = cH_Trust.STE_ID;
newCH_HardTestReport.TrustName = cH_Trust.TrustName;
newCH_HardTestReport.ReportName = cH_Trust.ReportName;
+ newCH_HardTestReport.ExecStandard = cH_Trust.ExecStandard;
db.SubmitChanges();
}
@@ -327,6 +328,7 @@ namespace BLL
newTrustItem.HotProessTrustId = trustItem.HotProessTrustId;
newTrustItem.Flag = trustItem.Flag;
newTrustItem.IsShow = trustItem.IsShow;
+ newTrustItem.CheckDate = trustItem.CheckDate;
db.HJGL_CH_HardTestReportItem.InsertOnSubmit(newTrustItem);
db.SubmitChanges();
}
@@ -346,6 +348,7 @@ namespace BLL
newItem.Remark = trustItem.Remark;
newItem.Flag = trustItem.Flag;
newItem.NewFlag = trustItem.NewFlag;
+ newItem.CheckDate = trustItem.CheckDate;
db.SubmitChanges();
}
}
diff --git a/HJGL_ZH/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs b/HJGL_ZH/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs
index df08e2f..d53642e 100644
--- a/HJGL_ZH/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs
+++ b/HJGL_ZH/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs
@@ -1313,6 +1313,24 @@ namespace BLL
return name;
}
+ public static string ConvertJointCodeString(string jotIdList)
+ {
+ string name = string.Empty;
+ string[] list = jotIdList.Split(',');
+ foreach (var item in list)
+ {
+ if (!string.IsNullOrEmpty(item))
+ {
+ name += GetJointInfoByJotID(item).JOT_JointNo + ",";
+ }
+ }
+ if (!string.IsNullOrEmpty(name))
+ {
+ name = name.Substring(0, name.LastIndexOf(","));
+ }
+ return name;
+ }
+
///
/// 根据焊口号、管线ID、项目Id获取焊口信息
///
diff --git a/HJGL_ZH/BLL/WeldMat/Stock/StockInService.cs b/HJGL_ZH/BLL/WeldMat/Stock/StockInService.cs
index e90fcbd..6662128 100644
--- a/HJGL_ZH/BLL/WeldMat/Stock/StockInService.cs
+++ b/HJGL_ZH/BLL/WeldMat/Stock/StockInService.cs
@@ -196,6 +196,18 @@ namespace BLL
}
}
+ public static void WarrantybookSure(string stockInId, bool? isSure, string sureMan)
+ {
+ Model.SGGLDB db = Funs.DB;
+ Model.Weld_StockIn newStockIn = db.Weld_StockIn.FirstOrDefault(e => e.StockInId == stockInId);
+ if (newStockIn != null)
+ {
+ newStockIn.IsSure= isSure;
+ newStockIn.SureMan= sureMan;
+ db.SubmitChanges();
+ }
+ }
+
///
/// 根据主键删除焊材入库
///
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx
index fed2113..8b8cc8f 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ DataKeyNames="ISO_ID" AllowSorting="true" SortField="Record_PrintDate"
+ SortDirection="DESC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs
index 9dcfb00..2b53ec1 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs
@@ -67,11 +67,21 @@ namespace FineUIPro.Web.ContinuousPrint
}
}
- string strSql = @"select a.CH_RepairID,a.TrustItemID,a.Record_PrintDate,a.CH_RepairNo,a.CH_PrintDate,b.ProjectCode,b.ProjectName,b.ShortName,b.StartDate,b.EndDate from HJGL_CH_Repair as a inner join Base_Project as b on a.ProjectId=b.ProjectId where a.ProjectId= @ProjectId" + str;
+ string strSql = @"select a.CH_RepairID,a.TrustItemID,a.Record_PrintDate,a.CH_RepairNo,a.CH_PrintDate,b.ProjectCode,b.ProjectName,b.ShortName,b.StartDate,b.EndDate
+ from HJGL_CH_Repair as a
+ inner join Base_Project as b on a.ProjectId=b.ProjectId
+ where a.ProjectId= @ProjectId" + str;
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -107,10 +117,12 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx
index b5c304f..efedd17 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ SortDirection="ASC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx.cs
index fc195ec..756def7 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestOrderPrint.aspx.cs
@@ -57,7 +57,14 @@ namespace FineUIPro.Web.ContinuousPrint
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -93,10 +100,13 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx
index 9eca888..1f84b25 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ SortDirection="ASC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx.cs
index 3f3e3f6..036a4c7 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/HardnessTestReportPrint.aspx.cs
@@ -58,7 +58,14 @@ namespace FineUIPro.Web.ContinuousPrint
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -94,10 +101,14 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
+
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx
index bb1dcfb..d78e63e 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ SortDirection="ASC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx.cs
index a3bce6a..43514d1 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/PipingSingleDiagramPrint.aspx.cs
@@ -57,7 +57,14 @@ namespace FineUIPro.Web.ContinuousPrint
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -93,10 +100,13 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx
index 67df708..3f1feb5 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -115,8 +123,6 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx
index ed94e97..d6e0d91 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ SortDirection="ASC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
@@ -112,22 +112,22 @@
FieldType="Date" Renderer="Date" HeaderTextAlign="Center" TextAlign="Left" Width="90px">
+ SortField="ISO_IsoNo" FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="100px">
+ SortField="JOT_JointNo" FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="150px">
+ SortField="JOT_JointDesc" FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="100px">
+ SortField="NDT_Code" FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="80px">
+ SortField="Record_Printer" FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="80px">
+ SortField="Record_PrintDate" FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="90px">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx.cs
index 03fece2..675cbcb 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestRecordtPrint.aspx.cs
@@ -130,7 +130,14 @@ namespace FineUIPro.Web.ContinuousPrint
LEFT JOIN HJGL_BS_NDTType AS ndt ON ndt.NDT_ID = v.CH_NDTMethod
LEFT JOIN Base_Project AS project ON project.ProjectId = v.ProjectId";
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -166,10 +173,13 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx
index 60cdc00..adf284c 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ AllowSorting="true" SortField="VICheckDate"
+ SortDirection="ASC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx.cs
index dfdbeaa..ba965c3 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingJointInspection.aspx.cs
@@ -66,7 +66,14 @@ namespace FineUIPro.Web.ContinuousPrint
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
}
@@ -102,10 +109,12 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx
index 60a6816..1d5ae47 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx
@@ -16,7 +16,7 @@
Title="中间面板" ShowBorder="false" ShowHeader="false" Layout="VBox">
+ SortDirection="ASC" OnSort="Grid2_Sort" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx.cs
index c67bebc..2234186 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/WeldingRecordPrint.aspx.cs
@@ -51,7 +51,14 @@ namespace FineUIPro.Web.ContinuousPrint
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
- Grid2.DataSource = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataTable dt = SQLHelper.GetDataTableRunText(strSql, parameter);
+ DataView view = dt.DefaultView;
+ if (!string.IsNullOrEmpty(Grid2.SortField) && view.Count > 0)
+ {
+ view.Sort = String.Format("{0} {1}", Grid2.SortField, Grid2.SortDirection);
+ }
+ DataTable table = view.ToTable();
+ Grid2.DataSource = table;
Grid2.DataBind();
Grid2.SelectAllRows();
@@ -88,10 +95,12 @@ namespace FineUIPro.Web.ContinuousPrint
///
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
- Grid1.SortDirection = e.SortDirection;
- Grid1.SortField = e.SortField;
BindGrid();
}
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
index fcd0dcc..babee87 100644
--- a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
@@ -1115,6 +1115,7 @@
+
@@ -5828,6 +5829,13 @@
DetectionPoint.aspx
+
+ JointInfoBatchModity.aspx
+ ASPXCodeBehind
+
+
+ JointInfoBatchModity.aspx
+
JointInfoOut.aspx
ASPXCodeBehind
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/MTReportEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/MTReportEdit.aspx.cs
index 9b790f0..68957bb 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/MTReportEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/MTReportEdit.aspx.cs
@@ -310,14 +310,15 @@ namespace FineUIPro.Web.HJGL.CheckManage
if (mtReport != null)
{
this.TestingReportPrintId = mtReport.TestingReportPrintId;
- if (!string.IsNullOrEmpty(mtReport.ReportCode) && mtReport.ReportCode.Length > 3)
- {
- this.txtMTReportCode.Text = mtReport.ReportCode.Substring(3);//报告编号
- }
- else
- {
- this.txtMTReportCode.Text = mtReport.ReportCode;
- }
+ //if (!string.IsNullOrEmpty(mtReport.ReportCode) && mtReport.ReportCode.Length > 3)
+ //{
+ // this.txtMTReportCode.Text = mtReport.ReportCode.Substring(3);//报告编号
+ //}
+ //else
+ //{
+ // this.txtMTReportCode.Text = mtReport.ReportCode;
+ //}
+ this.txtMTReportCode.Text = mtReport.ReportCode;
this.hdReportCode.Text = mtReport.ReportCode;
this.txtSurfaceState.Text = mtReport.MT_SurfaceState;//表面状态
@@ -342,8 +343,8 @@ namespace FineUIPro.Web.HJGL.CheckManage
}
else
{
- this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, "MT-" + pro.TestEngineeringCode + "-");
- this.txtMTReportCode.Text = this.hdReportCode.Text.Substring(3);
+ this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, pro.TestEngineeringCode + "-MT-");
+ this.txtMTReportCode.Text = this.hdReportCode.Text;
}
BindGrid();
}
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/PTReportEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/PTReportEdit.aspx.cs
index 688f677..a5f881b 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/PTReportEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/PTReportEdit.aspx.cs
@@ -267,14 +267,15 @@ namespace FineUIPro.Web.HJGL.CheckManage
if (ptReport != null)
{
this.TestingReportPrintId = ptReport.TestingReportPrintId;
- if (!string.IsNullOrEmpty(ptReport.ReportCode) && ptReport.ReportCode.Length > 3)
- {
- this.txtPTReportCode.Text = ptReport.ReportCode.Substring(3);//报告编号
- }
- else
- {
- this.txtPTReportCode.Text = ptReport.ReportCode;
- }
+ //if (!string.IsNullOrEmpty(ptReport.ReportCode) && ptReport.ReportCode.Length > 3)
+ //{
+ // this.txtPTReportCode.Text = ptReport.ReportCode.Substring(3);//报告编号
+ //}
+ //else
+ //{
+ // this.txtPTReportCode.Text = ptReport.ReportCode;
+ //}
+ this.txtPTReportCode.Text = ptReport.ReportCode;
this.hdReportCode.Text = ptReport.ReportCode;
//this.txtContractUnit.Text = ptReport.ContractUnitId;//承包单位
@@ -299,8 +300,8 @@ namespace FineUIPro.Web.HJGL.CheckManage
}
else
{
- this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, "PT-" + pro.TestEngineeringCode + "-");
- this.txtPTReportCode.Text = this.hdReportCode.Text.Substring(3);
+ this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, pro.TestEngineeringCode + "-PT-");
+ this.txtPTReportCode.Text = this.hdReportCode.Text;
this.txtContractUnit.Text = "镇海石化建安工程有限公司";
}
BindGrid();
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/RTReportEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/RTReportEdit.aspx.cs
index adfb9ad..d05c17b 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/RTReportEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/RTReportEdit.aspx.cs
@@ -339,15 +339,16 @@ namespace FineUIPro.Web.HJGL.CheckManage
if (rtReport != null)
{
this.TestingReportPrintId = rtReport.TestingReportPrintId;
- if (!string.IsNullOrEmpty(rtReport.ReportCode) && rtReport.ReportCode.Length > 3)
- {
- this.txtRTReportCode.Text = rtReport.ReportCode.Substring(3);
- }
- else
- {
- this.txtRTReportCode.Text = rtReport.ReportCode;
- }
+ //if (!string.IsNullOrEmpty(rtReport.ReportCode) && rtReport.ReportCode.Length > 3)
+ //{
+ // this.txtRTReportCode.Text = rtReport.ReportCode.Substring(3);
+ //}
+ //else
+ //{
+ // this.txtRTReportCode.Text = rtReport.ReportCode;
+ //}
+ this.txtRTReportCode.Text = rtReport.ReportCode;
this.hdReportCode.Text = rtReport.ReportCode;
this.txtTechnicalGrade.Text = rtReport.RT_TechnicalGrade;
@@ -391,7 +392,7 @@ namespace FineUIPro.Web.HJGL.CheckManage
else
{
int maxCode = 0;
- string prefix = "RT-" + pro.TestEngineeringCode + "-";
+ string prefix = pro.TestEngineeringCode + "-RT-";
int prefixLeng = prefix.Length + 1;
string sqlstr = "SELECT MAX(CONVERT(INT, SUBSTRING(ReportCode,@prefixLeng,LEN(ReportCode)))) FROM HJGL_CH_TestingReportPrint WHERE ProjectId=@ProjectId AND ReportCode LIKE @prefix";
List listStr = new List();
@@ -406,13 +407,13 @@ namespace FineUIPro.Web.HJGL.CheckManage
}
if (maxCode < 999)
{
- this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, "RT-" + pro.TestEngineeringCode + "-");
+ this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, pro.TestEngineeringCode + "-RT-");
}
else
{
- this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeThreeToFour", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, "RT-" + pro.TestEngineeringCode + "-");
+ this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeThreeToFour", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, pro.TestEngineeringCode + "-RT-");
}
- this.txtRTReportCode.Text = this.hdReportCode.Text.Substring(3);
+ this.txtRTReportCode.Text = this.hdReportCode.Text;
this.txtTubeVoltage.Text = " kv";
}
BindGrid();
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/TestingReportPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/TestingReportPrint.aspx.cs
index 3bd9a85..e99a732 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/TestingReportPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/TestingReportPrint.aspx.cs
@@ -500,7 +500,8 @@ namespace FineUIPro.Web.HJGL.CheckManage
string reportCode = string.Empty;
if (!string.IsNullOrEmpty(rtReport.ReportCode) && rtReport.ReportCode.Length > 3)
{
- reportCode = rtReport.ReportCode.Substring(3);
+ //reportCode = rtReport.ReportCode.Substring(3);
+ reportCode = rtReport.ReportCode;
}
string unitName = string.Empty;
if (iso != null)
@@ -540,24 +541,24 @@ namespace FineUIPro.Web.HJGL.CheckManage
}
if (ndtType.NDT_Code == "RT")
{
- code = dateStr + "-RT-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + (tb.Rows.Count - 1).ToString();
+ code = dateStr + "-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + (tb.Rows.Count - 1).ToString() + "-" + userName;
PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("FileCode.aspx?code={0}", HttpUtility.UrlEncodeUnicode(code), "编辑 - ")));
}
- else if (ndtType.NDT_Code == "PT")
+ else
{
- code = dateStr + "-PT-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + userName;
- PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("FileCode.aspx?code={0}", HttpUtility.UrlEncodeUnicode(code), "编辑 - ")));
- }
- else if (ndtType.NDT_Code == "MT")
- {
- code = dateStr + "-MT-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + userName;
- PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("FileCode.aspx?code={0}", HttpUtility.UrlEncodeUnicode(code), "编辑 - ")));
- }
- else if (ndtType.NDT_Code == "UT")
- {
- code = dateStr + "-UT-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + userName;
+ code = dateStr + "-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + userName + "-" + jointDesc + "-" + (tb.Rows.Count - 1).ToString();
PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("FileCode.aspx?code={0}", HttpUtility.UrlEncodeUnicode(code), "编辑 - ")));
}
+ //else if (ndtType.NDT_Code == "MT")
+ //{
+ // code = dateStr + "-MT-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + userName;
+ // PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("FileCode.aspx?code={0}", HttpUtility.UrlEncodeUnicode(code), "编辑 - ")));
+ //}
+ //else if (ndtType.NDT_Code == "UT")
+ //{
+ // code = dateStr + "-UT-" + reportCode + "-" + unitName + "-" + projectCode + "-" + projectName + "(" + iso.ISO_IsoNo + ")-" + userName;
+ // PageContext.RegisterStartupScript(Window3.GetShowReference(String.Format("FileCode.aspx?code={0}", HttpUtility.UrlEncodeUnicode(code), "编辑 - ")));
+ //}
}
else
{
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/UTReportEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/UTReportEdit.aspx.cs
index 3f71273..42a531a 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/UTReportEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/CheckManage/UTReportEdit.aspx.cs
@@ -316,14 +316,15 @@ namespace FineUIPro.Web.HJGL.CheckManage
if (utReport != null)
{
this.TestingReportPrintId = utReport.TestingReportPrintId;
- if (!string.IsNullOrEmpty(utReport.ReportCode) && utReport.ReportCode.Length > 3)
- {
- this.txtUTReportCode.Text = utReport.ReportCode.Substring(3);//报表编号
- }
- else
- {
- this.txtUTReportCode.Text = utReport.ReportCode;
- }
+ //if (!string.IsNullOrEmpty(utReport.ReportCode) && utReport.ReportCode.Length > 3)
+ //{
+ // this.txtUTReportCode.Text = utReport.ReportCode.Substring(3);//报表编号
+ //}
+ //else
+ //{
+ // this.txtUTReportCode.Text = utReport.ReportCode;
+ //}
+ this.txtUTReportCode.Text = utReport.ReportCode;
this.hdReportCode.Text = utReport.ReportCode;
//this.txtContractUnit.Text = utReport.ContractUnitId;//承包单位
@@ -349,8 +350,8 @@ namespace FineUIPro.Web.HJGL.CheckManage
}
else
{
- this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, "UT-" + pro.TestEngineeringCode + "-");
- this.txtUTReportCode.Text = this.hdReportCode.Text.Substring(3);
+ this.hdReportCode.Text = BLL.SQLHelper.RunProcNewIdByProjectId("SpGetNewCodeByProjectId3", "HJGL_CH_TestingReportPrint", "ReportCode", iso.ProjectId, pro.TestEngineeringCode + "-UT-");
+ this.txtUTReportCode.Text = this.hdReportCode.Text;
this.txtContractUnit.Text = "镇海石化建安工程有限公司";
this.txtSurfaceState.Text = "机械打磨";
this.txtProbeType.Text = "2.5MHZ10×10K2";
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx
index 07b915a..78c867f 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx
@@ -57,6 +57,7 @@
+
@@ -146,6 +147,10 @@
+
+
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.cs
index b1d8a58..17cf57b 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.cs
@@ -307,7 +307,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage
SelectList.Add(Grid1.DataKeys[rowIndex][0] + "," + Grid1.DataKeys[rowIndex][1]);
}
string strSql = @"select * from dbo.HJGL_View_CH_HardTestReportItemSet Item
-where Item.ProjectId=@ProjectId and HardTestReportId is null ";
+ where Item.ProjectId=@ProjectId and HardTestReportId is null ";
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", this.tvControlItem.SelectedNodeID));
if (this.drpIsoNo.SelectedValue != BLL.Const._Null)
@@ -320,7 +320,7 @@ where Item.ProjectId=@ProjectId and HardTestReportId is null ";
Grid1.RecordCount = tb.Rows.Count;
- tb = GetFilteredTable(Grid1.FilteredData, tb);
+ //tb = GetFilteredTable(Grid1.FilteredData, tb);
// 2.获取当前排序(如不分页要调用这个排序方法)
//var table = this.GetSortTable(Grid1, tb);
// 2.获取当前分页数据
@@ -378,34 +378,44 @@ where Item.ProjectId=@ProjectId and HardTestReportId is null ";
///
protected void btnSave_Click(object sender, EventArgs e)
{
- JArray mergedData = Grid1.GetMergedData();
- string jot_id = string.Empty, hardTestReportId = string.Empty, hardTestReportItemId = string.Empty, hardTestReportItemId2 = string.Empty, hardTestReportItemId3 = string.Empty, isoidLog = string.Empty, jointIdLog = string.Empty;
- foreach (JObject mergedRow in mergedData)
+ if (!string.IsNullOrEmpty(this.txtCheckDate.Text))
{
- string status = mergedRow.Value("status");
- JObject values = mergedRow.Value("values");
- int rowIndex = mergedRow.Value("index");
- jot_id = Grid1.DataKeys[rowIndex][3].ToString();
- hardTestReportItemId = Grid1.DataKeys[rowIndex][0].ToString();
- hardTestReportItemId2 = Grid1.DataKeys[rowIndex][1].ToString();
- hardTestReportItemId3 = Grid1.DataKeys[rowIndex][2].ToString();
- Model.HJGL_PW_JointInfo joint = BLL.HJGL_PW_JointInfoService.GetJointInfoByJotID(jot_id);
- Model.HJGL_PW_IsoInfo iso = BLL.HJGL_PW_IsoInfoService.GetIsoInfoByIsoInfoId(joint.ISO_ID);
- Model.HJGL_CH_HardTestReportItem item1 = BLL.HJGL_CH_HardTestReportService.GetCH_HardTestReportItemByID(hardTestReportItemId);
- item1.HardNessValue = Funs.GetNewInt(values.Value("HardNessValue1").ToString());
- item1.Remark = values.Value("Remark").ToString();
- BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReportItem(item1);
- Model.HJGL_CH_HardTestReportItem item2 = BLL.HJGL_CH_HardTestReportService.GetCH_HardTestReportItemByID(hardTestReportItemId2);
- item2.HardNessValue = Funs.GetNewInt(values.Value("HardNessValue2").ToString());
- item2.Remark = values.Value("Remark").ToString();
- BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReportItem(item2);
- Model.HJGL_CH_HardTestReportItem item3 = BLL.HJGL_CH_HardTestReportService.GetCH_HardTestReportItemByID(hardTestReportItemId3);
- item3.HardNessValue = Funs.GetNewInt(values.Value("HardNessValue3").ToString());
- item3.Remark = values.Value("Remark").ToString();
- BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReportItem(item3);
+ JArray mergedData = Grid1.GetModifiedData();//.GetMergedData();
+ string jot_id = string.Empty, hardTestReportId = string.Empty, hardTestReportItemId = string.Empty, hardTestReportItemId2 = string.Empty, hardTestReportItemId3 = string.Empty, isoidLog = string.Empty, jointIdLog = string.Empty;
+ foreach (JObject mergedRow in mergedData)
+ {
+ string status = mergedRow.Value("status");
+ JObject values = mergedRow.Value("values");
+ int rowIndex = mergedRow.Value("index");
+ jot_id = Grid1.DataKeys[rowIndex][3].ToString();
+ hardTestReportItemId = Grid1.DataKeys[rowIndex][0] != null ? Grid1.DataKeys[rowIndex][0].ToString() : null;
+ hardTestReportItemId2 = Grid1.DataKeys[rowIndex][1] != null ? Grid1.DataKeys[rowIndex][1].ToString() : null;
+ hardTestReportItemId3 = Grid1.DataKeys[rowIndex][2] != null ? Grid1.DataKeys[rowIndex][2].ToString() : null;
+ Model.HJGL_PW_JointInfo joint = BLL.HJGL_PW_JointInfoService.GetJointInfoByJotID(jot_id);
+ Model.HJGL_PW_IsoInfo iso = BLL.HJGL_PW_IsoInfoService.GetIsoInfoByIsoInfoId(joint.ISO_ID);
+ Model.HJGL_CH_HardTestReportItem item1 = BLL.HJGL_CH_HardTestReportService.GetCH_HardTestReportItemByID(hardTestReportItemId);
+ item1.HardNessValue = Funs.GetNewInt(values.Value("HardNessValue1"));
+ item1.Remark = values.Value("Remark") != null ? values.Value("Remark").ToString() : null;
+ item1.CheckDate = Convert.ToDateTime(txtCheckDate.Text);
+ BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReportItem(item1);
+ Model.HJGL_CH_HardTestReportItem item2 = BLL.HJGL_CH_HardTestReportService.GetCH_HardTestReportItemByID(hardTestReportItemId2);
+ item2.HardNessValue = Funs.GetNewInt(values.Value("HardNessValue2"));
+ item2.Remark = values.Value("Remark") != null ? values.Value("Remark").ToString() : null;
+ item2.CheckDate = Convert.ToDateTime(txtCheckDate.Text);
+ BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReportItem(item2);
+ Model.HJGL_CH_HardTestReportItem item3 = BLL.HJGL_CH_HardTestReportService.GetCH_HardTestReportItemByID(hardTestReportItemId3);
+ item3.HardNessValue = Funs.GetNewInt(values.Value("HardNessValue3"));
+ item3.Remark = values.Value("Remark") != null ? values.Value("Remark").ToString() : null;
+ item3.CheckDate = Convert.ToDateTime(txtCheckDate.Text);
+ BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReportItem(item3);
+ }
+ ShowNotify("提交成功!", MessageBoxIcon.Success);
+ BindGrid();
+ }
+ else
+ {
+ ShowNotify("请选择检测日期!", MessageBoxIcon.Warning);
}
- ShowNotify("提交成功!", MessageBoxIcon.Success);
- BindGrid();
}
#endregion
}
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.designer.cs b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.designer.cs
index 9bf8ab9..cda08fb 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.designer.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardReportSet.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.HJGL.HotHardManage {
-
-
- public partial class HardReportSet {
-
+namespace FineUIPro.Web.HJGL.HotHardManage
+{
+
+
+ public partial class HardReportSet
+ {
+
///
/// form1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// panelLeftRegion 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelLeftRegion;
-
+
///
/// Toolbar2 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// drpProjectId 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpProjectId;
-
+
///
/// tvControlItem 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Tree tvControlItem;
-
+
///
/// panelCenterRegion 控件。
///
@@ -83,7 +85,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelCenterRegion;
-
+
///
/// Toolbar3 控件。
///
@@ -92,7 +94,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar3;
-
+
///
/// ToolbarFill1 控件。
///
@@ -101,7 +103,16 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
+ ///
+ /// txtCheckDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCheckDate;
+
///
/// btnSave 控件。
///
@@ -110,7 +121,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSave;
-
+
///
/// btnGenerating 控件。
///
@@ -119,7 +130,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnGenerating;
-
+
///
/// Grid1 控件。
///
@@ -128,7 +139,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// Toolbar1 控件。
///
@@ -137,7 +148,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// drpIsoNo 控件。
///
@@ -146,7 +157,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpIsoNo;
-
+
///
/// ToolbarFill2 控件。
///
@@ -155,7 +166,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill2;
-
+
///
/// nbHardNessValue1 控件。
///
@@ -164,7 +175,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox nbHardNessValue1;
-
+
///
/// nbHardNessValue2 控件。
///
@@ -173,7 +184,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox nbHardNessValue2;
-
+
///
/// nbHardNessValue3 控件。
///
@@ -182,7 +193,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox nbHardNessValue3;
-
+
///
/// txtRemark 控件。
///
@@ -191,7 +202,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemark;
-
+
///
/// ToolbarSeparator1 控件。
///
@@ -200,7 +211,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
-
+
///
/// ToolbarText1 控件。
///
@@ -209,7 +220,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarText ToolbarText1;
-
+
///
/// ddlPageSize 控件。
///
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx
index f07e83d..2e9eabf 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx
@@ -105,6 +105,12 @@
+
+
+
+
+
+
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.cs
index c15ef33..77b00cd 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.cs
@@ -101,6 +101,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage
{
this.ProjectId = trust.ProjectId;
this.txtHardTestReportCode.Text = trust.HardTestReportCode;
+ string execStandard = string.Empty;
if (!string.IsNullOrEmpty(trust.TrustUnitId))
{
this.drpUnit.SelectedValue = trust.TrustUnitId;
@@ -124,6 +125,14 @@ namespace FineUIPro.Web.HJGL.HotHardManage
this.ddlSTE.SelectedValue = trust.STE_ID;
this.txtMaterialStandard.Text = steel2.HardQuaStandard;
}
+ if(!string.IsNullOrEmpty(isoInfo.ISO_Executive))
+ {
+ var exec = BLL.HJGL_ExecStandardService.GetExecStandardById(isoInfo.ISO_Executive);
+ if (exec != null)
+ {
+ execStandard = exec.ExecStandardName;
+ }
+ }
}
}
this.txtContractUnit.Text = trust.ContractUnit;
@@ -149,6 +158,15 @@ namespace FineUIPro.Web.HJGL.HotHardManage
{
this.txtTestCount.Text = trust.TestCount.ToString();
}
+ if (!string.IsNullOrEmpty(trust.ExecStandard))
+ {
+ txtExecStandard.Text = trust.ExecStandard;
+ }
+ else
+ {
+ txtExecStandard.Text = execStandard;
+ }
+
}
else
{
@@ -255,6 +273,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage
}
newHardTestReport.TestRate = this.txtTestRate.Text.Trim();
newHardTestReport.TestCount = Funs.GetNewIntOrZero(this.txtTestCount.Text.Trim());
+ newHardTestReport.ExecStandard = this.txtExecStandard.Text.Trim();
BLL.HJGL_CH_HardTestReportService.UpdateCH_HardTestReport(newHardTestReport);
BLL.Sys_LogService.AddLog(BLL.Const.System_3, newHardTestReport.ProjectId, this.CurrUser.UserId, "修改硬度检测报告信息");
}
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.designer.cs b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.designer.cs
index 5f8206b..0710553 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.designer.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotHardManage/HardTestReportEdit.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.HJGL.HotHardManage {
-
-
- public partial class HardTestReportEdit {
-
+namespace FineUIPro.Web.HJGL.HotHardManage
+{
+
+
+ public partial class HardTestReportEdit
+ {
+
///
/// form1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// panelCenterRegion 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelCenterRegion;
-
+
///
/// Toolbar2 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// hdItemsString 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdItemsString;
-
+
///
/// ToolbarFill1 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// btnSave 控件。
///
@@ -83,7 +85,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSave;
-
+
///
/// SimpleForm1 控件。
///
@@ -92,7 +94,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form SimpleForm1;
-
+
///
/// drpUnit 控件。
///
@@ -101,7 +103,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnit;
-
+
///
/// txtHardTestReportCode 控件。
///
@@ -110,7 +112,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtHardTestReportCode;
-
+
///
/// txtIsoNo 控件。
///
@@ -119,7 +121,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtIsoNo;
-
+
///
/// txtContractUnit 控件。
///
@@ -128,7 +130,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtContractUnit;
-
+
///
/// txtIsoNo2 控件。
///
@@ -137,7 +139,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtIsoNo2;
-
+
///
/// txtDesc 控件。
///
@@ -146,7 +148,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtDesc;
-
+
///
/// ddlSTE 控件。
///
@@ -155,7 +157,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlSTE;
-
+
///
/// txtHotProessState 控件。
///
@@ -164,7 +166,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtHotProessState;
-
+
///
/// txtSurfaceAppearance 控件。
///
@@ -173,7 +175,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtSurfaceAppearance;
-
+
///
/// txtTestMethod 控件。
///
@@ -182,7 +184,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTestMethod;
-
+
///
/// txtTestStandard 控件。
///
@@ -191,7 +193,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTestStandard;
-
+
///
/// txtMaterialStandard 控件。
///
@@ -200,7 +202,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtMaterialStandard;
-
+
///
/// drpEquipment 控件。
///
@@ -209,7 +211,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpEquipment;
-
+
///
/// txtTestRate 控件。
///
@@ -218,7 +220,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTestRate;
-
+
///
/// txtTestCount 控件。
///
@@ -227,7 +229,16 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTestCount;
-
+
+ ///
+ /// txtExecStandard 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtExecStandard;
+
///
/// Grid1 控件。
///
@@ -236,7 +247,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// Toolbar1 控件。
///
@@ -245,7 +256,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// btnClearRow 控件。
///
@@ -254,7 +265,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnClearRow;
-
+
///
/// nbHardNessValue1 控件。
///
@@ -263,7 +274,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox nbHardNessValue1;
-
+
///
/// nbHardNessValue2 控件。
///
@@ -272,7 +283,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox nbHardNessValue2;
-
+
///
/// nbHardNessValue3 控件。
///
@@ -281,7 +292,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox nbHardNessValue3;
-
+
///
/// txtRemark 控件。
///
@@ -290,7 +301,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemark;
-
+
///
/// Window1 控件。
///
@@ -299,7 +310,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Window Window1;
-
+
///
/// Menu1 控件。
///
@@ -308,7 +319,7 @@ namespace FineUIPro.Web.HJGL.HotHardManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Menu Menu1;
-
+
///
/// btnMenuDelete 控件。
///
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfo.aspx b/HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfo.aspx
index 8ad928e..4c6cd00 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfo.aspx
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/WeldingManage/JointInfo.aspx
@@ -58,6 +58,8 @@
+
+
@@ -102,12 +104,13 @@
+ OnRowDoubleClick="Grid1_RowDoubleClick" OnRowDataBound="Grid1_RowDataBound"
+ EnableCheckBoxSelect="true" EnableMultiSelect="true">
<%----%>
@@ -300,6 +303,10 @@
Target="Parent" EnableResize="true" runat="server" IsModal="true" OnClose="Window8_Close"
Width="600px" Height="300px">
+
+