From 5f2cfadc3a892ef54186b0d11a489c672d30ab03 Mon Sep 17 00:00:00 2001
From: wendy <408182087@qq.com>
Date: Tue, 12 May 2026 09:27:51 +0800
Subject: [PATCH] =?UTF-8?q?20260512=20=E6=97=A0=E6=8D=9F=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E5=A7=94=E6=89=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
HJGL_DS/BLL/DropListService.cs | 26 ++
.../WeldingManage/HJGL_WeldReportService.cs | 6 +-
.../CommissionRepairPrint.aspx.cs | 2 +
.../ContinuousPrint/TestOrderPrint.aspx.cs | 2 +
.../File/Fastreport/管道焊口检测委托单.frx | 4 +-
.../File/Fastreport/管道焊缝检测委托单.frx | 135 +++---
.../FineUIPro.Web/FineUIPro.Web.csproj.user | 2 +-
.../RepairManage/RepairManageEdit.aspx.cs | 2 +
.../HJGL/TrustManage/TrustManageEdit.aspx.cs | 2 +
.../HJGL/WeldingManage/WeldReportEdit.aspx | 420 ++++++++++--------
.../HJGL/WeldingManage/WeldReportEdit.aspx.cs | 1 +
.../WeldReportEdit.aspx.designer.cs | 84 ++--
HJGL_DS/FineUIPro.Web/Web.config | 2 +-
HJGL_DS/Model/HJGL/HJGL_SpRpWeldReportItem.cs | 9 +
HJGL_DS/WebAPI/WebAPI.csproj.user | 2 +-
15 files changed, 390 insertions(+), 309 deletions(-)
diff --git a/HJGL_DS/BLL/DropListService.cs b/HJGL_DS/BLL/DropListService.cs
index 46cc96d..4a30dd8 100644
--- a/HJGL_DS/BLL/DropListService.cs
+++ b/HJGL_DS/BLL/DropListService.cs
@@ -600,6 +600,32 @@
return list;
}
+ public static ListItem[] HJGL_JOT_LocationItemG()
+ {
+ ListItem[] list = new ListItem[2];
+ list[0] = new ListItem("2G", "2G");
+ list[1] = new ListItem("5G", "5G");
+ return list;
+ }
+ public static ListItem[] HJGL_JOT_LocationItemH()
+ {
+ ListItem[] list = new ListItem[13];
+ list[0] = new ListItem("1G", "1G");
+ list[1] = new ListItem("3G", "3G");
+ list[2] = new ListItem("4G", "4G");
+ list[3] = new ListItem("6G", "6G");
+ list[4] = new ListItem("1F", "1F");
+ list[5] = new ListItem("2F", "2F");
+ list[6] = new ListItem("2FG", "2FG");
+ list[7] = new ListItem("2FR", "2FR");
+ list[8] = new ListItem("2FRG", "2FRG");
+ list[9] = new ListItem("4F", "4F");
+ list[10] = new ListItem("5F", "5F");
+ list[11] = new ListItem("5FG", "5FG");
+ list[12] = new ListItem("5FRG", "5FRG");
+ return list;
+ }
+
///
/// 合格等级
///
diff --git a/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_WeldReportService.cs b/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_WeldReportService.cs
index 4e6451b..a6fe082 100644
--- a/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_WeldReportService.cs
+++ b/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_WeldReportService.cs
@@ -340,6 +340,7 @@ namespace BLL
newWeldReportItem.JOT_JointAttribute = jotInfo.JOT_JointAttribute;
var joty = BLL.HJGL_WeldService.GetJointTypeByID(jotInfo.JOTY_ID);
+ newWeldReportItem.JOTY_Group = joty.JOTY_Group;
if (jotInfo.JOT_JointAttribute == "固定")
{
@@ -347,6 +348,10 @@ namespace BLL
{
newWeldReportItem.JOT_Location = "5F";
}
+ else if(joty != null && joty.JOTY_Group == "1")
+ {
+ newWeldReportItem.JOT_Location = "2G";
+ }
else
{
newWeldReportItem.JOT_Location = "5G";
@@ -363,7 +368,6 @@ namespace BLL
newWeldReportItem.JOT_Location = "1G";
}
}
-
newWeldReportItem.JOT_Size = jotInfo.JOT_Size;
newWeldReportItem.JOT_DoneDin = jotInfo.JOT_Size;
newWeldReportItem.JOT_Dia = jotInfo.JOT_Dia;
diff --git a/HJGL_DS/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs b/HJGL_DS/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs
index 7da50ff..5d8439a 100644
--- a/HJGL_DS/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/ContinuousPrint/CommissionRepairPrint.aspx.cs
@@ -228,6 +228,7 @@ namespace FineUIPro.Web.ContinuousPrint
dt.Columns.Add("CH_NDTCriteria");
dt.Columns.Add("NDTR_Name");
dt.Columns.Add("AcceptGrade");
+ dt.Columns.Add("CH_TrustDate");
DataRow[] rows = tbTitle.DefaultView.ToTable().Select();
foreach (var row in rows)
@@ -298,6 +299,7 @@ namespace FineUIPro.Web.ContinuousPrint
{
newRow["CH_NDTCriteria"] = row["CH_NDTCriteria"].ToString();
}
+ newRow["CH_TrustDate"] = row["RepairTrustDate"].ToString();
dt.Rows.Add(newRow);
}
BLL.Common.FastReportService.AddFastreportTable(dt);
diff --git a/HJGL_DS/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs b/HJGL_DS/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs
index d64f488..239f1d2 100644
--- a/HJGL_DS/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs
@@ -229,6 +229,7 @@ namespace FineUIPro.Web.ContinuousPrint
dt.Columns.Add("NDT_Code");
dt.Columns.Add("AcceptGrade");
dt.Columns.Add("CH_NDTCriteria");
+ dt.Columns.Add("CH_TrustDate");
DataRow[] rows = tbTitle.DefaultView.ToTable().Select();
foreach (var row in rows)
@@ -299,6 +300,7 @@ namespace FineUIPro.Web.ContinuousPrint
{
newRow["CH_NDTCriteria"] = row["CH_NDTCriteria"].ToString();
}
+ newRow["CH_TrustDate"] = row["CH_TrustDate"].ToString();
dt.Rows.Add(newRow);
}
BLL.Common.FastReportService.AddFastreportTable(dt);
diff --git a/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊口检测委托单.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊口检测委托单.frx
index a82fa9d..54f6873 100644
--- a/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊口检测委托单.frx
+++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊口检测委托单.frx
@@ -1,5 +1,5 @@
-
+
using System;
using System.Collections;
using System.Collections.Generic;
@@ -42,7 +42,7 @@ namespace FastReport
}
-
+
diff --git a/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊缝检测委托单.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊缝检测委托单.frx
index 2270db9..3368f82 100644
--- a/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊缝检测委托单.frx
+++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/管道焊缝检测委托单.frx
@@ -1,5 +1,5 @@
-
+
using System;
using System.Collections;
using System.Collections.Generic;
@@ -42,7 +42,7 @@ namespace FastReport
}
-
+
@@ -56,6 +56,7 @@ namespace FastReport
+
@@ -68,15 +69,15 @@ namespace FastReport
-
-
-
-
-
+
+
+
+
+
-
+
@@ -91,17 +92,17 @@ namespace FastReport
-
+
-
-
+
+
-
+
-
-
+
+
@@ -112,7 +113,7 @@ namespace FastReport
-
+
@@ -123,7 +124,7 @@ namespace FastReport
-
+
@@ -134,7 +135,7 @@ namespace FastReport
-
+
@@ -145,7 +146,7 @@ namespace FastReport
-
+
@@ -156,7 +157,7 @@ namespace FastReport
-
+
@@ -169,18 +170,18 @@ namespace FastReport
-
-
+
+
-
+
-
-
+
+
@@ -193,19 +194,19 @@ namespace FastReport
-
-
-
+
+
+
-
+
-
-
+
+
@@ -219,8 +220,8 @@ namespace FastReport
-
-
+
+
@@ -229,8 +230,8 @@ namespace FastReport
-
-
+
+
@@ -239,45 +240,45 @@ namespace FastReport
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user b/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user
index e3436b8..6e29203 100644
--- a/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user
+++ b/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user
@@ -2,7 +2,7 @@
true
- Release|Any CPU
+ Debug|Any CPU
diff --git a/HJGL_DS/FineUIPro.Web/HJGL/RepairManage/RepairManageEdit.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/RepairManage/RepairManageEdit.aspx.cs
index f3e0050..ddacfd2 100644
--- a/HJGL_DS/FineUIPro.Web/HJGL/RepairManage/RepairManageEdit.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/HJGL/RepairManage/RepairManageEdit.aspx.cs
@@ -720,6 +720,7 @@ namespace FineUIPro.Web.HJGL.RepairManage
dt.Columns.Add("NDT_Code");
dt.Columns.Add("AcceptGrade");
dt.Columns.Add("CH_NDTCriteria");
+ dt.Columns.Add("CH_TrustDate");
DataRow[] rows2 = tb2.DefaultView.ToTable().Select();
foreach (var row in rows2)
@@ -748,6 +749,7 @@ namespace FineUIPro.Web.HJGL.RepairManage
newRows["NDT_Code"] = row["NDT_Code"].ToString();
newRows["AcceptGrade"] = row["AcceptGrade"].ToString();
newRows["CH_NDTCriteria"] = row["CH_NDTCriteria"].ToString();
+ newRows["CH_TrustDate"] = row["RepairTrustDate"].ToString();
dt.Rows.Add(newRows);
}
BLL.Common.FastReportService.AddFastreportTable(dt);
diff --git a/HJGL_DS/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs
index 210795d..54f3a5e 100644
--- a/HJGL_DS/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs
@@ -693,6 +693,7 @@ namespace FineUIPro.Web.HJGL.TrustManage
dt.Columns.Add("NDT_Code");
dt.Columns.Add("AcceptGrade");
dt.Columns.Add("CH_NDTCriteria");
+ dt.Columns.Add("CH_TrustDate");
DataRow[] rows2 = tb2.DefaultView.ToTable().Select();
foreach (var row in rows2)
@@ -763,6 +764,7 @@ namespace FineUIPro.Web.HJGL.TrustManage
{
newRows["CH_NDTCriteria"] = row["CH_NDTCriteria"].ToString();
}
+ newRows["CH_TrustDate"] = row["CH_TrustDate"].ToString();
dt.Rows.Add(newRows);
}
BLL.Common.FastReportService.AddFastreportTable(dt);
diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx
index 7466cab..dde7415 100644
--- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx
+++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx
@@ -7,208 +7,212 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs
index d59553d..be18b41 100644
--- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs
+++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
+using System.Web.UI;
using BLL;
using Newtonsoft.Json.Linq;
diff --git a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.designer.cs b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.designer.cs
index d5a8fbd..fad4644 100644
--- a/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.designer.cs
+++ b/HJGL_DS/FineUIPro.Web/HJGL/WeldingManage/WeldReportEdit.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.HJGL.WeldingManage {
-
-
- public partial class WeldReportEdit {
-
+namespace FineUIPro.Web.HJGL.WeldingManage
+{
+
+
+ public partial class WeldReportEdit
+ {
+
///
/// Head1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
+
///
/// form1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// panelCenterRegion 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelCenterRegion;
-
+
///
/// Toolbar2 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// hdItemsString 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdItemsString;
-
+
///
/// ToolbarFill1 控件。
///
@@ -83,7 +85,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// btnSave 控件。
///
@@ -92,7 +94,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSave;
-
+
///
/// SimpleForm1 控件。
///
@@ -101,7 +103,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form SimpleForm1;
-
+
///
/// drpProjectId 控件。
///
@@ -110,7 +112,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpProjectId;
-
+
///
/// drpUnit 控件。
///
@@ -119,7 +121,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnit;
-
+
///
/// txtDailyReportNo 控件。
///
@@ -128,7 +130,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtDailyReportNo;
-
+
///
/// drpCHT_Tabler 控件。
///
@@ -137,7 +139,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpCHT_Tabler;
-
+
///
/// txtCHT_TableDate 控件。
///
@@ -146,7 +148,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtCHT_TableDate;
-
+
///
/// txtJOT_WeldDate 控件。
///
@@ -155,7 +157,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtJOT_WeldDate;
-
+
///
/// txtJOT_Remark 控件。
///
@@ -164,7 +166,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtJOT_Remark;
-
+
///
/// lbAmount 控件。
///
@@ -173,7 +175,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label lbAmount;
-
+
///
/// Grid1 控件。
///
@@ -182,7 +184,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// Toolbar1 控件。
///
@@ -191,7 +193,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// btnDelete 控件。
///
@@ -200,7 +202,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnDelete;
-
+
///
/// ckSelect 控件。
///
@@ -209,7 +211,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button ckSelect;
-
+
///
/// drpCellWelderCode 控件。
///
@@ -218,7 +220,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpCellWelderCode;
-
+
///
/// drpFloorWelderCode 控件。
///
@@ -227,7 +229,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpFloorWelderCode;
-
+
///
/// drpCodeName 控件。
///
@@ -236,7 +238,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpCodeName;
-
+
///
/// drpJointAttribute 控件。
///
@@ -245,7 +247,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpJointAttribute;
-
+
///
/// drpLocation 控件。
///
@@ -254,7 +256,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpLocation;
-
+
///
/// txtDoneDin 控件。
///
@@ -263,7 +265,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox txtDoneDin;
-
+
///
/// txtDia 控件。
///
@@ -272,7 +274,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox txtDia;
-
+
///
/// txtSch 控件。
///
@@ -281,7 +283,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtSch;
-
+
///
/// ddlWME_ID 控件。
///
@@ -290,7 +292,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlWME_ID;
-
+
///
/// Label8 控件。
///
@@ -299,7 +301,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label8;
-
+
///
/// ddlWeldSilk 控件。
///
@@ -308,7 +310,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlWeldSilk;
-
+
///
/// ddlWeldMat 控件。
///
@@ -317,7 +319,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlWeldMat;
-
+
///
/// Window1 控件。
///
@@ -326,7 +328,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Window Window1;
-
+
///
/// Menu1 控件。
///
@@ -335,7 +337,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Menu Menu1;
-
+
///
/// btnMenuDelete 控件。
///
diff --git a/HJGL_DS/FineUIPro.Web/Web.config b/HJGL_DS/FineUIPro.Web/Web.config
index 3c98f31..557f12f 100644
--- a/HJGL_DS/FineUIPro.Web/Web.config
+++ b/HJGL_DS/FineUIPro.Web/Web.config
@@ -67,7 +67,7 @@
-
+
diff --git a/HJGL_DS/Model/HJGL/HJGL_SpRpWeldReportItem.cs b/HJGL_DS/Model/HJGL/HJGL_SpRpWeldReportItem.cs
index 9ae6249..440189a 100644
--- a/HJGL_DS/Model/HJGL/HJGL_SpRpWeldReportItem.cs
+++ b/HJGL_DS/Model/HJGL/HJGL_SpRpWeldReportItem.cs
@@ -290,5 +290,14 @@ namespace Model
get;
set;
}
+
+ ///
+ /// 焊缝类型
+ ///
+ public string JOTY_Group
+ {
+ get;
+ set;
+ }
}
}
diff --git a/HJGL_DS/WebAPI/WebAPI.csproj.user b/HJGL_DS/WebAPI/WebAPI.csproj.user
index 8cd7f1f..ef14066 100644
--- a/HJGL_DS/WebAPI/WebAPI.csproj.user
+++ b/HJGL_DS/WebAPI/WebAPI.csproj.user
@@ -1,7 +1,7 @@
- Release|Any CPU
+ Debug|Any CPU
FolderProfile
true