From 04b42f1813df73221773af27f9ae975fdc22ea5e Mon Sep 17 00:00:00 2001
From: wendy <408182087@qq.com>
Date: Wed, 11 Mar 2026 14:16:45 +0800
Subject: [PATCH] =?UTF-8?q?20260311=20=E9=98=B2=E8=85=90=E5=B7=A5=E7=A8=8B?=
=?UTF-8?q?=E8=B4=A8=E9=87=8F=E9=AA=8C=E6=94=B6=E8=AE=B0=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../版本日志/HJGLDB_DS_2026-03-11_bwj.sql | 40 +
...osionEngineeringInspectionRecordService.cs | 11 +
.../Fastreport/JGZL/防腐工程质量验收记录.frx | 28 +-
...icorrosionEngineeringInspectionRecord.aspx | 239 ++++--
...rrosionEngineeringInspectionRecord.aspx.cs | 778 +++++++++++++-----
...gineeringInspectionRecord.aspx.designer.cs | 119 ++-
...pelineInstallationInspectionRecord.aspx.cs | 3 +-
HJGL_DS/Model/Model.cs | 242 +++++-
8 files changed, 1151 insertions(+), 309 deletions(-)
create mode 100644 DataBase/版本日志/HJGLDB_DS_2026-03-11_bwj.sql
diff --git a/DataBase/版本日志/HJGLDB_DS_2026-03-11_bwj.sql b/DataBase/版本日志/HJGLDB_DS_2026-03-11_bwj.sql
new file mode 100644
index 0000000..49aa628
--- /dev/null
+++ b/DataBase/版本日志/HJGLDB_DS_2026-03-11_bwj.sql
@@ -0,0 +1,40 @@
+
+CREATE TABLE [dbo].[JGZL_AnticorrosionEngineeringInspectionRecordCheckItems](
+ [CheckItemsId] [nvarchar](50) NOT NULL,
+ [AnticorrosionId] [nvarchar](50) NOT NULL,
+ [CheckItem] [nvarchar](150) NULL,
+ [CheckResult] [nvarchar](50) NULL,
+ [Sort] [int] NULL,
+ CONSTRAINT [PK_JGZL_AnticorrosionEngineeringInspectionRecordCheckItems] PRIMARY KEY CLUSTERED
+(
+ [CheckItemsId] ASC
+)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
+) ON [PRIMARY]
+GO
+
+ALTER TABLE [dbo].[JGZL_AnticorrosionEngineeringInspectionRecordCheckItems] WITH CHECK ADD CONSTRAINT [FK_JGZL_AnticorrosionEngineeringInspectionRecordCheckItems_JGZL_AnticorrosionEngineeringInspectionRecord] FOREIGN KEY([AnticorrosionId])
+REFERENCES [dbo].[JGZL_AnticorrosionEngineeringInspectionRecord] ([AnticorrosionId])
+GO
+
+ALTER TABLE [dbo].[JGZL_AnticorrosionEngineeringInspectionRecordCheckItems] CHECK CONSTRAINT [FK_JGZL_AnticorrosionEngineeringInspectionRecordCheckItems_JGZL_AnticorrosionEngineeringInspectionRecord]
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JGZL_AnticorrosionEngineeringInspectionRecordCheckItems', @level2type=N'COLUMN',@level2name=N'CheckItemsId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JGZL_AnticorrosionEngineeringInspectionRecordCheckItems', @level2type=N'COLUMN',@level2name=N'AnticorrosionId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ĿҪ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JGZL_AnticorrosionEngineeringInspectionRecordCheckItems', @level2type=N'COLUMN',@level2name=N'CheckItem'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JGZL_AnticorrosionEngineeringInspectionRecordCheckItems', @level2type=N'COLUMN',@level2name=N'CheckResult'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JGZL_AnticorrosionEngineeringInspectionRecordCheckItems', @level2type=N'COLUMN',@level2name=N'Sort'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ռ¼Ŀ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'JGZL_AnticorrosionEngineeringInspectionRecordCheckItems'
+GO
+
+
diff --git a/HJGL_DS/BLL/JGZL/AnticorrosionEngineeringInspectionRecordService.cs b/HJGL_DS/BLL/JGZL/AnticorrosionEngineeringInspectionRecordService.cs
index 9445c7f..3568bb4 100644
--- a/HJGL_DS/BLL/JGZL/AnticorrosionEngineeringInspectionRecordService.cs
+++ b/HJGL_DS/BLL/JGZL/AnticorrosionEngineeringInspectionRecordService.cs
@@ -17,6 +17,17 @@ namespace BLL
e.AnticorrosionId == anticorrosionId);
}
+ ///
+ /// 根据项目Id获取防腐工程质量验收记录
+ ///
+ ///
+ ///
+ public static Model.JGZL_AnticorrosionEngineeringInspectionRecord GetAnticorrosionReportByProjectId(string projectId)
+ {
+ return Funs.DB.JGZL_AnticorrosionEngineeringInspectionRecord.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 b7a9878..57ed50f 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
}
-
+
@@ -57,6 +57,14 @@ namespace FastReport
+
+
+
+
+
+
+
+
@@ -132,7 +140,7 @@ namespace FastReport
-
+
@@ -140,7 +148,7 @@ namespace FastReport
-
+
@@ -148,7 +156,7 @@ namespace FastReport
-
+
@@ -156,7 +164,7 @@ namespace FastReport
-
+
@@ -164,7 +172,7 @@ namespace FastReport
-
+
@@ -172,7 +180,7 @@ namespace FastReport
-
+
@@ -180,7 +188,7 @@ namespace FastReport
-
+
@@ -188,7 +196,7 @@ namespace FastReport
-
+
diff --git a/HJGL_DS/FineUIPro.Web/JGZL/AnticorrosionEngineeringInspectionRecord.aspx b/HJGL_DS/FineUIPro.Web/JGZL/AnticorrosionEngineeringInspectionRecord.aspx
index d5900a0..3d73cb1 100644
--- a/HJGL_DS/FineUIPro.Web/JGZL/AnticorrosionEngineeringInspectionRecord.aspx
+++ b/HJGL_DS/FineUIPro.Web/JGZL/AnticorrosionEngineeringInspectionRecord.aspx
@@ -4,49 +4,169 @@
-
+
防腐工程质量验收记录
-
-
+ --%>
+
+
+ <%----%>
-
\ No newline at end of file
+