From 0f98e28a13d1f3fd94beba22b2142af385f3f24c Mon Sep 17 00:00:00 2001
From: wendy <408182087@qq.com>
Date: Thu, 12 Feb 2026 22:31:54 +0800
Subject: [PATCH] =?UTF-8?q?20260212=20=E6=94=AF=E7=AE=A1=E8=BF=9E=E6=8E=A5?=
=?UTF-8?q?=E7=84=8A=E6=8E=A5=E6=8E=A5=E5=A4=B4=E3=80=81=E8=A7=92=E7=84=8A?=
=?UTF-8?q?=E6=8E=A5=E5=A4=B4=E7=BB=84=E5=AF=B9=E7=84=8A=E6=8E=A5=E6=A3=80?=
=?UTF-8?q?=E6=9F=A5=E8=AE=B0=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../WeldingManage/HJGL_PW_JointInfoService.cs | 14 +
.../JGZL/TeamWeldingInspectionItemService.cs | 11 +
.../BLL/JGZL/TeamWeldingInspectionService.cs | 10 +
...连接焊接接头、角焊接头组对焊接检查记录.frx | 4 +-
.../Fastreport/JGZL/管道焊口检测委托单.frx | 128 +--
.../JGZL/TeamWeldingInspection.aspx | 159 +++-
.../JGZL/TeamWeldingInspection.aspx.cs | 883 +++++++++++-------
.../TeamWeldingInspection.aspx.designer.cs | 181 +++-
8 files changed, 938 insertions(+), 452 deletions(-)
diff --git a/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs b/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs
index b763fe1..d27f5f6 100644
--- a/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs
+++ b/HJGL_DS/BLL/HJGL/WeldingManage/HJGL_PW_JointInfoService.cs
@@ -1339,5 +1339,19 @@ namespace BLL
{
return (from x in Funs.DB.HJGL_PW_JointInfo where x.ISO_ID == iso_id select x).Count();
}
+
+ ///
+ /// 根据项目Id获取支管连接焊缝和角焊缝
+ ///
+ ///
+ ///
+ public static List GetJointInfoByProjectId(string projectId)
+ {
+ return (from x in Funs.DB.HJGL_PW_JointInfo
+ join y in Funs.DB.HJGL_BS_JointType on x.JOTY_ID equals y.JOTY_ID
+ where x.ProjectId == projectId
+ && (y.JOTY_Name.Contains("支管连接焊缝") || y.JOTY_Name.Contains("角焊缝"))
+ select x).ToList();
+ }
}
}
diff --git a/HJGL_DS/BLL/JGZL/TeamWeldingInspectionItemService.cs b/HJGL_DS/BLL/JGZL/TeamWeldingInspectionItemService.cs
index 1697313..4368b3c 100644
--- a/HJGL_DS/BLL/JGZL/TeamWeldingInspectionItemService.cs
+++ b/HJGL_DS/BLL/JGZL/TeamWeldingInspectionItemService.cs
@@ -32,6 +32,17 @@ namespace BLL
return (from x in Funs.DB.JGZL_TeamWeldingInspectionItem where x.TeamWeldingInspectionId == teamWeldingInspectionId select x).ToList();
}
+ ///
+ /// 根据管线号、焊口号获取支管连接焊接接头、角焊接头组对焊接检查记录
+ ///
+ ///
+ ///
+ ///
+ public static Model.JGZL_TeamWeldingInspectionItem GetTeamWeldingInspectionItemByIsoNoAndJointNo(string isoNo,string jotNo)
+ {
+ return Funs.DB.JGZL_TeamWeldingInspectionItem.FirstOrDefault(e => e.PipelineNo == isoNo && e.WeldingJointNo == jotNo);
+ }
+
///
/// 添加
///
diff --git a/HJGL_DS/BLL/JGZL/TeamWeldingInspectionService.cs b/HJGL_DS/BLL/JGZL/TeamWeldingInspectionService.cs
index b390c25..8c578a3 100644
--- a/HJGL_DS/BLL/JGZL/TeamWeldingInspectionService.cs
+++ b/HJGL_DS/BLL/JGZL/TeamWeldingInspectionService.cs
@@ -23,6 +23,16 @@ namespace BLL
return Funs.DB.JGZL_TeamWeldingInspection.FirstOrDefault(e => e.TeamWeldingInspectionId == teamWeldingInspectionId);
}
+ ///
+ /// 根据项目Id获取支管连接焊接接头、角焊接头组对焊接检查记录主表
+ ///
+ ///
+ ///
+ public static Model.JGZL_TeamWeldingInspection GetTeamWeldingInspectionByProjectId(string projectId)
+ {
+ return Funs.DB.JGZL_TeamWeldingInspection.FirstOrDefault(e => e.ProjectId == projectId);
+ }
+
///
/// 添加
///
diff --git a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/支管连接焊接接头、角焊接头组对焊接检查记录.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/支管连接焊接接头、角焊接头组对焊接检查记录.frx
index 7fb1a51..251c29d 100644
--- a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/支管连接焊接接头、角焊接头组对焊接检查记录.frx
+++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/支管连接焊接接头、角焊接头组对焊接检查记录.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/JGZL/管道焊口检测委托单.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/管道焊口检测委托单.frx
index c9ddb74..2d5e8c9 100644
--- a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/管道焊口检测委托单.frx
+++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/管道焊口检测委托单.frx
@@ -1,5 +1,5 @@
-
+
using System;
using System.Collections;
using System.Collections.Generic;
@@ -42,7 +42,7 @@ namespace FastReport
}
-
+
@@ -68,27 +68,27 @@ namespace FastReport
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
@@ -131,7 +131,7 @@ namespace FastReport
-
+
@@ -208,21 +208,21 @@ namespace FastReport
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -240,22 +240,22 @@ namespace FastReport
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -274,21 +274,21 @@ namespace FastReport
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
-
+
+
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/TeamWeldingInspection.aspx b/HJGL_DS/FineUIPro.Web/JGZL/TeamWeldingInspection.aspx
index e70e7bc..bec998a 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/TeamWeldingInspection.aspx
+++ b/HJGL_DS/FineUIPro.Web/JGZL/TeamWeldingInspection.aspx
@@ -37,9 +37,11 @@
+
+
@@ -49,15 +51,15 @@
+ SortField="CheckDate,PipelineNo,WeldingJointNo" SortDirection="ASC" OnPreDataBound="Grid1_PreDataBound"
+ EnableTextSelection="True" AutoScroll="true">
-
-
-
+
+
+
+
@@ -66,26 +68,125 @@
-
-
-
-
-
-
-
-
+ FieldType="Date" Renderer="Date" RendererArgument="yyyy-MM-dd" HeaderTextAlign="Center" TextAlign="Left" Width="100px">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+ <%--
-
-
+ --%>
+ <%--
@@ -97,36 +198,36 @@
-
+ --%>
-
-
+ --%>
- --%>
-
+ --%>