From eb9b17df58e9cf5df2d152a9837cfb7f3bf353b6 Mon Sep 17 00:00:00 2001
From: wendy <408182087@qq.com>
Date: Fri, 22 Mar 2024 15:26:07 +0800
Subject: [PATCH] =?UTF-8?q?20240322=20=E8=B4=A8=E9=87=8F=E6=9C=88=E6=8A=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../版本日志/SGGLDB_WH_2024-03-22-bwj.sql | 45 +
SGGL/BLL/BLL.csproj | 1 +
.../Report_CQMS_MonthReportItemService.cs | 52 +
.../ManageReportNew/MonthReportNewEdit.aspx | 618 +++-
.../MonthReportNewEdit.aspx.cs | 691 +++-
.../MonthReportNewEdit.aspx.designer.cs | 475 ++-
SGGL/FineUIPro.Web/ErrLog.txt | 3177 -----------------
SGGL/FineUIPro.Web/Web.config | 6 +-
SGGL/Model/Model.cs | 736 ++--
9 files changed, 2142 insertions(+), 3659 deletions(-)
create mode 100644 DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql
create mode 100644 SGGL/BLL/CQMS/ManageReport/ReportNew/Report_CQMS_MonthReportItemService.cs
diff --git a/DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql b/DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql
new file mode 100644
index 00000000..7c52ec68
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql
@@ -0,0 +1,45 @@
+
+CREATE TABLE [dbo].[Report_CQMS_MonthReportItem](
+ [Id] [nvarchar](50) NOT NULL,
+ [ReportId] [nvarchar](50) NULL,
+ [ReType] [nvarchar](20) NULL,
+ [ContentName] [nvarchar](50) NULL,
+ [MonthsCount] [int] NULL,
+ [ProjectCount] [int] NULL,
+ [RectificationRate] [nvarchar](50) NULL,
+ [MonthsBackCount] [int] NULL,
+ [TotalNoBackCount] [int] NULL,
+ [Remarks] [nvarchar](500) NULL,
+ CONSTRAINT [PK_Report_CQMS_MonthReportItem] PRIMARY KEY CLUSTERED
+(
+ [Id] ASC
+)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
+) ON [PRIMARY]
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ࣨ1-15.Ѳ2-16.ר3-17.ļϱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'ReType'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'RectificationRate'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ/' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'MonthsBackCount'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ۼδ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'TotalNoBackCount'
+GO
+
+
+ALTER TABLE [dbo].[Report_RowMaterialProblem] DROP CONSTRAINT [FK_Report_RowMaterialProblem_Report_WeekAndMonthReport]
+GO
+
+ALTER TABLE [dbo].[Report_ConstructionProblems] DROP CONSTRAINT [FK_Report_ConstructionProblems_Report_WeekAndMonthReport]
+GO
+
+ALTER TABLE [dbo].[Report_NextQualityControl] DROP CONSTRAINT [FK_Report_NextQualityControl_Report_WeekAndMonthReport]
+GO
+
+ALTER TABLE [dbo].[Report_ConstructionProblems] DROP CONSTRAINT [FK_Report_ConstructionProblems_Base_Unit]
+GO
+
+
diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj
index 75575442..3566682a 100644
--- a/SGGL/BLL/BLL.csproj
+++ b/SGGL/BLL/BLL.csproj
@@ -261,6 +261,7 @@