diff --git a/CreateModel2017.bat b/CreateModel2017.bat index fca280ba..b712b108 100644 --- a/CreateModel2017.bat +++ b/CreateModel2017.bat @@ -27,7 +27,7 @@ REM -------------- @echo. @call "%VS150%" -SqlMetal /views /server:. /user:sa /password:1111 /database:SGGLDB_WH /code:%Model_ROOT%\Model.cs /namespace:Model +SqlMetal /views /server:DESKTOP-1QITK9E\MSSQLSERVER2 /user:sa /password:123 /database:SGGLDB_WH /code:%Model_ROOT%\Model.cs /namespace:Model @ECHO 完成 pause diff --git a/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-11-phf.sql b/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-11-phf.sql new file mode 100644 index 00000000..67407c0d --- /dev/null +++ b/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-11-phf.sql @@ -0,0 +1,66 @@ +--新增施工质量月报(新) +insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +values('4164BF9B-DA7C-4287-AC11-D1EB6A664F57','施工质量月报(新)','CQMS/ManageReportNew/MonthReport.aspx',16,'7ecf0229-8a0b-40ce-8b04-e556f7bd3394','Menu_CQMS',0,1,1) +go +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('D3887FC5-64CE-4622-ABB4-4E5FE7D86814','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','增加',1) +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('0B7B56F9-5FBD-4AE8-8A56-B6B5A7653E5B','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','修改',2) +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('03213986-B14E-4936-98E7-F2EC693B8547','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','删除',3) +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('ADB32469-D940-4FE2-8D11-BE9C046CCE54','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','保存',4) +go + + +CREATE TABLE [dbo].[Report_WeekAndMonthReport_New]( + [Id] [nvarchar](50) NOT NULL, + [ProjectId] [nvarchar](50) NULL, + [StartDate] [datetime] NULL, + [EndDate] [datetime] NULL, + [SortId] [nvarchar](50) NULL, + [CreateDate] [datetime] NULL, + [CreateMan] [nvarchar](50) NULL, + CONSTRAINT [PK_Report_WeekAndMonthReport_New] 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 + +CREATE TABLE [dbo].[Report_TextBoxContent]( + [Id] [nvarchar](50) NOT NULL, + [ReportId] [nvarchar](50) NULL, + [ContentType] [nvarchar](20) NULL, + [ContentText] [nvarchar](1000) NULL, + CONSTRAINT [PK_Report_TextBoxContent] 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'类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_TextBoxContent', @level2type=N'COLUMN',@level2name=N'ContentType' +GO + + + +CREATE TABLE [dbo].[Report_CqmsTarget]( + [Id] [nvarchar](50) NOT NULL, + [ReportId] [nvarchar](50) NULL, + [ProStage] [nvarchar](50) NULL, + [ProDescribe] [nvarchar](200) NULL, + [TargetValue] [nvarchar](50) NULL, + [MonthPer] [nvarchar](50) NULL, + [Remarks] [nvarchar](200) NULL, + [SortId] [int] NULL, + CONSTRAINT [PK_Report_CqmsTarget] 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 + diff --git a/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-18-gaofei.sql b/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-18-gaofei.sql new file mode 100644 index 00000000..348be984 --- /dev/null +++ b/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-18-gaofei.sql @@ -0,0 +1,168 @@ +alter table DriverGoods_GoodsBuyItem add Num nvarchar(50) null +GO + + +ALTER VIEW [dbo].[View_DriverGoods_GoodsBuyItem] +/*试车请购单明细表查询列表*/ +AS +SELECT Item.GoodsBuyItemId, + Item.GoodsBuyId, + Item.GoodsModelId, + Item.Num, + Model.Quantity, + Item.RequiredTime, + Model.Code, + Model.ProjectId, + Model.Description, + Model.Purpose, + Model.Attachment, + Model.Remark +FROM dbo.DriverGoods_GoodsBuyItem AS Item +LEFT JOIN dbo.DriverGoods_GoodsModel AS Model ON Model.GoodsModelId=Item.GoodsModelId + + + + + + +GO + + + + +CREATE TABLE [dbo].[Person_BusinessTrip]( + [BusinessTripId] [nvarchar](50) NOT NULL, + [Type] [char](1) NULL, + [ProjectId] [nvarchar](50) NULL, + [UserId] [nvarchar](50) NULL, + [ArriveDate] [datetime] NULL, + [LeaveDate] [datetime] NULL, + CONSTRAINT [PK_Person_BusinessTrip] PRIMARY KEY CLUSTERED +( + [BusinessTripId] 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 + +SET ANSI_PADDING OFF +GO + +ALTER TABLE [dbo].[Person_BusinessTrip] WITH CHECK ADD CONSTRAINT [FK_Person_BusinessTrip_Sys_User] FOREIGN KEY([UserId]) +REFERENCES [dbo].[Sys_User] ([UserId]) +GO + +ALTER TABLE [dbo].[Person_BusinessTrip] CHECK CONSTRAINT [FK_Person_BusinessTrip_Sys_User] +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主键' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip', @level2type=N'COLUMN',@level2name=N'BusinessTripId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'类型(1-项目出差,2-其他出差)' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip', @level2type=N'COLUMN',@level2name=N'Type' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'项目Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip', @level2type=N'COLUMN',@level2name=N'ProjectId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'用户Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip', @level2type=N'COLUMN',@level2name=N'UserId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'到达日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip', @level2type=N'COLUMN',@level2name=N'ArriveDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'离开日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip', @level2type=N'COLUMN',@level2name=N'LeaveDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'员工出差记录表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_BusinessTrip' +GO + + + + + +CREATE TABLE [dbo].[Person_TestRunPerformance]( + [TestRunPerformanceId] [nvarchar](50) NOT NULL, + [ProjectId] [nvarchar](50) NULL, + [UserId] [nvarchar](50) NULL, + [Months] [datetime] NULL, + [JobContent] [nvarchar](300) NULL, + [TestRunPerformanceStandardId] [nvarchar](50) NULL, + [Days] [int] NULL, + CONSTRAINT [PK_Person_TestRunPerformance] PRIMARY KEY CLUSTERED +( + [TestRunPerformanceId] 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 + +ALTER TABLE [dbo].[Person_TestRunPerformance] WITH CHECK ADD CONSTRAINT [FK_Person_TestRunPerformance_Base_TestRunPerformanceStandard] FOREIGN KEY([TestRunPerformanceStandardId]) +REFERENCES [dbo].[Base_TestRunPerformanceStandard] ([TestRunPerformanceStandardId]) +GO + +ALTER TABLE [dbo].[Person_TestRunPerformance] CHECK CONSTRAINT [FK_Person_TestRunPerformance_Base_TestRunPerformanceStandard] +GO + +ALTER TABLE [dbo].[Person_TestRunPerformance] WITH CHECK ADD CONSTRAINT [FK_Person_TestRunPerformance_Sys_User] FOREIGN KEY([UserId]) +REFERENCES [dbo].[Sys_User] ([UserId]) +GO + +ALTER TABLE [dbo].[Person_TestRunPerformance] CHECK CONSTRAINT [FK_Person_TestRunPerformance_Sys_User] +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'主键' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance', @level2type=N'COLUMN',@level2name=N'TestRunPerformanceId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'项目id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance', @level2type=N'COLUMN',@level2name=N'ProjectId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'用户Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance', @level2type=N'COLUMN',@level2name=N'UserId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'月份' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance', @level2type=N'COLUMN',@level2name=N'Months' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'考核标准Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance', @level2type=N'COLUMN',@level2name=N'TestRunPerformanceStandardId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'标准工作日' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance', @level2type=N'COLUMN',@level2name=N'Days' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'个人开车绩效记录表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Person_TestRunPerformance' +GO + + + +CREATE TABLE [dbo].[ZHGL_TestRunPerformanceMonthReport]( + [TestRunPerformanceMonthReportId] [nvarchar](50) NOT NULL, + [Year] [int] NULL, + [UserId] [nvarchar](50) NULL, + [CompileMan] [nvarchar](50) NULL, + [CompileDate] [datetime] NULL, + CONSTRAINT [PK_ZHGL_TestRunPerformanceMonthReport] PRIMARY KEY CLUSTERED +( + [TestRunPerformanceMonthReportId] 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'主键' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ZHGL_TestRunPerformanceMonthReport', @level2type=N'COLUMN',@level2name=N'TestRunPerformanceMonthReportId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'年份' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ZHGL_TestRunPerformanceMonthReport', @level2type=N'COLUMN',@level2name=N'Year' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'用户Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ZHGL_TestRunPerformanceMonthReport', @level2type=N'COLUMN',@level2name=N'UserId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编制人' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ZHGL_TestRunPerformanceMonthReport', @level2type=N'COLUMN',@level2name=N'CompileMan' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'编制日期' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ZHGL_TestRunPerformanceMonthReport', @level2type=N'COLUMN',@level2name=N'CompileDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'开车人员月绩效报告表' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'ZHGL_TestRunPerformanceMonthReport' +GO + + diff --git a/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-10鎴戠殑锛圡enu_Personal锛.sql b/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-10鎴戠殑锛圡enu_Personal锛.sql index 9df5d351..932a3532 100644 --- a/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-10鎴戠殑锛圡enu_Personal锛.sql +++ b/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-10鎴戠殑锛圡enu_Personal锛.sql @@ -43,3 +43,29 @@ GO INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) VALUES('6549EF60-1DED-4912-8D2D-7B32A80A2DEC','瑙嗛浼氳','Personal/PersonMeeting.aspx',60,'0','Menu_Personal',0,1,1) GO + +INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +VALUES('522EAECC-3D40-4804-A066-A43BA8F6BFC1','鍛樺伐鍑哄樊璁板綍','Personal/BusinessTrip.aspx',70,'0','Menu_Personal',0,1,1) +GO + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('8B969A75-E5CC-424F-A3FA-4AABAFD83776','522EAECC-3D40-4804-A066-A43BA8F6BFC1','澧炲姞',1) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('577F9981-3EA0-4EFA-A37F-D34313FA75A0','522EAECC-3D40-4804-A066-A43BA8F6BFC1','淇敼',2) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('F6CCDCAF-D922-4463-A446-21F5202F88E3','522EAECC-3D40-4804-A066-A43BA8F6BFC1','淇濆瓨',3) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('CA9037CE-F174-4664-9566-86313C4B8B70','522EAECC-3D40-4804-A066-A43BA8F6BFC1','鍒犻櫎',4) + GO + +INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +VALUES('16229932-671B-4E04-BB61-A5C7DE4CE47F','鍛樺伐寮杞︾哗鏁堣褰','Personal/TestRunPerformance.aspx',80,'0','Menu_Personal',0,1,1) +GO + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('85D7D848-2848-4DA8-817B-45854F823ACF','16229932-671B-4E04-BB61-A5C7DE4CE47F','澧炲姞',1) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('5C7EED44-CA88-48DC-8F45-816CCFDD27BB','16229932-671B-4E04-BB61-A5C7DE4CE47F','淇敼',2) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('08C5FB21-7B0B-4A6B-B7B6-EB9DA928ECE3','16229932-671B-4E04-BB61-A5C7DE4CE47F','淇濆瓨',3) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('64D20EC1-23E3-4163-9FD5-BD75DA0BB270','16229932-671B-4E04-BB61-A5C7DE4CE47F','鍒犻櫎',4) + GO \ No newline at end of file diff --git a/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-8缁煎悎绠$悊锛圡enu_ZHGL锛.sql b/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-8缁煎悎绠$悊锛圡enu_ZHGL锛.sql index 3e305f00..f8391f6e 100644 --- a/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-8缁煎悎绠$悊锛圡enu_ZHGL锛.sql +++ b/DataBase/鑿滃崟鍒濆鍖栬剼鏈/0-8缁煎悎绠$悊锛圡enu_ZHGL锛.sql @@ -529,4 +529,16 @@ GO VALUES('A14DE61A-2E1B-4F4D-84E8-D87DBB2C5F4D','383290E0-60AE-4D16-8B5E-3899B85EC2ED','淇濆瓨',4) GO + INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) + VALUES('C1240FCB-4C72-445E-82B5-EBFAA87D0AC6','寮杞︿汉鍛樻湀缁╂晥鎶ュ憡','ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx',20,'53D8CED2-9AA7-43EA-B27D-EA10A06DF713','Menu_ZHGL',0,1,1) + GO + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('05767250-EF45-4C24-8E19-E887E9267F48','C1240FCB-4C72-445E-82B5-EBFAA87D0AC6','澧炲姞',1) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('5A13E8B5-7932-4922-8DD8-0F85B3A30F13','C1240FCB-4C72-445E-82B5-EBFAA87D0AC6','淇敼',2) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('3C844A2A-0C2D-482C-90B7-1C94B5C76F92','C1240FCB-4C72-445E-82B5-EBFAA87D0AC6','鍒犻櫎',3) + INSERT INTO dbo.Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) + VALUES('EF60AF57-C14D-47C7-87E9-F9182B1C2D6A','C1240FCB-4C72-445E-82B5-EBFAA87D0AC6','淇濆瓨',4) + GO \ No newline at end of file diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index 64b8fa47..2b9104b9 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -257,6 +257,9 @@ + + + @@ -636,6 +639,7 @@ + @@ -647,6 +651,7 @@ + @@ -865,6 +870,7 @@ + diff --git a/SGGL/BLL/BaseInfo/TestRunPerformanceStandardService.cs b/SGGL/BLL/BaseInfo/TestRunPerformanceStandardService.cs index 5ad25572..aa249516 100644 --- a/SGGL/BLL/BaseInfo/TestRunPerformanceStandardService.cs +++ b/SGGL/BLL/BaseInfo/TestRunPerformanceStandardService.cs @@ -1,5 +1,6 @@ 锘縰sing System.Collections.Generic; using System.Linq; +using System.Web.UI.WebControls; namespace BLL { @@ -102,5 +103,104 @@ namespace BLL Funs.FineUIPleaseSelect(dropName); } } + + /// + /// + /// + /// + public static ListItem[] GetTypes() + { + var q = (from x in Funs.DB.Base_TestRunPerformanceStandard orderby x.Code select new { Value = x.Type, Code1 = x.Code1 }).Distinct().ToList(); + q = q.OrderBy(x => x.Code1).ToList(); + ListItem[] list = new ListItem[q.Count()]; + for (int i = 0; i < q.Count(); i++) + { + list[i] = new ListItem(q[i].Value ?? "", q[i].Value); + } + return list; + } + + /// + /// 椤圭洰琛ㄤ笅鎷夋 + /// + /// 涓嬫媺妗嗗悕瀛 + /// 鏄惁鏄剧ず璇烽夋嫨 + public static void InitTypeDropDownList(FineUIPro.DropDownList dropName, bool isShowPlease) + { + dropName.DataValueField = "Text"; + dropName.DataTextField = "Text"; + dropName.DataSource = GetTypes(); + dropName.DataBind(); + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } + + /// + /// + /// + /// + public static ListItem[] GetItems(string type) + { + var q = (from x in Funs.DB.Base_TestRunPerformanceStandard where x.Type == type orderby x.Code select new { Value = x.Item, Code1 = x.Code2 }).Distinct().ToList(); + q = q.OrderBy(x => x.Code1).ToList(); + ListItem[] list = new ListItem[q.Count()]; + for (int i = 0; i < q.Count(); i++) + { + list[i] = new ListItem(q[i].Value ?? "", q[i].Value); + } + return list; + } + + /// + /// 椤圭洰琛ㄤ笅鎷夋 + /// + /// 涓嬫媺妗嗗悕瀛 + /// 鏄惁鏄剧ず璇烽夋嫨 + public static void InitItemDropDownList(FineUIPro.DropDownList dropName, string type, bool isShowPlease) + { + dropName.DataValueField = "Text"; + dropName.DataTextField = "Text"; + dropName.DataSource = GetItems(type); + dropName.DataBind(); + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } + + /// + /// + /// + /// + public static ListItem[] GetUnits(string type, string item) + { + var q = (from x in Funs.DB.Base_TestRunPerformanceStandard where x.Type == type && x.Item == item orderby x.Code select new { Value = x.Unit, Code1 = x.Code3, x.TestRunPerformanceStandardId }).ToList(); + q = q.OrderBy(x => x.Code1).ToList(); + ListItem[] list = new ListItem[q.Count()]; + for (int i = 0; i < q.Count(); i++) + { + list[i] = new ListItem(q[i].Value ?? "", q[i].TestRunPerformanceStandardId); + } + return list; + } + + /// + /// 椤圭洰琛ㄤ笅鎷夋 + /// + /// 涓嬫媺妗嗗悕瀛 + /// 鏄惁鏄剧ず璇烽夋嫨 + public static void InitUnitDropDownList(FineUIPro.DropDownList dropName, string type, string item, bool isShowPlease) + { + dropName.DataValueField = "Value"; + dropName.DataTextField = "Text"; + dropName.DataSource = GetUnits(type, item); + dropName.DataBind(); + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } } } diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/CqmsTargetService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/CqmsTargetService.cs new file mode 100644 index 00000000..b25a4993 --- /dev/null +++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/CqmsTargetService.cs @@ -0,0 +1,95 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + public class CqmsTargetService + { + public static bool Insert(Model.Report_CqmsTarget model) + { + try + { + Funs.DB.Report_CqmsTarget.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鎻掑叆鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Update(Model.Report_CqmsTarget model) + { + try + { + var result = Funs.DB.Report_CqmsTarget.FirstOrDefault(a => a.Id == model.Id); + if (result != null) + { + result.ProStage = model.ProStage; + result.ProDescribe = model.ProDescribe; + result.TargetValue = model.TargetValue; + result.MonthPer = model.MonthPer; + result.Remarks = model.Remarks; + result.SortId = model.SortId; + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鏇存柊琛ㄦ暟鎹け璐,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(List newId) + { + try + { + var result = Funs.DB.Report_CqmsTarget.Where(a => newId.Contains(a.Id)).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_CqmsTarget.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(string newId) + { + try + { + var result = Funs.DB.Report_CqmsTarget.Where(a => a.ReportId == newId).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_CqmsTarget.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static Model.Report_CqmsTarget Detail(string newId) + { + var result = Funs.DB.Report_CqmsTarget.FirstOrDefault(a => a.Id == newId); + return result; + } + } +} diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/TextBoxContentService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/TextBoxContentService.cs new file mode 100644 index 00000000..c18ba76a --- /dev/null +++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/TextBoxContentService.cs @@ -0,0 +1,93 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + /// + /// 璐ㄩ噺鏈堟姤-鏂囨湰妗 鍐呭鎺ュ彛 + /// + public class TextBoxContentService + { + public static bool Insert(Model.Report_TextBoxContent model) + { + try + { + Funs.DB.Report_TextBoxContent.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鎻掑叆鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Update(Model.Report_TextBoxContent model) + { + try + { + var result = Funs.DB.Report_TextBoxContent.FirstOrDefault(a => a.Id == model.Id); + if (result != null) + { + result.ContentText = model.ContentText; + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鏇存柊琛ㄦ暟鎹け璐,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(List newId) + { + try + { + var result = Funs.DB.Report_TextBoxContent.Where(a => newId.Contains(a.Id)).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_TextBoxContent.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(string newId) + { + try + { + var result = Funs.DB.Report_TextBoxContent.Where(a => a.ReportId==newId).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_TextBoxContent.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static Model.Report_TextBoxContent Detail(string newId) + { + var result = Funs.DB.Report_TextBoxContent.FirstOrDefault(a => a.Id == newId); + return result; + } + } +} diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/WeekAndMonthReportNewService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/WeekAndMonthReportNewService.cs new file mode 100644 index 00000000..6dbfc0b2 --- /dev/null +++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/WeekAndMonthReportNewService.cs @@ -0,0 +1,95 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + /// + /// 鏈鏂拌川閲忔湀鎶ユ帴鍙 + /// + public class WeekAndMonthReportNewService + { + public static bool Insert(Model.Report_WeekAndMonthReport_New model) + { + try + { + Funs.DB.Report_WeekAndMonthReport_New.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鎻掑叆鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Update(Model.Report_WeekAndMonthReport_New model) + { + try + { + var result = Funs.DB.Report_WeekAndMonthReport_New.FirstOrDefault(a => a.Id == model.Id); + if (result != null) + { + result.StartDate = model.StartDate; + result.EndDate = model.EndDate; + result.SortId = model.SortId; + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鏇存柊琛ㄦ暟鎹け璐,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(List newId) + { + try + { + var result = Funs.DB.Report_WeekAndMonthReport_New.Where(a => newId.Contains(a.Id)).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_WeekAndMonthReport_New.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(string newId) + { + try + { + var result = Funs.DB.Report_WeekAndMonthReport_New.Where(a => a.Id== newId).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_WeekAndMonthReport_New.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static Model.Report_WeekAndMonthReport_New Detail(string newId) + { + var result = Funs.DB.Report_WeekAndMonthReport_New.FirstOrDefault(a => a.Id == newId); + return result; + } + } +} diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs index 31c25177..25c7f405 100644 --- a/SGGL/BLL/Common/Const.cs +++ b/SGGL/BLL/Common/Const.cs @@ -799,6 +799,16 @@ namespace BLL /// public const string PersonDutyMenuId = "A913653D-1EBB-4F55-97C9-81CC5B5913C4"; + /// + /// 鍛樺伐鍑哄樊璁板綍 + /// + public const string BusinessTripMenuId = "522EAECC-3D40-4804-A066-A43BA8F6BFC1"; + + /// + /// 鍛樺伐寮杞︾哗鏁堣褰 + /// + public const string TestRunPerformanceMenuId = "16229932-671B-4E04-BB61-A5C7DE4CE47F"; + /// /// HSSE鍏徃绠$悊瑙勫畾鍙戝竷 /// @@ -3510,6 +3520,11 @@ namespace BLL /// public const string DivisionId15 = "BD0C9DC9-C621-497E-B947-A85F46D86AA4"; + /// + /// 璐ㄩ噺鍛ㄦ姤(鏂) + /// + public const string CQWeekReportNewMenuId = "4164BF9B-DA7C-4287-AC11-D1EB6A664F57"; + #region 璐ㄩ噺绠$悊 #region 鍩虹璁剧疆 /// @@ -4876,6 +4891,11 @@ namespace BLL /// 寮杞︾哗鏁堣瘎鍒嗘爣鍑 /// public const string TestRunPerformanceStandardMenuId = "383290E0-60AE-4D16-8B5E-3899B85EC2ED"; + + /// + /// 寮杞︿汉鍛樻湀缁╂晥鎶ュ憡 + /// + public const string TestRunPerformanceMonthReportMenuId = "C1240FCB-4C72-445E-82B5-EBFAA87D0AC6"; #endregion #region 鏂藉伐缁煎悎娴佺▼瀹氫箟 diff --git a/SGGL/BLL/Person/Person_BusinessTripService.cs b/SGGL/BLL/Person/Person_BusinessTripService.cs new file mode 100644 index 00000000..ecf15beb --- /dev/null +++ b/SGGL/BLL/Person/Person_BusinessTripService.cs @@ -0,0 +1,74 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + public class Person_BusinessTripService + { + /// + /// 鑾峰彇浜哄憳淇℃伅 + /// + /// 浜哄憳Id + /// 浜哄憳淇℃伅 + public static Model.Person_BusinessTrip GetPersonBusinessTripById(string BusinessTripId) + { + return Funs.DB.Person_BusinessTrip.FirstOrDefault(e => e.BusinessTripId == BusinessTripId); + } + + /// + /// 澧炲姞浜哄憳鎬荤粨淇℃伅 + /// + /// 浜哄憳瀹炰綋 + public static void AddPersonBusinessTrip(Model.Person_BusinessTrip BusinessTrip) + { + Model.SGGLDB db = Funs.DB; + Model.Person_BusinessTrip newBusinessTrip = new Model.Person_BusinessTrip + { + BusinessTripId = BusinessTrip.BusinessTripId, + Type = BusinessTrip.Type, + ProjectId = BusinessTrip.ProjectId, + UserId = BusinessTrip.UserId, + ArriveDate = BusinessTrip.ArriveDate, + LeaveDate = BusinessTrip.LeaveDate, + }; + db.Person_BusinessTrip.InsertOnSubmit(newBusinessTrip); + db.SubmitChanges(); + } + + /// + /// 淇敼浜哄憳鎬荤粨淇℃伅 + /// + /// 瀹炰綋 + public static void UpdatePersonBusinessTrip(Model.Person_BusinessTrip BusinessTrip) + { + Model.SGGLDB db = Funs.DB; + Model.Person_BusinessTrip newBusinessTrip = db.Person_BusinessTrip.FirstOrDefault(e => e.BusinessTripId == BusinessTrip.BusinessTripId); + if (newBusinessTrip != null) + { + newBusinessTrip.Type = BusinessTrip.Type; + newBusinessTrip.ProjectId = BusinessTrip.ProjectId; + newBusinessTrip.ArriveDate = BusinessTrip.ArriveDate; + newBusinessTrip.LeaveDate = BusinessTrip.LeaveDate; + db.SubmitChanges(); + } + } + + /// + /// 鏍规嵁浜哄憳Id鍒犻櫎涓涓汉鍛樹俊鎭 + /// + /// + public static void DeletePersonBusinessTrip(string BusinessTripId) + { + Model.SGGLDB db = Funs.DB; + Model.Person_BusinessTrip user = db.Person_BusinessTrip.FirstOrDefault(e => e.BusinessTripId == BusinessTripId); + if (user != null) + { + db.Person_BusinessTrip.DeleteOnSubmit(user); + db.SubmitChanges(); + } + } + } +} diff --git a/SGGL/BLL/Person/Person_TestRunPerformanceService.cs b/SGGL/BLL/Person/Person_TestRunPerformanceService.cs new file mode 100644 index 00000000..03e66eb2 --- /dev/null +++ b/SGGL/BLL/Person/Person_TestRunPerformanceService.cs @@ -0,0 +1,75 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + public class Person_TestRunPerformanceService + { + /// + /// 鑾峰彇浜哄憳淇℃伅 + /// + /// 浜哄憳Id + /// 浜哄憳淇℃伅 + public static Model.Person_TestRunPerformance GetPersonTestRunPerformanceById(string TestRunPerformanceId) + { + return Funs.DB.Person_TestRunPerformance.FirstOrDefault(e => e.TestRunPerformanceId == TestRunPerformanceId); + } + + /// + /// 澧炲姞浜哄憳鎬荤粨淇℃伅 + /// + /// 浜哄憳瀹炰綋 + public static void AddPersonTestRunPerformance(Model.Person_TestRunPerformance TestRunPerformance) + { + Model.SGGLDB db = Funs.DB; + Model.Person_TestRunPerformance newTestRunPerformance = new Model.Person_TestRunPerformance + { + TestRunPerformanceId = TestRunPerformance.TestRunPerformanceId, + ProjectId = TestRunPerformance.ProjectId, + UserId = TestRunPerformance.UserId, + Months = TestRunPerformance.Months, + JobContent = TestRunPerformance.JobContent, + TestRunPerformanceStandardId = TestRunPerformance.TestRunPerformanceStandardId, + Days = TestRunPerformance.Days, + }; + db.Person_TestRunPerformance.InsertOnSubmit(newTestRunPerformance); + db.SubmitChanges(); + } + + /// + /// 淇敼浜哄憳鎬荤粨淇℃伅 + /// + /// 瀹炰綋 + public static void UpdatePersonTestRunPerformance(Model.Person_TestRunPerformance TestRunPerformance) + { + Model.SGGLDB db = Funs.DB; + Model.Person_TestRunPerformance newTestRunPerformance = db.Person_TestRunPerformance.FirstOrDefault(e => e.TestRunPerformanceId == TestRunPerformance.TestRunPerformanceId); + if (newTestRunPerformance != null) + { + newTestRunPerformance.Months = TestRunPerformance.Months; + newTestRunPerformance.JobContent = TestRunPerformance.JobContent; + newTestRunPerformance.TestRunPerformanceStandardId = TestRunPerformance.TestRunPerformanceStandardId; + newTestRunPerformance.Days = TestRunPerformance.Days; + db.SubmitChanges(); + } + } + + /// + /// 鏍规嵁浜哄憳Id鍒犻櫎涓涓汉鍛樹俊鎭 + /// + /// + public static void DeletePersonTestRunPerformance(string TestRunPerformanceId) + { + Model.SGGLDB db = Funs.DB; + Model.Person_TestRunPerformance user = db.Person_TestRunPerformance.FirstOrDefault(e => e.TestRunPerformanceId == TestRunPerformanceId); + if (user != null) + { + db.Person_TestRunPerformance.DeleteOnSubmit(user); + db.SubmitChanges(); + } + } + } +} diff --git a/SGGL/BLL/ProjectData/ProjectService.cs b/SGGL/BLL/ProjectData/ProjectService.cs index 2db27732..ca2f2232 100644 --- a/SGGL/BLL/ProjectData/ProjectService.cs +++ b/SGGL/BLL/ProjectData/ProjectService.cs @@ -391,6 +391,34 @@ } } + /// + /// 椤圭洰琛ㄤ笅鎷夋 + /// + /// 涓嬫媺妗嗗悕瀛 + /// 鏄惁鏄剧ず璇烽夋嫨 + public static void InitAllProjectDropDownList2(FineUIPro.DropDownList dropName, bool isShowPlease) + { + dropName.DataValueField = "ProjectId"; + dropName.DataTextField = "ProjectName"; + var projectlist = BLL.ProjectService.GetAllProjectDropDownList(); + Model.Base_Project project = new Base_Project(); + project.ProjectId = "0"; + project.ProjectName = "鏈儴"; + List list = new List(); + list.Add(project); + list.AddRange(projectlist); + dropName.DataSource = list; + dropName.DataBind(); + if (projectlist.Count() == 0) + { + isShowPlease = true; + } + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } + /// /// /// diff --git a/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs b/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs index d43adae6..5174c393 100644 --- a/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs +++ b/SGGL/BLL/TestRun/DriverGoods/GoodsBuyItemService.cs @@ -44,6 +44,7 @@ namespace BLL newGoodsBuyItem.GoodsBuyId = GoodsBuyItem.GoodsBuyId; newGoodsBuyItem.GoodsModelId = GoodsBuyItem.GoodsModelId; newGoodsBuyItem.Quantity = GoodsBuyItem.Quantity; + newGoodsBuyItem.Num = GoodsBuyItem.Num; newGoodsBuyItem.RequiredTime = GoodsBuyItem.RequiredTime; db.DriverGoods_GoodsBuyItem.InsertOnSubmit(newGoodsBuyItem); db.SubmitChanges(); diff --git a/SGGL/BLL/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportService.cs b/SGGL/BLL/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportService.cs new file mode 100644 index 00000000..9eb868c0 --- /dev/null +++ b/SGGL/BLL/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportService.cs @@ -0,0 +1,72 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BLL +{ + public class TestRunPerformanceMonthReportService + { + /// + /// 鏍规嵁涓婚敭鑾峰彇寮杞︿汉鍛樻湀缁╂晥鎶ュ憡 + /// + /// + /// + public static Model.ZHGL_TestRunPerformanceMonthReport GetTestRunPerformanceMonthReportById(string TestRunPerformanceMonthReportId) + { + return Funs.DB.ZHGL_TestRunPerformanceMonthReport.FirstOrDefault(e => e.TestRunPerformanceMonthReportId == TestRunPerformanceMonthReportId); + } + + /// + /// 娣诲姞寮杞︿汉鍛樻湀缁╂晥鎶ュ憡 + /// + /// + public static void AddTestRunPerformanceMonthReport(Model.ZHGL_TestRunPerformanceMonthReport TestRunPerformanceMonthReport) + { + Model.SGGLDB db = Funs.DB; + Model.ZHGL_TestRunPerformanceMonthReport newTestRunPerformanceMonthReport = new Model.ZHGL_TestRunPerformanceMonthReport + { + TestRunPerformanceMonthReportId = TestRunPerformanceMonthReport.TestRunPerformanceMonthReportId, + Year = TestRunPerformanceMonthReport.Year, + UserId = TestRunPerformanceMonthReport.UserId, + CompileMan = TestRunPerformanceMonthReport.CompileMan, + CompileDate = TestRunPerformanceMonthReport.CompileDate + }; + db.ZHGL_TestRunPerformanceMonthReport.InsertOnSubmit(newTestRunPerformanceMonthReport); + db.SubmitChanges(); + } + + /// + /// 淇敼寮杞︿汉鍛樻湀缁╂晥鎶ュ憡 + /// + /// + public static void UpdateTestRunPerformanceMonthReport(Model.ZHGL_TestRunPerformanceMonthReport TestRunPerformanceMonthReport) + { + Model.SGGLDB db = Funs.DB; + Model.ZHGL_TestRunPerformanceMonthReport newTestRunPerformanceMonthReport = db.ZHGL_TestRunPerformanceMonthReport.FirstOrDefault(e => e.TestRunPerformanceMonthReportId == TestRunPerformanceMonthReport.TestRunPerformanceMonthReportId); + if (newTestRunPerformanceMonthReport != null) + { + newTestRunPerformanceMonthReport.Year = TestRunPerformanceMonthReport.Year; + newTestRunPerformanceMonthReport.UserId = TestRunPerformanceMonthReport.UserId; + newTestRunPerformanceMonthReport.CompileMan = TestRunPerformanceMonthReport.CompileMan; + newTestRunPerformanceMonthReport.CompileDate = TestRunPerformanceMonthReport.CompileDate; + db.SubmitChanges(); + } + } + + /// + /// 鏍规嵁涓婚敭鍒犻櫎寮杞︿汉鍛樻湀缁╂晥鎶ュ憡 + /// + /// + public static void DeleteTestRunPerformanceMonthReportById(string TestRunPerformanceMonthReportId) + { + Model.SGGLDB db = Funs.DB; + Model.ZHGL_TestRunPerformanceMonthReport TestRunPerformanceMonthReport = db.ZHGL_TestRunPerformanceMonthReport.FirstOrDefault(e => e.TestRunPerformanceMonthReportId == TestRunPerformanceMonthReportId); + if (TestRunPerformanceMonthReport != null) + { + db.ZHGL_TestRunPerformanceMonthReport.DeleteOnSubmit(TestRunPerformanceMonthReport); + db.SubmitChanges(); + } + } + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx new file mode 100644 index 00000000..aa9993bd --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx @@ -0,0 +1,80 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReport.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReport" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs new file mode 100644 index 00000000..20d19bfd --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs @@ -0,0 +1,135 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReport : PageBase + { + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + BindGrid(); + GetButtonPower(); + } + } + + public void BindGrid() + { + string strSql = @"select Id, Sortid, StartDate, EndDate, ProjectId + from Report_WeekAndMonthReport_New C + where C.ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + tb = GetFilteredTable(Grid1.FilteredData, tb); + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + + /// + /// 鍒嗛〉 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 鏍煎紡鍖栧瓧绗︿覆 + /// + /// + /// + protected static string ConvertDate(object reportId) + { + string date = string.Empty; + if (reportId != null) + { + var r = BLL.WeekAndMonthReportNewService.Detail(reportId.ToString()); + if (r != null) + { + date = string.Format("{0:yyyy-MM-dd}", r.StartDate) + " 鑷 " + string.Format("{0:yyyy-MM-dd}", r.EndDate); + } + } + return date; + } + + protected void btnNew_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("MonthReportEdit.aspx", "娣诲姞 - "))); + } + + protected void btnMenuModify_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("MonthReportEdit.aspx?reportId=" + Grid1.SelectedRowID, "娣诲姞 - "))); + } + + protected void btnMenuView_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("MonthReportEdit.aspx?view=view&reportId=" + Grid1.SelectedRowID, "鏌ョ湅 - "))); + } + + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(rowID); + + TextBoxContentService.Delete(rowID); + + + WeekAndMonthReportNewService.Delete(rowID); + } + BindGrid(); + ShowNotify("鍒犻櫎鏁版嵁鎴愬姛!", MessageBoxIcon.Success); + } + } + + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #region 鑾峰彇鎸夐挳鏉冮檺 + /// + /// 鑾峰彇鎸夐挳鏉冮檺 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == BLL.Const._Null) + { + return; + } + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.CQWeekReportNewMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnModify)) + { + this.btnMenuModify.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDel.Hidden = false; + } + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.designer.cs new file mode 100644 index 00000000..ada726a8 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.designer.cs @@ -0,0 +1,134 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReport + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// btnNew 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// lblPageIndex 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + + /// + /// Label41 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label41; + + /// + /// Window1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuModify 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuModify; + + /// + /// btnMenuView 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuView; + + /// + /// btnMenuDel 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx new file mode 100644 index 00000000..2e9a68c0 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx @@ -0,0 +1,386 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReportEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit" %> + + + + + + + 缂栬緫鏂藉伐璐ㄩ噺鍛ㄦ姤(鏂) + + + + + + + + +
+ + + + + + + + + + + + + + + + + <%-- + + --%> + + + +
+ + + + + +
+ +  缂栬緫鏂藉伐璐ㄩ噺鏈堟姤 + + <%-- --%> + + + + +
+
+ + + + + + + + + +
+ + + + + + + * + +
+
+
+ +
+
+ + + + + +
鏃堕棿娈  + + + 鈥 + +
+
+ + + + + + + +
+ +  20锛夐」鐩川閲忎綋绯诲鏍 +
+ + + + +
+ +
+
+
+ <%--1.鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌--%> + + + + + + + + + + + + + + + + + + + + + + + <%--2.鏈湀涓昏宸ヤ綔鍐呭--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%--20.椤圭洰璐ㄩ噺浣撶郴瀹℃牳--%> + + + + + + + + + + + + + + + + <%--21.绫讳技椤圭洰绠$悊缁忛獙鏁欒搴斿鎺柦鍙婅窡韪--%> + + + + + + + + + + + + + + + + <%--22.闄勪欢--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs new file mode 100644 index 00000000..770ed477 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs @@ -0,0 +1,343 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Newtonsoft.Json.Linq; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReportEdit : PageBase + { + #region 瀹氫箟椤 + /// + /// 涓婚敭 + /// + public string ReportId + { + get + { + return (string)ViewState["ReportId"]; + } + set + { + ViewState["ReportId"] = value; + } + } + + public string AddOrUpdate + { + get + { + return (string)ViewState["AddOrUpdate"]; + } + set + { + ViewState["AddOrUpdate"] = value; + } + } + #endregion + + #region 鍒楄〃闆嗗悎 + private static List detailsGrid1 = new List(); + #endregion + + #region 鍔犺浇椤甸潰 + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.EnableViewState = true; + this.lblProjectName.Text = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId).ProjectName; + this.ReportId = Request.Params["reportId"]; + if (!string.IsNullOrEmpty(Request.Params["view"])) + { + this.Button1.Visible = false; + this.Button2.Visible = false; + } + + if (!string.IsNullOrEmpty(this.ReportId)) + { + Model.Report_WeekAndMonthReport_New weekAndMonthReport = WeekAndMonthReportNewService.Detail(this.ReportId); + if (weekAndMonthReport != null) + { + if (weekAndMonthReport.SortId != null) + { + this.txtPeriod.Text = Convert.ToString(weekAndMonthReport.SortId); + } + if (weekAndMonthReport.StartDate != null) + { + this.txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.StartDate); + } + if (weekAndMonthReport.EndDate != null) + { + this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.EndDate); + } + } + AddOrUpdate = "update"; + + #region 鍔犺浇鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + detailsGrid1.Clear(); + detailsGrid1 = (from x in Funs.DB.Report_CqmsTarget + where x.ReportId == this.ReportId + orderby x.SortId + select x).ToList(); + if (detailsGrid1.Count>0) + { + Grid1.Hidden = false; + Grid1.DataSource = detailsGrid1; + Grid1.DataBind(); + } + + #endregion + + #region 鍔犺浇鏂囨湰妗嗗唴瀹 + var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList(); + txtAre0.Text = txtReportList.FirstOrDefault(x => x.ContentType == "0").ContentText; + txtAre1.Text = txtReportList.FirstOrDefault(x => x.ContentType == "1").ContentText; + txtAre2.Text = txtReportList.FirstOrDefault(x => x.ContentType == "2").ContentText; + + txtAre20.Text = txtReportList.FirstOrDefault(x => x.ContentType == "20").ContentText; + txtAre21.Text = txtReportList.FirstOrDefault(x => x.ContentType == "21").ContentText; + txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText; + #endregion + + + } + else + { + this.txtStartDate.Text = string.IsNullOrEmpty(Request.Params["startdate"]) ? string.Format("{0:yyyy-MM-dd}", DateTime.Now) : Request.Params["startdate"]; + this.txtEndDate.Text = string.IsNullOrEmpty(Request.Params["enddate"]) ? string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(this.txtStartDate.Text).AddMonths(1).AddDays(-1)) : Request.Params["enddate"]; + //缁欎釜鏂扮殑涓婚敭 + ReportId = Guid.NewGuid().ToString(); + AddOrUpdate = "add"; + } + hidReportId.Value = ReportId; + } + } + #endregion + + #region 鏃堕棿閫夋嫨浜嬩欢 + /// + /// 寮濮嬫椂闂撮夋嫨浜嬩欢 + /// + /// + /// + protected void txtStartDate_TextChanged(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim())) + { + string url = Request.Url.ToString(); + if (url.Contains("?")) + { + url = Request.Url.ToString().Substring(0, Request.Url.ToString().LastIndexOf('?')); + } + Response.Redirect(url + "?startdate=" + txtStartDate.Text + "&enddate=" + txtEndDate.Text); + } + } + #endregion + + #region 鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 Grid1鏂规硶 + protected void btnAddGrid1_Click(object sender, EventArgs e) { + Grid1.Hidden = false; + + JArray teamGroupData = Grid1.GetMergedData(); + List list = new List(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + values.Add("Id", teamGroupRow.Value("id")); + list.Add(values); + } + JObject defaultObj = new JObject + { { "Id",Guid.NewGuid() }, + { "ReportId", ReportId }, + { "ProStage", "" }, + { "ProDescribe",""}, + { "TargetValue", "" }, + { "MonthPer","" }, + { "Remarks", "" }, + { "SortId","" }, + { "Delete1", String.Format("", GetDeleteScriptGrid1(), IconHelper.GetResolvedIconUrl(Icon.Delete)) } + }; + list.Add(defaultObj); + Grid1.DataSource = list; + Grid1.DataBind(); + } + + protected void Grid1_PreDataBound(object sender, EventArgs e) + { + // 璁剧疆LinkButtonField鐨勭偣鍑诲鎴风浜嬩欢 + LinkButtonField deleteField = Grid1.FindColumn("Delete1") as LinkButtonField; + deleteField.OnClientClick = GetDeleteScriptGrid1(); + } + /// + /// 鍒犻櫎鎻愮ず + /// + /// + private string GetDeleteScriptGrid1() + { + return Confirm.GetShowReference("鍒犻櫎閫変腑琛岋紵", String.Empty, MessageBoxIcon.Question, Grid1.GetDeleteSelectedRowsReference(), String.Empty); + } + #endregion + + #region 淇濆瓨 + /// + /// 淇濆瓨鎸夐挳 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + Model.Report_WeekAndMonthReport_New report = new Model.Report_WeekAndMonthReport_New(); + report.Id = ReportId; + report.ProjectId = this.CurrUser.LoginProjectId; + if (!string.IsNullOrEmpty(this.txtPeriod.Text.Trim())) + { + try + { + report.SortId = this.txtPeriod.Text.Trim(); + } + catch (Exception) + { + ScriptManager.RegisterStartupScript(this, typeof(string), "_alert", "alert('鍛ㄦ湡杈撳叆鏍煎紡涓嶆纭紝璇烽噸鏂拌緭鍏ワ紒')", true); + return; + } + } + if (!string.IsNullOrEmpty(this.txtStartDate.Text)) + { + report.StartDate = Convert.ToDateTime(this.txtStartDate.Text); + } + if (!string.IsNullOrEmpty(this.txtEndDate.Text)) + { + report.EndDate = Convert.ToDateTime(this.txtEndDate.Text); + } + report.CreateDate = DateTime.Now; + report.CreateMan = CurrUser.UserId; + + #region 鍒犻櫎鎵鏈夊瓙琛 + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(ReportId); + + //鎵鏈夋枃鏈琛 + TextBoxContentService.Delete(ReportId); + #endregion + + #region 淇濆瓨鎵鏈夊瓙琛 + //淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + saveTarget(); + + //淇濆瓨鏂囨湰妗 + saveTxtContent(); + #endregion + + if (AddOrUpdate == "add") + { + WeekAndMonthReportNewService.Insert(report); + } + else + { + WeekAndMonthReportNewService.Update(report); + } + + ShowNotify("缂栬緫鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + #region 淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + void saveTarget() { + List detailLists = new List(); + JArray teamGroupData = Grid1.GetMergedData(); + foreach (JObject teamGroupRow in teamGroupData) { + JObject values = teamGroupRow.Value("values"); + int rowIndex = teamGroupRow.Value("index"); + Model.Report_CqmsTarget newDetail = new Model.Report_CqmsTarget + { + //Id = values.Value("Id"), + ReportId = ReportId, + ProStage = values.Value("ProStage"), + ProDescribe = values.Value("ProDescribe"), + TargetValue = values.Value("TargetValue"), + MonthPer = values.Value("MonthPer"), + Remarks = values.Value("Remarks"), + SortId = rowIndex + 1 + }; + if (Grid1.Rows[rowIndex].DataKeys.Length > 0) + { + newDetail.Id = Grid1.Rows[rowIndex].DataKeys[0].ToString(); + } + detailLists.Add(newDetail); + } + if (detailLists.Count>0) + { + Funs.DB.Report_CqmsTarget.InsertAllOnSubmit(detailLists); + Funs.DB.SubmitChanges(); + } + + } + #endregion + + /// + /// 淇濆瓨鏂囨湰妗嗗唴瀹 + /// + void saveTxtContent() { + var txtContentList = new List(); + #region 缁欏疄浣撹祴鍊 + var model0 = new Model.Report_TextBoxContent(); + model0.Id = Guid.NewGuid().ToString(); + model0.ReportId = ReportId; + model0.ContentType = "0"; + model0.ContentText = txtAre0.Text; + txtContentList.Add(model0); + + var model1 = new Model.Report_TextBoxContent(); + model1.Id = Guid.NewGuid().ToString(); + model1.ReportId = ReportId; + model1.ContentType = "1"; + model1.ContentText = txtAre1.Text; + txtContentList.Add(model1); + + var model2 = new Model.Report_TextBoxContent(); + model2.Id = Guid.NewGuid().ToString(); + model2.ReportId = ReportId; + model2.ContentType = "2"; + model2.ContentText = txtAre2.Text; + txtContentList.Add(model2); + + var model20 = new Model.Report_TextBoxContent(); + model20.Id = Guid.NewGuid().ToString(); + model20.ReportId = ReportId; + model20.ContentType = "20"; + model20.ContentText = txtAre20.Text; + txtContentList.Add(model20); + + var model21 = new Model.Report_TextBoxContent(); + model21.Id = Guid.NewGuid().ToString(); + model21.ReportId = ReportId; + model21.ContentType = "21"; + model21.ContentText = txtAre21.Text; + txtContentList.Add(model21); + + var model22 = new Model.Report_TextBoxContent(); + model22.Id = Guid.NewGuid().ToString(); + model22.ReportId = ReportId; + model22.ContentType = "22"; + model22.ContentText = txtAre22.Text; + txtContentList.Add(model22); + #endregion + Funs.DB.Report_TextBoxContent.InsertAllOnSubmit(txtContentList); + Funs.DB.SubmitChanges(); + } + + #endregion + + + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs new file mode 100644 index 00000000..290b4f10 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs @@ -0,0 +1,530 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReportEdit + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// ContentPanel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ContentPanel ContentPanel1; + + /// + /// Table1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table1; + + /// + /// tabbtn 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn; + + /// + /// image15 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Image image15; + + /// + /// Button2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button2; + + /// + /// Table5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table5; + + /// + /// lblProjectName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblProjectName; + + /// + /// Label1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// txtPeriod 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtPeriod; + + /// + /// RequiredFieldValidator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1; + + /// + /// Label2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label2; + + /// + /// lblTital 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblTital; + + /// + /// Table2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table2; + + /// + /// txtStartDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtStartDate; + + /// + /// txtEndDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtEndDate; + + /// + /// Panel4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel4; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// Button3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button3; + + /// + /// Form5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form5; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// txtProStage 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProStage; + + /// + /// txtProDescribe 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProDescribe; + + /// + /// txtTargetValue 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtTargetValue; + + /// + /// txtMonthPer 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtMonthPer; + + /// + /// txtRemarks 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtRemarks; + + /// + /// Panel5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel5; + + /// + /// Panel6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel6; + + /// + /// Form6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form6; + + /// + /// txtAre0 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre0; + + /// + /// Panel7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel7; + + /// + /// Form7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form7; + + /// + /// txtAre1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre1; + + /// + /// Panel8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel8; + + /// + /// Form8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form8; + + /// + /// txtAre2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre2; + + /// + /// Panel9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel9; + + /// + /// Panel10 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel10; + + /// + /// Form9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form9; + + /// + /// Panel3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel3; + + /// + /// Form3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form3; + + /// + /// txtAre20 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre20; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Form2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form2; + + /// + /// txtAre21 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre21; + + /// + /// Panel2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel2; + + /// + /// Form4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form4; + + /// + /// txtAre22 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre22; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// hdCheckControlCode 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdCheckControlCode; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// Button1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button1; + + /// + /// hdId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdId; + + /// + /// hdAttachUrl 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdAttachUrl; + + /// + /// ValidationSummary1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1; + + /// + /// hidReportId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlInputHidden hidReportId; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx new file mode 100644 index 00000000..54a9365a --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx @@ -0,0 +1,386 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReportNewEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReportNewEdit" %> + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + <%-- + + --%> + + + +
+ + + + + +
+ +  缂栬緫鏂藉伐璐ㄩ噺鏈堟姤 + + <%-- --%> + + + + +
+
+ + + + + + + + + +
+ + + + + + + * + +
+
+
+ +
+
+ + + + + +
鏃堕棿娈  + + + 鈥 + +
+
+ + + + + + + +
+ +  20锛夐」鐩川閲忎綋绯诲鏍 +
+ + + + +
+ +
+
+
+ <%--1.鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌--%> + + + + + + + + + + + + + + + + + + + + + + + <%--2.鏈湀涓昏宸ヤ綔鍐呭--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%--20.椤圭洰璐ㄩ噺浣撶郴瀹℃牳--%> + + + + + + + + + + + + + + + + <%--21.绫讳技椤圭洰绠$悊缁忛獙鏁欒搴斿鎺柦鍙婅窡韪--%> + + + + + + + + + + + + + + + + <%--22.闄勪欢--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs new file mode 100644 index 00000000..17fa9493 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs @@ -0,0 +1,344 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Newtonsoft.Json.Linq; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReportNewEdit : PageBase + { + #region 瀹氫箟椤 + /// + /// 涓婚敭 + /// + public string ReportId + { + get + { + return (string)ViewState["ReportId"]; + } + set + { + ViewState["ReportId"] = value; + } + } + + public string AddOrUpdate + { + get + { + return (string)ViewState["AddOrUpdate"]; + } + set + { + ViewState["AddOrUpdate"] = value; + } + } + #endregion + + #region 鍒楄〃闆嗗悎 + private static List detailsGrid1 = new List(); + #endregion + #region 鍔犺浇椤甸潰 + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.EnableViewState = true; + this.lblProjectName.Text = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId).ProjectName; + this.ReportId = Request.Params["reportId"]; + if (!string.IsNullOrEmpty(Request.Params["view"])) + { + this.Button1.Visible = false; + this.Button2.Visible = false; + } + + if (!string.IsNullOrEmpty(this.ReportId)) + { + Model.Report_WeekAndMonthReport_New weekAndMonthReport = WeekAndMonthReportNewService.Detail(this.ReportId); + if (weekAndMonthReport != null) + { + if (weekAndMonthReport.SortId != null) + { + this.txtPeriod.Text = Convert.ToString(weekAndMonthReport.SortId); + } + if (weekAndMonthReport.StartDate != null) + { + this.txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.StartDate); + } + if (weekAndMonthReport.EndDate != null) + { + this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.EndDate); + } + } + AddOrUpdate = "update"; + + #region 鍔犺浇鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + detailsGrid1.Clear(); + detailsGrid1 = (from x in Funs.DB.Report_CqmsTarget + where x.ReportId == this.ReportId + orderby x.SortId + select x).ToList(); + if (detailsGrid1.Count > 0) + { + Grid1.Hidden = false; + Grid1.DataSource = detailsGrid1; + Grid1.DataBind(); + } + + #endregion + + #region 鍔犺浇鏂囨湰妗嗗唴瀹 + var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList(); + txtAre0.Text = txtReportList.FirstOrDefault(x => x.ContentType == "0").ContentText; + txtAre1.Text = txtReportList.FirstOrDefault(x => x.ContentType == "1").ContentText; + txtAre2.Text = txtReportList.FirstOrDefault(x => x.ContentType == "2").ContentText; + + txtAre20.Text = txtReportList.FirstOrDefault(x => x.ContentType == "20").ContentText; + txtAre21.Text = txtReportList.FirstOrDefault(x => x.ContentType == "21").ContentText; + txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText; + #endregion + + + } + else + { + this.txtStartDate.Text = string.IsNullOrEmpty(Request.Params["startdate"]) ? string.Format("{0:yyyy-MM-dd}", DateTime.Now) : Request.Params["startdate"]; + this.txtEndDate.Text = string.IsNullOrEmpty(Request.Params["enddate"]) ? string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(this.txtStartDate.Text).AddMonths(1).AddDays(-1)) : Request.Params["enddate"]; + //缁欎釜鏂扮殑涓婚敭 + ReportId = Guid.NewGuid().ToString(); + AddOrUpdate = "add"; + } + hidReportId.Value = ReportId; + } + } + #endregion + + #region 鏃堕棿閫夋嫨浜嬩欢 + /// + /// 寮濮嬫椂闂撮夋嫨浜嬩欢 + /// + /// + /// + protected void txtStartDate_TextChanged(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim())) + { + string url = Request.Url.ToString(); + if (url.Contains("?")) + { + url = Request.Url.ToString().Substring(0, Request.Url.ToString().LastIndexOf('?')); + } + Response.Redirect(url + "?startdate=" + txtStartDate.Text + "&enddate=" + txtEndDate.Text); + } + } + #endregion + + #region 鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 Grid1鏂规硶 + protected void btnAddGrid1_Click(object sender, EventArgs e) + { + Grid1.Hidden = false; + + JArray teamGroupData = Grid1.GetMergedData(); + List list = new List(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + values.Add("Id", teamGroupRow.Value("id")); + list.Add(values); + } + JObject defaultObj = new JObject + { { "Id",Guid.NewGuid() }, + { "ReportId", ReportId }, + { "ProStage", "" }, + { "ProDescribe",""}, + { "TargetValue", "" }, + { "MonthPer","" }, + { "Remarks", "" }, + { "SortId","" }, + { "Delete1", String.Format("", GetDeleteScriptGrid1(), IconHelper.GetResolvedIconUrl(Icon.Delete)) } + }; + list.Add(defaultObj); + Grid1.DataSource = list; + Grid1.DataBind(); + } + + protected void Grid1_PreDataBound(object sender, EventArgs e) + { + // 璁剧疆LinkButtonField鐨勭偣鍑诲鎴风浜嬩欢 + LinkButtonField deleteField = Grid1.FindColumn("Delete1") as LinkButtonField; + deleteField.OnClientClick = GetDeleteScriptGrid1(); + } + /// + /// 鍒犻櫎鎻愮ず + /// + /// + private string GetDeleteScriptGrid1() + { + return Confirm.GetShowReference("鍒犻櫎閫変腑琛岋紵", String.Empty, MessageBoxIcon.Question, Grid1.GetDeleteSelectedRowsReference(), String.Empty); + } + #endregion + + #region 淇濆瓨 + /// + /// 淇濆瓨鎸夐挳 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + Model.Report_WeekAndMonthReport_New report = new Model.Report_WeekAndMonthReport_New(); + report.Id = ReportId; + report.ProjectId = this.CurrUser.LoginProjectId; + if (!string.IsNullOrEmpty(this.txtPeriod.Text.Trim())) + { + try + { + report.SortId = this.txtPeriod.Text.Trim(); + } + catch (Exception) + { + ScriptManager.RegisterStartupScript(this, typeof(string), "_alert", "alert('鍛ㄦ湡杈撳叆鏍煎紡涓嶆纭紝璇烽噸鏂拌緭鍏ワ紒')", true); + return; + } + } + if (!string.IsNullOrEmpty(this.txtStartDate.Text)) + { + report.StartDate = Convert.ToDateTime(this.txtStartDate.Text); + } + if (!string.IsNullOrEmpty(this.txtEndDate.Text)) + { + report.EndDate = Convert.ToDateTime(this.txtEndDate.Text); + } + report.CreateDate = DateTime.Now; + report.CreateMan = CurrUser.UserId; + + #region 鍒犻櫎鎵鏈夊瓙琛 + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(ReportId); + + //鎵鏈夋枃鏈琛 + TextBoxContentService.Delete(ReportId); + #endregion + + #region 淇濆瓨鎵鏈夊瓙琛 + //淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + saveTarget(); + + //淇濆瓨鏂囨湰妗 + saveTxtContent(); + #endregion + + if (AddOrUpdate == "add") + { + WeekAndMonthReportNewService.Insert(report); + } + else + { + WeekAndMonthReportNewService.Update(report); + } + + ShowNotify("缂栬緫鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + #region 淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + void saveTarget() + { + List detailLists = new List(); + JArray teamGroupData = Grid1.GetMergedData(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + int rowIndex = teamGroupRow.Value("index"); + Model.Report_CqmsTarget newDetail = new Model.Report_CqmsTarget + { + //Id = values.Value("Id"), + ReportId = ReportId, + ProStage = values.Value("ProStage"), + ProDescribe = values.Value("ProDescribe"), + TargetValue = values.Value("TargetValue"), + MonthPer = values.Value("MonthPer"), + Remarks = values.Value("Remarks"), + SortId = rowIndex + 1 + }; + if (Grid1.Rows[rowIndex].DataKeys.Length > 0) + { + newDetail.Id = Grid1.Rows[rowIndex].DataKeys[0].ToString(); + } + detailLists.Add(newDetail); + } + if (detailLists.Count > 0) + { + Funs.DB.Report_CqmsTarget.InsertAllOnSubmit(detailLists); + Funs.DB.SubmitChanges(); + } + + } + #endregion + + /// + /// 淇濆瓨鏂囨湰妗嗗唴瀹 + /// + void saveTxtContent() + { + var txtContentList = new List(); + #region 缁欏疄浣撹祴鍊 + var model0 = new Model.Report_TextBoxContent(); + model0.Id = Guid.NewGuid().ToString(); + model0.ReportId = ReportId; + model0.ContentType = "0"; + model0.ContentText = txtAre0.Text; + txtContentList.Add(model0); + + var model1 = new Model.Report_TextBoxContent(); + model1.Id = Guid.NewGuid().ToString(); + model1.ReportId = ReportId; + model1.ContentType = "1"; + model1.ContentText = txtAre1.Text; + txtContentList.Add(model1); + + var model2 = new Model.Report_TextBoxContent(); + model2.Id = Guid.NewGuid().ToString(); + model2.ReportId = ReportId; + model2.ContentType = "2"; + model2.ContentText = txtAre2.Text; + txtContentList.Add(model2); + + var model20 = new Model.Report_TextBoxContent(); + model20.Id = Guid.NewGuid().ToString(); + model20.ReportId = ReportId; + model20.ContentType = "20"; + model20.ContentText = txtAre20.Text; + txtContentList.Add(model20); + + var model21 = new Model.Report_TextBoxContent(); + model21.Id = Guid.NewGuid().ToString(); + model21.ReportId = ReportId; + model21.ContentType = "21"; + model21.ContentText = txtAre21.Text; + txtContentList.Add(model21); + + var model22 = new Model.Report_TextBoxContent(); + model22.Id = Guid.NewGuid().ToString(); + model22.ReportId = ReportId; + model22.ContentType = "22"; + model22.ContentText = txtAre22.Text; + txtContentList.Add(model22); + #endregion + Funs.DB.Report_TextBoxContent.InsertAllOnSubmit(txtContentList); + Funs.DB.SubmitChanges(); + } + + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs new file mode 100644 index 00000000..14e28359 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs @@ -0,0 +1,530 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReportNewEdit + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// ContentPanel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ContentPanel ContentPanel1; + + /// + /// Table1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table1; + + /// + /// tabbtn 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn; + + /// + /// image15 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Image image15; + + /// + /// Button2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button2; + + /// + /// Table5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table5; + + /// + /// lblProjectName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblProjectName; + + /// + /// Label1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// txtPeriod 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtPeriod; + + /// + /// RequiredFieldValidator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1; + + /// + /// Label2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label2; + + /// + /// lblTital 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblTital; + + /// + /// Table2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table2; + + /// + /// txtStartDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtStartDate; + + /// + /// txtEndDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtEndDate; + + /// + /// Panel4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel4; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// Button3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button3; + + /// + /// Form5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form5; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// txtProStage 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProStage; + + /// + /// txtProDescribe 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProDescribe; + + /// + /// txtTargetValue 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtTargetValue; + + /// + /// txtMonthPer 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtMonthPer; + + /// + /// txtRemarks 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtRemarks; + + /// + /// Panel5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel5; + + /// + /// Panel6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel6; + + /// + /// Form6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form6; + + /// + /// txtAre0 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre0; + + /// + /// Panel7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel7; + + /// + /// Form7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form7; + + /// + /// txtAre1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre1; + + /// + /// Panel8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel8; + + /// + /// Form8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form8; + + /// + /// txtAre2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre2; + + /// + /// Panel9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel9; + + /// + /// Panel10 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel10; + + /// + /// Form9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form9; + + /// + /// Panel3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel3; + + /// + /// Form3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form3; + + /// + /// txtAre20 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre20; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Form2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form2; + + /// + /// txtAre21 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre21; + + /// + /// Panel2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel2; + + /// + /// Form4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form4; + + /// + /// txtAre22 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre22; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// hdCheckControlCode 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdCheckControlCode; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// Button1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button1; + + /// + /// hdId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdId; + + /// + /// hdAttachUrl 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdAttachUrl; + + /// + /// ValidationSummary1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1; + + /// + /// hidReportId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlInputHidden hidReportId; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx new file mode 100644 index 00000000..84511046 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx @@ -0,0 +1,386 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReportNewEdit1.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReportNewEdit1" %> + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + <%-- + + --%> + + + +
+ + + + + +
+ +  缂栬緫鏂藉伐璐ㄩ噺鏈堟姤 + + <%-- --%> + + + + +
+
+ + + + + + + + + +
+ + + + + + + * + +
+
+
+ +
+
+ + + + + +
鏃堕棿娈  + + + 鈥 + +
+
+ + + + + + + +
+ +  20锛夐」鐩川閲忎綋绯诲鏍 +
+ + + + +
+ +
+
+
+ <%--1.鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌--%> + + + + + + + + + + + + + + + + + + + + + + + <%--2.鏈湀涓昏宸ヤ綔鍐呭--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%--20.椤圭洰璐ㄩ噺浣撶郴瀹℃牳--%> + + + + + + + + + + + + + + + + <%--21.绫讳技椤圭洰绠$悊缁忛獙鏁欒搴斿鎺柦鍙婅窡韪--%> + + + + + + + + + + + + + + + + <%--22.闄勪欢--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx.cs new file mode 100644 index 00000000..4e6bbabd --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx.cs @@ -0,0 +1,344 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Newtonsoft.Json.Linq; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReportNewEdit1 : PageBase + { + #region 瀹氫箟椤 + /// + /// 涓婚敭 + /// + public string ReportId + { + get + { + return (string)ViewState["ReportId"]; + } + set + { + ViewState["ReportId"] = value; + } + } + + public string AddOrUpdate + { + get + { + return (string)ViewState["AddOrUpdate"]; + } + set + { + ViewState["AddOrUpdate"] = value; + } + } + #endregion + + #region 鍒楄〃闆嗗悎 + private static List detailsGrid1 = new List(); + #endregion + #region 鍔犺浇椤甸潰 + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.EnableViewState = true; + this.lblProjectName.Text = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId).ProjectName; + this.ReportId = Request.Params["reportId"]; + if (!string.IsNullOrEmpty(Request.Params["view"])) + { + this.Button1.Visible = false; + this.Button2.Visible = false; + } + + if (!string.IsNullOrEmpty(this.ReportId)) + { + Model.Report_WeekAndMonthReport_New weekAndMonthReport = WeekAndMonthReportNewService.Detail(this.ReportId); + if (weekAndMonthReport != null) + { + if (weekAndMonthReport.SortId != null) + { + this.txtPeriod.Text = Convert.ToString(weekAndMonthReport.SortId); + } + if (weekAndMonthReport.StartDate != null) + { + this.txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.StartDate); + } + if (weekAndMonthReport.EndDate != null) + { + this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.EndDate); + } + } + AddOrUpdate = "update"; + + #region 鍔犺浇鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + detailsGrid1.Clear(); + detailsGrid1 = (from x in Funs.DB.Report_CqmsTarget + where x.ReportId == this.ReportId + orderby x.SortId + select x).ToList(); + if (detailsGrid1.Count > 0) + { + Grid1.Hidden = false; + Grid1.DataSource = detailsGrid1; + Grid1.DataBind(); + } + + #endregion + + #region 鍔犺浇鏂囨湰妗嗗唴瀹 + var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList(); + txtAre0.Text = txtReportList.FirstOrDefault(x => x.ContentType == "0").ContentText; + txtAre1.Text = txtReportList.FirstOrDefault(x => x.ContentType == "1").ContentText; + txtAre2.Text = txtReportList.FirstOrDefault(x => x.ContentType == "2").ContentText; + + txtAre20.Text = txtReportList.FirstOrDefault(x => x.ContentType == "20").ContentText; + txtAre21.Text = txtReportList.FirstOrDefault(x => x.ContentType == "21").ContentText; + txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText; + #endregion + + + } + else + { + this.txtStartDate.Text = string.IsNullOrEmpty(Request.Params["startdate"]) ? string.Format("{0:yyyy-MM-dd}", DateTime.Now) : Request.Params["startdate"]; + this.txtEndDate.Text = string.IsNullOrEmpty(Request.Params["enddate"]) ? string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(this.txtStartDate.Text).AddMonths(1).AddDays(-1)) : Request.Params["enddate"]; + //缁欎釜鏂扮殑涓婚敭 + ReportId = Guid.NewGuid().ToString(); + AddOrUpdate = "add"; + } + hidReportId.Value = ReportId; + } + } + #endregion + + #region 鏃堕棿閫夋嫨浜嬩欢 + /// + /// 寮濮嬫椂闂撮夋嫨浜嬩欢 + /// + /// + /// + protected void txtStartDate_TextChanged(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim())) + { + string url = Request.Url.ToString(); + if (url.Contains("?")) + { + url = Request.Url.ToString().Substring(0, Request.Url.ToString().LastIndexOf('?')); + } + Response.Redirect(url + "?startdate=" + txtStartDate.Text + "&enddate=" + txtEndDate.Text); + } + } + #endregion + + #region 鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 Grid1鏂规硶 + protected void btnAddGrid1_Click(object sender, EventArgs e) + { + Grid1.Hidden = false; + + JArray teamGroupData = Grid1.GetMergedData(); + List list = new List(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + values.Add("Id", teamGroupRow.Value("id")); + list.Add(values); + } + JObject defaultObj = new JObject + { { "Id",Guid.NewGuid() }, + { "ReportId", ReportId }, + { "ProStage", "" }, + { "ProDescribe",""}, + { "TargetValue", "" }, + { "MonthPer","" }, + { "Remarks", "" }, + { "SortId","" }, + { "Delete1", String.Format("", GetDeleteScriptGrid1(), IconHelper.GetResolvedIconUrl(Icon.Delete)) } + }; + list.Add(defaultObj); + Grid1.DataSource = list; + Grid1.DataBind(); + } + + protected void Grid1_PreDataBound(object sender, EventArgs e) + { + // 璁剧疆LinkButtonField鐨勭偣鍑诲鎴风浜嬩欢 + LinkButtonField deleteField = Grid1.FindColumn("Delete1") as LinkButtonField; + deleteField.OnClientClick = GetDeleteScriptGrid1(); + } + /// + /// 鍒犻櫎鎻愮ず + /// + /// + private string GetDeleteScriptGrid1() + { + return Confirm.GetShowReference("鍒犻櫎閫変腑琛岋紵", String.Empty, MessageBoxIcon.Question, Grid1.GetDeleteSelectedRowsReference(), String.Empty); + } + #endregion + + #region 淇濆瓨 + /// + /// 淇濆瓨鎸夐挳 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + Model.Report_WeekAndMonthReport_New report = new Model.Report_WeekAndMonthReport_New(); + report.Id = ReportId; + report.ProjectId = this.CurrUser.LoginProjectId; + if (!string.IsNullOrEmpty(this.txtPeriod.Text.Trim())) + { + try + { + report.SortId = this.txtPeriod.Text.Trim(); + } + catch (Exception) + { + ScriptManager.RegisterStartupScript(this, typeof(string), "_alert", "alert('鍛ㄦ湡杈撳叆鏍煎紡涓嶆纭紝璇烽噸鏂拌緭鍏ワ紒')", true); + return; + } + } + if (!string.IsNullOrEmpty(this.txtStartDate.Text)) + { + report.StartDate = Convert.ToDateTime(this.txtStartDate.Text); + } + if (!string.IsNullOrEmpty(this.txtEndDate.Text)) + { + report.EndDate = Convert.ToDateTime(this.txtEndDate.Text); + } + report.CreateDate = DateTime.Now; + report.CreateMan = CurrUser.UserId; + + #region 鍒犻櫎鎵鏈夊瓙琛 + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(ReportId); + + //鎵鏈夋枃鏈琛 + TextBoxContentService.Delete(ReportId); + #endregion + + #region 淇濆瓨鎵鏈夊瓙琛 + //淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + saveTarget(); + + //淇濆瓨鏂囨湰妗 + saveTxtContent(); + #endregion + + if (AddOrUpdate == "add") + { + WeekAndMonthReportNewService.Insert(report); + } + else + { + WeekAndMonthReportNewService.Update(report); + } + + ShowNotify("缂栬緫鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + #region 淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + void saveTarget() + { + List detailLists = new List(); + JArray teamGroupData = Grid1.GetMergedData(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + int rowIndex = teamGroupRow.Value("index"); + Model.Report_CqmsTarget newDetail = new Model.Report_CqmsTarget + { + //Id = values.Value("Id"), + ReportId = ReportId, + ProStage = values.Value("ProStage"), + ProDescribe = values.Value("ProDescribe"), + TargetValue = values.Value("TargetValue"), + MonthPer = values.Value("MonthPer"), + Remarks = values.Value("Remarks"), + SortId = rowIndex + 1 + }; + if (Grid1.Rows[rowIndex].DataKeys.Length > 0) + { + newDetail.Id = Grid1.Rows[rowIndex].DataKeys[0].ToString(); + } + detailLists.Add(newDetail); + } + if (detailLists.Count > 0) + { + Funs.DB.Report_CqmsTarget.InsertAllOnSubmit(detailLists); + Funs.DB.SubmitChanges(); + } + + } + #endregion + + /// + /// 淇濆瓨鏂囨湰妗嗗唴瀹 + /// + void saveTxtContent() + { + var txtContentList = new List(); + #region 缁欏疄浣撹祴鍊 + var model0 = new Model.Report_TextBoxContent(); + model0.Id = Guid.NewGuid().ToString(); + model0.ReportId = ReportId; + model0.ContentType = "0"; + model0.ContentText = txtAre0.Text; + txtContentList.Add(model0); + + var model1 = new Model.Report_TextBoxContent(); + model1.Id = Guid.NewGuid().ToString(); + model1.ReportId = ReportId; + model1.ContentType = "1"; + model1.ContentText = txtAre1.Text; + txtContentList.Add(model1); + + var model2 = new Model.Report_TextBoxContent(); + model2.Id = Guid.NewGuid().ToString(); + model2.ReportId = ReportId; + model2.ContentType = "2"; + model2.ContentText = txtAre2.Text; + txtContentList.Add(model2); + + var model20 = new Model.Report_TextBoxContent(); + model20.Id = Guid.NewGuid().ToString(); + model20.ReportId = ReportId; + model20.ContentType = "20"; + model20.ContentText = txtAre20.Text; + txtContentList.Add(model20); + + var model21 = new Model.Report_TextBoxContent(); + model21.Id = Guid.NewGuid().ToString(); + model21.ReportId = ReportId; + model21.ContentType = "21"; + model21.ContentText = txtAre21.Text; + txtContentList.Add(model21); + + var model22 = new Model.Report_TextBoxContent(); + model22.Id = Guid.NewGuid().ToString(); + model22.ReportId = ReportId; + model22.ContentType = "22"; + model22.ContentText = txtAre22.Text; + txtContentList.Add(model22); + #endregion + Funs.DB.Report_TextBoxContent.InsertAllOnSubmit(txtContentList); + Funs.DB.SubmitChanges(); + } + + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx.designer.cs new file mode 100644 index 00000000..f31ab9d6 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit1.aspx.designer.cs @@ -0,0 +1,530 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReportNewEdit1 + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// ContentPanel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ContentPanel ContentPanel1; + + /// + /// Table1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table1; + + /// + /// tabbtn 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn; + + /// + /// image15 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Image image15; + + /// + /// Button2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button2; + + /// + /// Table5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table5; + + /// + /// lblProjectName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblProjectName; + + /// + /// Label1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// txtPeriod 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtPeriod; + + /// + /// RequiredFieldValidator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1; + + /// + /// Label2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label2; + + /// + /// lblTital 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblTital; + + /// + /// Table2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table2; + + /// + /// txtStartDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtStartDate; + + /// + /// txtEndDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtEndDate; + + /// + /// Panel4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel4; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// Button3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button3; + + /// + /// Form5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form5; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// txtProStage 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProStage; + + /// + /// txtProDescribe 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProDescribe; + + /// + /// txtTargetValue 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtTargetValue; + + /// + /// txtMonthPer 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtMonthPer; + + /// + /// txtRemarks 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtRemarks; + + /// + /// Panel5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel5; + + /// + /// Panel6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel6; + + /// + /// Form6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form6; + + /// + /// txtAre0 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre0; + + /// + /// Panel7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel7; + + /// + /// Form7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form7; + + /// + /// txtAre1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre1; + + /// + /// Panel8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel8; + + /// + /// Form8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form8; + + /// + /// txtAre2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre2; + + /// + /// Panel9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel9; + + /// + /// Panel10 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel10; + + /// + /// Form9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form9; + + /// + /// Panel3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel3; + + /// + /// Form3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form3; + + /// + /// txtAre20 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre20; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Form2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form2; + + /// + /// txtAre21 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre21; + + /// + /// Panel2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel2; + + /// + /// Form4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form4; + + /// + /// txtAre22 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre22; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// hdCheckControlCode 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdCheckControlCode; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// Button1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button1; + + /// + /// hdId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdId; + + /// + /// hdAttachUrl 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdAttachUrl; + + /// + /// ValidationSummary1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1; + + /// + /// hidReportId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlInputHidden hidReportId; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx new file mode 100644 index 00000000..b028e076 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx @@ -0,0 +1,386 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReportNewEdit2.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReportNewEdit2" %> + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + <%-- + + --%> + + + +
+ + + + + +
+ +  缂栬緫鏂藉伐璐ㄩ噺鏈堟姤 + + <%-- --%> + + + + +
+
+ + + + + + + + + +
+ + + + + + + * + +
+
+
+ +
+
+ + + + + +
鏃堕棿娈  + + + 鈥 + +
+
+ + + + + + + +
+ +  20锛夐」鐩川閲忎綋绯诲鏍 +
+ + + + +
+ +
+
+
+ <%--1.鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌--%> + + + + + + + + + + + + + + + + + + + + + + + <%--2.鏈湀涓昏宸ヤ綔鍐呭--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%--20.椤圭洰璐ㄩ噺浣撶郴瀹℃牳--%> + + + + + + + + + + + + + + + + <%--21.绫讳技椤圭洰绠$悊缁忛獙鏁欒搴斿鎺柦鍙婅窡韪--%> + + + + + + + + + + + + + + + + <%--22.闄勪欢--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx.cs new file mode 100644 index 00000000..7ecb85a4 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx.cs @@ -0,0 +1,344 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Newtonsoft.Json.Linq; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReportNewEdit2 : PageBase + { + #region 瀹氫箟椤 + /// + /// 涓婚敭 + /// + public string ReportId + { + get + { + return (string)ViewState["ReportId"]; + } + set + { + ViewState["ReportId"] = value; + } + } + + public string AddOrUpdate + { + get + { + return (string)ViewState["AddOrUpdate"]; + } + set + { + ViewState["AddOrUpdate"] = value; + } + } + #endregion + + #region 鍒楄〃闆嗗悎 + private static List detailsGrid1 = new List(); + #endregion + #region 鍔犺浇椤甸潰 + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.EnableViewState = true; + this.lblProjectName.Text = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId).ProjectName; + this.ReportId = Request.Params["reportId"]; + if (!string.IsNullOrEmpty(Request.Params["view"])) + { + this.Button1.Visible = false; + this.Button2.Visible = false; + } + + if (!string.IsNullOrEmpty(this.ReportId)) + { + Model.Report_WeekAndMonthReport_New weekAndMonthReport = WeekAndMonthReportNewService.Detail(this.ReportId); + if (weekAndMonthReport != null) + { + if (weekAndMonthReport.SortId != null) + { + this.txtPeriod.Text = Convert.ToString(weekAndMonthReport.SortId); + } + if (weekAndMonthReport.StartDate != null) + { + this.txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.StartDate); + } + if (weekAndMonthReport.EndDate != null) + { + this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.EndDate); + } + } + AddOrUpdate = "update"; + + #region 鍔犺浇鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + detailsGrid1.Clear(); + detailsGrid1 = (from x in Funs.DB.Report_CqmsTarget + where x.ReportId == this.ReportId + orderby x.SortId + select x).ToList(); + if (detailsGrid1.Count > 0) + { + Grid1.Hidden = false; + Grid1.DataSource = detailsGrid1; + Grid1.DataBind(); + } + + #endregion + + #region 鍔犺浇鏂囨湰妗嗗唴瀹 + var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList(); + txtAre0.Text = txtReportList.FirstOrDefault(x => x.ContentType == "0").ContentText; + txtAre1.Text = txtReportList.FirstOrDefault(x => x.ContentType == "1").ContentText; + txtAre2.Text = txtReportList.FirstOrDefault(x => x.ContentType == "2").ContentText; + + txtAre20.Text = txtReportList.FirstOrDefault(x => x.ContentType == "20").ContentText; + txtAre21.Text = txtReportList.FirstOrDefault(x => x.ContentType == "21").ContentText; + txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText; + #endregion + + + } + else + { + this.txtStartDate.Text = string.IsNullOrEmpty(Request.Params["startdate"]) ? string.Format("{0:yyyy-MM-dd}", DateTime.Now) : Request.Params["startdate"]; + this.txtEndDate.Text = string.IsNullOrEmpty(Request.Params["enddate"]) ? string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(this.txtStartDate.Text).AddMonths(1).AddDays(-1)) : Request.Params["enddate"]; + //缁欎釜鏂扮殑涓婚敭 + ReportId = Guid.NewGuid().ToString(); + AddOrUpdate = "add"; + } + hidReportId.Value = ReportId; + } + } + #endregion + + #region 鏃堕棿閫夋嫨浜嬩欢 + /// + /// 寮濮嬫椂闂撮夋嫨浜嬩欢 + /// + /// + /// + protected void txtStartDate_TextChanged(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim())) + { + string url = Request.Url.ToString(); + if (url.Contains("?")) + { + url = Request.Url.ToString().Substring(0, Request.Url.ToString().LastIndexOf('?')); + } + Response.Redirect(url + "?startdate=" + txtStartDate.Text + "&enddate=" + txtEndDate.Text); + } + } + #endregion + + #region 鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 Grid1鏂规硶 + protected void btnAddGrid1_Click(object sender, EventArgs e) + { + Grid1.Hidden = false; + + JArray teamGroupData = Grid1.GetMergedData(); + List list = new List(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + values.Add("Id", teamGroupRow.Value("id")); + list.Add(values); + } + JObject defaultObj = new JObject + { { "Id",Guid.NewGuid() }, + { "ReportId", ReportId }, + { "ProStage", "" }, + { "ProDescribe",""}, + { "TargetValue", "" }, + { "MonthPer","" }, + { "Remarks", "" }, + { "SortId","" }, + { "Delete1", String.Format("", GetDeleteScriptGrid1(), IconHelper.GetResolvedIconUrl(Icon.Delete)) } + }; + list.Add(defaultObj); + Grid1.DataSource = list; + Grid1.DataBind(); + } + + protected void Grid1_PreDataBound(object sender, EventArgs e) + { + // 璁剧疆LinkButtonField鐨勭偣鍑诲鎴风浜嬩欢 + LinkButtonField deleteField = Grid1.FindColumn("Delete1") as LinkButtonField; + deleteField.OnClientClick = GetDeleteScriptGrid1(); + } + /// + /// 鍒犻櫎鎻愮ず + /// + /// + private string GetDeleteScriptGrid1() + { + return Confirm.GetShowReference("鍒犻櫎閫変腑琛岋紵", String.Empty, MessageBoxIcon.Question, Grid1.GetDeleteSelectedRowsReference(), String.Empty); + } + #endregion + + #region 淇濆瓨 + /// + /// 淇濆瓨鎸夐挳 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + Model.Report_WeekAndMonthReport_New report = new Model.Report_WeekAndMonthReport_New(); + report.Id = ReportId; + report.ProjectId = this.CurrUser.LoginProjectId; + if (!string.IsNullOrEmpty(this.txtPeriod.Text.Trim())) + { + try + { + report.SortId = this.txtPeriod.Text.Trim(); + } + catch (Exception) + { + ScriptManager.RegisterStartupScript(this, typeof(string), "_alert", "alert('鍛ㄦ湡杈撳叆鏍煎紡涓嶆纭紝璇烽噸鏂拌緭鍏ワ紒')", true); + return; + } + } + if (!string.IsNullOrEmpty(this.txtStartDate.Text)) + { + report.StartDate = Convert.ToDateTime(this.txtStartDate.Text); + } + if (!string.IsNullOrEmpty(this.txtEndDate.Text)) + { + report.EndDate = Convert.ToDateTime(this.txtEndDate.Text); + } + report.CreateDate = DateTime.Now; + report.CreateMan = CurrUser.UserId; + + #region 鍒犻櫎鎵鏈夊瓙琛 + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(ReportId); + + //鎵鏈夋枃鏈琛 + TextBoxContentService.Delete(ReportId); + #endregion + + #region 淇濆瓨鎵鏈夊瓙琛 + //淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + saveTarget(); + + //淇濆瓨鏂囨湰妗 + saveTxtContent(); + #endregion + + if (AddOrUpdate == "add") + { + WeekAndMonthReportNewService.Insert(report); + } + else + { + WeekAndMonthReportNewService.Update(report); + } + + ShowNotify("缂栬緫鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + #region 淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + void saveTarget() + { + List detailLists = new List(); + JArray teamGroupData = Grid1.GetMergedData(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + int rowIndex = teamGroupRow.Value("index"); + Model.Report_CqmsTarget newDetail = new Model.Report_CqmsTarget + { + //Id = values.Value("Id"), + ReportId = ReportId, + ProStage = values.Value("ProStage"), + ProDescribe = values.Value("ProDescribe"), + TargetValue = values.Value("TargetValue"), + MonthPer = values.Value("MonthPer"), + Remarks = values.Value("Remarks"), + SortId = rowIndex + 1 + }; + if (Grid1.Rows[rowIndex].DataKeys.Length > 0) + { + newDetail.Id = Grid1.Rows[rowIndex].DataKeys[0].ToString(); + } + detailLists.Add(newDetail); + } + if (detailLists.Count > 0) + { + Funs.DB.Report_CqmsTarget.InsertAllOnSubmit(detailLists); + Funs.DB.SubmitChanges(); + } + + } + #endregion + + /// + /// 淇濆瓨鏂囨湰妗嗗唴瀹 + /// + void saveTxtContent() + { + var txtContentList = new List(); + #region 缁欏疄浣撹祴鍊 + var model0 = new Model.Report_TextBoxContent(); + model0.Id = Guid.NewGuid().ToString(); + model0.ReportId = ReportId; + model0.ContentType = "0"; + model0.ContentText = txtAre0.Text; + txtContentList.Add(model0); + + var model1 = new Model.Report_TextBoxContent(); + model1.Id = Guid.NewGuid().ToString(); + model1.ReportId = ReportId; + model1.ContentType = "1"; + model1.ContentText = txtAre1.Text; + txtContentList.Add(model1); + + var model2 = new Model.Report_TextBoxContent(); + model2.Id = Guid.NewGuid().ToString(); + model2.ReportId = ReportId; + model2.ContentType = "2"; + model2.ContentText = txtAre2.Text; + txtContentList.Add(model2); + + var model20 = new Model.Report_TextBoxContent(); + model20.Id = Guid.NewGuid().ToString(); + model20.ReportId = ReportId; + model20.ContentType = "20"; + model20.ContentText = txtAre20.Text; + txtContentList.Add(model20); + + var model21 = new Model.Report_TextBoxContent(); + model21.Id = Guid.NewGuid().ToString(); + model21.ReportId = ReportId; + model21.ContentType = "21"; + model21.ContentText = txtAre21.Text; + txtContentList.Add(model21); + + var model22 = new Model.Report_TextBoxContent(); + model22.Id = Guid.NewGuid().ToString(); + model22.ReportId = ReportId; + model22.ContentType = "22"; + model22.ContentText = txtAre22.Text; + txtContentList.Add(model22); + #endregion + Funs.DB.Report_TextBoxContent.InsertAllOnSubmit(txtContentList); + Funs.DB.SubmitChanges(); + } + + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx.designer.cs new file mode 100644 index 00000000..9d0b60a7 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit2.aspx.designer.cs @@ -0,0 +1,530 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReportNewEdit2 + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// ContentPanel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ContentPanel ContentPanel1; + + /// + /// Table1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table1; + + /// + /// tabbtn 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn; + + /// + /// image15 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Image image15; + + /// + /// Button2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button2; + + /// + /// Table5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table5; + + /// + /// lblProjectName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblProjectName; + + /// + /// Label1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// txtPeriod 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtPeriod; + + /// + /// RequiredFieldValidator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1; + + /// + /// Label2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label2; + + /// + /// lblTital 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblTital; + + /// + /// Table2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table2; + + /// + /// txtStartDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtStartDate; + + /// + /// txtEndDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtEndDate; + + /// + /// Panel4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel4; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// Button3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button3; + + /// + /// Form5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form5; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// txtProStage 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProStage; + + /// + /// txtProDescribe 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProDescribe; + + /// + /// txtTargetValue 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtTargetValue; + + /// + /// txtMonthPer 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtMonthPer; + + /// + /// txtRemarks 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtRemarks; + + /// + /// Panel5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel5; + + /// + /// Panel6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel6; + + /// + /// Form6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form6; + + /// + /// txtAre0 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre0; + + /// + /// Panel7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel7; + + /// + /// Form7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form7; + + /// + /// txtAre1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre1; + + /// + /// Panel8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel8; + + /// + /// Form8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form8; + + /// + /// txtAre2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre2; + + /// + /// Panel9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel9; + + /// + /// Panel10 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel10; + + /// + /// Form9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form9; + + /// + /// Panel3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel3; + + /// + /// Form3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form3; + + /// + /// txtAre20 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre20; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Form2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form2; + + /// + /// txtAre21 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre21; + + /// + /// Panel2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel2; + + /// + /// Form4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form4; + + /// + /// txtAre22 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre22; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// hdCheckControlCode 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdCheckControlCode; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// Button1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button1; + + /// + /// hdId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdId; + + /// + /// hdAttachUrl 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdAttachUrl; + + /// + /// ValidationSummary1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1; + + /// + /// hidReportId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlInputHidden hidReportId; + } +} diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index e69de29b..7fe02962 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -0,0 +1,3014 @@ +<<<<<<< HEAD +======= + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 FineUIPro.Window.OnClose(WindowCloseEventArgs e) + 鍦 (Window , WindowCloseEventArgs ) + 鍦 FineUIPro.Window.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/06/2024 15:22:37 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/06/2024 15:22:37 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 FineUIPro.Window.OnClose(WindowCloseEventArgs e) + 鍦 (Window , WindowCloseEventArgs ) + 鍦 FineUIPro.Window.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/06/2024 15:24:56 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/06/2024 15:24:57 + +<<<<<<< HEAD + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeView.aspx(199): error CS1061: 鈥淎SP.testrun_driverschemeview_aspx鈥濅笉鍖呭惈鈥渢rOne_NodeCheck鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.testrun_driverschemeview_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渢rOne_NodeCheck鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:02/28/2024 16:18:39 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/DriverSchemeView.aspx?constructSolutionId=0d62a778-7fbc-4fec-ba0f-ff10dab34db2 +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:02/28/2024 16:18:39 + +>>>>>>> d28f7920d8c82ae74b3b4579a35df26704bc6372 + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍒楀悕 'CompileManDate' 鏃犳晥銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.BindGrid() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:琛屽彿 55 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/06/2024 10:41:09 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeeting.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/06/2024 10:41:09 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 17:17:40 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 19:17:39 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 +鍑洪敊鏃堕棿:03/06/2024 19:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 21:17:40 +鍑洪敊鏃堕棿:03/06/2024 21:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 21:17:40 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:26:42 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:26:42 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:26:42 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:26:42 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:27:16 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:27:16 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:08 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:09 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:09 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:10 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:10 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:10 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:10 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:12 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 260 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 243 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:46:01 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:46:01 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 260 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 243 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:46:02 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:46:02 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 260 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 243 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:46:06 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:46:06 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:27 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:27 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:28 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:28 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:32 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:32 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:04:30 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:04:30 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:04:30 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:04:30 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:04:31 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:04:31 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 274 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 257 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:07:25 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:07:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 274 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 257 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:07:26 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:07:26 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingView.aspx(80): error CS1061: 鈥淎SP.testrun_meeting_schedulemeetingview_aspx鈥濅笉鍖呭惈鈥渢vAttendMeetingsPerson_NodeCheck鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.testrun_meeting_schedulemeetingview_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渢vAttendMeetingsPerson_NodeCheck鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/07/2024 10:11:48 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingView.aspx?id=ec5242d2-de49-4c14-bff2-2957f1f8a04f +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/07/2024 10:11:48 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:02 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:02 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:03 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:04 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:04 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:05 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:05 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:FormatException +閿欒淇℃伅:璇ュ瓧绗︿覆鏈璇嗗埆涓烘湁鏁堢殑甯冨皵鍊笺 +閿欒鍫嗘爤: + 鍦 System.Boolean.Parse(String value) + 鍦 System.Convert.ToBoolean(String value) + 鍦 FineUIPro.Web.TestRun.Meeting.Feedback.btnSave_Click(Object sender, EventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\Feedback.aspx.cs:琛屽彿 62 + 鍦 FineUIPro.Button.OnClick(EventArgs e) + 鍦 (Button , EventArgs ) + 鍦 FineUIPro.Button.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:30:12 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/Feedback.aspx?id=ec5242d2-de49-4c14-bff2-2957f1f8a04f +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:30:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentNullException +閿欒淇℃伅:鍊间笉鑳戒负 null銆 +鍙傛暟鍚: expression +閿欒鍫嗘爤: + 鍦 System.Web.UI.DataBinder.Eval(Object container, String expression) + 鍦 System.Web.UI.TemplateControl.Eval(String expression) + 鍦 ASP.testrun_meeting_schedulemeeting_aspx.__DataBindinglblUserId(Object sender, EventArgs e) 浣嶇疆 e:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx:琛屽彿 57 + 鍦 System.Web.UI.Control.OnDataBinding(EventArgs e) + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 System.Web.UI.Control.DataBindChildren() + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 (Control ) + 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object ) + 鍦 (Grid , Int32 , Object ) + 鍦 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean ) + 鍦 (Grid , DataTable , Boolean ) + 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData) + 鍦 (Grid , Boolean ) + 鍦 FineUIPro.Grid.DataBind() + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.BindGrid() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:琛屽彿 61 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:45:20 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeeting.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:45:20 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 16:45:48 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 16:45:48 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 16:45:49 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 16:45:49 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 20:45:22 +鍑洪敊鏃堕棿:03/07/2024 20:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 22:45:21 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 285 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 268 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:12:38 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/08/2024 14:12:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 285 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 268 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:12:38 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/08/2024 14:12:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:琛屽彿 285 + 鍦 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:琛屽彿 268 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:13:13 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/SpecialMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/08/2024 14:13:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:琛屽彿 285 + 鍦 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:琛屽彿 268 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:13:14 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/SpecialMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/08/2024 14:13:14 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:琛屽彿 285 + 鍦 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:琛屽彿 268 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:13:15 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/SpecialMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/08/2024 14:13:15 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 292 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 275 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:22:04 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx?id=742da98e-3243-4ed6-b684-b7bb4837b304 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/08/2024 14:22:04 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 292 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 275 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:22:05 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx?id=742da98e-3243-4ed6-b684-b7bb4837b304 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/08/2024 14:22:05 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/08/2024 17:03:12 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 +鍑洪敊鏃堕棿:03/08/2024 17:03:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 +鍑洪敊鏃堕棿:03/08/2024 19:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 + +======= +>>>>>>> 7772c5b6828d71f0eaf77c1945ac9ec596c86a91 + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression) + 鍦 System.Linq.Queryable.Count[TSource](IQueryable`1 source) + 鍦 FineUIPro.Web.common.main_new.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\main_new.aspx.cs:琛屽彿 103 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 13:57:14 +鍑洪敊鏂囦欢:http://localhost:8579/common/main_new.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 13:57:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression) + 鍦 System.Linq.Queryable.Count[TSource](IQueryable`1 source) + 鍦 FineUIPro.Web.common.mainProject2.GetGeneralClosedNum() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 194 + 鍦 FineUIPro.Web.common.mainProject2.getZgsj() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 182 + 鍦 FineUIPro.Web.common.mainProject2.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 92 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 14:13:02 +鍑洪敊鏂囦欢:http://localhost:8579/common/mainProject2.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 14:13:02 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Collections.Generic.IEnumerable.GetEnumerator() + 鍦 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + 鍦 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + 鍦 BLL.InspectionManagementService.getInspectionManagementDetailListByCNProfessionalIdAndDate(String projectId, String cNProfessionalId, DateTime startDate, DateTime SoptDate, Boolean isOnceQualified) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\CQMS\ProcessControl\InspectionManagementService.cs:琛屽彿 332 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.CheckLotBindStatisc(String cNProfessionalCode) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 524 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 111 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 14:17:25 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReportEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 14:17:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Collections.Generic.IEnumerable.GetEnumerator() + 鍦 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + 鍦 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + 鍦 BLL.InspectionManagementService.getInspectionManagementDetailListByCNProfessionalIdAndDate(String projectId, String cNProfessionalId, DateTime startDate, DateTime SoptDate, Boolean isOnceQualified) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\CQMS\ProcessControl\InspectionManagementService.cs:琛屽彿 332 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.CheckLotBindStatisc(String cNProfessionalCode) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 524 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 111 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 14:18:52 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReportEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 14:19:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鏂囦欢鈥/CQMS/ManageReportNew/MonthReport.aspx鈥濅笉瀛樺湪銆 +閿欒鍫嗘爤: + 鍦 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:24:21 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:24:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 32 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 19 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:29:14 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:29:14 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select Id, Sortid, StartDate, EndDate' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 32 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 19 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:31:35 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:31:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.Form鈥濅笉鍏锋湁鍚嶄负鈥渢able鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.Form鈥濅笉鍏锋湁鍚嶄负鈥渢able鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/11/2024 15:35:03 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:35:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: 鈥渂tnSave_Click鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:38:16 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:38:16 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: 鈥渂tnSave_Click鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:38:40 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:38:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: 鈥渂tnSave_Click鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:39:25 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:39:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:琛屽彿 57 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:41:00 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:41:00 + +鎻掑叆鏁版嵁澶辫触,鍘熷洜锛氫笉鑳藉皢鍊 NULL 鎻掑叆鍒 'Id'锛岃〃 'SGGLDB_WH.dbo.Report_WeekAndMonthReport_New'锛涘垪涓嶅厑璁告湁 Null 鍊笺侷NSERT 澶辫触銆 +璇彞宸茬粓姝€ +鎻掑叆鏁版嵁澶辫触,鍘熷洜锛氫笉鑳藉皢鍊 NULL 鎻掑叆鍒 'Id'锛岃〃 'SGGLDB_WH.dbo.Report_WeekAndMonthReport_New'锛涘垪涓嶅厑璁告湁 Null 鍊笺侷NSERT 澶辫触銆 +璇彞宸茬粓姝€ + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:DataBinding:鈥淪ystem.Data.DataRowView鈥濅笉鍖呭惈鍚嶄负鈥淩eportId鈥濈殑灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName) + 鍦 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts) + 鍦 System.Web.UI.DataBinder.Eval(Object container, String expression) + 鍦 System.Web.UI.TemplateControl.Eval(String expression) + 鍦 ASP.cqms_managereportnew_monthreport_aspx.__DataBindingLabel41(Object sender, EventArgs e) 浣嶇疆 e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx:琛屽彿 43 + 鍦 System.Web.UI.Control.OnDataBinding(EventArgs e) + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 System.Web.UI.Control.DataBindChildren() + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 (Control ) + 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object ) + 鍦 (Grid , Int32 , Object ) + 鍦 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean ) + 鍦 (Grid , DataTable , Boolean ) + 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData) + 鍦 (Grid , Boolean ) + 鍦 FineUIPro.Grid.DataBind() + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Window1_Close(Object sender, WindowCloseEventArgs e) + 鍦 FineUIPro.Window.OnClose(WindowCloseEventArgs e) + 鍦 (Window , WindowCloseEventArgs ) + 鍦 FineUIPro.Window.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:42:41 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:42:41 + +鎻掑叆鏁版嵁澶辫触,鍘熷洜锛氳繚鍙嶄簡 PRIMARY KEY 绾︽潫鈥淧K_Report_WeekAndMonthReport_New鈥濄備笉鑳藉湪瀵硅薄鈥渄bo.Report_WeekAndMonthReport_New鈥濅腑鎻掑叆閲嶅閿傞噸澶嶉敭鍊间负 (a7666577-2499-41a6-a724-98150978bc41)銆 +璇彞宸茬粓姝€ + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1061: 鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濅笉鍖呭惈鈥渃hangeFrameHeight鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渃hangeFrameHeight鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 16:17:15 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 16:17:15 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1061: 鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濅笉鍖呭惈鈥渃hangeFrameHeight鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渃hangeFrameHeight鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 16:18:13 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 16:18:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鏈嶅姟鍣ㄦ爣璁扮殑鏍煎紡涓嶆纭 +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessError(String message) + 鍦 System.Web.UI.TemplateParser.DetectSpecialServerTagError(String text, Int32 textPos) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/11/2024 17:29:27 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 17:29:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1041: 搴旇緭鍏ユ爣璇嗙锛涒渢his鈥濇槸鍏抽敭瀛 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 17:36:38 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 17:36:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1041: 搴旇緭鍏ユ爣璇嗙锛涒渢his鈥濇槸鍏抽敭瀛 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 17:39:29 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 17:39:29 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:鍩虹被鍖呮嫭瀛楁鈥渉idReportId鈥濓紝浣嗗叾绫诲瀷(System.Web.UI.HtmlControls.HtmlInputHidden)涓庢帶浠(System.Web.UI.HtmlControls.HtmlInputText)鐨勭被鍨嬩笉鍏煎銆 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildFieldDeclaration(ControlBuilder builder) + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse) + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse) + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse) + 鍦 System.Web.Compilation.TemplateControlCodeDomTreeGenerator.BuildMiscClassMembers() + 鍦 System.Web.Compilation.PageCodeDomTreeGenerator.BuildMiscClassMembers() + 鍦 System.Web.Compilation.BaseCodeDomTreeGenerator.BuildSourceDataTree() + 鍦 System.Web.Compilation.BaseCodeDomTreeGenerator.GetCodeDomTree(CodeDomProvider codeDomProvider, StringResourceBuilder stringResourceBuilder, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BaseTemplateBuildProvider.GenerateCode(AssemblyBuilder assemblyBuilder) + 鍦 System.Web.Compilation.AssemblyBuilder.AddBuildProvider(BuildProvider buildProvider) +鍑洪敊鏃堕棿:03/12/2024 09:51:40 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 09:51:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鎺т欢鍖呭惈浠g爜鍧(鍗 <% ... %>)锛屽洜姝ゆ棤娉曚慨鏀规帶浠堕泦鍚堛 +閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlCollection.AddAt(Int32 index, Control child) + 鍦 FineUIPro.Web.PageBase.OnInit(EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:琛屽彿 227 + 鍦 System.Web.UI.Control.InitRecursive(Control namingContainer) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 09:58:10 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 09:58:10 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鎺т欢鍖呭惈浠g爜鍧(鍗 <% ... %>)锛屽洜姝ゆ棤娉曚慨鏀规帶浠堕泦鍚堛 +閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlCollection.AddAt(Int32 index, Control child) + 鍦 FineUIPro.Web.PageBase.OnInit(EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:琛屽彿 227 + 鍦 System.Web.UI.Control.InitRecursive(Control namingContainer) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 09:58:12 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 09:58:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 30 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 10:27:57 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 10:27:57 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:Runat 鐗规у繀椤诲叿鏈夊 Server銆 +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----Runat 鐗规у繀椤诲叿鏈夊 Server銆 +----閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessError(String message) + 鍦 System.Web.UI.TemplateParser.ProcessAttributes(String text, Match match, ParsedAttributeCollection& attribs, Boolean fDirective, String& duplicateAttribute) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/12/2024 10:49:18 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 10:49:18 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淏utton鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淏utton鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/12/2024 10:57:49 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 10:57:49 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淭oolbarPosition鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淭oolbarPosition鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs) + 鍦 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs) + 鍦 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/12/2024 11:00:25 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 11:00:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 30 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 14:53:51 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 14:53:51 + +>>>>>>> c3f952cc792413e938e14d320464c4881181d4f8 diff --git a/SGGL/FineUIPro.Web/File/Excel/TestRun/璇曡溅鐗╄祫鏉愭枡搴撳鍏ユā鏉.xls b/SGGL/FineUIPro.Web/File/Excel/TestRun/璇曡溅鐗╄祫鏉愭枡搴撳鍏ユā鏉.xls index 8d4a86a0..6e135eb8 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/TestRun/璇曡溅鐗╄祫鏉愭枡搴撳鍏ユā鏉.xls and b/SGGL/FineUIPro.Web/File/Excel/TestRun/璇曡溅鐗╄祫鏉愭枡搴撳鍏ユā鏉.xls differ diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index d5e7862b..417b53cb 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -495,6 +495,11 @@ + + + + + @@ -1449,11 +1454,15 @@ + + + + @@ -2051,6 +2060,8 @@ + + @@ -7770,6 +7781,41 @@ ShoBreakdownProject.aspx + + MonthReport.aspx + ASPXCodeBehind + + + MonthReport.aspx + + + MonthReportEdit.aspx + ASPXCodeBehind + + + MonthReportEdit.aspx + + + MonthReportNewEdit.aspx + ASPXCodeBehind + + + MonthReportNewEdit.aspx + + + MonthReportNewEdit1.aspx + ASPXCodeBehind + + + MonthReportNewEdit1.aspx + + + MonthReportNewEdit2.aspx + ASPXCodeBehind + + + MonthReportNewEdit2.aspx + CheckStatisc.aspx ASPXCodeBehind @@ -14150,6 +14196,20 @@ WorkPlanEdit.aspx + + BusinessTrip.aspx + ASPXCodeBehind + + + BusinessTrip.aspx + + + BusinessTripEdit.aspx + ASPXCodeBehind + + + BusinessTripEdit.aspx + PersonMeeting.aspx ASPXCodeBehind @@ -14185,6 +14245,20 @@ PersonDuty.aspx + + TestRunPerformance.aspx + ASPXCodeBehind + + + TestRunPerformance.aspx + + + TestRunPerformanceEdit.aspx + ASPXCodeBehind + + + TestRunPerformanceEdit.aspx + PersonCheck.aspx ASPXCodeBehind @@ -17923,6 +17997,20 @@ SuperviseCheckReportEdit.aspx + + TestRunPerformanceMonthReport.aspx + ASPXCodeBehind + + + TestRunPerformanceMonthReport.aspx + + + TestRunPerformanceMonthReportEdit.aspx + ASPXCodeBehind + + + TestRunPerformanceMonthReportEdit.aspx + TestRunPerformanceStandard.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx b/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx new file mode 100644 index 00000000..2bc09a33 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx @@ -0,0 +1,100 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BusinessTrip.aspx.cs" Inherits="FineUIPro.Web.Personal.BusinessTrip" %> + + + + + + 鍑哄樊璁板綍 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx.cs b/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx.cs new file mode 100644 index 00000000..9d50e619 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx.cs @@ -0,0 +1,228 @@ +锘縰sing BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + +namespace FineUIPro.Web.Personal +{ + public partial class BusinessTrip : PageBase + { + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + Funs.DropDownPageSize(this.ddlPageSize); + if (this.CurrUser != null && this.CurrUser.PageSize.HasValue) + { + Grid1.PageSize = this.CurrUser.PageSize.Value; + } + this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); + // 缁戝畾琛ㄦ牸 + this.BindGrid(); + ////鏉冮檺鎸夐挳鏂规硶 + this.GetButtonPower(); + } + } + + /// + /// 缁戝畾鏁版嵁 + /// + private void BindGrid() + { + string strSql = @"SELECT trip.BusinessTripId,trip.ProjectId,trip.UserId,trip.ArriveDate,trip.LeaveDate,Users.UserName,Project.ProjectName,case trip.Type when '1' then '椤圭洰鍑哄樊' when '2' then '鍏朵粬鍑哄樊' else '' end AS TypeStr " + + @" From dbo.Person_BusinessTrip AS trip" + + @" LEFT JOIN Sys_User AS Users ON Users.UserId=trip.UserId" + + @" LEFT JOIN Base_Project AS Project ON Project.ProjectId=trip.ProjectId" + + @" WHERE 1=1"; + List listStr = new List(); + if (this.rblType.SelectedValue!="0") + { + strSql += " AND trip.Type = @Type"; + listStr.Add(new SqlParameter("@Type", this.rblType.SelectedValue)); + } + if (this.CurrUser.UserId != BLL.Const.sysglyId && this.CurrUser.UserId != BLL.Const.hfnbdId) + { + strSql += " AND trip.UserId = @UserId"; + listStr.Add(new SqlParameter("@UserId", this.CurrUser.UserId)); + } + if (!string.IsNullOrEmpty(this.txtUserName.Text.Trim())) + { + strSql += " AND UserName LIKE @UserName"; + listStr.Add(new SqlParameter("@UserName", "%" + this.txtUserName.Text.Trim() + "%")); + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + if (this.rblType.SelectedValue == "0" || this.rblType.SelectedValue == "1") + { + this.Grid1.Columns[3].Hidden = false; + } + else + { + this.Grid1.Columns[3].Hidden = true; + } + } + + + #region 鍒嗛〉 + /// + /// 鍒嗛〉 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 鍒嗛〉鏄剧ず鏉℃暟涓嬫媺妗 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 鎺掑簭 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + BindGrid(); + } + + #endregion + + #region 鍒犻櫎鏁版嵁 + /// + /// 鎵归噺鍒犻櫎鏁版嵁 + /// + /// + /// + protected void btnMenuDelete_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + var trip = Person_BusinessTripService.GetPersonBusinessTripById(rowID); + if (trip != null) + { + BLL.Person_BusinessTripService.DeletePersonBusinessTrip(rowID); + } + } + BindGrid(); + ShowNotify("鍒犻櫎鏁版嵁鎴愬姛!", MessageBoxIcon.Success); + } + else + { + ShowNotify("璇疯嚦灏戦変腑涓琛岋紒", MessageBoxIcon.Warning); + } + } + #endregion + + protected void btnNew_Click(object sender, EventArgs e) + { + var noEndTrip = (from x in Funs.DB.Person_BusinessTrip where x.UserId == this.CurrUser.UserId && (x.ArriveDate == null || x.LeaveDate == null) select x).FirstOrDefault(); + if (noEndTrip != null) + { + ShowNotify("灏氭湁涓鏉¤褰曞埌杈/绂诲紑鏃ユ湡涓虹┖锛岃鍏堝畬鍠勪俊鎭悗鍐嶆柊澧炲嚭宸褰曪紒", MessageBoxIcon.Warning); + return; + } + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("BusinessTripEdit.aspx", "缂栬緫 - "))); + } + + #region 缂栬緫 + /// + /// 缂栬緫 + /// + /// + /// + protected void btnMenuEdit_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + Alert.ShowInParent("璇疯嚦灏戦夋嫨涓鏉¤褰曪紒", MessageBoxIcon.Warning); + return; + } + string Id = Grid1.SelectedRowID; + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("BusinessTripEdit.aspx?BusinessTripId={0}", Id, "缂栬緫 - "))); + } + + /// + /// Grid琛屽弻鍑讳簨浠 + /// + /// + /// + protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e) + { + btnMenuEdit_Click(null, null); + } + #endregion + + #region 鏌ヨ + /// + /// 鏌ヨ + /// + /// + /// + protected void TextBox_TextChanged(object sender, EventArgs e) + { + this.BindGrid(); + } + #endregion + + #region 鑾峰彇鎸夐挳鏉冮檺 + /// + /// 鑾峰彇鎸夐挳鏉冮檺 + /// + /// + /// + private void GetButtonPower() + { + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.BusinessTripMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + this.btnMenuEdit.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDelete.Hidden = false; + } + } + } + #endregion + + protected void Window1_Close(object sender, EventArgs e) + { + BindGrid(); + } + + protected void rblType_SelectedIndexChanged(object sender, EventArgs e) + { + BindGrid(); + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx.designer.cs b/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx.designer.cs new file mode 100644 index 00000000..11962c5b --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/BusinessTrip.aspx.designer.cs @@ -0,0 +1,159 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Personal { + + + public partial class BusinessTrip { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// txtUserName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtUserName; + + /// + /// rblType 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.RadioButtonList rblType; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// btnNew 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// ToolbarSeparator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuEdit 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuEdit; + + /// + /// btnMenuDelete 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuDelete; + } +} diff --git a/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx b/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx new file mode 100644 index 00000000..14f972df --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx @@ -0,0 +1,57 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BusinessTripEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.BusinessTripEdit" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx.cs b/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx.cs new file mode 100644 index 00000000..90703fa0 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx.cs @@ -0,0 +1,129 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model; + +namespace FineUIPro.Web.Personal +{ + public partial class BusinessTripEdit : PageBase + { + /// + /// 瀹氫箟椤 + /// + public string BusinessTripId + { + get + { + return (string)ViewState["BusinessTripId"]; + } + set + { + ViewState["BusinessTripId"] = value; + } + } + + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.btnClose.OnClientClick = ActiveWindow.GetHideReference(); + ProjectService.InitAllProjectDropDownList(this.drpProject, true); + this.BusinessTripId = Request.QueryString["BusinessTripId"]; + if (!String.IsNullOrEmpty(this.BusinessTripId)) + { + var trip = BLL.Person_BusinessTripService.GetPersonBusinessTripById(this.BusinessTripId); + if (trip != null) + { + if (!string.IsNullOrEmpty(trip.Type)) + { + this.rblType.SelectedValue = trip.Type; + } + if (this.rblType.SelectedValue == "1") + { + this.drpProject.Hidden = false; + } + else + { + this.drpProject.Hidden = true; + } + this.lbUserName.Text = BLL.UserService.GetUserNameByUserId(trip.UserId); + if (!string.IsNullOrEmpty(trip.ProjectId)) + { + this.drpProject.SelectedValue = trip.ProjectId; + } + if (trip.ArriveDate != null) + { + this.txtArriveDate.Text = string.Format("{0:yyyy-MM-dd}", trip.ArriveDate); + } + if (trip.LeaveDate != null) + { + this.txtLeaveDate.Text = string.Format("{0:yyyy-MM-dd}", trip.LeaveDate); + } + } + } + else + { + this.lbUserName.Text = this.CurrUser.UserName; + } + } + } + + /// + /// 淇濆瓨鏁版嵁 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + if (this.drpProject.SelectedValue == BLL.Const._Null && this.rblType.SelectedValue == "1") + { + Alert.ShowInParent("璇烽夋嫨椤圭洰锛", MessageBoxIcon.Warning); + return; + } + Model.Person_BusinessTrip newTrip = new Model.Person_BusinessTrip() + { + Type = this.rblType.SelectedValue, + UserId = this.CurrUser.UserId, + ProjectId = this.drpProject.SelectedValue, + ArriveDate = Funs.GetNewDateTime(this.txtArriveDate.Text), + LeaveDate = Funs.GetNewDateTime(this.txtLeaveDate.Text), + }; + if (!string.IsNullOrEmpty(this.BusinessTripId)) + { + newTrip.BusinessTripId = this.BusinessTripId; + BLL.Person_BusinessTripService.UpdatePersonBusinessTrip(newTrip); + BLL.LogService.AddSys_Log(this.CurrUser, null, newTrip.BusinessTripId, BLL.Const.BusinessTripMenuId, BLL.Const.BtnAdd); + } + else + { + newTrip.BusinessTripId = SQLHelper.GetNewID(); + BLL.Person_BusinessTripService.AddPersonBusinessTrip(newTrip); + BLL.LogService.AddSys_Log(this.CurrUser, null, newTrip.BusinessTripId, BLL.Const.BusinessTripMenuId, BLL.Const.BtnModify); + } + + ShowNotify("淇濆瓨鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + protected void rblType_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.rblType.SelectedValue == "1") + { + this.drpProject.Hidden = false; + } + else + { + this.drpProject.Hidden = true; + } + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx.designer.cs new file mode 100644 index 00000000..4e44df4f --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/BusinessTripEdit.aspx.designer.cs @@ -0,0 +1,114 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Personal { + + + public partial class BusinessTripEdit { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// rblType 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.RadioButtonList rblType; + + /// + /// lbUserName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Label lbUserName; + + /// + /// drpProject 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList drpProject; + + /// + /// txtArriveDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DatePicker txtArriveDate; + + /// + /// txtLeaveDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DatePicker txtLeaveDate; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// btnSave 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnSave; + + /// + /// btnClose 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnClose; + } +} diff --git a/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx b/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx new file mode 100644 index 00000000..26a36620 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx @@ -0,0 +1,103 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestRunPerformance.aspx.cs" Inherits="FineUIPro.Web.Personal.TestRunPerformance" %> + + + + + + 寮杞︾哗鏁堣褰 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx.cs b/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx.cs new file mode 100644 index 00000000..362d5110 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx.cs @@ -0,0 +1,205 @@ +锘縰sing BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + +namespace FineUIPro.Web.Personal +{ + public partial class TestRunPerformance : PageBase + { + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + Funs.DropDownPageSize(this.ddlPageSize); + if (this.CurrUser != null && this.CurrUser.PageSize.HasValue) + { + Grid1.PageSize = this.CurrUser.PageSize.Value; + } + this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); + // 缁戝畾琛ㄦ牸 + this.BindGrid(); + ////鏉冮檺鎸夐挳鏂规硶 + this.GetButtonPower(); + } + } + + /// + /// 缁戝畾鏁版嵁 + /// + private void BindGrid() + { + string strSql = @"SELECT performance.TestRunPerformanceId,performance.ProjectId,performance.UserId,performance.Months,performance.JobContent,performance.TestRunPerformanceStandardId,Users.UserName,case when performance.ProjectId='0' then '鏈儴' else Project.ProjectName end as ProjectName,Standard.Type,Standard.Item,Standard.Unit,Standard.Days " + + @" From dbo.Person_TestRunPerformance AS performance" + + @" LEFT JOIN Sys_User AS Users ON Users.UserId=performance.UserId" + + @" LEFT JOIN Base_Project AS Project ON Project.ProjectId=performance.ProjectId" + + @" LEFT JOIN Base_TestRunPerformanceStandard AS Standard ON Standard.TestRunPerformanceStandardId=performance.TestRunPerformanceStandardId" + + @" WHERE 1=1"; + List listStr = new List(); + if (this.CurrUser.UserId != BLL.Const.sysglyId && this.CurrUser.UserId != BLL.Const.hfnbdId) + { + strSql += " AND performance.UserId = @UserId"; + listStr.Add(new SqlParameter("@UserId", this.CurrUser.UserId)); + } + if (!string.IsNullOrEmpty(this.txtUserName.Text.Trim())) + { + strSql += " AND UserName LIKE @UserName"; + listStr.Add(new SqlParameter("@UserName", "%" + this.txtUserName.Text.Trim() + "%")); + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + + + #region 鍒嗛〉 + /// + /// 鍒嗛〉 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 鍒嗛〉鏄剧ず鏉℃暟涓嬫媺妗 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 鎺掑簭 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + BindGrid(); + } + + #endregion + + #region 鍒犻櫎鏁版嵁 + /// + /// 鎵归噺鍒犻櫎鏁版嵁 + /// + /// + /// + protected void btnMenuDelete_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + var performance = Person_TestRunPerformanceService.GetPersonTestRunPerformanceById(rowID); + if (performance != null) + { + BLL.Person_TestRunPerformanceService.DeletePersonTestRunPerformance(rowID); + } + } + BindGrid(); + ShowNotify("鍒犻櫎鏁版嵁鎴愬姛!", MessageBoxIcon.Success); + } + else + { + ShowNotify("璇疯嚦灏戦変腑涓琛岋紒", MessageBoxIcon.Warning); + } + } + #endregion + + protected void btnNew_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("TestRunPerformanceEdit.aspx", "缂栬緫 - "))); + } + + #region 缂栬緫 + /// + /// 缂栬緫 + /// + /// + /// + protected void btnMenuEdit_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + Alert.ShowInParent("璇疯嚦灏戦夋嫨涓鏉¤褰曪紒", MessageBoxIcon.Warning); + return; + } + string Id = Grid1.SelectedRowID; + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("TestRunPerformanceEdit.aspx?TestRunPerformanceId={0}", Id, "缂栬緫 - "))); + } + + /// + /// Grid琛屽弻鍑讳簨浠 + /// + /// + /// + protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e) + { + btnMenuEdit_Click(null, null); + } + #endregion + + #region 鏌ヨ + /// + /// 鏌ヨ + /// + /// + /// + protected void TextBox_TextChanged(object sender, EventArgs e) + { + this.BindGrid(); + } + #endregion + + #region 鑾峰彇鎸夐挳鏉冮檺 + /// + /// 鑾峰彇鎸夐挳鏉冮檺 + /// + /// + /// + private void GetButtonPower() + { + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.TestRunPerformanceMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + this.btnMenuEdit.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDelete.Hidden = false; + } + } + } + #endregion + + protected void Window1_Close(object sender, EventArgs e) + { + BindGrid(); + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx.designer.cs b/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx.designer.cs new file mode 100644 index 00000000..d8cb0af2 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/TestRunPerformance.aspx.designer.cs @@ -0,0 +1,150 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Personal { + + + public partial class TestRunPerformance { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// txtUserName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtUserName; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// btnNew 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// ToolbarSeparator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuEdit 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuEdit; + + /// + /// btnMenuDelete 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuDelete; + } +} diff --git a/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx b/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx new file mode 100644 index 00000000..00db8381 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx @@ -0,0 +1,67 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestRunPerformanceEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.TestRunPerformanceEdit" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx.cs b/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx.cs new file mode 100644 index 00000000..e45cc0c3 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx.cs @@ -0,0 +1,208 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model; + +namespace FineUIPro.Web.Personal +{ + public partial class TestRunPerformanceEdit : PageBase + { + /// + /// 瀹氫箟椤 + /// + public string TestRunPerformanceId + { + get + { + return (string)ViewState["TestRunPerformanceId"]; + } + set + { + ViewState["TestRunPerformanceId"] = value; + } + } + + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.btnClose.OnClientClick = ActiveWindow.GetHideReference(); + ProjectService.InitAllProjectDropDownList2(this.drpProject, true); + this.TestRunPerformanceId = Request.QueryString["TestRunPerformanceId"]; + TestRunPerformanceStandardService.InitTypeDropDownList(drpType, true); + Funs.FineUIPleaseSelect(this.drpItem); + Funs.FineUIPleaseSelect(this.drpUnit); + if (!String.IsNullOrEmpty(this.TestRunPerformanceId)) + { + var performance = BLL.Person_TestRunPerformanceService.GetPersonTestRunPerformanceById(this.TestRunPerformanceId); + if (performance != null) + { + if (performance.Months != null) + { + this.txtMonths.Text = string.Format("{0:yyyy-MM-dd}", performance.Months); + } + this.lbUserName.Text = BLL.UserService.GetUserNameByUserId(performance.UserId); + if (!string.IsNullOrEmpty(performance.ProjectId)) + { + this.drpProject.SelectedValue = performance.ProjectId; + } + this.txtJobContent.Text = performance.JobContent; + Model.Base_TestRunPerformanceStandard standard = BLL.TestRunPerformanceStandardService.GetPerformanceStandardById(performance.TestRunPerformanceStandardId); + if (standard != null) + { + this.drpType.SelectedValue = standard.Type; + TestRunPerformanceStandardService.InitItemDropDownList(drpItem, this.drpType.SelectedValue, true); + this.drpItem.SelectedValue = standard.Item; + TestRunPerformanceStandardService.InitUnitDropDownList(drpUnit, this.drpType.SelectedValue, this.drpItem.SelectedValue, true); + this.drpUnit.SelectedValue = standard.TestRunPerformanceStandardId; + } + if (performance.Days != null) + { + this.txtDays.Text = performance.Days.ToString(); + } + } + } + else + { + this.lbUserName.Text = this.CurrUser.UserName; + } + } + } + + /// + /// 淇濆瓨鏁版嵁 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(this.txtMonths.Text.Trim())) + { + Alert.ShowInParent("璇烽夋嫨鏈堜唤锛", MessageBoxIcon.Warning); + return; + } + if (this.drpProject.SelectedValue == BLL.Const._Null) + { + Alert.ShowInParent("璇烽夋嫨宸ヤ綔鍦扮偣锛", MessageBoxIcon.Warning); + return; + } + if (this.drpType.SelectedValue == BLL.Const._Null) + { + Alert.ShowInParent("璇烽夋嫨宸ヤ綔绫诲埆锛", MessageBoxIcon.Warning); + return; + } + if (this.drpItem.SelectedValue == BLL.Const._Null) + { + Alert.ShowInParent("璇烽夋嫨宸ヤ綔椤癸紒", MessageBoxIcon.Warning); + return; + } + if (this.drpUnit.SelectedValue == BLL.Const._Null) + { + Alert.ShowInParent("璇烽夋嫨璁¢噺鍗曚綅锛", MessageBoxIcon.Warning); + return; + } + if (this.txtDays.Text.Trim() == "0" || string.IsNullOrEmpty(this.txtDays.Text.Trim())) + { + Alert.ShowInParent("璇疯緭鍏ユ爣鍑嗗伐浣滄棩锛", MessageBoxIcon.Warning); + return; + } + Model.Person_TestRunPerformance newperformance = new Model.Person_TestRunPerformance() + { + Months = Funs.GetNewDateTimeOrNow(this.txtMonths.Text.Trim()), + UserId = this.CurrUser.UserId, + ProjectId = this.drpProject.SelectedValue, + JobContent = this.txtJobContent.Text.Trim(), + TestRunPerformanceStandardId = this.drpUnit.SelectedValue, + Days = Funs.GetNewInt(this.txtDays.Text.Trim()), + }; + if (!string.IsNullOrEmpty(this.TestRunPerformanceId)) + { + newperformance.TestRunPerformanceId = this.TestRunPerformanceId; + BLL.Person_TestRunPerformanceService.UpdatePersonTestRunPerformance(newperformance); + BLL.LogService.AddSys_Log(this.CurrUser, null, newperformance.TestRunPerformanceId, BLL.Const.TestRunPerformanceMenuId, BLL.Const.BtnAdd); + } + else + { + newperformance.TestRunPerformanceId = SQLHelper.GetNewID(); + BLL.Person_TestRunPerformanceService.AddPersonTestRunPerformance(newperformance); + BLL.LogService.AddSys_Log(this.CurrUser, null, newperformance.TestRunPerformanceId, BLL.Const.TestRunPerformanceMenuId, BLL.Const.BtnModify); + } + + ShowNotify("淇濆瓨鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + protected void drpType_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.drpType.SelectedValue != BLL.Const._Null) + { + TestRunPerformanceStandardService.InitItemDropDownList(drpItem, this.drpType.SelectedValue, true); + this.drpItem.SelectedIndex = 0; + this.drpUnit.Items.Clear(); + Funs.FineUIPleaseSelect(this.drpUnit); + this.drpUnit.SelectedIndex = 0; + } + else + { + this.drpItem.Items.Clear(); + Funs.FineUIPleaseSelect(this.drpItem); + this.drpItem.SelectedIndex = 0; + this.drpUnit.Items.Clear(); + Funs.FineUIPleaseSelect(this.drpUnit); + this.drpUnit.SelectedIndex = 0; + } + } + + protected void drpItem_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.drpItem.SelectedValue != BLL.Const._Null) + { + TestRunPerformanceStandardService.InitUnitDropDownList(drpUnit, this.drpType.SelectedValue,this.drpItem.SelectedValue, true); + this.drpUnit.SelectedIndex = 0; + } + else + { + this.drpUnit.Items.Clear(); + Funs.FineUIPleaseSelect(this.drpUnit); + this.drpUnit.SelectedIndex = 0; + } + } + + protected void drpUnit_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.drpUnit.SelectedValue != BLL.Const._Null) + { + Model.Base_TestRunPerformanceStandard standard = BLL.TestRunPerformanceStandardService.GetPerformanceStandardById(this.drpUnit.SelectedValue); + if (standard != null) + { + if (standard.Days != null) + { + this.txtDays.Text = standard.Days.ToString(); + if (standard.Days > 0) + { + this.txtDays.Readonly = true; + } + else + { + this.txtDays.Readonly = false; + } + } + } + } + else + { + this.txtDays.Text = string.Empty; + this.txtDays.Readonly = true; + } + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx.designer.cs new file mode 100644 index 00000000..22027a52 --- /dev/null +++ b/SGGL/FineUIPro.Web/Personal/TestRunPerformanceEdit.aspx.designer.cs @@ -0,0 +1,141 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.Personal { + + + public partial class TestRunPerformanceEdit { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// txtMonths 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DatePicker txtMonths; + + /// + /// lbUserName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Label lbUserName; + + /// + /// drpProject 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList drpProject; + + /// + /// txtJobContent 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtJobContent; + + /// + /// drpType 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList drpType; + + /// + /// drpItem 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList drpItem; + + /// + /// drpUnit 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList drpUnit; + + /// + /// txtDays 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.NumberBox txtDays; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// btnSave 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnSave; + + /// + /// btnClose 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnClose; + } +} diff --git a/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionEdit.aspx.cs index a14738c1..7a839ca2 100644 --- a/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionEdit.aspx.cs @@ -22,6 +22,15 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun set { ViewState["DecisionId"] = value; } } + /// + /// 瀛愮郴缁熶富閿 + /// + public string SubSystemId + { + get { return (string)ViewState["SubSystemId"]; } + set { ViewState["SubSystemId"] = value; } + } + /// /// 鏄惁鏌ョ湅 /// @@ -45,6 +54,7 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun if (!IsPostBack) { this.DecisionId = Request["DecisionId"]; + this.SubSystemId = Request["SubSystemId"]; //鏄惁鏌ョ湅 this.IsView = string.IsNullOrWhiteSpace(Request["IsView"]) ? false : bool.Parse(Request["IsView"]); //鏁版嵁缁戝畾 @@ -242,6 +252,7 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun model = new PreRun_SubThreeChecksFourDecision(); model.DecisionId = this.DecisionId = Guid.NewGuid().ToString(); model.ProjectId = this.CurrUser.LoginProjectId; + model.SubSystemId = this.SubSystemId; } model.ResponsibilityUser = ddlResponsibilityUser.SelectedValue; model.ProposeUser = ddlProposeUser.SelectedValue; @@ -257,6 +268,7 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun model.AddUser = this.CurrUser.LoginProjectId; model.AddTime = DateTime.Now; model.ResponsibilityProposeSatate = 0; + model.DecisionIsClose = 0; if (isAdd) { Funs.DB.PreRun_SubThreeChecksFourDecision.InsertOnSubmit(model); diff --git a/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionList.aspx.cs b/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionList.aspx.cs index 5003abb5..289af0d1 100644 --- a/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionList.aspx.cs +++ b/SGGL/FineUIPro.Web/TestRun/BeforeTestRun/SubThreeChecksFourDecisionList.aspx.cs @@ -221,7 +221,12 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun /// protected void btnAdd_Click(object sender, EventArgs e) { - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SubThreeChecksFourDecisionEdit.aspx?DecisionId=", "鏂板 - "))); + if (string.IsNullOrWhiteSpace(tvControlItem.SelectedNodeID)) + { + Alert.ShowInTop("璇烽夋嫨瀛愮郴缁燂紒", MessageBoxIcon.Warning); + return; + } + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SubThreeChecksFourDecisionEdit.aspx?DecisionId=&SubSystemId=" + this.SsubSystemId, "鏂板 - "))); } /// @@ -244,7 +249,7 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun return; } } - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SubThreeChecksFourDecisionEdit.aspx?DecisionId={0}", Grid1.SelectedRowID, "缂栬緫 - "))); + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SubThreeChecksFourDecisionEdit.aspx?DecisionId={0}&SubSystemId={1}", Grid1.SelectedRowID, this.SsubSystemId, "缂栬緫 - "))); } /// @@ -800,8 +805,17 @@ namespace FineUIPro.Web.TestRun.BeforeTestRun var result = string.Empty; var diffDay = 0; var itemState = 0; - if (diffDayVal != null) diffDay = int.Parse(diffDayVal.ToString()); - if (stateVal != null) itemState = int.Parse(stateVal.ToString()); + if (diffDayVal != null) + { + if (!string.IsNullOrWhiteSpace(diffDayVal.ToString())) + { + diffDay = int.Parse(diffDayVal.ToString()); + } + } + if (stateVal != null) + { + if (!string.IsNullOrWhiteSpace(stateVal.ToString())) itemState = int.Parse(stateVal.ToString()); + } if (itemState != 1) { if (diffDay > 0) diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx index 71d250f0..e32bf3a5 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx @@ -81,12 +81,15 @@ - - + + + diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs index 9d913a87..dac2c68c 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.cs @@ -110,7 +110,7 @@ namespace FineUIPro.Web.TestRun.DriverGoods item.GoodsBuyItemId = SQLHelper.GetNewID(); item.GoodsBuyId = newData.GoodsBuyId; item.GoodsModelId = detail.GoodsModelId; - item.Quantity = detail.Quantity; + item.Num = detail.Num; item.RequiredTime = detail.RequiredTime; BLL.GoodsBuyItemService.AddGoodsBuyItem(item); } @@ -151,7 +151,7 @@ namespace FineUIPro.Web.TestRun.DriverGoods detail.Description = model.Description; detail.Attachment = model.Attachment; detail.Remark = model.Remark; - detail.Quantity = values.Value("Quantity"); + detail.Num = values.Value("Num"); string requiredTime = values.Value("RequiredTime"); if (!string.IsNullOrEmpty(requiredTime)) { @@ -189,6 +189,7 @@ namespace FineUIPro.Web.TestRun.DriverGoods detail.GoodsModelId = model.GoodsModelId; detail.Purpose = model.Purpose; detail.Description = model.Description; + detail.Quantity = model.Quantity; detail.Attachment = model.Attachment; detail.Remark = model.Remark; details.Add(detail); diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs index 0069f214..26679cc2 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsBuyEdit.aspx.designer.cs @@ -202,13 +202,13 @@ namespace FineUIPro.Web.TestRun.DriverGoods { protected global::FineUIPro.Button btnNew; /// - /// txtQuantity 鎺т欢銆 + /// txtNum 鎺т欢銆 /// /// /// 鑷姩鐢熸垚鐨勫瓧娈点 /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 /// - protected global::FineUIPro.TextBox txtQuantity; + protected global::FineUIPro.TextBox txtNum; /// /// txtRequiredTime 鎺т欢銆 diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsModel.aspx b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsModel.aspx index 0e0f7238..218f2b4d 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsModel.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/GoodsModel.aspx @@ -43,7 +43,7 @@ - - + diff --git a/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx index dbd5049c..c30911eb 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverGoods/ShowGoodsModel.aspx @@ -44,7 +44,7 @@ - +<<<<<<< HEAD +======= + +>>>>>>> c3f952cc792413e938e14d320464c4881181d4f8 diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx new file mode 100644 index 00000000..17323375 --- /dev/null +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx @@ -0,0 +1,87 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestRunPerformanceMonthReport.aspx.cs" Inherits="FineUIPro.Web.ZHGL.TestRunPerformance.TestRunPerformanceMonthReport" %> + + + + + + 寮杞︿汉鍛樻湀缁╂晥鎶ュ憡 + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx.cs b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx.cs new file mode 100644 index 00000000..5d654f0b --- /dev/null +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx.cs @@ -0,0 +1,203 @@ +锘縰sing BLL; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; + +namespace FineUIPro.Web.ZHGL.TestRunPerformance +{ + public partial class TestRunPerformanceMonthReport : PageBase + { + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + Funs.DropDownPageSize(this.ddlPageSize); + if (this.CurrUser != null && this.CurrUser.PageSize.HasValue) + { + Grid1.PageSize = this.CurrUser.PageSize.Value; + } + this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); + // 缁戝畾琛ㄦ牸 + this.BindGrid(); + ////鏉冮檺鎸夐挳鏂规硶 + this.GetButtonPower(); + } + } + + /// + /// 缁戝畾鏁版嵁 + /// + private void BindGrid() + { + string strSql = @"SELECT performance.TestRunPerformanceMonthReportId,performance.Year,performance.UserId,performance.CompileDate,Users.UserName " + + @" From dbo.ZHGL_TestRunPerformanceMonthReport AS performance" + + @" LEFT JOIN Sys_User AS Users ON Users.UserId=performance.UserId" + + @" WHERE 1=1"; + List listStr = new List(); + if (this.CurrUser.UserId != BLL.Const.sysglyId && this.CurrUser.UserId != BLL.Const.hfnbdId) + { + strSql += " AND performance.UserId = @UserId"; + listStr.Add(new SqlParameter("@UserId", this.CurrUser.UserId)); + } + if (!string.IsNullOrEmpty(this.txtUserName.Text.Trim())) + { + strSql += " AND UserName LIKE @UserName"; + listStr.Add(new SqlParameter("@UserName", "%" + this.txtUserName.Text.Trim() + "%")); + } + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + + + #region 鍒嗛〉 + /// + /// 鍒嗛〉 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 鍒嗛〉鏄剧ず鏉℃暟涓嬫媺妗 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 鎺掑簭 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + BindGrid(); + } + + #endregion + + #region 鍒犻櫎鏁版嵁 + /// + /// 鎵归噺鍒犻櫎鏁版嵁 + /// + /// + /// + protected void btnMenuDelete_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + var performance = TestRunPerformanceMonthReportService.GetTestRunPerformanceMonthReportById(rowID); + if (performance != null) + { + BLL.TestRunPerformanceMonthReportService.DeleteTestRunPerformanceMonthReportById(rowID); + } + } + BindGrid(); + ShowNotify("鍒犻櫎鏁版嵁鎴愬姛!", MessageBoxIcon.Success); + } + else + { + ShowNotify("璇疯嚦灏戦変腑涓琛岋紒", MessageBoxIcon.Warning); + } + } + #endregion + + protected void btnNew_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("TestRunPerformanceMonthReportEdit.aspx", "缂栬緫 - "))); + } + + #region 缂栬緫 + /// + /// 缂栬緫 + /// + /// + /// + protected void btnMenuEdit_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + Alert.ShowInParent("璇疯嚦灏戦夋嫨涓鏉¤褰曪紒", MessageBoxIcon.Warning); + return; + } + string Id = Grid1.SelectedRowID; + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("TestRunPerformanceMonthReportEdit.aspx?TestRunPerformanceMonthReportId={0}", Id, "缂栬緫 - "))); + } + + /// + /// Grid琛屽弻鍑讳簨浠 + /// + /// + /// + protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e) + { + btnMenuEdit_Click(null, null); + } + #endregion + + #region 鏌ヨ + /// + /// 鏌ヨ + /// + /// + /// + protected void TextBox_TextChanged(object sender, EventArgs e) + { + this.BindGrid(); + } + #endregion + + #region 鑾峰彇鎸夐挳鏉冮檺 + /// + /// 鑾峰彇鎸夐挳鏉冮檺 + /// + /// + /// + private void GetButtonPower() + { + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.TestRunPerformanceMonthReportMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnAdd)) + { + this.btnNew.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnModify)) + { + this.btnMenuEdit.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDelete.Hidden = false; + } + } + } + #endregion + + protected void Window1_Close(object sender, EventArgs e) + { + BindGrid(); + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx.designer.cs b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx.designer.cs new file mode 100644 index 00000000..91f942cd --- /dev/null +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReport.aspx.designer.cs @@ -0,0 +1,150 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.ZHGL.TestRunPerformance { + + + public partial class TestRunPerformanceMonthReport { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// txtUserName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtUserName; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// btnNew 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// ToolbarSeparator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuEdit 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuEdit; + + /// + /// btnMenuDelete 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuDelete; + } +} diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx new file mode 100644 index 00000000..37cdf526 --- /dev/null +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx @@ -0,0 +1,144 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestRunPerformanceMonthReportEdit.aspx.cs" Inherits="FineUIPro.Web.ZHGL.TestRunPerformance.TestRunPerformanceMonthReportEdit" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx.cs new file mode 100644 index 00000000..8a396bd0 --- /dev/null +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx.cs @@ -0,0 +1,386 @@ +锘縰sing BLL; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.ZHGL.TestRunPerformance +{ + public partial class TestRunPerformanceMonthReportEdit : PageBase + { + + #region 鍔犺浇 + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + string Id = Request.Params["TestRunPerformanceMonthReportId"]; + Model.SGGLDB db = Funs.DB; + var userIds = (from x in db.Person_TestRunPerformance select x.UserId).Distinct().ToList(); + var users = from x in db.Sys_User where userIds.Contains(x.UserId) select x; + this.drpUser.DataTextField = "UserName"; + this.drpUser.DataValueField = "UserId"; + this.drpUser.DataSource = users; + this.drpUser.DataBind(); + Funs.FineUIPleaseSelect(this.drpUser); + this.drpUser.SelectedValue = this.CurrUser.UserId; + Model.ZHGL_TestRunPerformanceMonthReport report = BLL.TestRunPerformanceMonthReportService.GetTestRunPerformanceMonthReportById(Id); + if (report != null) + { + if (!string.IsNullOrEmpty(report.UserId)) + { + this.drpUser.SelectedValue = report.UserId; + } + if (report.Year != null) + { + this.txtYear.Text = report.Year.ToString(); + } + if (this.drpUser.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.txtYear.Text.Trim())) + { + BindGrid(); + } + } + } + } + #endregion + + private void BindGrid() + { + Model.SGGLDB db = Funs.DB; + DateTime startDate = Convert.ToDateTime(this.txtYear.Text + "-01" + "-01"); + DateTime endDate = startDate.AddYears(1); + var projects = from x in db.Base_Project select x; + var getTestRunPerformances = (from x in db.Person_TestRunPerformance + join y in db.Base_TestRunPerformanceStandard on x.TestRunPerformanceStandardId equals y.TestRunPerformanceStandardId + where x.UserId == this.drpUser.SelectedValue && x.Months >= startDate && x.Months < endDate + select new { x.Months, x.ProjectId, x.JobContent, y.Type, y.Item, y.Unit, y.Days }).ToList(); + IQueryable getTrips = from x in db.Person_BusinessTrip + where x.UserId == this.drpUser.SelectedValue && x.LeaveDate >= startDate && x.ArriveDate < endDate + select x; + IQueryable getParentDetails = from x in db.View_WBS_CostControlParentDetail select x; + IQueryable getWbsSets = from x in db.Wbs_WbsSet select x; + IQueryable getWbsSetInits = from x in db.WBS_WbsSetInit select x; + IQueryable getUnitProjects = from x in db.Wbs_UnitProject select x; + IQueryable getUnitProjectInits = from x in db.Wbs_UnitProjectInit select x; + IQueryable getCnProfessions = from x in db.WBS_CnProfession select x; + IQueryable getCnProfessionInits = from x in db.WBS_CnProfessionInit select x; + IQueryable getInstallations = from x in db.Project_Installation select x; + IQueryable getCostControlDetailStatisticss = from x in db.View_WBS_CostControlDetailStatistics select x; + List CostControlDetailStatisticsList = new List(); + if (getTestRunPerformances.Count() > 0) + { + DataTable table = new DataTable(); + DateTime startMonth; + List months = new List(); + startMonth = startDate; + do + { + months.Add(startMonth); + startMonth = startMonth.AddMonths(1); + } while (startMonth < endDate); + + table.Columns.Add(new DataColumn("Id", typeof(String))); + table.Columns.Add(new DataColumn("Code", typeof(String))); + table.Columns.Add(new DataColumn("ProjectName", typeof(String))); + table.Columns.Add(new DataColumn("JobContent", typeof(String))); + table.Columns.Add(new DataColumn("IsForeign", typeof(String))); + table.Columns.Add(new DataColumn("Item1", typeof(String))); + table.Columns.Add(new DataColumn("Unit1", typeof(String))); + table.Columns.Add(new DataColumn("Days1", typeof(String))); + table.Columns.Add(new DataColumn("Item2", typeof(String))); + table.Columns.Add(new DataColumn("Unit2", typeof(String))); + table.Columns.Add(new DataColumn("Item3", typeof(String))); + table.Columns.Add(new DataColumn("Unit3", typeof(String))); + table.Columns.Add(new DataColumn("Item4", typeof(String))); + table.Columns.Add(new DataColumn("Unit4", typeof(String))); + table.Columns.Add(new DataColumn("Item5", typeof(String))); + table.Columns.Add(new DataColumn("Unit5", typeof(String))); + table.Columns.Add(new DataColumn("Days5", typeof(String))); + table.Columns.Add(new DataColumn("Item6", typeof(String))); + table.Columns.Add(new DataColumn("Unit6", typeof(String))); + table.Columns.Add(new DataColumn("Item7", typeof(String))); + table.Columns.Add(new DataColumn("Unit7", typeof(String))); + table.Columns.Add(new DataColumn("Days7", typeof(String))); + table.Columns.Add(new DataColumn("Item8", typeof(String))); + table.Columns.Add(new DataColumn("Unit8", typeof(String))); + table.Columns.Add(new DataColumn("Item9", typeof(String))); + table.Columns.Add(new DataColumn("Unit9", typeof(String))); + table.Columns.Add(new DataColumn("Days9", typeof(String))); + table.Columns.Add(new DataColumn("Item10", typeof(String))); + table.Columns.Add(new DataColumn("Unit10", typeof(String))); + table.Columns.Add(new DataColumn("Days10", typeof(String))); + table.Columns.Add(new DataColumn("Item11", typeof(String))); + table.Columns.Add(new DataColumn("Unit11", typeof(String))); + table.Columns.Add(new DataColumn("Item12", typeof(String))); + table.Columns.Add(new DataColumn("Unit12", typeof(String))); + table.Columns.Add(new DataColumn("Days12", typeof(String))); + table.Columns.Add(new DataColumn("SumDays", typeof(String))); + table.Columns.Add(new DataColumn("ProjectTripDays", typeof(String))); + table.Columns.Add(new DataColumn("OtherTripDays", typeof(String))); + table.Columns.Add(new DataColumn("SumDays1", typeof(String))); + table.Columns.Add(new DataColumn("SumDays3", typeof(String))); + int a = 1; + for (int i = 0; i < months.Count; i++) + { + DataRow row; + row = table.NewRow(); + row["Id"] = SQLHelper.GetNewID(); + row["Code"] = GetNum(i + 1); + row["ProjectName"] = months[i].Year + "骞" + months[i].Month + "鏈堝紑杞︾哗鏁"; + row["Item1"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "閮ㄩ棬鍩虹宸ヤ綔").Sum(x => x.Days ?? 0); + row["Item2"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "鍏徃鍩硅").Sum(x => x.Days ?? 0); + row["Item3"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "椤圭洰鎶曟爣").Sum(x => x.Days ?? 0); + row["Item4"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "寮杞︾瓥鍒").Sum(x => x.Days ?? 0); + row["Item5"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "寮杞﹀煿璁").Sum(x => x.Days ?? 0); + row["Item6"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "鍚堝悓绠$悊").Sum(x => x.Days ?? 0); + row["Item7"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "棰勮瘯杞").Sum(x => x.Days ?? 0); + row["Item8"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "璇曡溅").Sum(x => x.Days ?? 0); + row["Item9"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "璇曡繍琛屽強鑰冩牳").Sum(x => x.Days ?? 0); + row["Item10"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "寮杞︽敹灏").Sum(x => x.Days ?? 0); + row["Item11"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "椤圭洰鍗忚皟").Sum(x => x.Days ?? 0); + row["Item12"] = getTestRunPerformances.Where(x => x.Months == months[i] && x.Type == "鍏朵粬").Sum(x => x.Days ?? 0); + table.Rows.Add(row); + var monthList = getTestRunPerformances.Where(x => x.Months == months[i]); + a = 1; + foreach (var item in monthList) + { + row = table.NewRow(); + row["Id"] = SQLHelper.GetNewID(); + row["Code"] = a; + var project = projects.FirstOrDefault(x => x.ProjectId == item.ProjectId); + if (project != null) + { + row["ProjectName"] = project.ProjectName; + if (project.IsForeign == true) + { + row["IsForeign"] = "鏄"; + } + else + { + row["IsForeign"] = "鍚"; + } + } + else + { + row["ProjectName"] = "鏈儴"; + row["IsForeign"] = "鍚"; + } + row["JobContent"] = item.JobContent; + + + + + table.Rows.Add(row); + a++; + } + + } + //table.Columns.Add(new DataColumn("ShowId", typeof(String))); + + //var costControls = getCostControls.Where(x => x.ProjectId == projectId); + //var details = getDetails.Where(x => x.ProjectId == projectId); + //var parentDetails = getParentDetails; + //var wbsSets = getWbsSets.Where(x => x.ProjectId == projectId); + //var wbsSetInits = getWbsSetInits; + + //var unitProjects = getUnitProjects.Where(x => x.ProjectId == projectId); + //var unitProjectInits = getUnitProjectInits; + //var cnProfessions = getCnProfessions.Where(x => x.ProjectId == projectId); + //var cnProfessionInits = getCnProfessionInits; + //var installations = getInstallations.Where(x => x.ProjectId == projectId); + + //CostControlDetailStatisticsList = getCostControlDetailStatisticss.Where(x => x.ProjectId == projectId).Distinct().ToList(); + //List newList = new List(); + //if (string.IsNullOrEmpty(Id)) //鍔犺浇鍏ㄩ」鐩褰 + //{ + // var installationList = CostControlDetailStatisticsList.Where(x => x.WBSType == "Installation" && x.SupId == "0"); + // foreach (var item in installationList) + // { + // newList.Add(item); + // if (string.IsNullOrEmpty(IsOut)) + // { + // AddDetail(newList, CostControlDetailStatisticsList, item.Id); + // } + // else + // { + // AddDetailOut(newList, CostControlDetailStatisticsList, item.Id, string.Empty); + // } + // } + //} + //else //鍔犺浇閫夋嫨鑺傜偣鍙婂叾瀛愮骇 + //{ + // var node = CostControlDetailStatisticsList.FirstOrDefault(x => x.Id == Id); + // if (node != null) + // { + // newList.Add(node); + // if (string.IsNullOrEmpty(IsOut)) + // { + // AddDetail(newList, CostControlDetailStatisticsList, node.Id); + // } + // else + // { + // AddDetailOut(newList, CostControlDetailStatisticsList, node.Id, string.Empty); + // } + // } + //} + //DataRow row; + //foreach (Model.View_WBS_CostControlDetailStatistics item in newList) + //{ + // row = table.NewRow(); + // row[0] = item.Id; + // row[1] = item.SupId; + // row[2] = item.Name; + // row[3] = item.ProjectId; + // Model.WBS_CostControl costControl = costControls.FirstOrDefault(x => x.CostControlId == item.Id); + // if (costControl != null) + // { + // row[4] = costControl.Unit;//鍗曚綅 + // if (costControl.TotalNum != null) + // { + // row[5] = decimal.Round(Convert.ToDecimal(costControl.TotalNum), 2);//鍚堝悓宸ヤ綔閲 + // } + // if (costControl.RealPrice != null) + // { + // row[6] = decimal.Round(Convert.ToDecimal(costControl.RealPrice), 2);//鎴愭湰鍗曚环 + // } + // if (costControl.PlanPrice != null) + // { + // row[7] = decimal.Round(Convert.ToDecimal(costControl.PlanPrice), 2);//鎺у埗棰勭畻鍗曚环 + // } + // if (costControl.PlanStartDate != null) + // { + // row[8] = costControl.PlanStartDate;//璁″垝寮濮嬫椂闂 + // } + // if (costControl.PlanEndDate != null) + // { + // row[9] = costControl.PlanEndDate;//璁″垝瀹屾垚鏃堕棿 + // } + // if (costControl.RealStartDate != null) + // { + // row[10] = costControl.RealStartDate;//瀹為檯寮濮嬫椂闂 + // } + // if (costControl.RealEndDate != null) + // { + // row[11] = costControl.RealEndDate;//瀹為檯瀹屾垚鏃堕棿 + // } + // var detail = details.Where(x => x.CostControlId == item.Id).ToList(); + // foreach (var item1 in detail) + // { + // var index = months.FindIndex(x => x.Equals(item1.Months)); + // if (item1.PlanNum != 0) + // { + // row[12 + index * 2] = decimal.Round(Convert.ToDecimal(item1.PlanNum), 2); + // } + // if (item1.ThisNum != 0) + // { + // row[13 + index * 2] = decimal.Round(Convert.ToDecimal(item1.ThisNum), 2); + // } + + // } + // row[14 + (months.Count - 1) * 2] = item.Id; + // } + // else + // { + + // } + // table.Rows.Add(row); + //} + this.Grid1.DataSource = table; + this.Grid1.DataBind(); + } + } + + private string GetNum(int i) + { + string num = string.Empty; + if (i == 1) + { + num = "涓"; + } + else if (i == 2) + { + num = "浜"; + } + else if (i == 3) + { + num = "涓"; + } + else if (i == 4) + { + num = "鍥"; + } + else if (i == 5) + { + num = "浜"; + } + else if (i == 6) + { + num = "鍏"; + } + else if (i == 7) + { + num = "涓"; + } + else if (i == 8) + { + num = "鍏"; + } + else if (i == 9) + { + num = "涔"; + } + else if (i == 10) + { + num = "鍗"; + } + else if (i == 11) + { + num = "鍗佷竴"; + } + else if (i == 12) + { + num = "鍗佷簩"; + } + return num; + } + + #region 淇濆瓨 + /// + /// 淇濆瓨鎸夐挳 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + Save(); + ShowNotify("淇濆瓨鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHideReference()); + } + + private void Save() + { + + } + #endregion + + protected void drpUser_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.drpUser.SelectedValue != BLL.Const._Null && !string.IsNullOrEmpty(this.txtYear.Text.Trim())) + { + BindGrid(); + } + else + { + this.Grid1.DataSource = null; + this.Grid1.DataBind(); + } + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx.designer.cs new file mode 100644 index 00000000..f43f430e --- /dev/null +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx.designer.cs @@ -0,0 +1,96 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.ZHGL.TestRunPerformance { + + + public partial class TestRunPerformanceMonthReportEdit { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// drpUser 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DropDownList drpUser; + + /// + /// txtYear 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.DatePicker txtYear; + + /// + /// hdId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox hdId; + + /// + /// btnSave 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnSave; + } +} diff --git a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceStandardEdit.aspx.cs b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceStandardEdit.aspx.cs index 416846a8..65ed1fcf 100644 --- a/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceStandardEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/ZHGL/TestRunPerformance/TestRunPerformanceStandardEdit.aspx.cs @@ -47,7 +47,7 @@ namespace FineUIPro.Web.ZHGL.TestRunPerformance string TestRunPerformanceStandardId = Request.Params["TestRunPerformanceStandardId"]; Model.Base_TestRunPerformanceStandard newItem = new Model.Base_TestRunPerformanceStandard(); newItem.Code = this.txtCode.Text.Trim(); - var strs = this.txtCode.Text.Trim().Split(','); + var strs = this.txtCode.Text.Trim().Split('.'); if (strs.Length == 2) { newItem.Code1 = Funs.GetNewInt(strs[0]); diff --git a/SGGL/FineUIPro.Web/bin.rar b/SGGL/FineUIPro.Web/bin.rar new file mode 100644 index 00000000..36329031 Binary files /dev/null and b/SGGL/FineUIPro.Web/bin.rar differ diff --git a/SGGL/FineUIPro.Web/common/Menu_CQMS.xml b/SGGL/FineUIPro.Web/common/Menu_CQMS.xml index e80d4dd9..d8c81922 100644 --- a/SGGL/FineUIPro.Web/common/Menu_CQMS.xml +++ b/SGGL/FineUIPro.Web/common/Menu_CQMS.xml @@ -36,6 +36,7 @@ + diff --git a/SGGL/FineUIPro.Web/common/Menu_Personal.xml b/SGGL/FineUIPro.Web/common/Menu_Personal.xml index ac8364da..8a497c41 100644 --- a/SGGL/FineUIPro.Web/common/Menu_Personal.xml +++ b/SGGL/FineUIPro.Web/common/Menu_Personal.xml @@ -7,4 +7,6 @@ + + \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/common/Menu_ZHGL.xml b/SGGL/FineUIPro.Web/common/Menu_ZHGL.xml index ed44c8fe..59244b62 100644 --- a/SGGL/FineUIPro.Web/common/Menu_ZHGL.xml +++ b/SGGL/FineUIPro.Web/common/Menu_ZHGL.xml @@ -83,4 +83,10 @@ +<<<<<<< HEAD +======= + + + +>>>>>>> c3f952cc792413e938e14d320464c4881181d4f8 \ No newline at end of file diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 9044b370..1b1ba11b 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -1634,6 +1634,9 @@ namespace Model partial void InsertPerfomance_PersonPerfomance(Perfomance_PersonPerfomance instance); partial void UpdatePerfomance_PersonPerfomance(Perfomance_PersonPerfomance instance); partial void DeletePerfomance_PersonPerfomance(Perfomance_PersonPerfomance instance); + partial void InsertPerson_BusinessTrip(Person_BusinessTrip instance); + partial void UpdatePerson_BusinessTrip(Person_BusinessTrip instance); + partial void DeletePerson_BusinessTrip(Person_BusinessTrip instance); partial void InsertPerson_CompanyBranchPerson(Person_CompanyBranchPerson instance); partial void UpdatePerson_CompanyBranchPerson(Person_CompanyBranchPerson instance); partial void DeletePerson_CompanyBranchPerson(Person_CompanyBranchPerson instance); @@ -1667,6 +1670,9 @@ namespace Model partial void InsertPerson_ShuntDetail(Person_ShuntDetail instance); partial void UpdatePerson_ShuntDetail(Person_ShuntDetail instance); partial void DeletePerson_ShuntDetail(Person_ShuntDetail instance); + partial void InsertPerson_TestRunPerformance(Person_TestRunPerformance instance); + partial void UpdatePerson_TestRunPerformance(Person_TestRunPerformance instance); + partial void DeletePerson_TestRunPerformance(Person_TestRunPerformance instance); partial void InsertPerson_TrainingCompany(Person_TrainingCompany instance); partial void UpdatePerson_TrainingCompany(Person_TrainingCompany instance); partial void DeletePerson_TrainingCompany(Person_TrainingCompany instance); @@ -1952,6 +1958,9 @@ namespace Model partial void InsertReport_ConstructionProblems(Report_ConstructionProblems instance); partial void UpdateReport_ConstructionProblems(Report_ConstructionProblems instance); partial void DeleteReport_ConstructionProblems(Report_ConstructionProblems instance); + partial void InsertReport_CqmsTarget(Report_CqmsTarget instance); + partial void UpdateReport_CqmsTarget(Report_CqmsTarget instance); + partial void DeleteReport_CqmsTarget(Report_CqmsTarget instance); partial void InsertReport_NextQualityControl(Report_NextQualityControl instance); partial void UpdateReport_NextQualityControl(Report_NextQualityControl instance); partial void DeleteReport_NextQualityControl(Report_NextQualityControl instance); @@ -1961,12 +1970,18 @@ namespace Model partial void InsertReport_RowMaterialProblem(Report_RowMaterialProblem instance); partial void UpdateReport_RowMaterialProblem(Report_RowMaterialProblem instance); partial void DeleteReport_RowMaterialProblem(Report_RowMaterialProblem instance); + partial void InsertReport_TextBoxContent(Report_TextBoxContent instance); + partial void UpdateReport_TextBoxContent(Report_TextBoxContent instance); + partial void DeleteReport_TextBoxContent(Report_TextBoxContent instance); partial void InsertReport_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent instance); partial void UpdateReport_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent instance); partial void DeleteReport_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent instance); partial void InsertReport_WeekAndMonthReport(Report_WeekAndMonthReport instance); partial void UpdateReport_WeekAndMonthReport(Report_WeekAndMonthReport instance); partial void DeleteReport_WeekAndMonthReport(Report_WeekAndMonthReport instance); + partial void InsertReport_WeekAndMonthReport_New(Report_WeekAndMonthReport_New instance); + partial void UpdateReport_WeekAndMonthReport_New(Report_WeekAndMonthReport_New instance); + partial void DeleteReport_WeekAndMonthReport_New(Report_WeekAndMonthReport_New instance); partial void InsertReportServer(ReportServer instance); partial void UpdateReportServer(ReportServer instance); partial void DeleteReportServer(ReportServer instance); @@ -2558,6 +2573,9 @@ namespace Model partial void InsertZHGL_ConstructionReportApprove(ZHGL_ConstructionReportApprove instance); partial void UpdateZHGL_ConstructionReportApprove(ZHGL_ConstructionReportApprove instance); partial void DeleteZHGL_ConstructionReportApprove(ZHGL_ConstructionReportApprove instance); + partial void InsertZHGL_TestRunPerformanceMonthReport(ZHGL_TestRunPerformanceMonthReport instance); + partial void UpdateZHGL_TestRunPerformanceMonthReport(ZHGL_TestRunPerformanceMonthReport instance); + partial void DeleteZHGL_TestRunPerformanceMonthReport(ZHGL_TestRunPerformanceMonthReport instance); partial void InsertZHGL_WorkHandover(ZHGL_WorkHandover instance); partial void UpdateZHGL_WorkHandover(ZHGL_WorkHandover instance); partial void DeleteZHGL_WorkHandover(ZHGL_WorkHandover instance); @@ -6881,6 +6899,14 @@ namespace Model } } + public System.Data.Linq.Table Person_BusinessTrip + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Person_CompanyBranchPerson { get @@ -6969,6 +6995,14 @@ namespace Model } } + public System.Data.Linq.Table Person_TestRunPerformance + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Person_TrainingCompany { get @@ -7729,6 +7763,14 @@ namespace Model } } + public System.Data.Linq.Table Report_CqmsTarget + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Report_NextQualityControl { get @@ -7753,6 +7795,14 @@ namespace Model } } + public System.Data.Linq.Table Report_TextBoxContent + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Report_ThisWeekOrMonthContent { get @@ -7769,6 +7819,14 @@ namespace Model } } + public System.Data.Linq.Table Report_WeekAndMonthReport_New + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table ReportServer { get @@ -10361,6 +10419,14 @@ namespace Model } } + public System.Data.Linq.Table ZHGL_TestRunPerformanceMonthReport + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table ZHGL_WorkHandover { get @@ -37547,6 +37613,8 @@ namespace Model private System.Nullable _Days; + private EntitySet _Person_TestRunPerformance; + #region 鍙墿灞曟ф柟娉曞畾涔 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -37573,6 +37641,7 @@ namespace Model public Base_TestRunPerformanceStandard() { + this._Person_TestRunPerformance = new EntitySet(new Action(this.attach_Person_TestRunPerformance), new Action(this.detach_Person_TestRunPerformance)); OnCreated(); } @@ -37756,6 +37825,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_TestRunPerformance_Base_TestRunPerformanceStandard", Storage="_Person_TestRunPerformance", ThisKey="TestRunPerformanceStandardId", OtherKey="TestRunPerformanceStandardId", DeleteRule="NO ACTION")] + public EntitySet Person_TestRunPerformance + { + get + { + return this._Person_TestRunPerformance; + } + set + { + this._Person_TestRunPerformance.Assign(value); + } + } + public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -37775,6 +37857,18 @@ namespace Model this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } + + private void attach_Person_TestRunPerformance(Person_TestRunPerformance entity) + { + this.SendPropertyChanging(); + entity.Base_TestRunPerformanceStandard = this; + } + + private void detach_Person_TestRunPerformance(Person_TestRunPerformance entity) + { + this.SendPropertyChanging(); + entity.Base_TestRunPerformanceStandard = null; + } } [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_TrainLevel")] @@ -122934,6 +123028,8 @@ namespace Model private System.Nullable _RequiredTime; + private string _Num; + private EntityRef _DriverGoods_GoodsModel; #region 鍙墿灞曟ф柟娉曞畾涔 @@ -122950,6 +123046,8 @@ namespace Model partial void OnQuantityChanged(); partial void OnRequiredTimeChanging(System.Nullable value); partial void OnRequiredTimeChanged(); + partial void OnNumChanging(string value); + partial void OnNumChanged(); #endregion public DriverGoods_GoodsBuyItem() @@ -123062,6 +123160,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Num", DbType="NVarChar(50)")] + public string Num + { + get + { + return this._Num; + } + set + { + if ((this._Num != value)) + { + this.OnNumChanging(value); + this.SendPropertyChanging(); + this._Num = value; + this.SendPropertyChanged("Num"); + this.OnNumChanged(); + } + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_DriverGoods_GoodsBuyItem_DriverGoods_GoodsModel", Storage="_DriverGoods_GoodsModel", ThisKey="GoodsModelId", OtherKey="GoodsModelId", IsForeignKey=true)] public DriverGoods_GoodsModel DriverGoods_GoodsModel { @@ -260073,6 +260191,229 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Person_BusinessTrip")] + public partial class Person_BusinessTrip : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _BusinessTripId; + + private string _Type; + + private string _ProjectId; + + private string _UserId; + + private System.Nullable _ArriveDate; + + private System.Nullable _LeaveDate; + + private EntityRef _Sys_User; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnBusinessTripIdChanging(string value); + partial void OnBusinessTripIdChanged(); + partial void OnTypeChanging(string value); + partial void OnTypeChanged(); + partial void OnProjectIdChanging(string value); + partial void OnProjectIdChanged(); + partial void OnUserIdChanging(string value); + partial void OnUserIdChanged(); + partial void OnArriveDateChanging(System.Nullable value); + partial void OnArriveDateChanged(); + partial void OnLeaveDateChanging(System.Nullable value); + partial void OnLeaveDateChanged(); + #endregion + + public Person_BusinessTrip() + { + this._Sys_User = default(EntityRef); + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BusinessTripId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string BusinessTripId + { + get + { + return this._BusinessTripId; + } + set + { + if ((this._BusinessTripId != value)) + { + this.OnBusinessTripIdChanging(value); + this.SendPropertyChanging(); + this._BusinessTripId = value; + this.SendPropertyChanged("BusinessTripId"); + this.OnBusinessTripIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="Char(1)")] + public string Type + { + get + { + return this._Type; + } + set + { + if ((this._Type != value)) + { + this.OnTypeChanging(value); + this.SendPropertyChanging(); + this._Type = value; + this.SendPropertyChanged("Type"); + this.OnTypeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")] + public string ProjectId + { + get + { + return this._ProjectId; + } + set + { + if ((this._ProjectId != value)) + { + this.OnProjectIdChanging(value); + this.SendPropertyChanging(); + this._ProjectId = value; + this.SendPropertyChanged("ProjectId"); + this.OnProjectIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="NVarChar(50)")] + public string UserId + { + get + { + return this._UserId; + } + set + { + if ((this._UserId != value)) + { + if (this._Sys_User.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } + this.OnUserIdChanging(value); + this.SendPropertyChanging(); + this._UserId = value; + this.SendPropertyChanged("UserId"); + this.OnUserIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ArriveDate", DbType="DateTime")] + public System.Nullable ArriveDate + { + get + { + return this._ArriveDate; + } + set + { + if ((this._ArriveDate != value)) + { + this.OnArriveDateChanging(value); + this.SendPropertyChanging(); + this._ArriveDate = value; + this.SendPropertyChanged("ArriveDate"); + this.OnArriveDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LeaveDate", DbType="DateTime")] + public System.Nullable LeaveDate + { + get + { + return this._LeaveDate; + } + set + { + if ((this._LeaveDate != value)) + { + this.OnLeaveDateChanging(value); + this.SendPropertyChanging(); + this._LeaveDate = value; + this.SendPropertyChanged("LeaveDate"); + this.OnLeaveDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_BusinessTrip_Sys_User", Storage="_Sys_User", ThisKey="UserId", OtherKey="UserId", IsForeignKey=true)] + public Sys_User Sys_User + { + get + { + return this._Sys_User.Entity; + } + set + { + Sys_User previousValue = this._Sys_User.Entity; + if (((previousValue != value) + || (this._Sys_User.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Sys_User.Entity = null; + previousValue.Person_BusinessTrip.Remove(this); + } + this._Sys_User.Entity = value; + if ((value != null)) + { + value.Person_BusinessTrip.Add(this); + this._UserId = value.UserId; + } + else + { + this._UserId = default(string); + } + this.SendPropertyChanged("Sys_User"); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Person_CompanyBranchPerson")] public partial class Person_CompanyBranchPerson : INotifyPropertyChanging, INotifyPropertyChanged { @@ -263730,6 +264071,294 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Person_TestRunPerformance")] + public partial class Person_TestRunPerformance : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _TestRunPerformanceId; + + private string _ProjectId; + + private string _UserId; + + private System.Nullable _Months; + + private string _JobContent; + + private string _TestRunPerformanceStandardId; + + private System.Nullable _Days; + + private EntityRef _Base_TestRunPerformanceStandard; + + private EntityRef _Sys_User; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnTestRunPerformanceIdChanging(string value); + partial void OnTestRunPerformanceIdChanged(); + partial void OnProjectIdChanging(string value); + partial void OnProjectIdChanged(); + partial void OnUserIdChanging(string value); + partial void OnUserIdChanged(); + partial void OnMonthsChanging(System.Nullable value); + partial void OnMonthsChanged(); + partial void OnJobContentChanging(string value); + partial void OnJobContentChanged(); + partial void OnTestRunPerformanceStandardIdChanging(string value); + partial void OnTestRunPerformanceStandardIdChanged(); + partial void OnDaysChanging(System.Nullable value); + partial void OnDaysChanged(); + #endregion + + public Person_TestRunPerformance() + { + this._Base_TestRunPerformanceStandard = default(EntityRef); + this._Sys_User = default(EntityRef); + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestRunPerformanceId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string TestRunPerformanceId + { + get + { + return this._TestRunPerformanceId; + } + set + { + if ((this._TestRunPerformanceId != value)) + { + this.OnTestRunPerformanceIdChanging(value); + this.SendPropertyChanging(); + this._TestRunPerformanceId = value; + this.SendPropertyChanged("TestRunPerformanceId"); + this.OnTestRunPerformanceIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")] + public string ProjectId + { + get + { + return this._ProjectId; + } + set + { + if ((this._ProjectId != value)) + { + this.OnProjectIdChanging(value); + this.SendPropertyChanging(); + this._ProjectId = value; + this.SendPropertyChanged("ProjectId"); + this.OnProjectIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="NVarChar(50)")] + public string UserId + { + get + { + return this._UserId; + } + set + { + if ((this._UserId != value)) + { + if (this._Sys_User.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } + this.OnUserIdChanging(value); + this.SendPropertyChanging(); + this._UserId = value; + this.SendPropertyChanged("UserId"); + this.OnUserIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Months", DbType="DateTime")] + public System.Nullable Months + { + get + { + return this._Months; + } + set + { + if ((this._Months != value)) + { + this.OnMonthsChanging(value); + this.SendPropertyChanging(); + this._Months = value; + this.SendPropertyChanged("Months"); + this.OnMonthsChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_JobContent", DbType="NVarChar(300)")] + public string JobContent + { + get + { + return this._JobContent; + } + set + { + if ((this._JobContent != value)) + { + this.OnJobContentChanging(value); + this.SendPropertyChanging(); + this._JobContent = value; + this.SendPropertyChanged("JobContent"); + this.OnJobContentChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestRunPerformanceStandardId", DbType="NVarChar(50)")] + public string TestRunPerformanceStandardId + { + get + { + return this._TestRunPerformanceStandardId; + } + set + { + if ((this._TestRunPerformanceStandardId != value)) + { + if (this._Base_TestRunPerformanceStandard.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } + this.OnTestRunPerformanceStandardIdChanging(value); + this.SendPropertyChanging(); + this._TestRunPerformanceStandardId = value; + this.SendPropertyChanged("TestRunPerformanceStandardId"); + this.OnTestRunPerformanceStandardIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Days", DbType="Int")] + public System.Nullable Days + { + get + { + return this._Days; + } + set + { + if ((this._Days != value)) + { + this.OnDaysChanging(value); + this.SendPropertyChanging(); + this._Days = value; + this.SendPropertyChanged("Days"); + this.OnDaysChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_TestRunPerformance_Base_TestRunPerformanceStandard", Storage="_Base_TestRunPerformanceStandard", ThisKey="TestRunPerformanceStandardId", OtherKey="TestRunPerformanceStandardId", IsForeignKey=true)] + public Base_TestRunPerformanceStandard Base_TestRunPerformanceStandard + { + get + { + return this._Base_TestRunPerformanceStandard.Entity; + } + set + { + Base_TestRunPerformanceStandard previousValue = this._Base_TestRunPerformanceStandard.Entity; + if (((previousValue != value) + || (this._Base_TestRunPerformanceStandard.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Base_TestRunPerformanceStandard.Entity = null; + previousValue.Person_TestRunPerformance.Remove(this); + } + this._Base_TestRunPerformanceStandard.Entity = value; + if ((value != null)) + { + value.Person_TestRunPerformance.Add(this); + this._TestRunPerformanceStandardId = value.TestRunPerformanceStandardId; + } + else + { + this._TestRunPerformanceStandardId = default(string); + } + this.SendPropertyChanged("Base_TestRunPerformanceStandard"); + } + } + } + + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_TestRunPerformance_Sys_User", Storage="_Sys_User", ThisKey="UserId", OtherKey="UserId", IsForeignKey=true)] + public Sys_User Sys_User + { + get + { + return this._Sys_User.Entity; + } + set + { + Sys_User previousValue = this._Sys_User.Entity; + if (((previousValue != value) + || (this._Sys_User.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Sys_User.Entity = null; + previousValue.Person_TestRunPerformance.Remove(this); + } + this._Sys_User.Entity = value; + if ((value != null)) + { + value.Person_TestRunPerformance.Add(this); + this._UserId = value.UserId; + } + else + { + this._UserId = default(string); + } + this.SendPropertyChanged("Sys_User"); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Person_TrainingCompany")] public partial class Person_TrainingCompany : INotifyPropertyChanging, INotifyPropertyChanged { @@ -304843,6 +305472,236 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_CqmsTarget")] + public partial class Report_CqmsTarget : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _Id; + + private string _ReportId; + + private string _ProStage; + + private string _ProDescribe; + + private string _TargetValue; + + private string _MonthPer; + + private string _Remarks; + + private System.Nullable _SortId; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIdChanging(string value); + partial void OnIdChanged(); + partial void OnReportIdChanging(string value); + partial void OnReportIdChanged(); + partial void OnProStageChanging(string value); + partial void OnProStageChanged(); + partial void OnProDescribeChanging(string value); + partial void OnProDescribeChanged(); + partial void OnTargetValueChanging(string value); + partial void OnTargetValueChanged(); + partial void OnMonthPerChanging(string value); + partial void OnMonthPerChanged(); + partial void OnRemarksChanging(string value); + partial void OnRemarksChanged(); + partial void OnSortIdChanging(System.Nullable value); + partial void OnSortIdChanged(); + #endregion + + public Report_CqmsTarget() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string Id + { + get + { + return this._Id; + } + set + { + if ((this._Id != value)) + { + this.OnIdChanging(value); + this.SendPropertyChanging(); + this._Id = value; + this.SendPropertyChanged("Id"); + this.OnIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportId", DbType="NVarChar(50)")] + public string ReportId + { + get + { + return this._ReportId; + } + set + { + if ((this._ReportId != value)) + { + this.OnReportIdChanging(value); + this.SendPropertyChanging(); + this._ReportId = value; + this.SendPropertyChanged("ReportId"); + this.OnReportIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProStage", DbType="NVarChar(50)")] + public string ProStage + { + get + { + return this._ProStage; + } + set + { + if ((this._ProStage != value)) + { + this.OnProStageChanging(value); + this.SendPropertyChanging(); + this._ProStage = value; + this.SendPropertyChanged("ProStage"); + this.OnProStageChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProDescribe", DbType="NVarChar(200)")] + public string ProDescribe + { + get + { + return this._ProDescribe; + } + set + { + if ((this._ProDescribe != value)) + { + this.OnProDescribeChanging(value); + this.SendPropertyChanging(); + this._ProDescribe = value; + this.SendPropertyChanged("ProDescribe"); + this.OnProDescribeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TargetValue", DbType="NVarChar(50)")] + public string TargetValue + { + get + { + return this._TargetValue; + } + set + { + if ((this._TargetValue != value)) + { + this.OnTargetValueChanging(value); + this.SendPropertyChanging(); + this._TargetValue = value; + this.SendPropertyChanged("TargetValue"); + this.OnTargetValueChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthPer", DbType="NVarChar(50)")] + public string MonthPer + { + get + { + return this._MonthPer; + } + set + { + if ((this._MonthPer != value)) + { + this.OnMonthPerChanging(value); + this.SendPropertyChanging(); + this._MonthPer = value; + this.SendPropertyChanged("MonthPer"); + this.OnMonthPerChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(200)")] + public string Remarks + { + get + { + return this._Remarks; + } + set + { + if ((this._Remarks != value)) + { + this.OnRemarksChanging(value); + this.SendPropertyChanging(); + this._Remarks = value; + this.SendPropertyChanged("Remarks"); + this.OnRemarksChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortId", DbType="Int")] + public System.Nullable SortId + { + get + { + return this._SortId; + } + set + { + if ((this._SortId != value)) + { + this.OnSortIdChanging(value); + this.SendPropertyChanging(); + this._SortId = value; + this.SendPropertyChanged("SortId"); + this.OnSortIdChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_NextQualityControl")] public partial class Report_NextQualityControl : INotifyPropertyChanging, INotifyPropertyChanged { @@ -305375,6 +306234,140 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_TextBoxContent")] + public partial class Report_TextBoxContent : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _Id; + + private string _ReportId; + + private string _ContentType; + + private string _ContentText; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIdChanging(string value); + partial void OnIdChanged(); + partial void OnReportIdChanging(string value); + partial void OnReportIdChanged(); + partial void OnContentTypeChanging(string value); + partial void OnContentTypeChanged(); + partial void OnContentTextChanging(string value); + partial void OnContentTextChanged(); + #endregion + + public Report_TextBoxContent() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string Id + { + get + { + return this._Id; + } + set + { + if ((this._Id != value)) + { + this.OnIdChanging(value); + this.SendPropertyChanging(); + this._Id = value; + this.SendPropertyChanged("Id"); + this.OnIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportId", DbType="NVarChar(50)")] + public string ReportId + { + get + { + return this._ReportId; + } + set + { + if ((this._ReportId != value)) + { + this.OnReportIdChanging(value); + this.SendPropertyChanging(); + this._ReportId = value; + this.SendPropertyChanged("ReportId"); + this.OnReportIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContentType", DbType="NVarChar(20)")] + public string ContentType + { + get + { + return this._ContentType; + } + set + { + if ((this._ContentType != value)) + { + this.OnContentTypeChanging(value); + this.SendPropertyChanging(); + this._ContentType = value; + this.SendPropertyChanged("ContentType"); + this.OnContentTypeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContentText", DbType="NVarChar(1000)")] + public string ContentText + { + get + { + return this._ContentText; + } + set + { + if ((this._ContentText != value)) + { + this.OnContentTextChanging(value); + this.SendPropertyChanging(); + this._ContentText = value; + this.SendPropertyChanged("ContentText"); + this.OnContentTextChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_ThisWeekOrMonthContent")] public partial class Report_ThisWeekOrMonthContent : INotifyPropertyChanging, INotifyPropertyChanged { @@ -305889,6 +306882,212 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_WeekAndMonthReport_New")] + public partial class Report_WeekAndMonthReport_New : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _Id; + + private string _ProjectId; + + private System.Nullable _StartDate; + + private System.Nullable _EndDate; + + private string _SortId; + + private System.Nullable _CreateDate; + + private string _CreateMan; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIdChanging(string value); + partial void OnIdChanged(); + partial void OnProjectIdChanging(string value); + partial void OnProjectIdChanged(); + partial void OnStartDateChanging(System.Nullable value); + partial void OnStartDateChanged(); + partial void OnEndDateChanging(System.Nullable value); + partial void OnEndDateChanged(); + partial void OnSortIdChanging(string value); + partial void OnSortIdChanged(); + partial void OnCreateDateChanging(System.Nullable value); + partial void OnCreateDateChanged(); + partial void OnCreateManChanging(string value); + partial void OnCreateManChanged(); + #endregion + + public Report_WeekAndMonthReport_New() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string Id + { + get + { + return this._Id; + } + set + { + if ((this._Id != value)) + { + this.OnIdChanging(value); + this.SendPropertyChanging(); + this._Id = value; + this.SendPropertyChanged("Id"); + this.OnIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")] + public string ProjectId + { + get + { + return this._ProjectId; + } + set + { + if ((this._ProjectId != value)) + { + this.OnProjectIdChanging(value); + this.SendPropertyChanging(); + this._ProjectId = value; + this.SendPropertyChanged("ProjectId"); + this.OnProjectIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StartDate", DbType="DateTime")] + public System.Nullable StartDate + { + get + { + return this._StartDate; + } + set + { + if ((this._StartDate != value)) + { + this.OnStartDateChanging(value); + this.SendPropertyChanging(); + this._StartDate = value; + this.SendPropertyChanged("StartDate"); + this.OnStartDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EndDate", DbType="DateTime")] + public System.Nullable EndDate + { + get + { + return this._EndDate; + } + set + { + if ((this._EndDate != value)) + { + this.OnEndDateChanging(value); + this.SendPropertyChanging(); + this._EndDate = value; + this.SendPropertyChanged("EndDate"); + this.OnEndDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortId", DbType="NVarChar(50)")] + public string SortId + { + get + { + return this._SortId; + } + set + { + if ((this._SortId != value)) + { + this.OnSortIdChanging(value); + this.SendPropertyChanging(); + this._SortId = value; + this.SendPropertyChanged("SortId"); + this.OnSortIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDate", DbType="DateTime")] + public System.Nullable CreateDate + { + get + { + return this._CreateDate; + } + set + { + if ((this._CreateDate != value)) + { + this.OnCreateDateChanging(value); + this.SendPropertyChanging(); + this._CreateDate = value; + this.SendPropertyChanged("CreateDate"); + this.OnCreateDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateMan", DbType="NVarChar(50)")] + public string CreateMan + { + get + { + return this._CreateMan; + } + set + { + if ((this._CreateMan != value)) + { + this.OnCreateManChanging(value); + this.SendPropertyChanging(); + this._CreateMan = value; + this.SendPropertyChanged("CreateMan"); + this.OnCreateManChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ReportServer")] public partial class ReportServer : INotifyPropertyChanging, INotifyPropertyChanged { @@ -338578,6 +339777,8 @@ namespace Model private EntitySet _Perfomance_PersonPerfomance; + private EntitySet _Person_BusinessTrip; + private EntitySet _Person_Duty; private EntitySet _Person_Duty_Sys_User1; @@ -338600,6 +339801,8 @@ namespace Model private EntitySet _Person_ShuntDetail; + private EntitySet _Person_TestRunPerformance; + private EntitySet _Person_TrainingPerson; private EntitySet _Person_TrainingPlan; @@ -339130,6 +340333,7 @@ namespace Model this._Party_WorkPlan = new EntitySet(new Action(this.attach_Party_WorkPlan), new Action(this.detach_Party_WorkPlan)); this._Perfomance_PerfomanceRecord = new EntitySet(new Action(this.attach_Perfomance_PerfomanceRecord), new Action(this.detach_Perfomance_PerfomanceRecord)); this._Perfomance_PersonPerfomance = new EntitySet(new Action(this.attach_Perfomance_PersonPerfomance), new Action(this.detach_Perfomance_PersonPerfomance)); + this._Person_BusinessTrip = new EntitySet(new Action(this.attach_Person_BusinessTrip), new Action(this.detach_Person_BusinessTrip)); this._Person_Duty = new EntitySet(new Action(this.attach_Person_Duty), new Action(this.detach_Person_Duty)); this._Person_Duty_Sys_User1 = new EntitySet(new Action(this.attach_Person_Duty_Sys_User1), new Action(this.detach_Person_Duty_Sys_User1)); this._Person_Duty_Sys_User2 = new EntitySet(new Action(this.attach_Person_Duty_Sys_User2), new Action(this.detach_Person_Duty_Sys_User2)); @@ -339141,6 +340345,7 @@ namespace Model this._Person_Shunt = new EntitySet(new Action(this.attach_Person_Shunt), new Action(this.detach_Person_Shunt)); this._Person_ShuntApprove = new EntitySet(new Action(this.attach_Person_ShuntApprove), new Action(this.detach_Person_ShuntApprove)); this._Person_ShuntDetail = new EntitySet(new Action(this.attach_Person_ShuntDetail), new Action(this.detach_Person_ShuntDetail)); + this._Person_TestRunPerformance = new EntitySet(new Action(this.attach_Person_TestRunPerformance), new Action(this.detach_Person_TestRunPerformance)); this._Person_TrainingPerson = new EntitySet(new Action(this.attach_Person_TrainingPerson), new Action(this.detach_Person_TrainingPerson)); this._Person_TrainingPlan = new EntitySet(new Action(this.attach_Person_TrainingPlan), new Action(this.detach_Person_TrainingPlan)); this._Person_TrainingPlan_Sys_User1 = new EntitySet(new Action(this.attach_Person_TrainingPlan_Sys_User1), new Action(this.detach_Person_TrainingPlan_Sys_User1)); @@ -343340,6 +344545,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_BusinessTrip_Sys_User", Storage="_Person_BusinessTrip", ThisKey="UserId", OtherKey="UserId", DeleteRule="NO ACTION")] + public EntitySet Person_BusinessTrip + { + get + { + return this._Person_BusinessTrip; + } + set + { + this._Person_BusinessTrip.Assign(value); + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_Duty_Sys_User", Storage="_Person_Duty", ThisKey="UserId", OtherKey="DutyPersonId", DeleteRule="NO ACTION")] public EntitySet Person_Duty { @@ -343483,6 +344701,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_TestRunPerformance_Sys_User", Storage="_Person_TestRunPerformance", ThisKey="UserId", OtherKey="UserId", DeleteRule="NO ACTION")] + public EntitySet Person_TestRunPerformance + { + get + { + return this._Person_TestRunPerformance; + } + set + { + this._Person_TestRunPerformance.Assign(value); + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_TrainingPerson_Sys_User", Storage="_Person_TrainingPerson", ThisKey="UserId", OtherKey="TrainingUserId", DeleteRule="NO ACTION")] public EntitySet Person_TrainingPerson { @@ -347615,6 +348846,18 @@ namespace Model entity.Sys_User = null; } + private void attach_Person_BusinessTrip(Person_BusinessTrip entity) + { + this.SendPropertyChanging(); + entity.Sys_User = this; + } + + private void detach_Person_BusinessTrip(Person_BusinessTrip entity) + { + this.SendPropertyChanging(); + entity.Sys_User = null; + } + private void attach_Person_Duty(Person_Duty entity) { this.SendPropertyChanging(); @@ -347747,6 +348990,18 @@ namespace Model entity.Sys_User = null; } + private void attach_Person_TestRunPerformance(Person_TestRunPerformance entity) + { + this.SendPropertyChanging(); + entity.Sys_User = this; + } + + private void detach_Person_TestRunPerformance(Person_TestRunPerformance entity) + { + this.SendPropertyChanging(); + entity.Sys_User = null; + } + private void attach_Person_TrainingPerson(Person_TrainingPerson entity) { this.SendPropertyChanging(); @@ -388711,6 +389966,8 @@ namespace Model private string _GoodsModelId; + private string _Num; + private string _Quantity; private System.Nullable _RequiredTime; @@ -388779,6 +390036,22 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Num", DbType="NVarChar(50)")] + public string Num + { + get + { + return this._Num; + } + set + { + if ((this._Num != value)) + { + this._Num = value; + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quantity", DbType="NVarChar(50)")] public string Quantity { @@ -441139,6 +442412,164 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ZHGL_TestRunPerformanceMonthReport")] + public partial class ZHGL_TestRunPerformanceMonthReport : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _TestRunPerformanceMonthReportId; + + private System.Nullable _Year; + + private string _UserId; + + private string _CompileMan; + + private System.Nullable _CompileDate; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnTestRunPerformanceMonthReportIdChanging(string value); + partial void OnTestRunPerformanceMonthReportIdChanged(); + partial void OnYearChanging(System.Nullable value); + partial void OnYearChanged(); + partial void OnUserIdChanging(string value); + partial void OnUserIdChanged(); + partial void OnCompileManChanging(string value); + partial void OnCompileManChanged(); + partial void OnCompileDateChanging(System.Nullable value); + partial void OnCompileDateChanged(); + #endregion + + public ZHGL_TestRunPerformanceMonthReport() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestRunPerformanceMonthReportId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string TestRunPerformanceMonthReportId + { + get + { + return this._TestRunPerformanceMonthReportId; + } + set + { + if ((this._TestRunPerformanceMonthReportId != value)) + { + this.OnTestRunPerformanceMonthReportIdChanging(value); + this.SendPropertyChanging(); + this._TestRunPerformanceMonthReportId = value; + this.SendPropertyChanged("TestRunPerformanceMonthReportId"); + this.OnTestRunPerformanceMonthReportIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Year", DbType="Int")] + public System.Nullable Year + { + get + { + return this._Year; + } + set + { + if ((this._Year != value)) + { + this.OnYearChanging(value); + this.SendPropertyChanging(); + this._Year = value; + this.SendPropertyChanged("Year"); + this.OnYearChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserId", DbType="NVarChar(50)")] + public string UserId + { + get + { + return this._UserId; + } + set + { + if ((this._UserId != value)) + { + this.OnUserIdChanging(value); + this.SendPropertyChanging(); + this._UserId = value; + this.SendPropertyChanged("UserId"); + this.OnUserIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")] + public string CompileMan + { + get + { + return this._CompileMan; + } + set + { + if ((this._CompileMan != value)) + { + this.OnCompileManChanging(value); + this.SendPropertyChanging(); + this._CompileMan = value; + this.SendPropertyChanged("CompileMan"); + this.OnCompileManChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime")] + public System.Nullable CompileDate + { + get + { + return this._CompileDate; + } + set + { + if ((this._CompileDate != value)) + { + this.OnCompileDateChanging(value); + this.SendPropertyChanging(); + this._CompileDate = value; + this.SendPropertyChanged("CompileDate"); + this.OnCompileDateChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ZHGL_WorkHandover")] public partial class ZHGL_WorkHandover : INotifyPropertyChanging, INotifyPropertyChanged {