diff --git a/DataBase/hjglDB_7_2024.06.25.rar b/DataBase/hjglDB_7_2024.06.25.rar new file mode 100644 index 0000000..b389741 Binary files /dev/null and b/DataBase/hjglDB_7_2024.06.25.rar differ diff --git a/DataBase/hjglDB_7_2024.06.26.rar b/DataBase/hjglDB_7_2024.06.26.rar new file mode 100644 index 0000000..fe83b40 Binary files /dev/null and b/DataBase/hjglDB_7_2024.06.26.rar differ diff --git a/HJGL/.vs/HJGL/v17/.suo b/HJGL/.vs/HJGL/v17/.suo index 14cef6a..7c52e7a 100644 Binary files a/HJGL/.vs/HJGL/v17/.suo and b/HJGL/.vs/HJGL/v17/.suo differ diff --git a/HJGL/BLL/WeldingProcess/TrustManage/Batch_BatchTrustItemService.cs b/HJGL/BLL/WeldingProcess/TrustManage/Batch_BatchTrustItemService.cs index 2447db9..98a0a11 100644 --- a/HJGL/BLL/WeldingProcess/TrustManage/Batch_BatchTrustItemService.cs +++ b/HJGL/BLL/WeldingProcess/TrustManage/Batch_BatchTrustItemService.cs @@ -100,7 +100,33 @@ namespace BLL Model.Batch_BatchTrustItem update = db.Batch_BatchTrustItem.FirstOrDefault(e => e.TrustBatchItemId == trustBatchItemId); if (update != null) { - update.IsCancelTrust = isCancelTrust; + var updatePoint = db.Batch_PointBatchItem.FirstOrDefault(e => e.PointBatchItemId == update.PointBatchItemId); + if (updatePoint != null) + { + updatePoint.PointDate = null; + updatePoint.PointState = null; + updatePoint.CutDate = null;////更新批明细 切除日期 + updatePoint.IsBuildTrust = null; + updatePoint.JLAudit = null; + updatePoint.GLGSAudit = null; + updatePoint.QTAudit = null; + } + var item = from x in db.Batch_BatchTrustItem where x.TrustBatchId == update.TrustBatchId select x; + // 表示这个批里只有它一条明细,删除主表 + if (item.Count() == 1) + { + Model.Batch_BatchTrust delTrust = db.Batch_BatchTrust.FirstOrDefault(x => x.TrustBatchId == update.TrustBatchId); + db.Batch_BatchTrustItem.DeleteOnSubmit(update); + if (delTrust != null) + { + db.Batch_BatchTrust.DeleteOnSubmit(delTrust); + } + } + else + { + db.Batch_BatchTrustItem.DeleteOnSubmit(update); + } + //update.IsCancelTrust = isCancelTrust; db.SubmitChanges(); } } diff --git a/HJGL/FineUIPro.Web/FineUIPro.Web.csproj.user b/HJGL/FineUIPro.Web/FineUIPro.Web.csproj.user index 8d0cdf2..0baedd9 100644 --- a/HJGL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/HJGL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -2,7 +2,7 @@ ProjectFiles - Debug|Any CPU + Release|Any CPU true diff --git a/HJGL/FineUIPro.Web/Web.config b/HJGL/FineUIPro.Web/Web.config index baa8804..23f0894 100644 --- a/HJGL/FineUIPro.Web/Web.config +++ b/HJGL/FineUIPro.Web/Web.config @@ -23,7 +23,7 @@ - + diff --git a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/NDTTrustPrint.aspx.cs b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/NDTTrustPrint.aspx.cs index c2fd1c4..7d2a107 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/NDTTrustPrint.aspx.cs +++ b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/NDTTrustPrint.aspx.cs @@ -535,7 +535,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage //行0 CellRangeAddress region = new CellRangeAddress(rowIndex, rowIndex + 3, 0, 2); ws.AddMergedRegion(region); - ws.GetRow(rowIndex).GetCell(0).SetCellValue(tbTitle.Rows[0]["PipelineCode"].ToString()); + ws.GetRow(rowIndex).GetCell(0).SetCellValue("NDE-001"); ws.GetRow(rowIndex).GetCell(0).CellStyle = style; ws.GetRow(rowIndex).GetCell(1).CellStyle = style; ws.GetRow(rowIndex).GetCell(2).CellStyle = style; @@ -561,7 +561,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage //行1 region = new CellRangeAddress(rowIndex + 1, rowIndex + 1, 10, 12); ws.AddMergedRegion(region); - ws.GetRow(rowIndex + 1).GetCell(10).SetCellValue("EnProjectName"); + ws.GetRow(rowIndex + 1).GetCell(10).SetCellValue(tbTitle.Rows[0]["EnProjectName"].ToString()); ws.GetRow(rowIndex + 1).GetCell(10).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.None, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.None, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false); ws.GetRow(rowIndex + 1).GetCell(11).CellStyle = styleNone; ws.GetRow(rowIndex + 1).GetCell(12).CellStyle = styleNone; @@ -577,7 +577,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage //行3 region = new CellRangeAddress(rowIndex + 3, rowIndex + 3, 10, 12); ws.AddMergedRegion(region); - ws.GetRow(rowIndex + 3).GetCell(10).SetCellValue("EnWorkAreaName"); + ws.GetRow(rowIndex + 3).GetCell(10).SetCellValue(tbTitle.Rows[0]["EnWorkAreaName"].ToString()); ws.GetRow(rowIndex + 3).GetCell(10).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.None, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false); ws.GetRow(rowIndex + 3).GetCell(11).CellStyle = styleTop; ws.GetRow(rowIndex + 3).GetCell(12).CellStyle = styleTop; @@ -617,7 +617,15 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage ws.GetRow(rowIndex + 6).GetCell(6).SetCellValue("表面状态"); region = new CellRangeAddress(rowIndex + 6, rowIndex + 6, 8, 12); ws.AddMergedRegion(region); - ws.GetRow(rowIndex + 6).GetCell(8).SetCellValue(tbTitle.Rows[0]["SurfaceState"].ToString()); + if (tbTitle.Rows[0]["SurfaceState"].ToString() == "") + { + ws.GetRow(rowIndex + 6).GetCell(8).SetCellValue("打麿"); + } + else + { + ws.GetRow(rowIndex + 6).GetCell(8).SetCellValue(tbTitle.Rows[0]["SurfaceState"].ToString()); + } + //行7 ws.GetRow(rowIndex + 7).GetCell(0).SetCellValue("检测标准"); @@ -668,7 +676,15 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage ws.GetRow(rowIndex + 11).GetCell(0).SetCellValue("检测时机"); region = new CellRangeAddress(rowIndex + 11, rowIndex + 11, 1, 12); ws.AddMergedRegion(region); - ws.GetRow(rowIndex + 11).GetCell(1).SetCellValue(tbTitle.Rows[0]["DetectionTiming"].ToString()); + if (tbTitle.Rows[0]["DetectionTiming"].ToString() == "") + { + ws.GetRow(rowIndex + 11).GetCell(1).SetCellValue("焊后"); + } + else + { + ws.GetRow(rowIndex + 11).GetCell(1).SetCellValue(tbTitle.Rows[0]["DetectionTiming"].ToString()); + } + ws.GetRow(rowIndex + 11).GetCell(1).CellStyle = CommonPrint.SetExcelStyle(hssfworkbook, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, BorderStyle.Thin, VerticalAlignment.Center, HorizontalAlignment.Justify, 10.5, true, false); //行12 @@ -795,9 +811,24 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage ws.GetRow(rowIndex + 3).GetCell(5).SetCellValue("专业/质量工程师:"); ws.GetRow(rowIndex + 3).GetCell(7).SetCellValue("业主代表:"); ws.GetRow(rowIndex + 3).GetCell(11).SetCellValue("接收人:"); - //尾部行4 - ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit); - ws.GetRow(rowIndex + 4).GetCell(3).SetCellValue(GLGSAudit); + // 尾部行4 + //插入签名图片 + if (!string.IsNullOrEmpty(getJLInfo.Item1)) + { + InsertImage(hssfworkbook, ws, rowIndex + 4, 2, rowIndex + 4, 4, Server.MapPath(getJLInfo.Item1), 1, 1, 10); + } + else + { + ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit); + } + if (!string.IsNullOrEmpty(getGLGSInfo.Item1)) + { + InsertImage(hssfworkbook, ws, rowIndex + 4, 5, rowIndex + 4, 6, Server.MapPath(getJLInfo.Item1), 1, 8); + } + else + { + ws.GetRow(rowIndex + 4).GetCell(5).SetCellValue(GLGSAudit); + } //尾部行6 ws.GetRow(rowIndex + 6).GetCell(0).SetCellValue("专业工程师:"); //尾部行8 @@ -811,16 +842,6 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage ws.GetRow(rowIndex + 8).GetCell(7).SetCellValue(" 年 月 日"); ws.GetRow(rowIndex + 8).GetCell(11).SetCellValue(" 年 月 日"); //尾部行9 - - //插入签名图片 - if (!string.IsNullOrEmpty(getJLInfo.Item1)) - { - InsertImage(hssfworkbook, ws, rowIndex + 6, 2, rowIndex + 6, 4, Server.MapPath(getJLInfo.Item1), 1, 1, 10); - } - if (!string.IsNullOrEmpty(getGLGSInfo.Item1)) - { - InsertImage(hssfworkbook, ws, rowIndex + 6, 5, rowIndex + 6, 6, Server.MapPath(getJLInfo.Item1), 1, 8); - } #endregion ws = WsExcelCreateRow(ws, hssfworkbook, rowIndex + 11, rowIndex + 11, style, 0, 12, 3, true); diff --git a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointForAudit.aspx.cs b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointForAudit.aspx.cs index b9b267d..679d7f4 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointForAudit.aspx.cs +++ b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointForAudit.aspx.cs @@ -30,7 +30,8 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage (CASE WHEN IsWelderFirst=1 THEN '是' ELSE '否' END) AS IsWelderFirst, JLAudit,GLGSAudit,QTAudit,IsPointAudit FROM dbo.View_Batch_PointBatchItem - WHERE PointState IS NOT NULL AND TrustBatchItemId IS NULL"; + WHERE PointState IS NOT NULL AND TrustBatchItemId IS NULL + AND PointDate>'2024-06-24 23:59:59'"; List listStr = new List(); if (!string.IsNullOrEmpty(this.txtPipeCode.Text)) { diff --git a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx index fc7b307..f9456b7 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx +++ b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx @@ -47,14 +47,24 @@ + + + + + + + + - + <%-- = sar && x.WeldingDate < end select x; + if (drpTrustState.SelectedValue == "0") + { + pitem = pitem.Where(x => x.PointDate.HasValue && (x.IsBuildTrust == null || x.IsBuildTrust == false)); + } + if (pitem.Count() > 0) { + TreeNode tn2 = new TreeNode { NodeID = p.PointBatchId, @@ -341,6 +347,10 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage var q = from x in Funs.DB.Batch_PointBatchItem where x.PointBatchId == item.PointBatchId && x.WeldingDate >= sar && x.WeldingDate < end select x; + if (drpTrustState.SelectedValue == "0") + { + q = q.Where(x => x.PointDate.HasValue && (x.IsBuildTrust == null || x.IsBuildTrust == false)); + } if (q.Count() > 0) { TreeNode newNode = new TreeNode @@ -896,8 +906,8 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage select new PointBatchList { PointBatchItemId = x.PointBatchItemId, JointAttribute = y.JointAttribute }).ToList(); // 未处理固定焊口 - List GJot = jotList.Where(x=>x.JointAttribute == "固定F").ToList(); - + List GJot = jotList.Where(x => x.JointAttribute == "固定F").ToList(); + if (Convert.ToInt32(r["DetectionRateValue"]) != 0) { // 批中一段的数量 @@ -1050,8 +1060,8 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage int modelNum = jotList.Count() % dnum; // 取整 double doubleNum = Math.Ceiling((double)jotList.Count() / (double)dnum); - int intNum=Convert.ToInt32(doubleNum); - + int intNum = Convert.ToInt32(doubleNum); + for (int i = 0; i < intNum; i++) { if (modelNum == 0) @@ -1135,6 +1145,12 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage } } + ShowNotify("批量点口完成", MessageBoxIcon.Success); + } + else + { + ShowNotify("已无待处理焊口", MessageBoxIcon.Warning); + return; } } else @@ -1657,6 +1673,9 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage pointBatchItem.PointState = null; pointBatchItem.CutDate = null;////更新批明细 切除日期 pointBatchItem.IsBuildTrust = null; + pointBatchItem.JLAudit= null; + pointBatchItem.GLGSAudit= null; + pointBatchItem.QTAudit= null; db.SubmitChanges(); var trust = db.Batch_BatchTrustItem.FirstOrDefault(p => p.PointBatchItemId == pointBatchItemId); diff --git a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx.designer.cs b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx.designer.cs index 89e6ab3..8345591 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx.designer.cs +++ b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/PointManage.aspx.designer.cs @@ -68,6 +68,24 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage /// protected global::FineUIPro.DropDownList drpTrust; + /// + /// Toolbar7 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar7; + + /// + /// drpTrustState 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList drpTrustState; + /// /// Toolbar3 控件。 /// diff --git a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchManage.aspx.cs b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchManage.aspx.cs index 85097e1..61f4190 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchManage.aspx.cs +++ b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchManage.aspx.cs @@ -1340,8 +1340,23 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage ws.GetRow(rowIndex + 3).GetCell(11).SetCellValue("接收人:"); // 尾部行4 - ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit); - ws.GetRow(rowIndex + 4).GetCell(5).SetCellValue(GLGSAudit); + //插入签名图片 + if (!string.IsNullOrEmpty(getJLInfo.Item1)) + { + InsertImage(hssfworkbook, ws, rowIndex + 4, 2, rowIndex + 4, 4, Server.MapPath(getJLInfo.Item1), 1, 1, 10); + } + else + { + ws.GetRow(rowIndex + 4).GetCell(2).SetCellValue(JLAudit); + } + if (!string.IsNullOrEmpty(getGLGSInfo.Item1)) + { + InsertImage(hssfworkbook, ws, rowIndex + 4, 5, rowIndex + 4, 6, Server.MapPath(getJLInfo.Item1), 1, 8); + } + else + { + ws.GetRow(rowIndex + 4).GetCell(5).SetCellValue(GLGSAudit); + } //尾部行6 ws.GetRow(rowIndex + 6).GetCell(0).SetCellValue("专业工程师:"); @@ -1355,15 +1370,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage } ws.GetRow(rowIndex + 8).GetCell(7).SetCellValue(" 年 月 日"); ws.GetRow(rowIndex + 8).GetCell(11).SetCellValue(" 年 月 日"); - //插入签名图片 - if (!string.IsNullOrEmpty(getJLInfo.Item1)) - { - InsertImage(hssfworkbook, ws, rowIndex + 6, 2, rowIndex + 6, 4, Server.MapPath(getJLInfo.Item1), 1, 1,10); - } - if (!string.IsNullOrEmpty(getGLGSInfo.Item1)) - { - InsertImage(hssfworkbook, ws, rowIndex + 6, 5, rowIndex + 6, 6, Server.MapPath(getJLInfo.Item1), 1, 8); - } + //尾部行9 #endregion diff --git a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchSelect.aspx b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchSelect.aspx index a46b181..b1a2873 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchSelect.aspx +++ b/HJGL/FineUIPro.Web/WeldingProcess/TrustManage/TrustBatchSelect.aspx @@ -48,16 +48,17 @@ + + - + - - + @@ -66,10 +67,10 @@ HeaderText="<%$ Resources:Lan,RequestSheetNumber %>" HeaderTextAlign="Center" TextAlign="Left" SortField="TrustBatchCode"> - - + --%> @@ -78,10 +79,10 @@ HeaderText="<%$ Resources:Lan,WeldingJointNumber %>" HeaderTextAlign="Center" TextAlign="Left" SortField="WeldJointCode"> - - + --%> - + - + + + SortField="WeldingMethodCode" FieldType="String"> - + + //------------------------------------------------------------------------------ -namespace FineUIPro.Web.WeldingProcess.TrustManage { - - - public partial class TrustBatchSelect { - +namespace FineUIPro.Web.WeldingProcess.TrustManage +{ + + + public partial class TrustBatchSelect + { + /// /// form1 控件。 /// @@ -20,7 +22,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; - + /// /// PageManager1 控件。 /// @@ -29,7 +31,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.PageManager PageManager1; - + /// /// Panel1 控件。 /// @@ -38,7 +40,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// Grid1 控件。 /// @@ -47,7 +49,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid1; - + /// /// Toolbar1 控件。 /// @@ -56,7 +58,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// drpInstallation 控件。 /// @@ -65,7 +67,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpInstallation; - + /// /// txtTrustBatchCode 控件。 /// @@ -74,7 +76,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtTrustBatchCode; - + /// /// txtTrustDate 控件。 /// @@ -83,7 +85,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtTrustDate; - + /// /// txtPipeLineCode 控件。 /// @@ -92,7 +94,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPipeLineCode; - + /// /// ToolbarFill2 控件。 /// @@ -101,7 +103,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill2; - + /// /// Toolbar2 控件。 /// @@ -110,7 +112,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar2; - + /// /// txtWeldJointCode 控件。 /// @@ -119,7 +121,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtWeldJointCode; - + /// /// txtWelderCode 控件。 /// @@ -128,7 +130,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtWelderCode; - + /// /// ckbFirstTwo 控件。 /// @@ -137,34 +139,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.CheckBox ckbFirstTwo; - - /// - /// BtnAnalyse 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.Button BtnAnalyse; - - /// - /// btnOut 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.Button btnOut; - - /// - /// btnExport 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.Button btnExport; - + /// /// ToolbarFill1 控件。 /// @@ -173,7 +148,34 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + + /// + /// BtnAnalyse 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button BtnAnalyse; + + /// + /// btnOut 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnOut; + + /// + /// btnExport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnExport; + /// /// ToolbarSeparator1 控件。 /// @@ -182,7 +184,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; - + /// /// ToolbarText1 控件。 /// @@ -191,7 +193,7 @@ namespace FineUIPro.Web.WeldingProcess.TrustManage { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarText ToolbarText1; - + /// /// ddlPageSize 控件。 /// diff --git a/HJGL/FineUIPro.Web/WeldingProcess/WeldingReport/WeldDailyExport.aspx b/HJGL/FineUIPro.Web/WeldingProcess/WeldingReport/WeldDailyExport.aspx index 01fcda0..67a75c6 100644 --- a/HJGL/FineUIPro.Web/WeldingProcess/WeldingReport/WeldDailyExport.aspx +++ b/HJGL/FineUIPro.Web/WeldingProcess/WeldingReport/WeldDailyExport.aspx @@ -41,7 +41,7 @@ LabelWidth="90px"> + LabelAlign="Right" Width="200px" LabelWidth="80px"> diff --git a/HJGL/Model/Model.cs b/HJGL/Model/Model.cs index 12f69ba..71bd9c3 100644 --- a/HJGL/Model/Model.cs +++ b/HJGL/Model/Model.cs @@ -29,6 +29,10 @@ namespace Model #region 可扩展性方法定义 partial void OnCreated(); + partial void OnCreated() + { + this.CommandTimeout = 600; + } partial void InsertAttachFile(AttachFile instance); partial void UpdateAttachFile(AttachFile instance); partial void DeleteAttachFile(AttachFile instance); diff --git a/HJGL/WebApi/WebApi.csproj.user b/HJGL/WebApi/WebApi.csproj.user index 6db81e9..33091aa 100644 --- a/HJGL/WebApi/WebApi.csproj.user +++ b/HJGL/WebApi/WebApi.csproj.user @@ -8,7 +8,7 @@ - Debug|Any CPU + Release|Any CPU FolderProfile diff --git a/HJGL/WebApi/obj/Release/WebApi.csproj.AssemblyReference.cache b/HJGL/WebApi/obj/Release/WebApi.csproj.AssemblyReference.cache index d0868e3..9671693 100644 Binary files a/HJGL/WebApi/obj/Release/WebApi.csproj.AssemblyReference.cache and b/HJGL/WebApi/obj/Release/WebApi.csproj.AssemblyReference.cache differ