diff --git a/DataBase/版本日志/SGGLDB_WH_2024-03-08-bwj.sql b/DataBase/版本日志/SGGLDB_WH_2024-03-08-bwj.sql
new file mode 100644
index 00000000..a7a72d23
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_WH_2024-03-08-bwj.sql
@@ -0,0 +1,42 @@
+Alter table Driver_Meeting add MeetingCode nvarchar(50)
+Alter table Driver_Meeting add CompileMan nvarchar(50)
+Alter table Driver_Meeting add CompileDate DateTime
+Alter table Driver_Meeting add States char(1)
+go
+
+CREATE TABLE [dbo].[Driver_MeetingItem](
+ [MeetingItemId] [nvarchar](50) NOT NULL,
+ [MeetingId] [nvarchar](50) NOT NULL,
+ [UserId] [nvarchar](50) NULL,
+ [IsMeeting] [bit] NULL,
+ [Feedback] [nvarchar](100) NULL,
+ CONSTRAINT [PK_Driver_MeetingItem] PRIMARY KEY CLUSTERED
+(
+ [MeetingItemId] 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].[Driver_MeetingItem] WITH CHECK ADD CONSTRAINT [FK_Driver_MeetingItem_Driver_Meeting] FOREIGN KEY([MeetingId])
+REFERENCES [dbo].[Driver_Meeting] ([MeetingId])
+GO
+
+ALTER TABLE [dbo].[Driver_MeetingItem] CHECK CONSTRAINT [FK_Driver_MeetingItem_Driver_Meeting]
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Driver_MeetingItem', @level2type=N'COLUMN',@level2name=N'MeetingItemId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Id' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Driver_MeetingItem', @level2type=N'COLUMN',@level2name=N'MeetingId'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'λ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Driver_MeetingItem', @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'Driver_MeetingItem', @level2type=N'COLUMN',@level2name=N'IsMeeting'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Driver_MeetingItem', @level2type=N'COLUMN',@level2name=N'Feedback'
+GO
+
+
diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj
index 98513232..34f20894 100644
--- a/SGGL/BLL/BLL.csproj
+++ b/SGGL/BLL/BLL.csproj
@@ -756,6 +756,7 @@
+
diff --git a/SGGL/BLL/TestRun/Meeting/MeetingItemService.cs b/SGGL/BLL/TestRun/Meeting/MeetingItemService.cs
new file mode 100644
index 00000000..c845d02b
--- /dev/null
+++ b/SGGL/BLL/TestRun/Meeting/MeetingItemService.cs
@@ -0,0 +1,82 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BLL
+{
+ ///
+ /// 参会人
+ ///
+ public class MeetingItemService
+ {
+ ///
+ /// 根据会议Id获取参会人信息
+ ///
+ ///
+ ///
+ public static List GetMeetingItemByMeetingId(string meetingId)
+ {
+ return (from x in Funs.DB.Driver_MeetingItem where x.MeetingId == meetingId select x).ToList();
+ }
+
+ ///
+ /// 根据会议Id和参会人Id获取参会人信息
+ ///
+ ///
+ ///
+ ///
+ public static Model.Driver_MeetingItem GetMeetingItemByMeetingIdAndUserId(string meetingId,string userId)
+ {
+ return (from x in Funs.DB.Driver_MeetingItem where x.MeetingId == meetingId && x.UserId == userId select x).FirstOrDefault();
+ }
+
+ ///
+ /// 添加参会人信息
+ ///
+ ///
+ public static void AddMeetingItem(Model.Driver_MeetingItem item)
+ {
+ Model.Driver_MeetingItem newItem = new Model.Driver_MeetingItem
+ {
+ MeetingItemId = item.MeetingItemId,
+ MeetingId = item.MeetingId,
+ UserId = item.UserId,
+ IsMeeting = item.IsMeeting,
+ Feedback = item.Feedback
+ };
+ Funs.DB.Driver_MeetingItem.InsertOnSubmit(newItem);
+ Funs.DB.SubmitChanges();
+ }
+
+ ///
+ /// 修改参会人信息
+ ///
+ ///
+ public static void UpdateMeetingItem(Model.Driver_MeetingItem item)
+ {
+ Model.Driver_MeetingItem newItem = Funs.DB.Driver_MeetingItem.FirstOrDefault(e => e.MeetingItemId == item.MeetingItemId);
+ if (newItem != null)
+ {
+ newItem.IsMeeting = item.IsMeeting;
+ newItem.Feedback = item.Feedback;
+ Funs.DB.SubmitChanges();
+ }
+ }
+
+ ///
+ /// 根据会议Id删除参会人信息
+ ///
+ ///
+ public static void DeleteMeetingItemByMeetingId(string meetingId)
+ {
+ var item = (from x in Funs.DB.Driver_MeetingItem where x.MeetingId == meetingId select x).ToList();
+ if (item != null)
+ {
+ Funs.DB.Driver_MeetingItem.DeleteAllOnSubmit(item);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/SGGL/BLL/TestRun/Meeting/MeetingService.cs b/SGGL/BLL/TestRun/Meeting/MeetingService.cs
index eec8a8ab..47be8a98 100644
--- a/SGGL/BLL/TestRun/Meeting/MeetingService.cs
+++ b/SGGL/BLL/TestRun/Meeting/MeetingService.cs
@@ -1,15 +1,11 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+using System.Linq;
namespace BLL
{
///
/// 会议管理
///
- public static class MeetingService
+ public static class MeetingService
{
///
/// 根据主键获取会议信息
@@ -40,6 +36,10 @@ namespace BLL
newMeeting.MeetingType = meeting.MeetingType;
newMeeting.AttachUrl = meeting.AttachUrl;
newMeeting.Remark = meeting.Remark;
+ newMeeting.MeetingCode = meeting.MeetingCode;
+ newMeeting.CompileMan = meeting.CompileMan;
+ newMeeting.CompileDate = meeting.CompileDate;
+ newMeeting.States = meeting.States;
Funs.DB.Driver_Meeting.InsertOnSubmit(newMeeting);
Funs.DB.SubmitChanges();
@@ -65,6 +65,8 @@ namespace BLL
//newMeeting.MeetingType = meeting.MeetingType;
newMeeting.AttachUrl = meeting.AttachUrl;
newMeeting.Remark = meeting.Remark;
+ newMeeting.MeetingCode = meeting.MeetingCode;
+ newMeeting.States = meeting.States;
Funs.DB.SubmitChanges();
}
@@ -79,10 +81,9 @@ namespace BLL
Model.Driver_Meeting meeting = Funs.DB.Driver_Meeting.FirstOrDefault(e => e.MeetingId == meetingId);
if (meeting != null)
{
- if (!string.IsNullOrEmpty(meeting.AttachUrl))
- {
- BLL.UploadAttachmentService.DeleteFile(Funs.RootPath, meeting.AttachUrl);//删除附件
- }
+ CommonService.DeleteAttachFileById(meetingId + "#1");//删除会议纪要附件
+ CommonService.DeleteAttachFileById(meetingId + "#2");//删除签到表附件
+ CommonService.DeleteFlowOperateByID(meetingId);//删除流程表
Funs.DB.Driver_Meeting.DeleteOnSubmit(meeting);
Funs.DB.SubmitChanges();
}
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index 3174652e..4f7a188a 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1174,3 +1174,2238 @@ IP地址:::1
出错时间:02/28/2024 16:18:39
>>>>>>> d28f7920d8c82ae74b3b4579a35df26704bc6372
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 12:16:25
+出错时间:03/05/2024 12:16:25
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 12:16:25
+出错时间:03/05/2024 12:16:25
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 12:16:25
+出错时间:03/05/2024 12:16:25
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 12:16:25
+出错时间:03/05/2024 12:16:25
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 14:16:24
+出错时间:03/05/2024 14:16:24
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 14:16:24
+出错时间:03/05/2024 14:16:24
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/05/2024 14:16:24
+出错时间:03/05/2024 14:16:24
+
+
+错误信息开始=====>
+错误类型: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
+出错时间: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 方案“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
+出错时间:03/06/2024 12:42:19
+出错时间:03/06/2024 12:42:19
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 12:42:19
+出错时间:03/06/2024 12:42:19
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 12:42:19
+出错时间:03/06/2024 12:42:19
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 12:42:19
+出错时间:03/06/2024 12:42:19
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 17:17:40
+出错时间:03/06/2024 17:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 17:17:41
+出错时间:03/06/2024 17:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 17:17:41
+出错时间:03/06/2024 17:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 17:17:41
+出错时间:03/06/2024 17:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 19:17:39
+出错时间:03/06/2024 19:17:40
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 19:17:40
+出错时间:03/06/2024 19:17:40
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 19:17:40
+出错时间:03/06/2024 19:17:40
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 19:17:40
+出错时间:03/06/2024 19:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 21:17:40
+出错时间:03/06/2024 21:17:40
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 21:17:40
+出错时间:03/06/2024 21:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/06/2024 21:17:41
+出错时间:03/06/2024 21:17:41
+
+
+错误信息开始=====>
+错误类型: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
+出错时间: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: “ASP.testrun_meeting_schedulemeetingview_aspx”不包含“tvAttendMeetingsPerson_NodeCheck”的定义,并且找不到可接受类型为“ASP.testrun_meeting_schedulemeetingview_aspx”的第一个参数的扩展方法“tvAttendMeetingsPerson_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 方案“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
+出错时间:03/07/2024 12:33:13
+出错时间:03/07/2024 12:33:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 12:33:13
+出错时间:03/07/2024 12:33:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 12:33:13
+出错时间:03/07/2024 12:33:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 12:33:13
+出错时间:03/07/2024 12:33:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 14:33:11
+出错时间:03/07/2024 14:33:11
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 14:33:11
+出错时间:03/07/2024 14:33:11
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 14:33:11
+出错时间:03/07/2024 14:33:11
+
+
+错误信息开始=====>
+错误类型: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
+出错时间: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 方案“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
+出错时间:03/07/2024 18:45:24
+出错时间:03/07/2024 18:45:24
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 18:45:24
+出错时间:03/07/2024 18:45:24
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 18:45:25
+出错时间:03/07/2024 18:45:25
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 18:45:25
+出错时间:03/07/2024 18:45:25
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 20:45:21
+出错时间:03/07/2024 20:45:21
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 20:45:21
+出错时间:03/07/2024 20:45:21
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 20:45:21
+出错时间:03/07/2024 20:45:21
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 20:45:22
+出错时间:03/07/2024 20:45:22
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 22:45:21
+出错时间:03/07/2024 22:45:22
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 22:45:22
+出错时间:03/07/2024 22:45:22
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/07/2024 22:45:22
+出错时间:03/07/2024 22:45:22
+
+
+错误信息开始=====>
+错误类型: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
+出错时间: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 方案“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
+出错时间:03/08/2024 17:03:12
+出错时间:03/08/2024 17:03:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 17:03:13
+出错时间:03/08/2024 17:03:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 17:03:13
+出错时间:03/08/2024 17:03:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 17:03:13
+出错时间:03/08/2024 17:03:13
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 19:03:12
+出错时间:03/08/2024 19:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 19:03:12
+出错时间:03/08/2024 19:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 19:03:12
+出错时间:03/08/2024 19:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 19:03:12
+出错时间:03/08/2024 19:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 21:03:12
+出错时间:03/08/2024 21:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 21:03:12
+出错时间:03/08/2024 21:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 21:03:12
+出错时间:03/08/2024 21:03:12
+
+
+错误信息开始=====>
+错误类型: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
+出错时间:03/08/2024 21:03:12
+出错时间:03/08/2024 21:03:12
+
diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
index 79cc9084..d1da0ec7 100644
--- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj
@@ -1775,12 +1775,16 @@
+
+
+
+
@@ -15976,6 +15980,13 @@
FeedingTestRunEdit.aspx
+
+ Feedback.aspx
+ ASPXCodeBehind
+
+
+ Feedback.aspx
+
ScheduleMeeting.aspx
ASPXCodeBehind
@@ -15990,6 +16001,13 @@
ScheduleMeetingEdit.aspx
+
+ ScheduleMeetingView.aspx
+ ASPXCodeBehind
+
+
+ ScheduleMeetingView.aspx
+
SpecialMeeting.aspx
ASPXCodeBehind
@@ -16004,6 +16022,13 @@
SpecialMeetingEdit.aspx
+
+ SpecialMeetingView.aspx
+ ASPXCodeBehind
+
+
+ SpecialMeetingView.aspx
+
WeekMeeting.aspx
ASPXCodeBehind
@@ -16018,6 +16043,13 @@
WeekMeetingEdit.aspx
+
+ WeekMeetingView.aspx
+ ASPXCodeBehind
+
+
+ WeekMeetingView.aspx
+
PersonTrainPlan.aspx
ASPXCodeBehind
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx
new file mode 100644
index 00000000..63c9e615
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx
@@ -0,0 +1,79 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Feedback.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.Feedback" %>
+
+
+
+
+
+
+ 通知反馈
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx.cs
new file mode 100644
index 00000000..ff6702e6
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx.cs
@@ -0,0 +1,77 @@
+using System;
+
+namespace FineUIPro.Web.TestRun.Meeting
+{
+ public partial class Feedback : PageBase
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack)
+ {
+ this.txtFeedbak.Hidden = true;
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
+ string id = Request.Params["id"];
+ if (!string.IsNullOrEmpty(id))
+ {
+ Model.Driver_Meeting data = BLL.MeetingService.GetMeetingById(id);
+ if (data != null)
+ {
+ this.hdId.Text = id;
+ this.txtMeetingCode.Text = data.MeetingCode;
+ this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
+ this.txtMeetingAddress.Text = data.MeetingAddress;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
+ }
+ }
+ }
+ }
+
+ ///
+ /// 是否参会选择事件
+ ///
+ ///
+ ///
+ protected void rblIsMeeting_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ if (rblIsMeeting.SelectedValue == "0")
+ {
+ this.txtFeedbak.Hidden = false;
+ }
+ else
+ {
+ this.txtFeedbak.Hidden = true;
+ }
+ }
+
+ ///
+ /// 保存按钮
+ ///
+ ///
+ ///
+ protected void btnSave_Click(object sender, EventArgs e)
+ {
+ string id = Request.Params["id"];
+ var meetingItem = BLL.MeetingItemService.GetMeetingItemByMeetingIdAndUserId(id, this.CurrUser.UserId);
+ if (meetingItem != null)
+ {
+ if (rblIsMeeting.SelectedValue == "1")
+ {
+ meetingItem.IsMeeting = true;
+ }
+ else
+ {
+ meetingItem.IsMeeting = false;
+ }
+ meetingItem.Feedback = this.txtFeedbak.Text.Trim();
+ BLL.MeetingItemService.UpdateMeetingItem(meetingItem);
+ ShowNotify("反馈成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx.designer.cs
new file mode 100644
index 00000000..3c373172
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/Feedback.aspx.designer.cs
@@ -0,0 +1,177 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace FineUIPro.Web.TestRun.Meeting {
+
+
+ public partial class Feedback {
+
+ ///
+ /// form1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// SimpleForm1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form SimpleForm1;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// btnSave 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSave;
+
+ ///
+ /// hdId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdId;
+
+ ///
+ /// ContentPanel2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel2;
+
+ ///
+ /// Form2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form2;
+
+ ///
+ /// txtMeetingCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingCode;
+
+ ///
+ /// txtMeetingDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtMeetingDate;
+
+ ///
+ /// txtMeetingAddress 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingAddress;
+
+ ///
+ /// txtMeetingUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingUrl;
+
+ ///
+ /// drpCompileMan 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
+
+ ///
+ /// rblIsMeeting 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.RadioButtonList rblIsMeeting;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// txtFeedbak 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextArea txtFeedbak;
+ }
+}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx
index 667aa886..aa203d23 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx
@@ -4,7 +4,7 @@
-
+
生产调度会
@@ -20,8 +20,7 @@
-
-
+
@@ -32,37 +31,38 @@
-
-
-
-
-
-
+
-
-
+ FieldType="Date" Renderer="Date" RendererArgument="yyyy-MM-dd" HeaderText="会议日期" HeaderTextAlign="Center" Width="100px">
+ FieldType="String" HeaderText="会议地点" HeaderTextAlign="Center" Width="180px">
-
+
-
+
-
+
+
+
+
+
+
+
+
@@ -88,6 +88,10 @@
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="900px" Height="630px">
+
+
@@ -99,6 +103,8 @@
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.cs
index 14a94d3b..842a363d 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.cs
@@ -7,7 +7,7 @@ using System.Linq;
namespace FineUIPro.Web.TestRun.Meeting
{
- public partial class ScheduleMeeting :PageBase
+ public partial class ScheduleMeeting : PageBase
{
#region 加载
protected void Page_Load(object sender, EventArgs e)
@@ -17,7 +17,6 @@ namespace FineUIPro.Web.TestRun.Meeting
GetButtonPower();
BindGrid();
btnNew.OnClientClick = Window1.GetShowReference("ScheduleMeetingEdit.aspx") + "return false;";
- BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true);
}
}
#endregion
@@ -37,25 +36,26 @@ namespace FineUIPro.Web.TestRun.Meeting
meeting.Number,
meeting.MeetingType,
meeting.Remark,
- unitWork.UnitWorkName"
+ meeting.MeetingCode,
+ meeting.CompileMan,
+ u.UserName as CompileManName,
+ meeting.CompileDate,"
+ + @" (CASE WHEN meeting.States = " + BLL.Const.State_0 + " OR meeting.States IS NULL THEN '待['+OperateUser.UserName+']提交' WHEN meeting.States = " + BLL.Const.State_2 + " THEN '审核/审批完成' ELSE '待['+OperateUser.UserName+']办理' END) AS FlowOperateName"
+ @" FROM Driver_Meeting AS meeting "
- + @" LEFT JOIN WBS_UnitWork AS unitWork ON unitWork.UnitWorkId = meeting.UnitWorkId WHERE meeting.ProjectId=@projectId AND meeting.MeetingType='1'";
+ + @" LEFT JOIN Sys_FlowOperate AS FlowOperate ON meeting.MeetingId=FlowOperate.DataId AND FlowOperate.IsClosed <> 1"
+ + @" LEFT JOIN Sys_User AS OperateUser ON FlowOperate.OperaterId=OperateUser.UserId"
+ + @" LEFT JOIN Sys_User as u on u.UserId = meeting.CompileMan"
+ + @" WHERE meeting.ProjectId=@projectId AND meeting.MeetingType='1'";
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 meeting.UnitWorkId=@unitWorkId";
- listStr.Add(new SqlParameter("@unitWorkId", this.drpUnitWorkId.SelectedValue));
- }
- if (!string.IsNullOrEmpty(this.txtMeetingContent.Text.Trim()))
- {
- strSql += " AND meeting.MeetingContent LIKE @MeetingContent";
- listStr.Add(new SqlParameter("@MeetingContent", "%" + this.txtMeetingContent.Text.Trim() + "%"));
+ strSql += " AND meeting.MeetingCode LIKE @meetingCode";
+ listStr.Add(new SqlParameter("@meetingCode", "%" + this.txtCode.Text.Trim() + "%"));
}
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();
@@ -143,7 +143,22 @@ namespace FineUIPro.Web.TestRun.Meeting
Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
return;
}
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ScheduleMeetingEdit.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ var user = (from x in Funs.DB.Sys_FlowOperate where x.DataId == Grid1.SelectedRowID && x.MenuId == BLL.Const.ScheduleMeetingMenuId && x.IsClosed == false orderby x.SortIndex descending select x).FirstOrDefault();
+ if (user != null)
+ {
+ if (user.OperaterId == this.CurrUser.UserId)
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ScheduleMeetingEdit.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ else
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ScheduleMeetingView.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ }
+ else
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ScheduleMeetingView.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
}
#endregion
@@ -158,6 +173,7 @@ namespace FineUIPro.Web.TestRun.Meeting
var info = BLL.MeetingService.GetMeetingById(rowID);
if (info != null)
{
+ BLL.MeetingItemService.DeleteMeetingItemByMeetingId(rowID);
BLL.MeetingService.DeleteMeeting(rowID);
}
}
@@ -178,7 +194,11 @@ namespace FineUIPro.Web.TestRun.Meeting
string id = Grid1.DataKeys[e.RowIndex][0].ToString();
if (e.CommandName == "AttachUrl")
{
- PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}", id, BLL.Const.ScheduleMeetingMenuId)));
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}&strParam=1", id, BLL.Const.ScheduleMeetingMenuId)));
+ }
+ if (e.CommandName == "SignUrl")
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}&strParam=2", id, BLL.Const.ScheduleMeetingMenuId)));
}
}
#endregion
@@ -208,5 +228,67 @@ namespace FineUIPro.Web.TestRun.Meeting
}
}
#endregion
+
+ protected string ConvertUserName(object meetingId)
+ {
+ string userName = string.Empty;
+ var meetingItem = BLL.MeetingItemService.GetMeetingItemByMeetingId(meetingId.ToString());
+ if (meetingItem.Count>0)
+ {
+ foreach (var item in meetingItem)
+ {
+ userName += BLL.UserService.GetUserNameByUserId(item.UserId) + ",";
+ }
+ if (!string.IsNullOrEmpty(userName))
+ {
+ userName = userName.Substring(0, userName.LastIndexOf(','));
+ }
+ }
+ return userName;
+ }
+
+ #region 通知反馈
+ ///
+ /// 反馈
+ ///
+ ///
+ ///
+ protected void btnMenuFeek_Click(object sender, EventArgs e)
+ {
+ if (Grid1.SelectedRowIndexArray.Length == 0)
+ {
+ Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
+ return;
+ }
+ var meeting = BLL.MeetingService.GetMeetingById(Grid1.SelectedRowID);
+ if (meeting.States == "2")
+ {
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(Grid1.SelectedRowID);
+ if (items.Count > 0)
+ {
+ var user = items.Where(x => x.UserId == this.CurrUser.UserId);
+ if (user.Count() > 0)
+ {
+ PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("Feedback.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ else
+ {
+ Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("审核未完成,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ #endregion
}
}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.designer.cs
index e64c2504..a2b9e77a 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeeting.aspx.designer.cs
@@ -58,22 +58,13 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.Toolbar ToolSearch;
///
- /// drpUnitWorkId 控件。
+ /// txtCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList drpUnitWorkId;
-
- ///
- /// txtMeetingContent 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingContent;
+ protected global::FineUIPro.TextBox txtCode;
///
/// btnSearch 控件。
@@ -102,6 +93,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::System.Web.UI.WebControls.Label lblPageIndex;
+ ///
+ /// tbxGroupName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.WebControls.Label tbxGroupName;
+
///
/// ToolbarSeparator1 控件。
///
@@ -138,6 +138,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Window Window1;
+ ///
+ /// Window2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window Window2;
+
///
/// WindowAtt 控件。
///
@@ -173,5 +182,14 @@ namespace FineUIPro.Web.TestRun.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.MenuButton btnMenuDel;
+
+ ///
+ /// btnMenuFeek 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.MenuButton btnMenuFeek;
}
}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx
index 4b9a3f05..60394a1b 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx
@@ -1,4 +1,6 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ScheduleMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit" %>
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ScheduleMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit" ValidateRequest="false" %>
+
+<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
@@ -19,6 +21,8 @@
+
+
@@ -36,61 +40,59 @@
-
+
+
+
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.cs
index f9d82007..00ef3e5b 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.cs
@@ -15,8 +15,7 @@ namespace FineUIPro.Web.TestRun.Meeting
{
if (!IsPostBack)
{
- BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true);
-
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
string id = Request.Params["id"];
if (!string.IsNullOrEmpty(id))
{
@@ -24,30 +23,39 @@ namespace FineUIPro.Web.TestRun.Meeting
if (data != null)
{
this.hdId.Text = id;
- if (!string.IsNullOrEmpty(data.UnitWorkId))
- {
- this.drpUnitWorkId.SelectedValue = data.UnitWorkId;
- }
- this.txtMeetingTake.Text = data.MeetingTake;
- this.txtMeetingUnit.Text = data.MeetingUnit;
+ this.txtMeetingCode.Text = data.MeetingCode;
this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
this.txtMeetingAddress.Text = data.MeetingAddress;
- this.txtMeetingContent.Text = data.MeetingContent;
- this.txtNumber.Text = data.Number;
- this.txtRemark.Text = data.Remark;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
}
}
else
- {
+ {
this.txtMeetingDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ this.drpCompileMan.SelectedValue = this.CurrUser.LoginProjectId;
+ this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ string perfix = BLL.ProjectService.GetProjectCodeByProjectId(this.CurrUser.LoginProjectId) + "-MM-PSM-";
+ this.txtMeetingCode.Text = BLL.SQLHelper.RunProcNewId("SpGetThreeNumber", "dbo.Driver_Meeting", "MeetingCode", this.CurrUser.LoginProjectId, perfix);
}
+ ///初始化审核菜单
+ this.ctlAuditFlow.MenuId = BLL.Const.ScheduleMeetingMenuId;
+ this.ctlAuditFlow.DataId = id;
+ this.ctlAuditFlow.ProjectId = this.CurrUser.LoginProjectId;
+ this.ctlAuditFlow.UnitId = this.CurrUser.UnitId;
+
+ InitMenuTree();
}
}
#endregion
#region 附件上传
///
- /// 附件上传
+ /// 会议纪要
///
///
///
@@ -57,7 +65,21 @@ namespace FineUIPro.Web.TestRun.Meeting
{
this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
}
- PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}", this.hdId.Text, BLL.Const.ScheduleMeetingMenuId)));
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.ScheduleMeetingMenuId)));
+ }
+
+ ///
+ /// 签到表
+ ///
+ ///
+ ///
+ protected void btnSign_Click(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录
+ {
+ this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
+ }
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.ScheduleMeetingMenuId)));
}
#endregion
@@ -68,21 +90,53 @@ namespace FineUIPro.Web.TestRun.Meeting
///
///
protected void btnSave_Click(object sender, EventArgs e)
+ {
+ SaveData(BLL.Const.BtnSave);
+ ShowNotify("保存成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+
+ ///
+ /// 提交按钮
+ ///
+ ///
+ ///
+ protected void btnSubmit_Click(object sender, EventArgs e)
+ {
+ if (this.ctlAuditFlow.NextStep == BLL.Const.State_1 && this.ctlAuditFlow.NextPerson == BLL.Const._Null)
+ {
+ ShowNotify("请选择下一步办理人!", MessageBoxIcon.Warning);
+ return;
+ }
+ SaveData(BLL.Const.BtnSubmit);
+ ShowNotify("提交成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+
+ ///
+ /// 保存数据
+ ///
+ ///
+ private void SaveData(string type)
{
string id = Request.Params["id"];
Model.Driver_Meeting newData = new Model.Driver_Meeting();
- if (this.drpUnitWorkId.SelectedValue != BLL.Const._Null)
- {
- newData.UnitWorkId = this.drpUnitWorkId.SelectedValue;
- }
- newData.MeetingTake = this.txtMeetingTake.Text.Trim();
- newData.MeetingUnit = this.txtMeetingUnit.Text.Trim();
+ newData.MeetingCode = this.txtMeetingCode.Text.Trim();
newData.MeetingDate = Funs.GetNewDateTime(this.txtMeetingDate.Text.Trim());
newData.MeetingAddress = this.txtMeetingAddress.Text.Trim();
- newData.MeetingContent = this.txtMeetingContent.Text.Trim();
- newData.Number = this.txtNumber.Text.Trim();
- newData.Remark = this.txtRemark.Text.Trim();
+ newData.AttachUrl = this.txtMeetingUrl.Text.Trim();
+ if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
+ {
+ newData.CompileMan = this.drpCompileMan.SelectedValue;
+ }
+ newData.CompileDate = Funs.GetNewDateTime(this.txtCompileDate.Text.Trim());
newData.ProjectId = this.CurrUser.LoginProjectId;
+ ////单据状态
+ newData.States = BLL.Const.State_0;
+ if (type == BLL.Const.BtnSubmit)
+ {
+ newData.States = this.ctlAuditFlow.NextStep;
+ }
if (!string.IsNullOrEmpty(id))
{
newData.MeetingId = id;
@@ -102,8 +156,144 @@ namespace FineUIPro.Web.TestRun.Meeting
}
BLL.MeetingService.AddMeeting(newData);
}
- ShowNotify("保存成功!", MessageBoxIcon.Success);
- PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+
+ #region 保存参会人员
+ BLL.MeetingItemService.DeleteMeetingItemByMeetingId(this.hdId.Text);
+ TreeNode[] nodes = this.tvAttendMeetingsPerson.GetCheckedNodes();
+ if (nodes.Length > 0)
+ {
+ foreach (TreeNode tn in nodes)
+ {
+ if (tn.NodeID != "0")
+ {
+ Model.Driver_MeetingItem newItem = new Model.Driver_MeetingItem
+ {
+ MeetingItemId = SQLHelper.GetNewID(typeof(Model.Driver_MeetingItem)),
+ MeetingId = this.hdId.Text,
+ UserId = tn.NodeID,
+ };
+ BLL.MeetingItemService.AddMeetingItem(newItem);
+ }
+ }
+ }
+ #endregion
+
+ ////保存流程审核数据
+ this.ctlAuditFlow.btnSaveData(this.CurrUser.LoginProjectId, BLL.Const.ScheduleMeetingMenuId, this.hdId.Text, (type == BLL.Const.BtnSubmit ? true : false), newData.MeetingCode, null);
+ }
+ #endregion
+
+ #region 初始化树
+ ///
+ /// 初始化树
+ ///
+ /// 单位集合
+ private void InitMenuTree()
+ {
+ this.tvAttendMeetingsPerson.Nodes.Clear();
+ var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId);
+ foreach (var item in units)
+ {
+ TreeNode rootNode = new TreeNode
+ {
+ Text = item.UnitName,
+ NodeID = item.UnitId,
+ EnableCheckBox = true,
+ EnableCheckEvent = true,
+ Expanded = true
+ };
+ this.tvAttendMeetingsPerson.Nodes.Add(rootNode);
+ this.BoundTree(rootNode.Nodes, rootNode.NodeID);
+ }
+ }
+
+ ///
+ /// 遍历增加子节点
+ ///
+ ///
+ ///
+ private void BoundTree(TreeNodeCollection nodes, string superMenuId)
+ {
+ var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId);
+ foreach (var item in menus)
+ {
+ TreeNode chidNode = new TreeNode
+ {
+ Text = item.Text,
+ NodeID = item.Value,
+ EnableCheckBox = true,
+ EnableCheckEvent = true
+ };
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim());
+ if (items.Count > 0)
+ {
+ foreach (var i in items)
+ {
+ if (i.UserId == item.Value)
+ {
+ chidNode.Checked = true;
+ chidNode.Expanded = true;
+ chidNode.Selectable = true;
+ var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
+ if (meeting != null)
+ {
+ if (meeting.States == "2")
+ {
+ if (i.IsMeeting == true)
+ {
+ chidNode.Text = item.Text + "(可按时参加)";
+ }
+ else if (i.IsMeeting == false)
+ {
+ chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
+ }
+ else
+ {
+ chidNode.Text = item.Text + "(暂未反馈)";
+ }
+ }
+ }
+ }
+ }
+ }
+ nodes.Add(chidNode);
+ }
+ }
+ #endregion
+
+ #region 全选、全不选
+ ///
+ /// 全选、全不选
+ ///
+ ///
+ ///
+ protected void tvAttendMeetingsPerson_NodeCheck(object sender, FineUIPro.TreeCheckEventArgs e)
+ {
+ if (e.Checked)
+ {
+ this.tvAttendMeetingsPerson.CheckAllNodes(e.Node.Nodes);
+ SetCheckParentNode(e.Node);
+ }
+ else
+ {
+ this.tvAttendMeetingsPerson.UncheckAllNodes(e.Node.Nodes);
+ }
+ }
+
+ ///
+ /// 选中父节点
+ ///
+ ///
+ private void SetCheckParentNode(TreeNode node)
+ {
+ if (node.ParentNode != null && node.ParentNode.NodeID != "0")
+ {
+ node.ParentNode.Checked = true;
+ if (node.ParentNode.ParentNode.NodeID != "0")
+ {
+ SetCheckParentNode(node.ParentNode);
+ }
+ }
}
#endregion
}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.designer.cs
index 57fb8969..9c66fac6 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingEdit.aspx.designer.cs
@@ -66,6 +66,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Button btnSave;
+ ///
+ /// btnSubmit 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSubmit;
+
///
/// hdAttachUrl 控件。
///
@@ -103,31 +112,13 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.Form Form2;
///
- /// drpUnitWorkId 控件。
+ /// txtMeetingCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList drpUnitWorkId;
-
- ///
- /// txtMeetingTake 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingTake;
-
- ///
- /// txtMeetingUnit 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingUnit;
+ protected global::FineUIPro.TextBox txtMeetingCode;
///
/// txtMeetingDate 控件。
@@ -138,15 +129,6 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.DatePicker txtMeetingDate;
- ///
- /// txtNumber 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtNumber;
-
///
/// txtMeetingAddress 控件。
///
@@ -157,22 +139,31 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.TextBox txtMeetingAddress;
///
- /// txtMeetingContent 控件。
+ /// txtMeetingUrl 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextArea txtMeetingContent;
+ protected global::FineUIPro.TextBox txtMeetingUrl;
///
- /// txtRemark 控件。
+ /// drpCompileMan 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextArea txtRemark;
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
///
/// Panel3 控件。
@@ -201,6 +192,60 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Button btnAttach;
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// btnSign 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSign;
+
+ ///
+ /// tvAttendMeetingsPerson 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvAttendMeetingsPerson;
+
+ ///
+ /// ContentPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel1;
+
+ ///
+ /// ctlAuditFlow 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
+
///
/// WindowAtt 控件。
///
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx
new file mode 100644
index 00000000..6ca60e20
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx
@@ -0,0 +1,107 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ScheduleMeetingView.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.ScheduleMeetingView" ValidateRequest="false" %>
+<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
+
+
+
+
+
+
+ 查看生产调度会
+
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx.cs
new file mode 100644
index 00000000..74d4b9fa
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx.cs
@@ -0,0 +1,150 @@
+using System;
+
+namespace FineUIPro.Web.TestRun.Meeting
+{
+ public partial class ScheduleMeetingView : PageBase
+ {
+ #region 加载
+ ///
+ /// 页面加载
+ ///
+ ///
+ ///
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack)
+ {
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
+ string id = Request.Params["id"];
+ if (!string.IsNullOrEmpty(id))
+ {
+ Model.Driver_Meeting data = BLL.MeetingService.GetMeetingById(id);
+ if (data != null)
+ {
+ this.hdId.Text = id;
+ this.txtMeetingCode.Text = data.MeetingCode;
+ this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
+ this.txtMeetingAddress.Text = data.MeetingAddress;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
+ }
+ }
+ InitMenuTree();
+ ///初始化审核菜单
+ this.ctlAuditFlow.MenuId = BLL.Const.ScheduleMeetingMenuId;
+ this.ctlAuditFlow.DataId = id;
+ }
+ }
+ #endregion
+
+ #region 附件上传
+ ///
+ /// 会议纪要
+ ///
+ ///
+ ///
+ protected void btnAttach_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.hdId.Text))
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.ScheduleMeetingMenuId)));
+ }
+ }
+
+ ///
+ /// 签到表
+ ///
+ ///
+ ///
+ protected void btnSign_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.hdId.Text))
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/ScheduleMeeting&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.ScheduleMeetingMenuId)));
+ }
+ }
+ #endregion
+
+ #region 初始化树
+ ///
+ /// 初始化树
+ ///
+ /// 单位集合
+ private void InitMenuTree()
+ {
+ this.tvAttendMeetingsPerson.Nodes.Clear();
+ var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId);
+ foreach (var item in units)
+ {
+ TreeNode rootNode = new TreeNode
+ {
+ Text = item.UnitName,
+ NodeID = item.UnitId,
+ EnableCheckBox = true,
+ EnableCheckEvent = true,
+ Expanded = true
+ };
+ this.tvAttendMeetingsPerson.Nodes.Add(rootNode);
+ this.BoundTree(rootNode.Nodes, rootNode.NodeID);
+ }
+ }
+
+ ///
+ /// 遍历增加子节点
+ ///
+ ///
+ ///
+ private void BoundTree(TreeNodeCollection nodes, string superMenuId)
+ {
+ var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId);
+ foreach (var item in menus)
+ {
+ TreeNode chidNode = new TreeNode
+ {
+ Text = item.Text,
+ NodeID = item.Value,
+ EnableCheckBox = true,
+ EnableCheckEvent = true
+ };
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim());
+ if (items.Count > 0)
+ {
+ foreach (var i in items)
+ {
+ if (i.UserId == item.Value)
+ {
+ chidNode.Checked = true;
+ chidNode.Expanded = true;
+ chidNode.Selectable = true;
+ var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
+ if (meeting != null)
+ {
+ if (meeting.States == "2")
+ {
+ if (i.IsMeeting == true)
+ {
+ chidNode.Text = item.Text + "(可按时参加)";
+ }
+ else if (i.IsMeeting == false)
+ {
+ chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
+ }
+ else
+ {
+ chidNode.Text = item.Text + "(暂未反馈)";
+ }
+ }
+ }
+ }
+ }
+ }
+ nodes.Add(chidNode);
+ }
+ }
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx.designer.cs
new file mode 100644
index 00000000..497364f7
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/ScheduleMeetingView.aspx.designer.cs
@@ -0,0 +1,240 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace FineUIPro.Web.TestRun.Meeting {
+
+
+ public partial class ScheduleMeetingView {
+
+ ///
+ /// form1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// SimpleForm1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form SimpleForm1;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// hdAttachUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdAttachUrl;
+
+ ///
+ /// hdId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdId;
+
+ ///
+ /// ContentPanel2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel2;
+
+ ///
+ /// Form2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form2;
+
+ ///
+ /// txtMeetingCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingCode;
+
+ ///
+ /// txtMeetingDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtMeetingDate;
+
+ ///
+ /// txtMeetingAddress 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingAddress;
+
+ ///
+ /// txtMeetingUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingUrl;
+
+ ///
+ /// drpCompileMan 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
+
+ ///
+ /// Panel3 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel3;
+
+ ///
+ /// lblAttach 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label lblAttach;
+
+ ///
+ /// btnAttach 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAttach;
+
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// btnSign 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSign;
+
+ ///
+ /// tvAttendMeetingsPerson 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvAttendMeetingsPerson;
+
+ ///
+ /// ContentPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel1;
+
+ ///
+ /// ctlAuditFlow 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
+
+ ///
+ /// WindowAtt 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window WindowAtt;
+ }
+}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx
index 31466936..7591c69a 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx
@@ -20,8 +20,7 @@
-
-
+
@@ -38,31 +37,32 @@
-
-
-
-
-
+
-
-
+ FieldType="Date" Renderer="Date" RendererArgument="yyyy-MM-dd" HeaderText="会议日期" HeaderTextAlign="Center" Width="100px">
+ FieldType="String" HeaderText="会议地点" HeaderTextAlign="Center" Width="180px">
-
+
-
+
-
+
+
+
+
+
+
+
+
@@ -88,6 +88,10 @@
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="900px" Height="630px">
+
+
@@ -99,6 +103,8 @@
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.cs
index 1e427940..9b380596 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.cs
@@ -17,7 +17,6 @@ namespace FineUIPro.Web.TestRun.Meeting
GetButtonPower();
BindGrid();
btnNew.OnClientClick = Window1.GetShowReference("SpecialMeetingEdit.aspx") + "return false;";
- BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true);
}
}
#endregion
@@ -37,25 +36,26 @@ namespace FineUIPro.Web.TestRun.Meeting
meeting.Number,
meeting.MeetingType,
meeting.Remark,
- unitWork.UnitWorkName"
- + @" FROM Driver_Meeting AS meeting "
- + @" LEFT JOIN WBS_UnitWork AS unitWork ON unitWork.UnitWorkId = meeting.UnitWorkId WHERE meeting.ProjectId=@projectId AND meeting.MeetingType='3'";
+ meeting.MeetingCode,
+ meeting.CompileMan,
+ u.UserName as CompileManName,
+ meeting.CompileDate,"
+ + @" (CASE WHEN meeting.States = " + BLL.Const.State_0 + " OR meeting.States IS NULL THEN '待['+OperateUser.UserName+']提交' WHEN meeting.States = " + BLL.Const.State_2 + " THEN '审核/审批完成' ELSE '待['+OperateUser.UserName+']办理' END) AS FlowOperateName"
+ + @" FROM Driver_Meeting AS meeting "
+ + @" LEFT JOIN Sys_FlowOperate AS FlowOperate ON meeting.MeetingId=FlowOperate.DataId AND FlowOperate.IsClosed <> 1"
+ + @" LEFT JOIN Sys_User AS OperateUser ON FlowOperate.OperaterId=OperateUser.UserId"
+ + @" LEFT JOIN Sys_User as u on u.UserId = meeting.CompileMan"
+ + @" WHERE meeting.ProjectId=@projectId AND meeting.MeetingType='3'";
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 meeting.UnitWorkId=@unitWorkId";
- listStr.Add(new SqlParameter("@unitWorkId", this.drpUnitWorkId.SelectedValue));
- }
- if (!string.IsNullOrEmpty(this.txtMeetingContent.Text.Trim()))
- {
- strSql += " AND meeting.MeetingContent LIKE @MeetingContent";
- listStr.Add(new SqlParameter("@MeetingContent", "%" + this.txtMeetingContent.Text.Trim() + "%"));
+ strSql += " AND meeting.MeetingCode LIKE @meetingCode";
+ listStr.Add(new SqlParameter("@meetingCode", "%" + this.txtCode.Text.Trim() + "%"));
}
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();
@@ -143,7 +143,22 @@ namespace FineUIPro.Web.TestRun.Meeting
Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
return;
}
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialMeetingEdit.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ var user = (from x in Funs.DB.Sys_FlowOperate where x.DataId == Grid1.SelectedRowID && x.MenuId == BLL.Const.SpecialMeetingMenuId && x.IsClosed == false orderby x.SortIndex descending select x).FirstOrDefault();
+ if (user != null)
+ {
+ if (user.OperaterId == this.CurrUser.UserId)
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialMeetingEdit.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ else
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialMeetingView.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ }
+ else
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialMeetingView.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
}
#endregion
@@ -158,6 +173,7 @@ namespace FineUIPro.Web.TestRun.Meeting
var info = BLL.MeetingService.GetMeetingById(rowID);
if (info != null)
{
+ BLL.MeetingItemService.DeleteMeetingItemByMeetingId(rowID);
BLL.MeetingService.DeleteMeeting(rowID);
}
}
@@ -178,7 +194,11 @@ namespace FineUIPro.Web.TestRun.Meeting
string id = Grid1.DataKeys[e.RowIndex][0].ToString();
if (e.CommandName == "AttachUrl")
{
- PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}", id, BLL.Const.SpecialMeetingMenuId)));
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}&strParam=1", id, BLL.Const.SpecialMeetingMenuId)));
+ }
+ if (e.CommandName == "SignUrl")
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}&strParam=2", id, BLL.Const.SpecialMeetingMenuId)));
}
}
#endregion
@@ -208,5 +228,74 @@ namespace FineUIPro.Web.TestRun.Meeting
}
}
#endregion
+
+ #region 格式化字符串
+ ///
+ /// 获取通知人员姓名
+ ///
+ ///
+ ///
+ protected string ConvertUserName(object meetingId)
+ {
+ string userName = string.Empty;
+ var meetingItem = BLL.MeetingItemService.GetMeetingItemByMeetingId(meetingId.ToString());
+ if (meetingItem.Count > 0)
+ {
+ foreach (var item in meetingItem)
+ {
+ userName += BLL.UserService.GetUserNameByUserId(item.UserId) + ",";
+ }
+ if (!string.IsNullOrEmpty(userName))
+ {
+ userName = userName.Substring(0, userName.LastIndexOf(','));
+ }
+ }
+ return userName;
+ }
+ #endregion
+
+ #region 通知反馈
+ ///
+ /// 反馈
+ ///
+ ///
+ ///
+ protected void btnMenuFeek_Click(object sender, EventArgs e)
+ {
+ if (Grid1.SelectedRowIndexArray.Length == 0)
+ {
+ Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
+ return;
+ }
+ var meeting = BLL.MeetingService.GetMeetingById(Grid1.SelectedRowID);
+ if (meeting.States == "2")
+ {
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(Grid1.SelectedRowID);
+ if (items.Count > 0)
+ {
+ var user = items.Where(x => x.UserId == this.CurrUser.UserId);
+ if (user.Count() > 0)
+ {
+ PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("Feedback.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ else
+ {
+ Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("审核未完成,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ #endregion
}
}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.designer.cs
index 3eb112fa..12a3bc50 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeeting.aspx.designer.cs
@@ -58,22 +58,13 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.Toolbar ToolSearch;
///
- /// drpUnitWorkId 控件。
+ /// txtCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList drpUnitWorkId;
-
- ///
- /// txtMeetingContent 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingContent;
+ protected global::FineUIPro.TextBox txtCode;
///
/// btnSearch 控件。
@@ -102,6 +93,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::System.Web.UI.WebControls.Label lblPageIndex;
+ ///
+ /// tbxGroupName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.WebControls.Label tbxGroupName;
+
///
/// ToolbarSeparator1 控件。
///
@@ -138,6 +138,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Window Window1;
+ ///
+ /// Window2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window Window2;
+
///
/// WindowAtt 控件。
///
@@ -173,5 +182,14 @@ namespace FineUIPro.Web.TestRun.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.MenuButton btnMenuDel;
+
+ ///
+ /// btnMenuFeek 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.MenuButton btnMenuFeek;
}
}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx
index 66d3a623..ae4d3c4f 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx
@@ -1,10 +1,12 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SpecialMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit" %>
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SpecialMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit" ValidateRequest="false" %>
+
+<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
-
+
编辑开车专题会
@@ -19,6 +21,8 @@
+
+
@@ -36,61 +40,59 @@
-
+
+
+
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.cs
index 1e7df806..2c3ebc29 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.cs
@@ -15,8 +15,7 @@ namespace FineUIPro.Web.TestRun.Meeting
{
if (!IsPostBack)
{
- BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true);
-
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
string id = Request.Params["id"];
if (!string.IsNullOrEmpty(id))
{
@@ -24,23 +23,32 @@ namespace FineUIPro.Web.TestRun.Meeting
if (data != null)
{
this.hdId.Text = id;
- if (!string.IsNullOrEmpty(data.UnitWorkId))
- {
- this.drpUnitWorkId.SelectedValue = data.UnitWorkId;
- }
- this.txtMeetingTake.Text = data.MeetingTake;
- this.txtMeetingUnit.Text = data.MeetingUnit;
+ this.txtMeetingCode.Text = data.MeetingCode;
this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
this.txtMeetingAddress.Text = data.MeetingAddress;
- this.txtMeetingContent.Text = data.MeetingContent;
- this.txtNumber.Text = data.Number;
- this.txtRemark.Text = data.Remark;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
}
}
else
{
this.txtMeetingDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ this.drpCompileMan.SelectedValue = this.CurrUser.LoginProjectId;
+ this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ string perfix = BLL.ProjectService.GetProjectCodeByProjectId(this.CurrUser.LoginProjectId) + "-MM-PSM-";
+ this.txtMeetingCode.Text = BLL.SQLHelper.RunProcNewId("SpGetThreeNumber", "dbo.Driver_Meeting", "MeetingCode", this.CurrUser.LoginProjectId, perfix);
}
+ ///初始化审核菜单
+ this.ctlAuditFlow.MenuId = BLL.Const.SpecialMeetingMenuId;
+ this.ctlAuditFlow.DataId = id;
+ this.ctlAuditFlow.ProjectId = this.CurrUser.LoginProjectId;
+ this.ctlAuditFlow.UnitId = this.CurrUser.UnitId;
+
+ InitMenuTree();
}
}
#endregion
@@ -57,7 +65,21 @@ namespace FineUIPro.Web.TestRun.Meeting
{
this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
}
- PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}", this.hdId.Text, BLL.Const.SpecialMeetingMenuId)));
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.SpecialMeetingMenuId)));
+ }
+
+ ///
+ /// 签到表
+ ///
+ ///
+ ///
+ protected void btnSign_Click(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录
+ {
+ this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
+ }
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.SpecialMeetingMenuId)));
}
#endregion
@@ -68,21 +90,53 @@ namespace FineUIPro.Web.TestRun.Meeting
///
///
protected void btnSave_Click(object sender, EventArgs e)
+ {
+ SaveData(BLL.Const.BtnSave);
+ ShowNotify("保存成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+
+ ///
+ /// 提交按钮
+ ///
+ ///
+ ///
+ protected void btnSubmit_Click(object sender, EventArgs e)
+ {
+ if (this.ctlAuditFlow.NextStep == BLL.Const.State_1 && this.ctlAuditFlow.NextPerson == BLL.Const._Null)
+ {
+ ShowNotify("请选择下一步办理人!", MessageBoxIcon.Warning);
+ return;
+ }
+ SaveData(BLL.Const.BtnSubmit);
+ ShowNotify("提交成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+
+ ///
+ /// 保存数据
+ ///
+ ///
+ private void SaveData(string type)
{
string id = Request.Params["id"];
Model.Driver_Meeting newData = new Model.Driver_Meeting();
- if (this.drpUnitWorkId.SelectedValue != BLL.Const._Null)
- {
- newData.UnitWorkId = this.drpUnitWorkId.SelectedValue;
- }
- newData.MeetingTake = this.txtMeetingTake.Text.Trim();
- newData.MeetingUnit = this.txtMeetingUnit.Text.Trim();
+ newData.MeetingCode = this.txtMeetingCode.Text.Trim();
newData.MeetingDate = Funs.GetNewDateTime(this.txtMeetingDate.Text.Trim());
newData.MeetingAddress = this.txtMeetingAddress.Text.Trim();
- newData.MeetingContent = this.txtMeetingContent.Text.Trim();
- newData.Number = this.txtNumber.Text.Trim();
- newData.Remark = this.txtRemark.Text.Trim();
+ newData.AttachUrl = this.txtMeetingUrl.Text.Trim();
+ if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
+ {
+ newData.CompileMan = this.drpCompileMan.SelectedValue;
+ }
+ newData.CompileDate = Funs.GetNewDateTime(this.txtCompileDate.Text.Trim());
newData.ProjectId = this.CurrUser.LoginProjectId;
+ ////单据状态
+ newData.States = BLL.Const.State_0;
+ if (type == BLL.Const.BtnSubmit)
+ {
+ newData.States = this.ctlAuditFlow.NextStep;
+ }
if (!string.IsNullOrEmpty(id))
{
newData.MeetingId = id;
@@ -102,8 +156,144 @@ namespace FineUIPro.Web.TestRun.Meeting
}
BLL.MeetingService.AddMeeting(newData);
}
- ShowNotify("保存成功!", MessageBoxIcon.Success);
- PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+
+ #region 保存参会人员
+ BLL.MeetingItemService.DeleteMeetingItemByMeetingId(this.hdId.Text);
+ TreeNode[] nodes = this.tvAttendMeetingsPerson.GetCheckedNodes();
+ if (nodes.Length > 0)
+ {
+ foreach (TreeNode tn in nodes)
+ {
+ if (tn.NodeID != "0")
+ {
+ Model.Driver_MeetingItem newItem = new Model.Driver_MeetingItem
+ {
+ MeetingItemId = SQLHelper.GetNewID(typeof(Model.Driver_MeetingItem)),
+ MeetingId = this.hdId.Text,
+ UserId = tn.NodeID,
+ };
+ BLL.MeetingItemService.AddMeetingItem(newItem);
+ }
+ }
+ }
+ #endregion
+
+ ////保存流程审核数据
+ this.ctlAuditFlow.btnSaveData(this.CurrUser.LoginProjectId, BLL.Const.SpecialMeetingMenuId, this.hdId.Text, (type == BLL.Const.BtnSubmit ? true : false), newData.MeetingCode, null);
+ }
+ #endregion
+
+ #region 初始化树
+ ///
+ /// 初始化树
+ ///
+ /// 单位集合
+ private void InitMenuTree()
+ {
+ this.tvAttendMeetingsPerson.Nodes.Clear();
+ var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId);
+ foreach (var item in units)
+ {
+ TreeNode rootNode = new TreeNode
+ {
+ Text = item.UnitName,
+ NodeID = item.UnitId,
+ EnableCheckBox = true,
+ EnableCheckEvent = true,
+ Expanded = true
+ };
+ this.tvAttendMeetingsPerson.Nodes.Add(rootNode);
+ this.BoundTree(rootNode.Nodes, rootNode.NodeID);
+ }
+ }
+
+ ///
+ /// 遍历增加子节点
+ ///
+ ///
+ ///
+ private void BoundTree(TreeNodeCollection nodes, string superMenuId)
+ {
+ var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId);
+ foreach (var item in menus)
+ {
+ TreeNode chidNode = new TreeNode
+ {
+ Text = item.Text,
+ NodeID = item.Value,
+ EnableCheckBox = true,
+ EnableCheckEvent = true
+ };
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim());
+ if (items.Count > 0)
+ {
+ foreach (var i in items)
+ {
+ if (i.UserId == item.Value)
+ {
+ chidNode.Checked = true;
+ chidNode.Expanded = true;
+ chidNode.Selectable = true;
+ var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
+ if (meeting != null)
+ {
+ if (meeting.States == "2")
+ {
+ if (i.IsMeeting == true)
+ {
+ chidNode.Text = item.Text + "(可按时参加)";
+ }
+ else if (i.IsMeeting == false)
+ {
+ chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
+ }
+ else
+ {
+ chidNode.Text = item.Text + "(暂未反馈)";
+ }
+ }
+ }
+ }
+ }
+ }
+ nodes.Add(chidNode);
+ }
+ }
+ #endregion
+
+ #region 全选、全不选
+ ///
+ /// 全选、全不选
+ ///
+ ///
+ ///
+ protected void tvAttendMeetingsPerson_NodeCheck(object sender, FineUIPro.TreeCheckEventArgs e)
+ {
+ if (e.Checked)
+ {
+ this.tvAttendMeetingsPerson.CheckAllNodes(e.Node.Nodes);
+ SetCheckParentNode(e.Node);
+ }
+ else
+ {
+ this.tvAttendMeetingsPerson.UncheckAllNodes(e.Node.Nodes);
+ }
+ }
+
+ ///
+ /// 选中父节点
+ ///
+ ///
+ private void SetCheckParentNode(TreeNode node)
+ {
+ if (node.ParentNode != null && node.ParentNode.NodeID != "0")
+ {
+ node.ParentNode.Checked = true;
+ if (node.ParentNode.ParentNode.NodeID != "0")
+ {
+ SetCheckParentNode(node.ParentNode);
+ }
+ }
}
#endregion
}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.designer.cs
index 9cf27bda..98bd6cd3 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingEdit.aspx.designer.cs
@@ -66,6 +66,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Button btnSave;
+ ///
+ /// btnSubmit 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSubmit;
+
///
/// hdAttachUrl 控件。
///
@@ -103,31 +112,13 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.Form Form2;
///
- /// drpUnitWorkId 控件。
+ /// txtMeetingCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList drpUnitWorkId;
-
- ///
- /// txtMeetingTake 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingTake;
-
- ///
- /// txtMeetingUnit 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingUnit;
+ protected global::FineUIPro.TextBox txtMeetingCode;
///
/// txtMeetingDate 控件。
@@ -138,15 +129,6 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.DatePicker txtMeetingDate;
- ///
- /// txtNumber 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtNumber;
-
///
/// txtMeetingAddress 控件。
///
@@ -157,22 +139,31 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.TextBox txtMeetingAddress;
///
- /// txtMeetingContent 控件。
+ /// txtMeetingUrl 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextArea txtMeetingContent;
+ protected global::FineUIPro.TextBox txtMeetingUrl;
///
- /// txtRemark 控件。
+ /// drpCompileMan 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextArea txtRemark;
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
///
/// Panel3 控件。
@@ -201,6 +192,60 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Button btnAttach;
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// btnSign 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSign;
+
+ ///
+ /// tvAttendMeetingsPerson 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvAttendMeetingsPerson;
+
+ ///
+ /// ContentPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel1;
+
+ ///
+ /// ctlAuditFlow 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
+
///
/// WindowAtt 控件。
///
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx
new file mode 100644
index 00000000..24e3dc55
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx
@@ -0,0 +1,106 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SpecialMeetingView.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.SpecialMeetingView" ValidateRequest="false" %>
+<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
+
+
+
+
+
+
+ 查看开车专题会
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx.cs
new file mode 100644
index 00000000..554c4b3b
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx.cs
@@ -0,0 +1,150 @@
+using System;
+
+namespace FineUIPro.Web.TestRun.Meeting
+{
+ public partial class SpecialMeetingView : PageBase
+ {
+ #region 加载
+ ///
+ /// 页面加载
+ ///
+ ///
+ ///
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack)
+ {
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
+ string id = Request.Params["id"];
+ if (!string.IsNullOrEmpty(id))
+ {
+ Model.Driver_Meeting data = BLL.MeetingService.GetMeetingById(id);
+ if (data != null)
+ {
+ this.hdId.Text = id;
+ this.txtMeetingCode.Text = data.MeetingCode;
+ this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
+ this.txtMeetingAddress.Text = data.MeetingAddress;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
+ }
+ }
+ InitMenuTree();
+ ///初始化审核菜单
+ this.ctlAuditFlow.MenuId = BLL.Const.SpecialMeetingMenuId;
+ this.ctlAuditFlow.DataId = id;
+ }
+ }
+ #endregion
+
+ #region 附件上传
+ ///
+ /// 会议纪要
+ ///
+ ///
+ ///
+ protected void btnAttach_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.hdId.Text))
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.SpecialMeetingMenuId)));
+ }
+ }
+
+ ///
+ /// 签到表
+ ///
+ ///
+ ///
+ protected void btnSign_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.hdId.Text))
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/SpecialMeeting&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.SpecialMeetingMenuId)));
+ }
+ }
+ #endregion
+
+ #region 初始化树
+ ///
+ /// 初始化树
+ ///
+ /// 单位集合
+ private void InitMenuTree()
+ {
+ this.tvAttendMeetingsPerson.Nodes.Clear();
+ var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId);
+ foreach (var item in units)
+ {
+ TreeNode rootNode = new TreeNode
+ {
+ Text = item.UnitName,
+ NodeID = item.UnitId,
+ EnableCheckBox = true,
+ EnableCheckEvent = true,
+ Expanded = true
+ };
+ this.tvAttendMeetingsPerson.Nodes.Add(rootNode);
+ this.BoundTree(rootNode.Nodes, rootNode.NodeID);
+ }
+ }
+
+ ///
+ /// 遍历增加子节点
+ ///
+ ///
+ ///
+ private void BoundTree(TreeNodeCollection nodes, string superMenuId)
+ {
+ var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId);
+ foreach (var item in menus)
+ {
+ TreeNode chidNode = new TreeNode
+ {
+ Text = item.Text,
+ NodeID = item.Value,
+ EnableCheckBox = true,
+ EnableCheckEvent = true
+ };
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim());
+ if (items.Count > 0)
+ {
+ foreach (var i in items)
+ {
+ if (i.UserId == item.Value)
+ {
+ chidNode.Checked = true;
+ chidNode.Expanded = true;
+ chidNode.Selectable = true;
+ var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
+ if (meeting != null)
+ {
+ if (meeting.States == "2")
+ {
+ if (i.IsMeeting == true)
+ {
+ chidNode.Text = item.Text + "(可按时参加)";
+ }
+ else if (i.IsMeeting == false)
+ {
+ chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
+ }
+ else
+ {
+ chidNode.Text = item.Text + "(暂未反馈)";
+ }
+ }
+ }
+ }
+ }
+ }
+ nodes.Add(chidNode);
+ }
+ }
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx.designer.cs
new file mode 100644
index 00000000..3c74902e
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/SpecialMeetingView.aspx.designer.cs
@@ -0,0 +1,240 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace FineUIPro.Web.TestRun.Meeting {
+
+
+ public partial class SpecialMeetingView {
+
+ ///
+ /// form1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// SimpleForm1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form SimpleForm1;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// hdAttachUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdAttachUrl;
+
+ ///
+ /// hdId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdId;
+
+ ///
+ /// ContentPanel2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel2;
+
+ ///
+ /// Form2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form2;
+
+ ///
+ /// txtMeetingCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingCode;
+
+ ///
+ /// txtMeetingDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtMeetingDate;
+
+ ///
+ /// txtMeetingAddress 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingAddress;
+
+ ///
+ /// txtMeetingUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingUrl;
+
+ ///
+ /// drpCompileMan 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
+
+ ///
+ /// Panel3 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel3;
+
+ ///
+ /// lblAttach 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label lblAttach;
+
+ ///
+ /// btnAttach 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAttach;
+
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// btnSign 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSign;
+
+ ///
+ /// tvAttendMeetingsPerson 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvAttendMeetingsPerson;
+
+ ///
+ /// ContentPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel1;
+
+ ///
+ /// ctlAuditFlow 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
+
+ ///
+ /// WindowAtt 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window WindowAtt;
+ }
+}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx
index 2611f240..13a32e9d 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx
@@ -4,8 +4,9 @@
-
+
开车周例会
+
+
+
@@ -99,6 +104,8 @@
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.cs
index 6d472146..df1d94a0 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.cs
@@ -17,7 +17,6 @@ namespace FineUIPro.Web.TestRun.Meeting
GetButtonPower();
BindGrid();
btnNew.OnClientClick = Window1.GetShowReference("WeekMeetingEdit.aspx") + "return false;";
- BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true);
}
}
#endregion
@@ -37,25 +36,26 @@ namespace FineUIPro.Web.TestRun.Meeting
meeting.Number,
meeting.MeetingType,
meeting.Remark,
- unitWork.UnitWorkName"
+ meeting.MeetingCode,
+ meeting.CompileMan,
+ u.UserName as CompileManName,
+ meeting.CompileDate,"
+ + @" (CASE WHEN meeting.States = " + BLL.Const.State_0 + " OR meeting.States IS NULL THEN '待['+OperateUser.UserName+']提交' WHEN meeting.States = " + BLL.Const.State_2 + " THEN '审核/审批完成' ELSE '待['+OperateUser.UserName+']办理' END) AS FlowOperateName"
+ @" FROM Driver_Meeting AS meeting "
- + @" LEFT JOIN WBS_UnitWork AS unitWork ON unitWork.UnitWorkId = meeting.UnitWorkId WHERE meeting.ProjectId=@projectId AND meeting.MeetingType='2'";
+ + @" LEFT JOIN Sys_FlowOperate AS FlowOperate ON meeting.MeetingId=FlowOperate.DataId AND FlowOperate.IsClosed <> 1"
+ + @" LEFT JOIN Sys_User AS OperateUser ON FlowOperate.OperaterId=OperateUser.UserId"
+ + @" LEFT JOIN Sys_User as u on u.UserId = meeting.CompileMan"
+ + @" WHERE meeting.ProjectId=@projectId AND meeting.MeetingType='2'";
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 meeting.UnitWorkId=@unitWorkId";
- listStr.Add(new SqlParameter("@unitWorkId", this.drpUnitWorkId.SelectedValue));
- }
- if (!string.IsNullOrEmpty(this.txtMeetingContent.Text.Trim()))
- {
- strSql += " AND meeting.MeetingContent LIKE @MeetingContent";
- listStr.Add(new SqlParameter("@MeetingContent", "%" + this.txtMeetingContent.Text.Trim() + "%"));
+ strSql += " AND meeting.MeetingCode LIKE @meetingCode";
+ listStr.Add(new SqlParameter("@meetingCode", "%" + this.txtCode.Text.Trim() + "%"));
}
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();
@@ -143,7 +143,22 @@ namespace FineUIPro.Web.TestRun.Meeting
Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
return;
}
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekMeetingEdit.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ var user = (from x in Funs.DB.Sys_FlowOperate where x.DataId == Grid1.SelectedRowID && x.MenuId == BLL.Const.WeekMeetingMenuId && x.IsClosed == false orderby x.SortIndex descending select x).FirstOrDefault();
+ if (user != null)
+ {
+ if (user.OperaterId == this.CurrUser.UserId)
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekMeetingEdit.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ else
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekMeetingView.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ }
+ else
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("WeekMeetingView.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
}
#endregion
@@ -158,6 +173,7 @@ namespace FineUIPro.Web.TestRun.Meeting
var info = BLL.MeetingService.GetMeetingById(rowID);
if (info != null)
{
+ BLL.MeetingItemService.DeleteMeetingItemByMeetingId(rowID);
BLL.MeetingService.DeleteMeeting(rowID);
}
}
@@ -178,7 +194,11 @@ namespace FineUIPro.Web.TestRun.Meeting
string id = Grid1.DataKeys[e.RowIndex][0].ToString();
if (e.CommandName == "AttachUrl")
{
- PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}", id, BLL.Const.WeekMeetingMenuId)));
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}&strParam=1", id, BLL.Const.WeekMeetingMenuId)));
+ }
+ if (e.CommandName == "SignUrl")
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}&strParam=2", id, BLL.Const.WeekMeetingMenuId)));
}
}
#endregion
@@ -208,5 +228,74 @@ namespace FineUIPro.Web.TestRun.Meeting
}
}
#endregion
+
+ #region 格式化字符串
+ ///
+ /// 获取通知人员姓名
+ ///
+ ///
+ ///
+ protected string ConvertUserName(object meetingId)
+ {
+ string userName = string.Empty;
+ var meetingItem = BLL.MeetingItemService.GetMeetingItemByMeetingId(meetingId.ToString());
+ if (meetingItem.Count > 0)
+ {
+ foreach (var item in meetingItem)
+ {
+ userName += BLL.UserService.GetUserNameByUserId(item.UserId) + ",";
+ }
+ if (!string.IsNullOrEmpty(userName))
+ {
+ userName = userName.Substring(0, userName.LastIndexOf(','));
+ }
+ }
+ return userName;
+ }
+ #endregion
+
+ #region 通知反馈
+ ///
+ /// 反馈
+ ///
+ ///
+ ///
+ protected void btnMenuFeek_Click(object sender, EventArgs e)
+ {
+ if (Grid1.SelectedRowIndexArray.Length == 0)
+ {
+ Alert.ShowInTop("请至少选择一条记录", MessageBoxIcon.Warning);
+ return;
+ }
+ var meeting = BLL.MeetingService.GetMeetingById(Grid1.SelectedRowID);
+ if (meeting.States == "2")
+ {
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(Grid1.SelectedRowID);
+ if (items.Count > 0)
+ {
+ var user = items.Where(x => x.UserId == this.CurrUser.UserId);
+ if (user.Count() > 0)
+ {
+ PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("Feedback.aspx?id={0}", Grid1.SelectedRowID, "编辑 - ")));
+ }
+ else
+ {
+ Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("未参与此会议,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ else
+ {
+ Alert.ShowInTop("审核未完成,无需反馈!", MessageBoxIcon.Warning);
+ return;
+ }
+ }
+ #endregion
}
}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.designer.cs
index b0e40185..9184d72c 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeeting.aspx.designer.cs
@@ -58,22 +58,13 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.Toolbar ToolSearch;
///
- /// drpUnitWorkId 控件。
+ /// txtCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList drpUnitWorkId;
-
- ///
- /// txtMeetingContent 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingContent;
+ protected global::FineUIPro.TextBox txtCode;
///
/// btnSearch 控件。
@@ -102,6 +93,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::System.Web.UI.WebControls.Label lblPageIndex;
+ ///
+ /// tbxGroupName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.WebControls.Label tbxGroupName;
+
///
/// ToolbarSeparator1 控件。
///
@@ -138,6 +138,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Window Window1;
+ ///
+ /// Window2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window Window2;
+
///
/// WindowAtt 控件。
///
@@ -173,5 +182,14 @@ namespace FineUIPro.Web.TestRun.Meeting {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.MenuButton btnMenuDel;
+
+ ///
+ /// btnMenuFeek 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.MenuButton btnMenuFeek;
}
}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx
index 6e87728c..a32dfbe6 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx
@@ -1,10 +1,11 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeekMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit" %>
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeekMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit" ValidateRequest="false"%>
+<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
-
+
编辑开车周例会
@@ -19,6 +20,8 @@
+
+
@@ -36,61 +39,59 @@
-
+
+
+
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.cs
index 846a4daa..bb5b6147 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.cs
@@ -15,8 +15,7 @@ namespace FineUIPro.Web.TestRun.Meeting
{
if (!IsPostBack)
{
- BLL.UnitWorkService.InitUnitWorkDropDownList(this.drpUnitWorkId, this.CurrUser.LoginProjectId, true);
-
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
string id = Request.Params["id"];
if (!string.IsNullOrEmpty(id))
{
@@ -24,23 +23,32 @@ namespace FineUIPro.Web.TestRun.Meeting
if (data != null)
{
this.hdId.Text = id;
- if (!string.IsNullOrEmpty(data.UnitWorkId))
- {
- this.drpUnitWorkId.SelectedValue = data.UnitWorkId;
- }
- this.txtMeetingTake.Text = data.MeetingTake;
- this.txtMeetingUnit.Text = data.MeetingUnit;
+ this.txtMeetingCode.Text = data.MeetingCode;
this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
this.txtMeetingAddress.Text = data.MeetingAddress;
- this.txtMeetingContent.Text = data.MeetingContent;
- this.txtNumber.Text = data.Number;
- this.txtRemark.Text = data.Remark;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
}
}
else
{
this.txtMeetingDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ this.drpCompileMan.SelectedValue = this.CurrUser.LoginProjectId;
+ this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
+ string perfix = BLL.ProjectService.GetProjectCodeByProjectId(this.CurrUser.LoginProjectId) + "-MM-PSM-";
+ this.txtMeetingCode.Text = BLL.SQLHelper.RunProcNewId("SpGetThreeNumber", "dbo.Driver_Meeting", "MeetingCode", this.CurrUser.LoginProjectId, perfix);
}
+ ///初始化审核菜单
+ this.ctlAuditFlow.MenuId = BLL.Const.WeekMeetingMenuId;
+ this.ctlAuditFlow.DataId = id;
+ this.ctlAuditFlow.ProjectId = this.CurrUser.LoginProjectId;
+ this.ctlAuditFlow.UnitId = this.CurrUser.UnitId;
+
+ InitMenuTree();
}
}
#endregion
@@ -57,7 +65,21 @@ namespace FineUIPro.Web.TestRun.Meeting
{
this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
}
- PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}", this.hdId.Text, BLL.Const.WeekMeetingMenuId)));
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.WeekMeetingMenuId)));
+ }
+
+ ///
+ /// 签到表
+ ///
+ ///
+ ///
+ protected void btnSign_Click(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录
+ {
+ this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_Meeting));
+ }
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.WeekMeetingMenuId)));
}
#endregion
@@ -68,21 +90,53 @@ namespace FineUIPro.Web.TestRun.Meeting
///
///
protected void btnSave_Click(object sender, EventArgs e)
+ {
+ SaveData(BLL.Const.BtnSave);
+ ShowNotify("保存成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+
+ ///
+ /// 提交按钮
+ ///
+ ///
+ ///
+ protected void btnSubmit_Click(object sender, EventArgs e)
+ {
+ if (this.ctlAuditFlow.NextStep == BLL.Const.State_1 && this.ctlAuditFlow.NextPerson == BLL.Const._Null)
+ {
+ ShowNotify("请选择下一步办理人!", MessageBoxIcon.Warning);
+ return;
+ }
+ SaveData(BLL.Const.BtnSubmit);
+ ShowNotify("提交成功!", MessageBoxIcon.Success);
+ PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+ }
+
+ ///
+ /// 保存数据
+ ///
+ ///
+ private void SaveData(string type)
{
string id = Request.Params["id"];
Model.Driver_Meeting newData = new Model.Driver_Meeting();
- if (this.drpUnitWorkId.SelectedValue != BLL.Const._Null)
- {
- newData.UnitWorkId = this.drpUnitWorkId.SelectedValue;
- }
- newData.MeetingTake = this.txtMeetingTake.Text.Trim();
- newData.MeetingUnit = this.txtMeetingUnit.Text.Trim();
+ newData.MeetingCode = this.txtMeetingCode.Text.Trim();
newData.MeetingDate = Funs.GetNewDateTime(this.txtMeetingDate.Text.Trim());
newData.MeetingAddress = this.txtMeetingAddress.Text.Trim();
- newData.MeetingContent = this.txtMeetingContent.Text.Trim();
- newData.Number = this.txtNumber.Text.Trim();
- newData.Remark = this.txtRemark.Text.Trim();
+ newData.AttachUrl = this.txtMeetingUrl.Text.Trim();
+ if (this.drpCompileMan.SelectedValue != BLL.Const._Null)
+ {
+ newData.CompileMan = this.drpCompileMan.SelectedValue;
+ }
+ newData.CompileDate = Funs.GetNewDateTime(this.txtCompileDate.Text.Trim());
newData.ProjectId = this.CurrUser.LoginProjectId;
+ ////单据状态
+ newData.States = BLL.Const.State_0;
+ if (type == BLL.Const.BtnSubmit)
+ {
+ newData.States = this.ctlAuditFlow.NextStep;
+ }
if (!string.IsNullOrEmpty(id))
{
newData.MeetingId = id;
@@ -102,8 +156,145 @@ namespace FineUIPro.Web.TestRun.Meeting
}
BLL.MeetingService.AddMeeting(newData);
}
- ShowNotify("保存成功!", MessageBoxIcon.Success);
- PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
+
+ #region 保存参会人员
+ BLL.MeetingItemService.DeleteMeetingItemByMeetingId(this.hdId.Text);
+ TreeNode[] nodes = this.tvAttendMeetingsPerson.GetCheckedNodes();
+ if (nodes.Length > 0)
+ {
+ foreach (TreeNode tn in nodes)
+ {
+ if (tn.NodeID != "0")
+ {
+ Model.Driver_MeetingItem newItem = new Model.Driver_MeetingItem
+ {
+ MeetingItemId = SQLHelper.GetNewID(typeof(Model.Driver_MeetingItem)),
+ MeetingId = this.hdId.Text,
+ UserId = tn.NodeID,
+ };
+ BLL.MeetingItemService.AddMeetingItem(newItem);
+ }
+ }
+ }
+ #endregion
+
+ ////保存流程审核数据
+ this.ctlAuditFlow.btnSaveData(this.CurrUser.LoginProjectId, BLL.Const.WeekMeetingMenuId, this.hdId.Text, (type == BLL.Const.BtnSubmit ? true : false), newData.MeetingCode, null);
+ }
+ #endregion
+
+ #region 初始化树
+ ///
+ /// 初始化树
+ ///
+ /// 单位集合
+ private void InitMenuTree()
+ {
+ this.tvAttendMeetingsPerson.Nodes.Clear();
+ var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId);
+ foreach (var item in units)
+ {
+ TreeNode rootNode = new TreeNode
+ {
+ Text = item.UnitName,
+ NodeID = item.UnitId,
+ EnableCheckBox = true,
+ EnableCheckEvent = true,
+ Expanded = true
+ };
+ this.tvAttendMeetingsPerson.Nodes.Add(rootNode);
+ this.BoundTree(rootNode.Nodes, rootNode.NodeID);
+ }
+ }
+
+ ///
+ /// 遍历增加子节点
+ ///
+ ///
+ ///
+ private void BoundTree(TreeNodeCollection nodes, string superMenuId)
+ {
+ var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId);
+ foreach (var item in menus)
+ {
+ TreeNode chidNode = new TreeNode
+ {
+ Text = item.Text,
+ NodeID = item.Value,
+ EnableCheckBox = true,
+ EnableCheckEvent = true
+ };
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim());
+ if (items.Count > 0)
+ {
+ foreach (var i in items)
+ {
+ if (i.UserId == item.Value)
+ {
+ chidNode.Checked = true;
+ chidNode.Expanded = true;
+ chidNode.Selectable = true;
+
+ var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
+ if (meeting != null)
+ {
+ if (meeting.States == "2")
+ {
+ if (i.IsMeeting == true)
+ {
+ chidNode.Text = item.Text + "(可按时参加)";
+ }
+ else if (i.IsMeeting == false)
+ {
+ chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
+ }
+ else
+ {
+ chidNode.Text = item.Text + "(暂未反馈)";
+ }
+ }
+ }
+ }
+ }
+ }
+ nodes.Add(chidNode);
+ }
+ }
+ #endregion
+
+ #region 全选、全不选
+ ///
+ /// 全选、全不选
+ ///
+ ///
+ ///
+ protected void tvAttendMeetingsPerson_NodeCheck(object sender, FineUIPro.TreeCheckEventArgs e)
+ {
+ if (e.Checked)
+ {
+ this.tvAttendMeetingsPerson.CheckAllNodes(e.Node.Nodes);
+ SetCheckParentNode(e.Node);
+ }
+ else
+ {
+ this.tvAttendMeetingsPerson.UncheckAllNodes(e.Node.Nodes);
+ }
+ }
+
+ ///
+ /// 选中父节点
+ ///
+ ///
+ private void SetCheckParentNode(TreeNode node)
+ {
+ if (node.ParentNode != null && node.ParentNode.NodeID != "0")
+ {
+ node.ParentNode.Checked = true;
+ if (node.ParentNode.ParentNode.NodeID != "0")
+ {
+ SetCheckParentNode(node.ParentNode);
+ }
+ }
}
#endregion
}
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.designer.cs
index 660e990b..a3fe901a 100644
--- a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingEdit.aspx.designer.cs
@@ -66,6 +66,15 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Button btnSave;
+ ///
+ /// btnSubmit 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSubmit;
+
///
/// hdAttachUrl 控件。
///
@@ -103,31 +112,13 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.Form Form2;
///
- /// drpUnitWorkId 控件。
+ /// txtMeetingCode 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.DropDownList drpUnitWorkId;
-
- ///
- /// txtMeetingTake 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingTake;
-
- ///
- /// txtMeetingUnit 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtMeetingUnit;
+ protected global::FineUIPro.TextBox txtMeetingCode;
///
/// txtMeetingDate 控件。
@@ -138,15 +129,6 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.DatePicker txtMeetingDate;
- ///
- /// txtNumber 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox txtNumber;
-
///
/// txtMeetingAddress 控件。
///
@@ -157,22 +139,31 @@ namespace FineUIPro.Web.TestRun.Meeting {
protected global::FineUIPro.TextBox txtMeetingAddress;
///
- /// txtMeetingContent 控件。
+ /// txtMeetingUrl 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextArea txtMeetingContent;
+ protected global::FineUIPro.TextBox txtMeetingUrl;
///
- /// txtRemark 控件。
+ /// drpCompileMan 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.TextArea txtRemark;
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
///
/// Panel3 控件。
@@ -201,6 +192,60 @@ namespace FineUIPro.Web.TestRun.Meeting {
///
protected global::FineUIPro.Button btnAttach;
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// btnSign 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSign;
+
+ ///
+ /// tvAttendMeetingsPerson 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvAttendMeetingsPerson;
+
+ ///
+ /// ContentPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel1;
+
+ ///
+ /// ctlAuditFlow 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
+
///
/// WindowAtt 控件。
///
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx
new file mode 100644
index 00000000..85ac50ad
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx
@@ -0,0 +1,106 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeekMeetingView.aspx.cs" Inherits="FineUIPro.Web.TestRun.Meeting.WeekMeetingView" ValidateRequest="false" %>
+<%@ Register Src="~/Controls/FlowOperateControl.ascx" TagName="FlowOperateControl" TagPrefix="uc1" %>
+
+
+
+
+
+
+ 开车周例会
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx.cs
new file mode 100644
index 00000000..086136f4
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx.cs
@@ -0,0 +1,150 @@
+using System;
+
+namespace FineUIPro.Web.TestRun.Meeting
+{
+ public partial class WeekMeetingView : PageBase
+ {
+ #region 加载
+ ///
+ /// 页面加载
+ ///
+ ///
+ ///
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack)
+ {
+ BLL.UserService.InitUserDropDownList(this.drpCompileMan, this.CurrUser.LoginProjectId, true);
+ string id = Request.Params["id"];
+ if (!string.IsNullOrEmpty(id))
+ {
+ Model.Driver_Meeting data = BLL.MeetingService.GetMeetingById(id);
+ if (data != null)
+ {
+ this.hdId.Text = id;
+ this.txtMeetingCode.Text = data.MeetingCode;
+ this.txtMeetingDate.Text = data.MeetingDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.MeetingDate) : "";
+ this.txtMeetingAddress.Text = data.MeetingAddress;
+ this.txtMeetingUrl.Text = data.AttachUrl;
+ if (!string.IsNullOrEmpty(data.CompileMan))
+ {
+ this.drpCompileMan.SelectedValue = data.CompileMan;
+ }
+ this.txtCompileDate.Text = data.CompileDate.HasValue ? string.Format("{0:yyyy-MM-dd}", data.CompileDate) : "";
+ }
+ }
+ InitMenuTree();
+ ///初始化审核菜单
+ this.ctlAuditFlow.MenuId = BLL.Const.WeekMeetingMenuId;
+ this.ctlAuditFlow.DataId = id;
+ }
+ }
+ #endregion
+
+ #region 附件上传
+ ///
+ /// 会议纪要
+ ///
+ ///
+ ///
+ protected void btnAttach_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.hdId.Text))
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.WeekMeetingMenuId)));
+ }
+ }
+
+ ///
+ /// 签到表
+ ///
+ ///
+ ///
+ protected void btnSign_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.hdId.Text))
+ {
+ PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=-1&toKeyId={0}&path=FileUpload/TestRun/Meeting/WeekMeeting&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.WeekMeetingMenuId)));
+ }
+ }
+ #endregion
+
+ #region 初始化树
+ ///
+ /// 初始化树
+ ///
+ /// 单位集合
+ private void InitMenuTree()
+ {
+ this.tvAttendMeetingsPerson.Nodes.Clear();
+ var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId);
+ foreach (var item in units)
+ {
+ TreeNode rootNode = new TreeNode
+ {
+ Text = item.UnitName,
+ NodeID = item.UnitId,
+ EnableCheckBox = true,
+ EnableCheckEvent = true,
+ Expanded = true
+ };
+ this.tvAttendMeetingsPerson.Nodes.Add(rootNode);
+ this.BoundTree(rootNode.Nodes, rootNode.NodeID);
+ }
+ }
+
+ ///
+ /// 遍历增加子节点
+ ///
+ ///
+ ///
+ private void BoundTree(TreeNodeCollection nodes, string superMenuId)
+ {
+ var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId);
+ foreach (var item in menus)
+ {
+ TreeNode chidNode = new TreeNode
+ {
+ Text = item.Text,
+ NodeID = item.Value,
+ EnableCheckBox = true,
+ EnableCheckEvent = true
+ };
+ var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim());
+ if (items.Count > 0)
+ {
+ foreach (var i in items)
+ {
+ if (i.UserId == item.Value)
+ {
+ chidNode.Checked = true;
+ chidNode.Expanded = true;
+ chidNode.Selectable = true;
+ var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim());
+ if (meeting != null)
+ {
+ if (meeting.States == "2")
+ {
+ if (i.IsMeeting == true)
+ {
+ chidNode.Text = item.Text + "(可按时参加)";
+ }
+ else if (i.IsMeeting == false)
+ {
+ chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")";
+ }
+ else
+ {
+ chidNode.Text = item.Text + "(暂未反馈)";
+ }
+ }
+ }
+ }
+ }
+ }
+ nodes.Add(chidNode);
+ }
+ }
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx.designer.cs b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx.designer.cs
new file mode 100644
index 00000000..449b882a
--- /dev/null
+++ b/SGGL/FineUIPro.Web/TestRun/Meeting/WeekMeetingView.aspx.designer.cs
@@ -0,0 +1,240 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace FineUIPro.Web.TestRun.Meeting {
+
+
+ public partial class WeekMeetingView {
+
+ ///
+ /// form1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// SimpleForm1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form SimpleForm1;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// hdAttachUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdAttachUrl;
+
+ ///
+ /// hdId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.HiddenField hdId;
+
+ ///
+ /// ContentPanel2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel2;
+
+ ///
+ /// Form2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form2;
+
+ ///
+ /// txtMeetingCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingCode;
+
+ ///
+ /// txtMeetingDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtMeetingDate;
+
+ ///
+ /// txtMeetingAddress 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingAddress;
+
+ ///
+ /// txtMeetingUrl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtMeetingUrl;
+
+ ///
+ /// drpCompileMan 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpCompileMan;
+
+ ///
+ /// txtCompileDate 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtCompileDate;
+
+ ///
+ /// Panel3 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel3;
+
+ ///
+ /// lblAttach 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label lblAttach;
+
+ ///
+ /// btnAttach 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAttach;
+
+ ///
+ /// Panel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel1;
+
+ ///
+ /// Label1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Label Label1;
+
+ ///
+ /// btnSign 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnSign;
+
+ ///
+ /// tvAttendMeetingsPerson 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Tree tvAttendMeetingsPerson;
+
+ ///
+ /// ContentPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ContentPanel ContentPanel1;
+
+ ///
+ /// ctlAuditFlow 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Web.Controls.FlowOperateControl ctlAuditFlow;
+
+ ///
+ /// WindowAtt 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Window WindowAtt;
+ }
+}
diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs
index c1f35bd0..b9a6a7af 100644
--- a/SGGL/Model/Model.cs
+++ b/SGGL/Model/Model.cs
@@ -719,6 +719,9 @@ namespace Model
partial void InsertDriver_Meeting(Driver_Meeting instance);
partial void UpdateDriver_Meeting(Driver_Meeting instance);
partial void DeleteDriver_Meeting(Driver_Meeting instance);
+ partial void InsertDriver_MeetingItem(Driver_MeetingItem instance);
+ partial void UpdateDriver_MeetingItem(Driver_MeetingItem instance);
+ partial void DeleteDriver_MeetingItem(Driver_MeetingItem instance);
partial void InsertDriver_TestRun(Driver_TestRun instance);
partial void UpdateDriver_TestRun(Driver_TestRun instance);
partial void DeleteDriver_TestRun(Driver_TestRun instance);
@@ -4412,6 +4415,14 @@ namespace Model
}
}
+ public System.Data.Linq.Table Driver_MeetingItem
+ {
+ get
+ {
+ return this.GetTable();
+ }
+ }
+
public System.Data.Linq.Table Driver_TestRun
{
get
@@ -121006,10 +121017,20 @@ namespace Model
private string _Remark;
+ private string _MeetingCode;
+
+ private string _States;
+
+ private string _CompileMan;
+
+ private System.Nullable _CompileDate;
+
private EntityRef _Base_Project;
private EntityRef _WBS_UnitWork;
+ private EntitySet _Driver_MeetingItem;
+
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -121038,12 +121059,21 @@ namespace Model
partial void OnMeetingTypeChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
+ partial void OnMeetingCodeChanging(string value);
+ partial void OnMeetingCodeChanged();
+ partial void OnStatesChanging(string value);
+ partial void OnStatesChanged();
+ partial void OnCompileManChanging(string value);
+ partial void OnCompileManChanged();
+ partial void OnCompileDateChanging(System.Nullable value);
+ partial void OnCompileDateChanged();
#endregion
public Driver_Meeting()
{
this._Base_Project = default(EntityRef);
this._WBS_UnitWork = default(EntityRef);
+ this._Driver_MeetingItem = new EntitySet(new Action(this.attach_Driver_MeetingItem), new Action(this.detach_Driver_MeetingItem));
OnCreated();
}
@@ -121295,6 +121325,86 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MeetingCode", DbType="NVarChar(50)")]
+ public string MeetingCode
+ {
+ get
+ {
+ return this._MeetingCode;
+ }
+ set
+ {
+ if ((this._MeetingCode != value))
+ {
+ this.OnMeetingCodeChanging(value);
+ this.SendPropertyChanging();
+ this._MeetingCode = value;
+ this.SendPropertyChanged("MeetingCode");
+ this.OnMeetingCodeChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Char(1)")]
+ public string States
+ {
+ get
+ {
+ return this._States;
+ }
+ set
+ {
+ if ((this._States != value))
+ {
+ this.OnStatesChanging(value);
+ this.SendPropertyChanging();
+ this._States = value;
+ this.SendPropertyChanged("States");
+ this.OnStatesChanged();
+ }
+ }
+ }
+
+ [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();
+ }
+ }
+ }
+
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Driver_Meeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -121363,6 +121473,230 @@ namespace Model
}
}
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Driver_MeetingItem_Driver_Meeting", Storage="_Driver_MeetingItem", ThisKey="MeetingId", OtherKey="MeetingId", DeleteRule="NO ACTION")]
+ public EntitySet Driver_MeetingItem
+ {
+ get
+ {
+ return this._Driver_MeetingItem;
+ }
+ set
+ {
+ this._Driver_MeetingItem.Assign(value);
+ }
+ }
+
+ 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));
+ }
+ }
+
+ private void attach_Driver_MeetingItem(Driver_MeetingItem entity)
+ {
+ this.SendPropertyChanging();
+ entity.Driver_Meeting = this;
+ }
+
+ private void detach_Driver_MeetingItem(Driver_MeetingItem entity)
+ {
+ this.SendPropertyChanging();
+ entity.Driver_Meeting = null;
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Driver_MeetingItem")]
+ public partial class Driver_MeetingItem : INotifyPropertyChanging, INotifyPropertyChanged
+ {
+
+ private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
+
+ private string _MeetingItemId;
+
+ private string _MeetingId;
+
+ private string _UserId;
+
+ private System.Nullable _IsMeeting;
+
+ private string _Feedback;
+
+ private EntityRef _Driver_Meeting;
+
+ #region 可扩展性方法定义
+ partial void OnLoaded();
+ partial void OnValidate(System.Data.Linq.ChangeAction action);
+ partial void OnCreated();
+ partial void OnMeetingItemIdChanging(string value);
+ partial void OnMeetingItemIdChanged();
+ partial void OnMeetingIdChanging(string value);
+ partial void OnMeetingIdChanged();
+ partial void OnUserIdChanging(string value);
+ partial void OnUserIdChanged();
+ partial void OnIsMeetingChanging(System.Nullable value);
+ partial void OnIsMeetingChanged();
+ partial void OnFeedbackChanging(string value);
+ partial void OnFeedbackChanged();
+ #endregion
+
+ public Driver_MeetingItem()
+ {
+ this._Driver_Meeting = default(EntityRef);
+ OnCreated();
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MeetingItemId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
+ public string MeetingItemId
+ {
+ get
+ {
+ return this._MeetingItemId;
+ }
+ set
+ {
+ if ((this._MeetingItemId != value))
+ {
+ this.OnMeetingItemIdChanging(value);
+ this.SendPropertyChanging();
+ this._MeetingItemId = value;
+ this.SendPropertyChanged("MeetingItemId");
+ this.OnMeetingItemIdChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MeetingId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
+ public string MeetingId
+ {
+ get
+ {
+ return this._MeetingId;
+ }
+ set
+ {
+ if ((this._MeetingId != value))
+ {
+ if (this._Driver_Meeting.HasLoadedOrAssignedValue)
+ {
+ throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
+ }
+ this.OnMeetingIdChanging(value);
+ this.SendPropertyChanging();
+ this._MeetingId = value;
+ this.SendPropertyChanged("MeetingId");
+ this.OnMeetingIdChanged();
+ }
+ }
+ }
+
+ [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="_IsMeeting", DbType="Bit")]
+ public System.Nullable IsMeeting
+ {
+ get
+ {
+ return this._IsMeeting;
+ }
+ set
+ {
+ if ((this._IsMeeting != value))
+ {
+ this.OnIsMeetingChanging(value);
+ this.SendPropertyChanging();
+ this._IsMeeting = value;
+ this.SendPropertyChanged("IsMeeting");
+ this.OnIsMeetingChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Feedback", DbType="NVarChar(100)")]
+ public string Feedback
+ {
+ get
+ {
+ return this._Feedback;
+ }
+ set
+ {
+ if ((this._Feedback != value))
+ {
+ this.OnFeedbackChanging(value);
+ this.SendPropertyChanging();
+ this._Feedback = value;
+ this.SendPropertyChanged("Feedback");
+ this.OnFeedbackChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Driver_MeetingItem_Driver_Meeting", Storage="_Driver_Meeting", ThisKey="MeetingId", OtherKey="MeetingId", IsForeignKey=true)]
+ public Driver_Meeting Driver_Meeting
+ {
+ get
+ {
+ return this._Driver_Meeting.Entity;
+ }
+ set
+ {
+ Driver_Meeting previousValue = this._Driver_Meeting.Entity;
+ if (((previousValue != value)
+ || (this._Driver_Meeting.HasLoadedOrAssignedValue == false)))
+ {
+ this.SendPropertyChanging();
+ if ((previousValue != null))
+ {
+ this._Driver_Meeting.Entity = null;
+ previousValue.Driver_MeetingItem.Remove(this);
+ }
+ this._Driver_Meeting.Entity = value;
+ if ((value != null))
+ {
+ value.Driver_MeetingItem.Add(this);
+ this._MeetingId = value.MeetingId;
+ }
+ else
+ {
+ this._MeetingId = default(string);
+ }
+ this.SendPropertyChanged("Driver_Meeting");
+ }
+ }
+ }
+
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;