diff --git a/DataBase/版本日志/SGGLDB_WH_2024-03-05-bwj.sql b/DataBase/版本日志/SGGLDB_WH_2024-03-05-bwj.sql new file mode 100644 index 00000000..c8023236 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_WH_2024-03-05-bwj.sql @@ -0,0 +1,159 @@ +update Sys_Menu set MenuName='ΣԴ嵥' where MenuId='1648A5CD-CF78-418B-9CF1-6325C353BDB8' +update Sys_Menu set MenuName='ʩڼҵ' where MenuId='18F5914D-A5DF-44F9-BE04-9EA8908BA3C8' +go + +DROP TABLE [dbo].[DriverHse_HseHazard] +GO + +CREATE TABLE [dbo].[DriverHse_HseHazard]( + [HseHazardId] [nvarchar](50) NOT NULL, + [ProjectId] [nvarchar](50) NOT NULL, + [Code] [nvarchar](50) NOT NULL, + [WorkArea] [nvarchar](50) NULL, + [IdentificationDate] [datetime] NULL, + [ControlHeaderMan] [nvarchar](50) NULL, + [Remark] [nvarchar](500) NULL, + [AttachUrl] [nvarchar](2000) NULL, + CONSTRAINT [PK_DriverHse_HseHazard] PRIMARY KEY CLUSTERED +( + [HseHazardId] 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].[DriverHse_HseHazard] WITH CHECK ADD CONSTRAINT [FK_DriverHse_HseHazard_Base_Project] FOREIGN KEY([ProjectId]) +REFERENCES [dbo].[Base_Project] ([ProjectId]) +GO + +ALTER TABLE [dbo].[DriverHse_HseHazard] CHECK CONSTRAINT [FK_DriverHse_HseHazard_Base_Project] +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'HseHazardId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ĿId' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'ProjectId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'Code' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ŀ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'WorkArea' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ʶʱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'IdentificationDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'ControlHeaderMan' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ע' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'Remark' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard', @level2type=N'COLUMN',@level2name=N'AttachUrl' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ΣԴ嵥' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseHazard' +GO + + +CREATE TABLE [dbo].[Base_TestRunLicenseType]( + [LicenseTypeId] [nvarchar](50) NOT NULL, + [LicenseTypeCode] [nvarchar](50) NULL, + [LicenseTypeName] [nvarchar](50) NULL, + [TemplateUrl] [nvarchar](500) NULL, + [Remark] [nvarchar](500) NULL, + CONSTRAINT [PK_Base_TestRunLicenseType] PRIMARY KEY CLUSTERED +( + [LicenseTypeId] 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'Base_TestRunLicenseType', @level2type=N'COLUMN',@level2name=N'LicenseTypeId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_TestRunLicenseType', @level2type=N'COLUMN',@level2name=N'LicenseTypeCode' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_TestRunLicenseType', @level2type=N'COLUMN',@level2name=N'LicenseTypeName' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ģ·' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_TestRunLicenseType', @level2type=N'COLUMN',@level2name=N'TemplateUrl' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ע' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_TestRunLicenseType', @level2type=N'COLUMN',@level2name=N'Remark' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵģ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Base_TestRunLicenseType' +GO + +drop table DriverHse_HseLicense +go +CREATE TABLE [dbo].[DriverHse_HseLicense]( + [HseLicenseId] [nvarchar](50) NOT NULL, + [ProjectId] [nvarchar](50) NOT NULL, + [Code] [nvarchar](50) NOT NULL, + [LicenseTypeId] [nvarchar](50) NULL, + [ApplyUnit] [nvarchar](50) NULL, + [ApplyMan] [nvarchar](50) NULL, + [HeaderMan] [nvarchar](50) NULL, + [WorkAddress] [nvarchar](50) NULL, + [WorkContents] [nvarchar](500) NULL, + [Remark] [nvarchar](500) NULL, + CONSTRAINT [PK_DriverHse_HseLicense] PRIMARY KEY CLUSTERED +( + [HseLicenseId] 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].[DriverHse_HseLicense] WITH CHECK ADD CONSTRAINT [FK_DriverHse_HseLicense_Base_Project] FOREIGN KEY([ProjectId]) +REFERENCES [dbo].[Base_Project] ([ProjectId]) +GO + +ALTER TABLE [dbo].[DriverHse_HseLicense] CHECK CONSTRAINT [FK_DriverHse_HseLicense_Base_Project] +GO + +ALTER TABLE [dbo].[DriverHse_HseLicense] WITH CHECK ADD CONSTRAINT [FK_DriverHse_HseLicense_Base_TestRunLicenseType] FOREIGN KEY([LicenseTypeId]) +REFERENCES [dbo].[Base_TestRunLicenseType] ([LicenseTypeId]) +GO + +ALTER TABLE [dbo].[DriverHse_HseLicense] CHECK CONSTRAINT [FK_DriverHse_HseLicense_Base_TestRunLicenseType] +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'HseLicenseId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ĿId' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'ProjectId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'Code' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'LicenseTypeId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'뵥λ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'ApplyUnit' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'ApplyMan' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'HeaderMan' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵص' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'WorkAddress' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'WorkContents' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ע' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense', @level2type=N'COLUMN',@level2name=N'Remark' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵƱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'DriverHse_HseLicense' +GO + + + + diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index a1546ac2..f5f459d6 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -166,6 +166,7 @@ + diff --git a/SGGL/BLL/BaseInfo/TestRunLicenseTypeService.cs b/SGGL/BLL/BaseInfo/TestRunLicenseTypeService.cs new file mode 100644 index 00000000..462db3f3 --- /dev/null +++ b/SGGL/BLL/BaseInfo/TestRunLicenseTypeService.cs @@ -0,0 +1,98 @@ +using System.Collections.Generic; +using System.Linq; + +namespace BLL +{ + /// + /// 作业类别及模板 + /// + public class TestRunLicenseTypeService + { + /// + /// 根据主键获取作业类别及模板 + /// + /// + /// + public static Model.Base_TestRunLicenseType GetLicenseTypeById(string licenseTypeId) + { + return Funs.DB.Base_TestRunLicenseType.FirstOrDefault(e => e.LicenseTypeId == licenseTypeId); + } + + /// + /// 添加作业类别及模板 + /// + /// + public static void AddTestRunLicenseType(Model.Base_TestRunLicenseType testRunLicenseType) + { + Model.Base_TestRunLicenseType newTestRunLicenseType = new Model.Base_TestRunLicenseType + { + LicenseTypeId = testRunLicenseType.LicenseTypeId, + LicenseTypeCode = testRunLicenseType.LicenseTypeCode, + LicenseTypeName = testRunLicenseType.LicenseTypeName, + Remark = testRunLicenseType.Remark, + TemplateUrl = testRunLicenseType.TemplateUrl + }; + Funs.DB.Base_TestRunLicenseType.InsertOnSubmit(newTestRunLicenseType); + Funs.DB.SubmitChanges(); + } + + /// + /// 修改作业类别及模板 + /// + /// + public static void UpdateTestRunLicenseType(Model.Base_TestRunLicenseType testRunLicenseType) + { + Model.Base_TestRunLicenseType newTestRunLicenseType = Funs.DB.Base_TestRunLicenseType.FirstOrDefault(e => e.LicenseTypeId == testRunLicenseType.LicenseTypeId); + if (newTestRunLicenseType != null) + { + newTestRunLicenseType.LicenseTypeCode = testRunLicenseType.LicenseTypeCode; + newTestRunLicenseType.LicenseTypeName = testRunLicenseType.LicenseTypeName; + newTestRunLicenseType.Remark = testRunLicenseType.Remark; + newTestRunLicenseType.TemplateUrl = testRunLicenseType.TemplateUrl; + Funs.DB.SubmitChanges(); + } + } + + /// + /// 根据主键删除作业类别及模板 + /// + /// + public static void DeleteTestRunLicenseTypeById(string licenseTypeId) + { + Model.Base_TestRunLicenseType newTestRunLicenseType = Funs.DB.Base_TestRunLicenseType.FirstOrDefault(e => e.LicenseTypeId == licenseTypeId); + if (newTestRunLicenseType!=null) + { + CommonService.DeleteAttachFileById(licenseTypeId);//删除附件 + Funs.DB.Base_TestRunLicenseType.DeleteOnSubmit(newTestRunLicenseType); + Funs.DB.SubmitChanges(); + } + } + + /// + /// 获取作业类型下拉列表项 + /// + /// + public static List GetTestRunLicenseTypeList() + { + return (from x in Funs.DB.Base_TestRunLicenseType orderby x.LicenseTypeCode select x).ToList(); + } + + /// + /// 作业类型下拉框 + /// + /// 下拉框名字 + /// 项目id + /// 是否显示请选择 + public static void InitLicenseTypeDropDownList(FineUIPro.DropDownList dropName, bool isShowPlease) + { + dropName.DataValueField = "LicenseTypeId"; + dropName.DataTextField = "LicenseTypeName"; + dropName.DataSource = GetTestRunLicenseTypeList(); + dropName.DataBind(); + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } + } +} diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs index 07121580..d46671cd 100644 --- a/SGGL/BLL/Common/Const.cs +++ b/SGGL/BLL/Common/Const.cs @@ -5429,6 +5429,7 @@ namespace BLL /// 项目完工总结 /// public const string CompleteSummaryMenuId = "AA88BD56-E0B4-4B9C-9238-3F48EA59C50A"; + #endregion #region 进度管理 diff --git a/SGGL/BLL/TestRun/DriverHse/HseHazardService.cs b/SGGL/BLL/TestRun/DriverHse/HseHazardService.cs index c52020d0..79722e37 100644 --- a/SGGL/BLL/TestRun/DriverHse/HseHazardService.cs +++ b/SGGL/BLL/TestRun/DriverHse/HseHazardService.cs @@ -26,14 +26,9 @@ namespace BLL newHseHazard.HseHazardId = hseHazard.HseHazardId; newHseHazard.ProjectId = hseHazard.ProjectId; newHseHazard.Code = hseHazard.Code; - newHseHazard.UnitWorkId = hseHazard.UnitWorkId; newHseHazard.WorkArea = hseHazard.WorkArea; - newHseHazard.UnitHead = hseHazard.UnitHead; - newHseHazard.Supervisor = hseHazard.Supervisor; - newHseHazard.Hazards = hseHazard.Hazards; - newHseHazard.Harm = hseHazard.Harm; - newHseHazard.PreventiveMeasures = hseHazard.PreventiveMeasures; - newHseHazard.Darificaiton = hseHazard.Darificaiton; + newHseHazard.IdentificationDate = hseHazard.IdentificationDate; + newHseHazard.ControlHeaderMan = hseHazard.ControlHeaderMan; newHseHazard.AttachUrl = hseHazard.AttachUrl; newHseHazard.Remark = hseHazard.Remark; Funs.DB.DriverHse_HseHazard.InsertOnSubmit(newHseHazard); @@ -49,16 +44,10 @@ namespace BLL Model.DriverHse_HseHazard newHseHazard = Funs.DB.DriverHse_HseHazard.FirstOrDefault(e => e.HseHazardId == hseHazard.HseHazardId); if (newHseHazard != null) { - newHseHazard.ProjectId = hseHazard.ProjectId; newHseHazard.Code = hseHazard.Code; - newHseHazard.UnitWorkId = hseHazard.UnitWorkId; newHseHazard.WorkArea = hseHazard.WorkArea; - newHseHazard.UnitHead = hseHazard.UnitHead; - newHseHazard.Supervisor = hseHazard.Supervisor; - newHseHazard.Hazards = hseHazard.Hazards; - newHseHazard.Harm = hseHazard.Harm; - newHseHazard.PreventiveMeasures = hseHazard.PreventiveMeasures; - newHseHazard.Darificaiton = hseHazard.Darificaiton; + newHseHazard.IdentificationDate = hseHazard.IdentificationDate; + newHseHazard.ControlHeaderMan = hseHazard.ControlHeaderMan; newHseHazard.AttachUrl = hseHazard.AttachUrl; newHseHazard.Remark = hseHazard.Remark; Funs.DB.SubmitChanges(); diff --git a/SGGL/BLL/TestRun/DriverHse/HseLicenseService.cs b/SGGL/BLL/TestRun/DriverHse/HseLicenseService.cs index 0692a1d8..6f6850bd 100644 --- a/SGGL/BLL/TestRun/DriverHse/HseLicenseService.cs +++ b/SGGL/BLL/TestRun/DriverHse/HseLicenseService.cs @@ -31,18 +31,12 @@ namespace BLL newHseLicense.HseLicenseId = hseLicense.HseLicenseId; newHseLicense.ProjectId = hseLicense.ProjectId; newHseLicense.Code = hseLicense.Code; - newHseLicense.UnitWorkId = hseLicense.UnitWorkId; - newHseLicense.WorkArea = hseLicense.WorkArea; - newHseLicense.WorkContents = hseLicense.WorkContents; - newHseLicense.WorkDate = hseLicense.WorkDate; - newHseLicense.UnitHead = hseLicense.UnitHead; - newHseLicense.ApplyMan = hseLicense.ApplyMan; + newHseLicense.LicenseTypeId = hseLicense.LicenseTypeId; newHseLicense.ApplyUnit = hseLicense.ApplyUnit; - newHseLicense.WorkTicket = hseLicense.WorkTicket; - newHseLicense.WorkTicketCode = hseLicense.WorkTicketCode; - newHseLicense.Detection = hseLicense.Detection; - newHseLicense.Guardian = hseLicense.Guardian; - newHseLicense.WorkEnd = hseLicense.WorkEnd; + newHseLicense.ApplyMan = hseLicense.ApplyMan; + newHseLicense.HeaderMan = hseLicense.HeaderMan; + newHseLicense.WorkAddress = hseLicense.WorkAddress; + newHseLicense.WorkContents = hseLicense.WorkContents; newHseLicense.Remark = hseLicense.Remark; Funs.DB.DriverHse_HseLicense.InsertOnSubmit(newHseLicense); Funs.DB.SubmitChanges(); @@ -57,20 +51,13 @@ namespace BLL Model.DriverHse_HseLicense newHseLicense = Funs.DB.DriverHse_HseLicense.FirstOrDefault(e => e.HseLicenseId == hseLicense.HseLicenseId); if (newHseLicense != null) { - newHseLicense.ProjectId = hseLicense.ProjectId; newHseLicense.Code = hseLicense.Code; - newHseLicense.UnitWorkId = hseLicense.UnitWorkId; - newHseLicense.WorkArea = hseLicense.WorkArea; - newHseLicense.WorkContents = hseLicense.WorkContents; - newHseLicense.WorkDate = hseLicense.WorkDate; - newHseLicense.UnitHead = hseLicense.UnitHead; - newHseLicense.ApplyMan = hseLicense.ApplyMan; + //newHseLicense.LicenseTypeId = hseLicense.LicenseTypeId; newHseLicense.ApplyUnit = hseLicense.ApplyUnit; - newHseLicense.WorkTicket = hseLicense.WorkTicket; - newHseLicense.WorkTicketCode = hseLicense.WorkTicketCode; - newHseLicense.Detection = hseLicense.Detection; - newHseLicense.Guardian = hseLicense.Guardian; - newHseLicense.WorkEnd = hseLicense.WorkEnd; + newHseLicense.ApplyMan = hseLicense.ApplyMan; + newHseLicense.HeaderMan = hseLicense.HeaderMan; + newHseLicense.WorkAddress = hseLicense.WorkAddress; + newHseLicense.WorkContents = hseLicense.WorkContents; newHseLicense.Remark = hseLicense.Remark; Funs.DB.SubmitChanges(); } @@ -85,6 +72,7 @@ namespace BLL Model.DriverHse_HseLicense newHseLicense = Funs.DB.DriverHse_HseLicense.FirstOrDefault(e => e.HseLicenseId == hseLicenseId); if (newHseLicense != null) { + CommonService.DeleteAttachFileById(hseLicenseId);//删除附件 Funs.DB.DriverHse_HseLicense.DeleteOnSubmit(newHseLicense); Funs.DB.SubmitChanges(); } diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index a1fa493f..e69de29b 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -1,636 +0,0 @@ - -错误信息开始=====> -错误类型: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:行号 67 - 在 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 -----错误信息: -----等待的操作过时。 -----错误堆栈: - 出错时间:02/02/2024 11:24:03 -出错文件:http://localhost:8579/common/main_new.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/02/2024 11:24:12 - - -错误信息开始=====> -错误类型:SqlException -错误信息:参数化查询 '(@ProjectId nvarchar(4000))select * from Transfer_Piping C - ' 需要参数 '@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.Transfer.Piping.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\Piping.aspx.cs:行号 58 - 在 FineUIPro.Web.Transfer.Piping.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Transfer\Piping.aspx.cs:行号 24 - 在 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) -出错时间:02/04/2024 10:42:45 -出错文件:http://localhost:8579/Transfer/Piping.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/04/2024 10:42:45 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 18:19:34 -出错时间:02/05/2024 18:19:34 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 18:19:34 -出错时间:02/05/2024 18:19:34 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 18:19:34 -出错时间:02/05/2024 18:19:34 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 18:19:34 -出错时间:02/05/2024 18:19:34 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 20:19:33 -出错时间:02/05/2024 20:19:33 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 20:19:33 -出错时间:02/05/2024 20:19:33 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 20:19:33 -出错时间:02/05/2024 20:19:34 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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 -出错时间:02/05/2024 20:19:34 -出错时间:02/05/2024 20:19:34 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:55 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:56 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:58 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:58 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:59 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:59 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:59 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:59 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:59 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:59 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:59 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:59 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:59 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:59 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:21:59 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:21:59 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:The argument cannot be null or empty string. -参数名: fileName -错误堆栈: - 在   .(String , String ) - 在 Aspose.Words.Document..ctor(String fileName, LoadOptions loadOptions) - 在 Aspose.Words.Document..ctor(String fileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.btnDonwLoadTrainRecords_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 276 - 在 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) -出错时间:02/05/2024 22:22:00 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/05/2024 22:22:00 - - -错误信息开始=====> -错误类型:FileNotFoundException -错误信息:未能找到文件“E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\File\Word\TestRun\生产人员培训执行情况报告.doc”。 -错误堆栈: - 在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) - 在 System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost) - 在 System.IO.File.Copy(String sourceFileName, String destFileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.PageManager1_CustomEvent(Object sender, CustomEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 300 - 在 FineUIPro.PageManager.OnCustomEvent(CustomEventArgs e) - 在 (PageManager , CustomEventArgs ) - 在 FineUIPro.PageManager.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) -出错时间:02/06/2024 13:59:32 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/06/2024 13:59:32 - - -错误信息开始=====> -错误类型:IOException -错误信息:文件“E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\File\Word\TestRun\生产人员培训执行情况报告34869bac-dbd1-41b8-a43a-b6db3daf7aed.doc”已经存在。 -错误堆栈: - 在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) - 在 System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost) - 在 System.IO.File.Copy(String sourceFileName, String destFileName) - 在 FineUIPro.Web.TestRun.PersonTrain.TrainRecords.PageManager1_CustomEvent(Object sender, CustomEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\PersonTrain\TrainRecords.aspx.cs:行号 264 - 在 FineUIPro.PageManager.OnCustomEvent(CustomEventArgs e) - 在 (PageManager , CustomEventArgs ) - 在 FineUIPro.PageManager.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) -出错时间:02/06/2024 14:24:27 -出错文件:http://localhost:8579/TestRun/PersonTrain/TrainRecords.aspx -IP地址:::1 -操作人员:JT - -出错时间:02/06/2024 14:24:27 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2180 -出错时间:02/21/2024 13:01:51 -出错时间:02/21/2024 13:01:51 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2045 -出错时间:02/21/2024 13:01:51 -出错时间:02/21/2024 13:01:51 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1941 -出错时间:02/21/2024 13:01:51 -出错时间:02/21/2024 13:01:51 - - -错误信息开始=====> -错误类型:ArgumentException -错误信息:提供的 URI 方案“http”无效,应为“https”。 -参数名: 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.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1883 -出错时间:02/21/2024 13:01:51 -出错时间:02/21/2024 13:01:51 - diff --git a/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288166741559_A-施工开车交叉期间动火作业许可证.doc b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288166741559_A-施工开车交叉期间动火作业许可证.doc new file mode 100644 index 00000000..b656a042 --- /dev/null +++ b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288166741559_A-施工开车交叉期间动火作业许可证.doc @@ -0,0 +1,48 @@ + + 动火作业许可证 +中国五环工程有限公司 NO:18063-XXXX(单位简称)- +XXXX(装置代码)-顺序号-C +|申请单位 | |作业负责人 | | +|动火地点 | |动火方式 | | +|作业内容 | | +|动火级别 |二级动火( ) 一级动火( ) 特殊动火( ) | +|动火人员姓 | | +|名 | | +|作业危害分析: | +|主 要 安 全 措 施 |打√|确认人 | +|作业|施工人员作业前对动火作业进行工作危害分析。 | | | +|负责| | | | +|人确| | | | +|认 | | | | +| |动火点周围易燃物已清除。 | | | +| |电焊回路线应接在焊件上,把线不得穿过下水井或与其他设| | | +| |备搭接。 | | | +| |乙炔气瓶(禁止卧放)、氧气瓶与动火点的距离不得少于10| | | +| |米。 | | | +| |高处作业(2米以上)须采取防火花飞溅措施,大于5级风禁| | | +| |止动火。 | | | +| |动火点周围(最小半径15米)的下水井、地漏、地沟、电缆| | | +| |沟等已清除易燃物,并已采取覆盖、铺砂、水封等手段隔离| | | +| |。 | | | +|相关|动火设备内部的物料清理干净,经蒸汽吹扫、水洗、置换等| | | +|管理|措施处理合格。 | | | +|人员| | | | +|确认| | | | +| |断开与动火设备相连的所有管线,加盲板( )块。 | | | +| |罐区内动火点同一围堰内和防火间距内无脱水作业。 | | | +| |动火点内部介质、周围大气环境采样分析合格,达到动火作| | | +| |业条件。 | | | +| |配备消防蒸汽带( )根,灭火器( )个,铁锨( )把, | | | +| |石棉布( )块。 | | | +|审核|其他补充安全措施: | | +|人员| | | +|填写| | | +|作业单位负 | | +|责人 | | +|总承包商 |专业工程师 | | +| |开车工程师 | | +| |施工经理 | | +| |开车经理 | | +| |HSE经理 | | +|完工验收时 |  年  月 日  时 |监护人签名关闭 | | +|间 | 分 | | | diff --git a/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288324694000_B-施工开车交叉期间盲板抽堵作业许可证.docx b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288324694000_B-施工开车交叉期间盲板抽堵作业许可证.docx new file mode 100644 index 00000000..6eb35aaa --- /dev/null +++ b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288324694000_B-施工开车交叉期间盲板抽堵作业许可证.docx @@ -0,0 +1,124 @@ + 施工开车交叉期间盲板抽堵作业许可证 +中国五环工程有限公司 NO:18063-XXXX(单位简称)-XXXX(装置代码)-顺序号-C + 申请单位 + + 申请人 + + 设备管道名称 + 介质 + 温度 + 压力 + 盲板 + 作业方式 + 作业人 + 监护人 + + + + + 材质 + 规格 + 编号 + 堵 + 抽 + + + + + + + + + + + + + + + + + + + + + + + + +作业负责人 + + 涉及的其他特殊作业 + +盲板位置图及编号: +危害分析:盲板抽堵后若阀门误操作后可能有什么风险?盲板抽堵作业有什么风险? + 序号 + 安全措施 + 打√ + 确认人 + 1 +拆装多个盲板时,应按盲板位置图及盲板编号,由作业负责人统一指挥,监护人全程监护,每个抽堵盲板处应设标牌表明盲板位置。 + + + 2 +在有毒介质的管道、设备上作业时,作业人员穿戴适合的防护用具。 + + + 3 +在强腐蚀性介质的管道、设备上作业时,作业人员已采取防止酸碱灼伤的措施。 + + + 4 +介质温度较高、可能造成烫伤的情况下,作业人员已采取防烫措施。 + + + 5 +易燃易爆场所,作业人员穿防静电工作服、工作鞋;作业时使用防爆灯具和防爆工具,禁止用铁器敲打管线、法兰等。 + + + 6 +在有毒介质的管道、设备上作业时,尽可能降低系统压力,作业点应为常压;气体温度应小于60℃;作业人员严禁正对危险有害物质(能量)可能突出的方向,作好个人防护。 + + + 7 +盲板材质要适宜,厚度应经强度计算,高压盲板应经探伤合格,盲板应有一个或两个手柄,便于辨识、抽堵,应选用与之相配的垫片。 + + + 8 +易燃易爆场所,距作业地点30m内无其他动火作业。 + + + 9 +同一管道上不同时进行两处以上的盲板抽堵作业。 + + + 10 +上述措施已对作业人员进行交底和安全教育。 + + + 11 +其他安全措施: + + + 责任单位 + 审批意见 + 盲板抽堵作业确认验收情况 + 作业单位负责人 + + + 总承包商 + 开车工程师 + + + + 开车经理 + + + + HSE工程师 + + + 完工验收时间 + 年   月  日  时 + 监护人验证关闭 + +注:此作业票有效期不超过24小时。 diff --git a/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288411617856_C-施工开车交叉期间受限空间作业许可证.doc b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288411617856_C-施工开车交叉期间受限空间作业许可证.doc new file mode 100644 index 00000000..54868768 --- /dev/null +++ b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288411617856_C-施工开车交叉期间受限空间作业许可证.doc @@ -0,0 +1,56 @@ + + 受限空间作业许可证 +中国五环工程有限公司 NO:18063-XXXX(单位简称)- +XXXX(装置代码)-顺序号-C +|申请单位 | |作业负责人| | +|作业地点 | |作业内容 | | +|作业人 | |监护人 | | +|通风类型 | |原有工艺介质 | | +|采样分析 |分析项目 | +|作业危害分析: | +|序号|主 要 安 全 措 施 |打√ |确认人 | +|作业|已进行工作危害分析和安全技术交底,个人防护用品齐全有 | | | +|负责|效,随身携带气体检测仪。 | | | +|人确| | | | +|认 | | | | +| |使用安全电压( )伏,救生绳( )条、气防设备( | | | +| |)个。 | | | +| |监护人全程监护,与作业人通讯方式:对讲机( )定时喊 | | | +| |话( )其他: | | | +| |检查受限空间进出口通道,不得有阻碍人员进出的障碍物。 | | | +| |设备已打开通风孔进行自然通风,温度适宜人员作业;氧含 | | | +| |量不足时应强制通风或佩戴空气呼吸器,严禁通纯氧或富氧 | | | +| |空气。 | | | +| |进入可能存在高热、高湿及各类腐蚀性作业空间,作业人员 | | | +| |采取防护措施,必须配备相应的个人防护用品。 | | | +| |存在交叉作业时,设安全梯或安全平台,层间设防坠物伤害 | | | +| |的安全措施,人员系安全带。 | | | +| |人员进出受限空间登记,关闭人孔前进行确认。 | | | +| |作业暂停期间阻断受限空间入口并设置禁止进入标识 | | | +|作业|受限空间气体分析合格,达到进入作业条件。 | | | +|单位| | | | +|相关| | | | +|管理| | | | +|人员| | | | +|确认| | | | +| |存有工艺介质的设备已经过置换、吹扫、蒸煮, | | | +| |所有与受限空间有联系的阀门管线已加盲板隔离,列出盲板清| | | +| |单,落实抽堵盲板责任人。 | | | +| |带转动的设备进行有效锁定,已切断电源,挂“禁止合闸”标 | | | +| |志牌,设专人监护。 | | | +| |检查受限空间内部已具备作业条件,清罐时(无需用/已采用| | | +| |)防爆工具 | | | +| |受过培训的救援人员及呼吸器、担架等应急准备 | | | +|审核|其他安全补充措施: | | +|人员| | | +|填写| | | +|作业单位负责| | +|人 | | +|总承包商 |专业工程 | | +| |师 | | +| |开车工程 | | +| |师 | | +| |施工经理 | | +| |开车经理 | | +| |HSE经理 | | +|完工验收 |年  月  日  时  分|监护人验证关闭 | | diff --git a/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288491179908_D-施工开车区域作业许可证(非特殊作业).doc b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288491179908_D-施工开车区域作业许可证(非特殊作业).doc new file mode 100644 index 00000000..b8386f1e --- /dev/null +++ b/SGGL/FineUIPro.Web/FileUpload/TestRun/DriverHse/TestRunLicenseType/2024-03/638452288491179908_D-施工开车区域作业许可证(非特殊作业).doc @@ -0,0 +1,48 @@ + + 试车区域作业许可证(非特殊作业) +中国五环工程有限公司 NO:18063-XXXX(单位简称)- +XXXX(装置代码)-顺序号-C +|申请单位 | |作业负责人 | | +|作业地点 | |作业材料、使用工| | +| | |具 | | +|作业内容 | | +|作业人员姓 | |监护人姓名 | | +|名 | | | | +| | |监护人工种 | | +|作业时间 |年  月  日  时  分 至   年   月  日   时   | +| |分 | +|作业危害分析: | +|主 要 安 全 措 施 |打√|确认人 | +|作业|施工是否会产生火花,若是,是否有相应防起火措施。 | | | +|负责| | | | +|人确| | | | +|认 | | | | +| |作业人员知晓周围危险源并知晓应急疏散通道。 | | | +| |已告知作业人员禁止进入危险区域。 | | | +| | | | | +| | | | | +| | | | | +|相关|作业交底到位。 | | | +|管理| | | | +|人员| | | | +|确认| | | | +| |有专人监护。 | | | +| |配备消防蒸汽带( )根,灭火器( )个,铁锨( )把, | | | +| |石棉布( )块。 | | | +| | | | | +| | | | | +|审核|其他补充安全措施: | | +|人员| | | +|填写| | | +|作业单位负 | | +|责人 | | +|总承包商 |专业工程师 | | +| |开车工程师 | | +| |施工经理 | | +| |开车经理 | | +| |HSE经理 | | +|完工验收时 |  年  月 日  时 |监护人签名关闭 | | +|间 | 分 | | | + + +注:此作业票有效期不超过24小时。 diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index e17af7a3..d07d721a 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1724,6 +1724,7 @@ + @@ -15575,6 +15576,13 @@ RoadMapEdit.aspx + + TestRunLicenseTypeEdit.aspx + ASPXCodeBehind + + + TestRunLicenseTypeEdit.aspx + ConStudy.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user index 63ca13cc..9e91deff 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -1,7 +1,7 @@  - Release|Any CPU + Debug|Any CPU true false diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx index 48dcdf10..e18ec001 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx @@ -4,23 +4,23 @@ - - 开车风险源识别 + + 开车危险源清单
+ ShowHeader="false" Layout="VBox" BoxConfigAlign="Stretch"> - - + @@ -31,38 +31,29 @@ + + + + + - - + FieldType="String" HeaderText="编号" HeaderTextAlign="Center" Width="250px" TextAlign="Center"> + FieldType="String" HeaderText="项目区域" HeaderTextAlign="Center" Width="220px"> - + - - - - - - - - - + + TextAlign="Center" ToolTip="附件查看" Icon="Find" /> @@ -83,7 +74,7 @@ - diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.cs b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.cs index 243d71c8..2ea3d2af 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.cs +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.cs @@ -17,7 +17,6 @@ namespace FineUIPro.Web.TestRun.DriverHse GetButtonPower(); BindGrid(); btnNew.OnClientClick = Window1.GetShowReference("HseHazardEdit.aspx") + "return false;"; - BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true); } } #endregion @@ -26,28 +25,22 @@ namespace FineUIPro.Web.TestRun.DriverHse //加载列表 public void BindGrid() { - string strSql = @"SELECT driver.HseHazardId, - driver.ProjectId, - driver.Code, - driver.WorkArea, - driver.UnitHead, - driver.Supervisor, - driver.Hazards, - driver.Harm, - driver.PreventiveMeasures, - driver.Darificaiton, - driver.AttachUrl, - driver.Remark, - driver.UnitWorkId, - UnitWork.UnitWorkName" - + @" FROM DriverHse_HseHazard AS driver " - + @" LEFT JOIN WBS_UnitWork AS UnitWork ON UnitWork.UnitWorkId = driver.UnitWorkId WHERE driver.ProjectId=@projectId"; + string strSql = @"SELECT hseHazard.HseHazardId, + hseHazard.ProjectId, + hseHazard.Code, + hseHazard.WorkArea, + hseHazard.IdentificationDate, + hseHazard.ControlHeaderMan, + hseHazard.Remark, + hseHazard.AttachUrl" + + @" FROM DriverHse_HseHazard AS hseHazard " + + @" WHERE hseHazard.ProjectId=@projectId"; List listStr = new List(); listStr.Add(new SqlParameter("@projectId", this.CurrUser.LoginProjectId)); - if (!string.IsNullOrEmpty(this.drpUnitWorkId.SelectedValue) && this.drpUnitWorkId.SelectedValue != BLL.Const._Null) + if (!string.IsNullOrEmpty(this.txtCode.Text.Trim())) { - strSql += " AND driver.UnitWorkId=@unitWorkId"; - listStr.Add(new SqlParameter("@unitWorkId", this.drpUnitWorkId.SelectedValue)); + strSql += " AND hseHazard.Code like @code"; + listStr.Add(new SqlParameter("@code", "%" + this.txtCode.Text.Trim() + "%")); } SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.designer.cs index 615be2eb..324b44db 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazard.aspx.designer.cs @@ -58,13 +58,13 @@ namespace FineUIPro.Web.TestRun.DriverHse { protected global::FineUIPro.Toolbar ToolSearch; /// - /// drpUnitWorkId 控件。 + /// txtCode 控件。 /// /// /// 自动生成的字段。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// - protected global::FineUIPro.DropDownList drpUnitWorkId; + protected global::FineUIPro.TextBox txtCode; /// /// btnSearch 控件。 @@ -84,6 +84,15 @@ namespace FineUIPro.Web.TestRun.DriverHse { /// protected global::FineUIPro.Button btnNew; + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + /// /// ToolbarSeparator1 控件。 /// diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx index 88684b00..fe6e017a 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx @@ -36,41 +36,23 @@ - + - - - - - - - - + - - - + + - - - - - - - - - - - - + + diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.cs index 92878c2a..dc2b8d80 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.cs @@ -15,7 +15,7 @@ namespace FineUIPro.Web.TestRun.DriverHse { if (!IsPostBack) { - BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true); + //BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true); string id = Request.Params["id"]; if (!string.IsNullOrEmpty(id)) @@ -24,18 +24,10 @@ namespace FineUIPro.Web.TestRun.DriverHse if (data != null) { this.hdId.Text = id; - this.txtCode.Text = data.Code; - if (!string.IsNullOrEmpty(data.UnitWorkId)) - { - this.drpUnitWorkId.SelectedValue = data.UnitWorkId; - } + this.txtCode.Text = data.Code; this.txtWorkArea.Text = data.WorkArea; - this.txtUnitHead.Text = data.UnitHead; - this.txtSupervisor.Text = data.Supervisor; - this.txtHazards.Text = data.Hazards; - this.txtHarm.Text = data.Harm; - this.txtPreventiveMeasures.Text = data.PreventiveMeasures; - this.txtDarificaiton.Text = data.Darificaiton; + this.txtIdentificationDate.Text = data.IdentificationDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.IdentificationDate) : ""; + this.txtControlHeaderMan.Text = data.ControlHeaderMan; this.txtRemark.Text = data.Remark; } } @@ -67,22 +59,12 @@ namespace FineUIPro.Web.TestRun.DriverHse /// protected void btnSave_Click(object sender, EventArgs e) { - if (this.drpUnitWorkId.SelectedValue == BLL.Const._Null) - { - Alert.ShowInTop("请选择装置/工序!", MessageBoxIcon.Warning); - return; - } string id = Request.Params["id"]; Model.DriverHse_HseHazard newData = new Model.DriverHse_HseHazard(); newData.Code = this.txtCode.Text.Trim(); newData.WorkArea = this.txtWorkArea.Text.Trim(); - newData.UnitHead = this.txtUnitHead.Text.Trim(); - newData.UnitWorkId = this.drpUnitWorkId.SelectedValue; - newData.Supervisor = this.txtSupervisor.Text.Trim(); - newData.Hazards = this.txtHazards.Text.Trim(); - newData.Harm = this.txtHarm.Text.Trim(); - newData.PreventiveMeasures = this.txtPreventiveMeasures.Text.Trim(); - newData.Darificaiton = this.txtDarificaiton.Text.Trim(); + newData.IdentificationDate =Funs.GetNewDateTime(this.txtIdentificationDate.Text.Trim()); + newData.ControlHeaderMan = this.txtControlHeaderMan.Text.Trim(); newData.Remark = this.txtRemark.Text.Trim(); newData.ProjectId = this.CurrUser.LoginProjectId; if (!string.IsNullOrEmpty(id)) diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.designer.cs index 9afc4b6b..6962bbac 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseHazardEdit.aspx.designer.cs @@ -111,15 +111,6 @@ namespace FineUIPro.Web.TestRun.DriverHse { /// protected global::FineUIPro.TextBox txtCode; - /// - /// drpUnitWorkId 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DropDownList drpUnitWorkId; - /// /// txtWorkArea 控件。 /// @@ -130,58 +121,22 @@ namespace FineUIPro.Web.TestRun.DriverHse { protected global::FineUIPro.TextBox txtWorkArea; /// - /// txtUnitHead 控件。 + /// txtIdentificationDate 控件。 /// /// /// 自动生成的字段。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// - protected global::FineUIPro.TextBox txtUnitHead; + protected global::FineUIPro.DatePicker txtIdentificationDate; /// - /// txtSupervisor 控件。 + /// txtControlHeaderMan 控件。 /// /// /// 自动生成的字段。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// - protected global::FineUIPro.TextBox txtSupervisor; - - /// - /// txtHazards 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtHazards; - - /// - /// txtHarm 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtHarm; - - /// - /// txtPreventiveMeasures 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtPreventiveMeasures; - - /// - /// txtDarificaiton 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtDarificaiton; + protected global::FineUIPro.TextBox txtControlHeaderMan; /// /// txtRemark 控件。 @@ -190,7 +145,7 @@ namespace FineUIPro.Web.TestRun.DriverHse { /// 自动生成的字段。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// - protected global::FineUIPro.TextBox txtRemark; + protected global::FineUIPro.TextArea txtRemark; /// /// Panel3 控件。 diff --git a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseLicense.aspx b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseLicense.aspx index 6588976d..80cfbc92 100644 --- a/SGGL/FineUIPro.Web/TestRun/DriverHse/HseLicense.aspx +++ b/SGGL/FineUIPro.Web/TestRun/DriverHse/HseLicense.aspx @@ -4,105 +4,106 @@ - - 开车作业票管理 + + 施工开车交叉期间作业许可 - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <%----%> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - <%-- + --%> + @@ -112,15 +113,36 @@ + + + + + + +