diff --git a/CreateModel2017.bat b/CreateModel2017.bat index e520557f..b712b108 100644 --- a/CreateModel2017.bat +++ b/CreateModel2017.bat @@ -27,7 +27,7 @@ REM -------------- @echo. @call "%VS150%" -SqlMetal /views /server:. /database:SGGLDB_WH /code:%Model_ROOT%\Model.cs /namespace:Model +SqlMetal /views /server:DESKTOP-1QITK9E\MSSQLSERVER2 /user:sa /password:123 /database:SGGLDB_WH /code:%Model_ROOT%\Model.cs /namespace:Model @ECHO 完成 pause diff --git a/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-11-phf.sql b/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-11-phf.sql new file mode 100644 index 00000000..67407c0d --- /dev/null +++ b/DataBase/鐗堟湰鏃ュ織/SGGLDB_WH_2024-03-11-phf.sql @@ -0,0 +1,66 @@ +--新增施工质量月报(新) +insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +values('4164BF9B-DA7C-4287-AC11-D1EB6A664F57','施工质量月报(新)','CQMS/ManageReportNew/MonthReport.aspx',16,'7ecf0229-8a0b-40ce-8b04-e556f7bd3394','Menu_CQMS',0,1,1) +go +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('D3887FC5-64CE-4622-ABB4-4E5FE7D86814','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','增加',1) +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('0B7B56F9-5FBD-4AE8-8A56-B6B5A7653E5B','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','修改',2) +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('03213986-B14E-4936-98E7-F2EC693B8547','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','删除',3) +insert into Sys_ButtonToMenu(ButtonToMenuId,MenuId,ButtonName,SortIndex) +values('ADB32469-D940-4FE2-8D11-BE9C046CCE54','4164BF9B-DA7C-4287-AC11-D1EB6A664F57','保存',4) +go + + +CREATE TABLE [dbo].[Report_WeekAndMonthReport_New]( + [Id] [nvarchar](50) NOT NULL, + [ProjectId] [nvarchar](50) NULL, + [StartDate] [datetime] NULL, + [EndDate] [datetime] NULL, + [SortId] [nvarchar](50) NULL, + [CreateDate] [datetime] NULL, + [CreateMan] [nvarchar](50) NULL, + CONSTRAINT [PK_Report_WeekAndMonthReport_New] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] + +GO + +CREATE TABLE [dbo].[Report_TextBoxContent]( + [Id] [nvarchar](50) NOT NULL, + [ReportId] [nvarchar](50) NULL, + [ContentType] [nvarchar](20) NULL, + [ContentText] [nvarchar](1000) NULL, + CONSTRAINT [PK_Report_TextBoxContent] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] + +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'类型' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_TextBoxContent', @level2type=N'COLUMN',@level2name=N'ContentType' +GO + + + +CREATE TABLE [dbo].[Report_CqmsTarget]( + [Id] [nvarchar](50) NOT NULL, + [ReportId] [nvarchar](50) NULL, + [ProStage] [nvarchar](50) NULL, + [ProDescribe] [nvarchar](200) NULL, + [TargetValue] [nvarchar](50) NULL, + [MonthPer] [nvarchar](50) NULL, + [Remarks] [nvarchar](200) NULL, + [SortId] [int] NULL, + CONSTRAINT [PK_Report_CqmsTarget] PRIMARY KEY CLUSTERED +( + [Id] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] + +GO + diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index bb6f2e34..19f431f1 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -44,9 +44,6 @@ latest - - ..\..\..\SGGL_CWCEC\SGGL\BLL\bin\Debug\Apache.NMS.ActiveMQ.dll - ..\FineUIPro\Reference BLL\Aspose.Words.dll @@ -260,6 +257,9 @@ + + + @@ -1031,6 +1031,9 @@ + + 1.8.0 + 1.0.0 diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/CqmsTargetService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/CqmsTargetService.cs new file mode 100644 index 00000000..b25a4993 --- /dev/null +++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/CqmsTargetService.cs @@ -0,0 +1,95 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + public class CqmsTargetService + { + public static bool Insert(Model.Report_CqmsTarget model) + { + try + { + Funs.DB.Report_CqmsTarget.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鎻掑叆鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Update(Model.Report_CqmsTarget model) + { + try + { + var result = Funs.DB.Report_CqmsTarget.FirstOrDefault(a => a.Id == model.Id); + if (result != null) + { + result.ProStage = model.ProStage; + result.ProDescribe = model.ProDescribe; + result.TargetValue = model.TargetValue; + result.MonthPer = model.MonthPer; + result.Remarks = model.Remarks; + result.SortId = model.SortId; + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鏇存柊琛ㄦ暟鎹け璐,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(List newId) + { + try + { + var result = Funs.DB.Report_CqmsTarget.Where(a => newId.Contains(a.Id)).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_CqmsTarget.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(string newId) + { + try + { + var result = Funs.DB.Report_CqmsTarget.Where(a => a.ReportId == newId).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_CqmsTarget.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static Model.Report_CqmsTarget Detail(string newId) + { + var result = Funs.DB.Report_CqmsTarget.FirstOrDefault(a => a.Id == newId); + return result; + } + } +} diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/TextBoxContentService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/TextBoxContentService.cs new file mode 100644 index 00000000..c18ba76a --- /dev/null +++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/TextBoxContentService.cs @@ -0,0 +1,93 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + /// + /// 璐ㄩ噺鏈堟姤-鏂囨湰妗 鍐呭鎺ュ彛 + /// + public class TextBoxContentService + { + public static bool Insert(Model.Report_TextBoxContent model) + { + try + { + Funs.DB.Report_TextBoxContent.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鎻掑叆鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Update(Model.Report_TextBoxContent model) + { + try + { + var result = Funs.DB.Report_TextBoxContent.FirstOrDefault(a => a.Id == model.Id); + if (result != null) + { + result.ContentText = model.ContentText; + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鏇存柊琛ㄦ暟鎹け璐,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(List newId) + { + try + { + var result = Funs.DB.Report_TextBoxContent.Where(a => newId.Contains(a.Id)).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_TextBoxContent.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(string newId) + { + try + { + var result = Funs.DB.Report_TextBoxContent.Where(a => a.ReportId==newId).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_TextBoxContent.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static Model.Report_TextBoxContent Detail(string newId) + { + var result = Funs.DB.Report_TextBoxContent.FirstOrDefault(a => a.Id == newId); + return result; + } + } +} diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/WeekAndMonthReportNewService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/WeekAndMonthReportNewService.cs new file mode 100644 index 00000000..6dbfc0b2 --- /dev/null +++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/WeekAndMonthReportNewService.cs @@ -0,0 +1,95 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BLL +{ + /// + /// 鏈鏂拌川閲忔湀鎶ユ帴鍙 + /// + public class WeekAndMonthReportNewService + { + public static bool Insert(Model.Report_WeekAndMonthReport_New model) + { + try + { + Funs.DB.Report_WeekAndMonthReport_New.InsertOnSubmit(model); + Funs.DB.SubmitChanges(); + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鎻掑叆鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Update(Model.Report_WeekAndMonthReport_New model) + { + try + { + var result = Funs.DB.Report_WeekAndMonthReport_New.FirstOrDefault(a => a.Id == model.Id); + if (result != null) + { + result.StartDate = model.StartDate; + result.EndDate = model.EndDate; + result.SortId = model.SortId; + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鏇存柊琛ㄦ暟鎹け璐,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(List newId) + { + try + { + var result = Funs.DB.Report_WeekAndMonthReport_New.Where(a => newId.Contains(a.Id)).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_WeekAndMonthReport_New.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static bool Delete(string newId) + { + try + { + var result = Funs.DB.Report_WeekAndMonthReport_New.Where(a => a.Id== newId).ToList(); + if (result.Count > 0) + { + Funs.DB.Report_WeekAndMonthReport_New.DeleteAllOnSubmit(result); + Funs.DB.SubmitChanges(); + } + return true; + } + catch (Exception ex) + { + ErrLogInfo.WriteLog($"鍒犻櫎鏁版嵁澶辫触,鍘熷洜锛歿ex.Message}"); + return false; + } + } + + public static Model.Report_WeekAndMonthReport_New Detail(string newId) + { + var result = Funs.DB.Report_WeekAndMonthReport_New.FirstOrDefault(a => a.Id == newId); + return result; + } + } +} diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs index 169e91ed..25c7f405 100644 --- a/SGGL/BLL/Common/Const.cs +++ b/SGGL/BLL/Common/Const.cs @@ -3520,6 +3520,11 @@ namespace BLL /// public const string DivisionId15 = "BD0C9DC9-C621-497E-B947-A85F46D86AA4"; + /// + /// 璐ㄩ噺鍛ㄦ姤(鏂) + /// + public const string CQWeekReportNewMenuId = "4164BF9B-DA7C-4287-AC11-D1EB6A664F57"; + #region 璐ㄩ噺绠$悊 #region 鍩虹璁剧疆 /// diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx new file mode 100644 index 00000000..aa9993bd --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx @@ -0,0 +1,80 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReport.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReport" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs new file mode 100644 index 00000000..20d19bfd --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs @@ -0,0 +1,135 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReport : PageBase + { + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + BindGrid(); + GetButtonPower(); + } + } + + public void BindGrid() + { + string strSql = @"select Id, Sortid, StartDate, EndDate, ProjectId + from Report_WeekAndMonthReport_New C + where C.ProjectId = @ProjectId"; + List listStr = new List(); + listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); + SqlParameter[] parameter = listStr.ToArray(); + DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); + Grid1.RecordCount = tb.Rows.Count; + tb = GetFilteredTable(Grid1.FilteredData, tb); + var table = this.GetPagedDataTable(Grid1, tb); + Grid1.DataSource = table; + Grid1.DataBind(); + } + + /// + /// 鍒嗛〉 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 鏍煎紡鍖栧瓧绗︿覆 + /// + /// + /// + protected static string ConvertDate(object reportId) + { + string date = string.Empty; + if (reportId != null) + { + var r = BLL.WeekAndMonthReportNewService.Detail(reportId.ToString()); + if (r != null) + { + date = string.Format("{0:yyyy-MM-dd}", r.StartDate) + " 鑷 " + string.Format("{0:yyyy-MM-dd}", r.EndDate); + } + } + return date; + } + + protected void btnNew_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("MonthReportEdit.aspx", "娣诲姞 - "))); + } + + protected void btnMenuModify_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("MonthReportEdit.aspx?reportId=" + Grid1.SelectedRowID, "娣诲姞 - "))); + } + + protected void btnMenuView_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("MonthReportEdit.aspx?view=view&reportId=" + Grid1.SelectedRowID, "鏌ョ湅 - "))); + } + + protected void btnMenuDel_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(rowID); + + TextBoxContentService.Delete(rowID); + + + WeekAndMonthReportNewService.Delete(rowID); + } + BindGrid(); + ShowNotify("鍒犻櫎鏁版嵁鎴愬姛!", MessageBoxIcon.Success); + } + } + + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #region 鑾峰彇鎸夐挳鏉冮檺 + /// + /// 鑾峰彇鎸夐挳鏉冮檺 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == BLL.Const._Null) + { + return; + } + var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.CQWeekReportNewMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(BLL.Const.BtnModify)) + { + this.btnMenuModify.Hidden = false; + } + if (buttonList.Contains(BLL.Const.BtnDelete)) + { + this.btnMenuDel.Hidden = false; + } + } + } + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.designer.cs new file mode 100644 index 00000000..ada726a8 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.designer.cs @@ -0,0 +1,134 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReport + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// btnNew 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// lblPageIndex 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + + /// + /// Label41 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label41; + + /// + /// Window1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Menu1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Menu Menu1; + + /// + /// btnMenuModify 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuModify; + + /// + /// btnMenuView 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuView; + + /// + /// btnMenuDel 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.MenuButton btnMenuDel; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx new file mode 100644 index 00000000..2e9a68c0 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx @@ -0,0 +1,386 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReportEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit" %> + + + + + + + 缂栬緫鏂藉伐璐ㄩ噺鍛ㄦ姤(鏂) + + + + + + + + +
+ + + + + + + + + + + + + + + + + <%-- + + --%> + + + +
+ + + + + +
+ +  缂栬緫鏂藉伐璐ㄩ噺鏈堟姤 + + <%-- --%> + + + + +
+
+ + + + + + + + + +
+ + + + + + + * + +
+
+
+ +
+
+ + + + + +
鏃堕棿娈  + + + 鈥 + +
+
+ + + + + + + +
+ +  20锛夐」鐩川閲忎綋绯诲鏍 +
+ + + + +
+ +
+
+
+ <%--1.鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌--%> + + + + + + + + + + + + + + + + + + + + + + + <%--2.鏈湀涓昏宸ヤ綔鍐呭--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%--20.椤圭洰璐ㄩ噺浣撶郴瀹℃牳--%> + + + + + + + + + + + + + + + + <%--21.绫讳技椤圭洰绠$悊缁忛獙鏁欒搴斿鎺柦鍙婅窡韪--%> + + + + + + + + + + + + + + + + <%--22.闄勪欢--%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs new file mode 100644 index 00000000..dea66671 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs @@ -0,0 +1,344 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Newtonsoft.Json.Linq; +using AspNet = System.Web.UI.WebControls; +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReportEdit : PageBase + { + #region 瀹氫箟椤 + /// + /// 涓婚敭 + /// + public string ReportId + { + get + { + return (string)ViewState["ReportId"]; + } + set + { + ViewState["ReportId"] = value; + } + } + + public string AddOrUpdate + { + get + { + return (string)ViewState["AddOrUpdate"]; + } + set + { + ViewState["AddOrUpdate"] = value; + } + } + #endregion + + #region 鍒楄〃闆嗗悎 + private static List detailsGrid1 = new List(); + #endregion + #region 鍔犺浇椤甸潰 + /// + /// 鍔犺浇椤甸潰 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.EnableViewState = true; + this.lblProjectName.Text = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId).ProjectName; + this.ReportId = Request.Params["reportId"]; + if (!string.IsNullOrEmpty(Request.Params["view"])) + { + this.Button1.Visible = false; + this.Button2.Visible = false; + } + + if (!string.IsNullOrEmpty(this.ReportId)) + { + Model.Report_WeekAndMonthReport_New weekAndMonthReport = WeekAndMonthReportNewService.Detail(this.ReportId); + if (weekAndMonthReport != null) + { + if (weekAndMonthReport.SortId != null) + { + this.txtPeriod.Text = Convert.ToString(weekAndMonthReport.SortId); + } + if (weekAndMonthReport.StartDate != null) + { + this.txtStartDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.StartDate); + } + if (weekAndMonthReport.EndDate != null) + { + this.txtEndDate.Text = string.Format("{0:yyyy-MM-dd}", weekAndMonthReport.EndDate); + } + } + AddOrUpdate = "update"; + + #region 鍔犺浇鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + detailsGrid1.Clear(); + detailsGrid1 = (from x in Funs.DB.Report_CqmsTarget + where x.ReportId == this.ReportId + orderby x.SortId + select x).ToList(); + if (detailsGrid1.Count>0) + { + Grid1.Hidden = false; + Grid1.DataSource = detailsGrid1; + Grid1.DataBind(); + } + + #endregion + + #region 鍔犺浇鏂囨湰妗嗗唴瀹 + var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList(); + txtAre0.Text = txtReportList.FirstOrDefault(x => x.ContentType == "0").ContentText; + txtAre1.Text = txtReportList.FirstOrDefault(x => x.ContentType == "1").ContentText; + txtAre2.Text = txtReportList.FirstOrDefault(x => x.ContentType == "2").ContentText; + + txtAre20.Text = txtReportList.FirstOrDefault(x => x.ContentType == "20").ContentText; + txtAre21.Text = txtReportList.FirstOrDefault(x => x.ContentType == "21").ContentText; + txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText; + #endregion + + + } + else + { + this.txtStartDate.Text = string.IsNullOrEmpty(Request.Params["startdate"]) ? string.Format("{0:yyyy-MM-dd}", DateTime.Now) : Request.Params["startdate"]; + this.txtEndDate.Text = string.IsNullOrEmpty(Request.Params["enddate"]) ? string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(this.txtStartDate.Text).AddMonths(1).AddDays(-1)) : Request.Params["enddate"]; + //缁欎釜鏂扮殑涓婚敭 + ReportId = Guid.NewGuid().ToString(); + AddOrUpdate = "add"; + } + hidReportId.Value = ReportId; + } + } + #endregion + + #region 鏃堕棿閫夋嫨浜嬩欢 + /// + /// 寮濮嬫椂闂撮夋嫨浜嬩欢 + /// + /// + /// + protected void txtStartDate_TextChanged(object sender, EventArgs e) + { + if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim())) + { + string url = Request.Url.ToString(); + if (url.Contains("?")) + { + url = Request.Url.ToString().Substring(0, Request.Url.ToString().LastIndexOf('?')); + } + Response.Redirect(url + "?startdate=" + txtStartDate.Text + "&enddate=" + txtEndDate.Text); + } + } + #endregion + + #region 鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 Grid1鏂规硶 + protected void btnAddGrid1_Click(object sender, EventArgs e) { + Grid1.Hidden = false; + + JArray teamGroupData = Grid1.GetMergedData(); + List list = new List(); + foreach (JObject teamGroupRow in teamGroupData) + { + JObject values = teamGroupRow.Value("values"); + values.Add("Id", teamGroupRow.Value("id")); + list.Add(values); + } + JObject defaultObj = new JObject + { { "Id",Guid.NewGuid() }, + { "ReportId", ReportId }, + { "ProStage", "" }, + { "ProDescribe",""}, + { "TargetValue", "" }, + { "MonthPer","" }, + { "Remarks", "" }, + { "SortId","" }, + { "Delete1", String.Format("", GetDeleteScriptGrid1(), IconHelper.GetResolvedIconUrl(Icon.Delete)) } + }; + list.Add(defaultObj); + Grid1.DataSource = list; + Grid1.DataBind(); + } + + protected void Grid1_PreDataBound(object sender, EventArgs e) + { + // 璁剧疆LinkButtonField鐨勭偣鍑诲鎴风浜嬩欢 + LinkButtonField deleteField = Grid1.FindColumn("Delete1") as LinkButtonField; + deleteField.OnClientClick = GetDeleteScriptGrid1(); + } + /// + /// 鍒犻櫎鎻愮ず + /// + /// + private string GetDeleteScriptGrid1() + { + return Confirm.GetShowReference("鍒犻櫎閫変腑琛岋紵", String.Empty, MessageBoxIcon.Question, Grid1.GetDeleteSelectedRowsReference(), String.Empty); + } + #endregion + + #region 淇濆瓨 + /// + /// 淇濆瓨鎸夐挳 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + Model.Report_WeekAndMonthReport_New report = new Model.Report_WeekAndMonthReport_New(); + report.Id = ReportId; + report.ProjectId = this.CurrUser.LoginProjectId; + if (!string.IsNullOrEmpty(this.txtPeriod.Text.Trim())) + { + try + { + report.SortId = this.txtPeriod.Text.Trim(); + } + catch (Exception) + { + ScriptManager.RegisterStartupScript(this, typeof(string), "_alert", "alert('鍛ㄦ湡杈撳叆鏍煎紡涓嶆纭紝璇烽噸鏂拌緭鍏ワ紒')", true); + return; + } + } + if (!string.IsNullOrEmpty(this.txtStartDate.Text)) + { + report.StartDate = Convert.ToDateTime(this.txtStartDate.Text); + } + if (!string.IsNullOrEmpty(this.txtEndDate.Text)) + { + report.EndDate = Convert.ToDateTime(this.txtEndDate.Text); + } + report.CreateDate = DateTime.Now; + report.CreateMan = CurrUser.UserId; + + #region 鍒犻櫎鎵鏈夊瓙琛 + //鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + CqmsTargetService.Delete(ReportId); + + //鎵鏈夋枃鏈琛 + TextBoxContentService.Delete(ReportId); + #endregion + + #region 淇濆瓨鎵鏈夊瓙琛 + //淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + saveTarget(); + + //淇濆瓨鏂囨湰妗 + saveTxtContent(); + #endregion + + if (AddOrUpdate == "add") + { + WeekAndMonthReportNewService.Insert(report); + } + else + { + WeekAndMonthReportNewService.Update(report); + } + + ShowNotify("缂栬緫鎴愬姛锛", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + + #region 淇濆瓨鏈湀璐ㄩ噺鐩爣绠$悊鎯呭喌 + void saveTarget() { + List detailLists = new List(); + JArray teamGroupData = Grid1.GetMergedData(); + foreach (JObject teamGroupRow in teamGroupData) { + JObject values = teamGroupRow.Value("values"); + int rowIndex = teamGroupRow.Value("index"); + Model.Report_CqmsTarget newDetail = new Model.Report_CqmsTarget + { + //Id = values.Value("Id"), + ReportId = ReportId, + ProStage = values.Value("ProStage"), + ProDescribe = values.Value("ProDescribe"), + TargetValue = values.Value("TargetValue"), + MonthPer = values.Value("MonthPer"), + Remarks = values.Value("Remarks"), + SortId = rowIndex + 1 + }; + if (Grid1.Rows[rowIndex].DataKeys.Length > 0) + { + newDetail.Id = Grid1.Rows[rowIndex].DataKeys[0].ToString(); + } + detailLists.Add(newDetail); + } + if (detailLists.Count>0) + { + Funs.DB.Report_CqmsTarget.InsertAllOnSubmit(detailLists); + Funs.DB.SubmitChanges(); + } + + } + #endregion + + /// + /// 淇濆瓨鏂囨湰妗嗗唴瀹 + /// + void saveTxtContent() { + var txtContentList = new List(); + #region 缁欏疄浣撹祴鍊 + var model0 = new Model.Report_TextBoxContent(); + model0.Id = Guid.NewGuid().ToString(); + model0.ReportId = ReportId; + model0.ContentType = "0"; + model0.ContentText = txtAre0.Text; + txtContentList.Add(model0); + + var model1 = new Model.Report_TextBoxContent(); + model1.Id = Guid.NewGuid().ToString(); + model1.ReportId = ReportId; + model1.ContentType = "1"; + model1.ContentText = txtAre1.Text; + txtContentList.Add(model1); + + var model2 = new Model.Report_TextBoxContent(); + model2.Id = Guid.NewGuid().ToString(); + model2.ReportId = ReportId; + model2.ContentType = "2"; + model2.ContentText = txtAre2.Text; + txtContentList.Add(model2); + + var model20 = new Model.Report_TextBoxContent(); + model20.Id = Guid.NewGuid().ToString(); + model20.ReportId = ReportId; + model20.ContentType = "20"; + model20.ContentText = txtAre20.Text; + txtContentList.Add(model20); + + var model21 = new Model.Report_TextBoxContent(); + model21.Id = Guid.NewGuid().ToString(); + model21.ReportId = ReportId; + model21.ContentType = "21"; + model21.ContentText = txtAre21.Text; + txtContentList.Add(model21); + + var model22 = new Model.Report_TextBoxContent(); + model22.Id = Guid.NewGuid().ToString(); + model22.ReportId = ReportId; + model22.ContentType = "22"; + model22.ContentText = txtAre22.Text; + txtContentList.Add(model22); + #endregion + Funs.DB.Report_TextBoxContent.InsertAllOnSubmit(txtContentList); + Funs.DB.SubmitChanges(); + } + + #endregion + + + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs new file mode 100644 index 00000000..290b4f10 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs @@ -0,0 +1,530 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReportEdit + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// ContentPanel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ContentPanel ContentPanel1; + + /// + /// Table1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table1; + + /// + /// tabbtn 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn; + + /// + /// image15 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Image image15; + + /// + /// Button2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button2; + + /// + /// Table5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table5; + + /// + /// lblProjectName 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblProjectName; + + /// + /// Label1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// txtPeriod 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtPeriod; + + /// + /// RequiredFieldValidator1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1; + + /// + /// Label2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label Label2; + + /// + /// lblTital 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.Label lblTital; + + /// + /// Table2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table2; + + /// + /// txtStartDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtStartDate; + + /// + /// txtEndDate 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.TextBox txtEndDate; + + /// + /// Panel4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel4; + + /// + /// Toolbar2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// Button3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button3; + + /// + /// Form5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form5; + + /// + /// Grid1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// txtProStage 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProStage; + + /// + /// txtProDescribe 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtProDescribe; + + /// + /// txtTargetValue 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtTargetValue; + + /// + /// txtMonthPer 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtMonthPer; + + /// + /// txtRemarks 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextBox txtRemarks; + + /// + /// Panel5 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel5; + + /// + /// Panel6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel6; + + /// + /// Form6 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form6; + + /// + /// txtAre0 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre0; + + /// + /// Panel7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel7; + + /// + /// Form7 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form7; + + /// + /// txtAre1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre1; + + /// + /// Panel8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel8; + + /// + /// Form8 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form8; + + /// + /// txtAre2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre2; + + /// + /// Panel9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel9; + + /// + /// Panel10 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel10; + + /// + /// Form9 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form9; + + /// + /// Panel3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel3; + + /// + /// Form3 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form3; + + /// + /// txtAre20 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre20; + + /// + /// Panel1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Form2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form2; + + /// + /// txtAre21 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre21; + + /// + /// Panel2 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Panel Panel2; + + /// + /// Form4 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Form Form4; + + /// + /// txtAre22 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.TextArea txtAre22; + + /// + /// Toolbar1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// hdCheckControlCode 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdCheckControlCode; + + /// + /// ToolbarFill1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.ToolbarFill ToolbarFill1; + + /// + /// Button1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.Button Button1; + + /// + /// hdId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdId; + + /// + /// hdAttachUrl 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.HiddenField hdAttachUrl; + + /// + /// ValidationSummary1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1; + + /// + /// hidReportId 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlInputHidden hidReportId; + } +} diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx new file mode 100644 index 00000000..bd551e81 --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx @@ -0,0 +1,17 @@ +锘<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MonthReportNewEdit.aspx.cs" Inherits="FineUIPro.Web.CQMS.ManageReportNew.MonthReportNewEdit" %> + + + + + + + + + +
+ + + + + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs new file mode 100644 index 00000000..2fe57dda --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs @@ -0,0 +1,17 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + public partial class MonthReportNewEdit : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs new file mode 100644 index 00000000..769a7a4e --- /dev/null +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs @@ -0,0 +1,35 @@ +锘//------------------------------------------------------------------------------ +// <鑷姩鐢熸垚> +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.CQMS.ManageReportNew +{ + + + public partial class MonthReportNewEdit + { + + /// + /// form1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 鎺т欢銆 + /// + /// + /// 鑷姩鐢熸垚鐨勫瓧娈点 + /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲 + /// + protected global::FineUIPro.PageManager PageManager1; + } +} diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index 136ab77c..ad86a6bf 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -3,10 +3,1477 @@ 閿欒绫诲瀷:NullReferenceException 閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 閿欒鍫嗘爤: - 鍦 (Object ) - 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() - 鍦 (GridRow ) - 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 FineUIPro.Window.OnClose(WindowCloseEventArgs e) + 鍦 (Window , WindowCloseEventArgs ) + 鍦 FineUIPro.Window.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/06/2024 15:22:37 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/06/2024 15:22:37 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate) + 鍦 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:琛屽彿 157 + 鍦 FineUIPro.Window.OnClose(WindowCloseEventArgs e) + 鍦 (Window , WindowCloseEventArgs ) + 鍦 FineUIPro.Window.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/06/2024 15:24:56 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/06/2024 15:24:57 + +<<<<<<< HEAD + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeView.aspx(199): error CS1061: 鈥淎SP.testrun_driverschemeview_aspx鈥濅笉鍖呭惈鈥渢rOne_NodeCheck鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.testrun_driverschemeview_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渢rOne_NodeCheck鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:02/28/2024 16:18:39 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/DriverSchemeView.aspx?constructSolutionId=0d62a778-7fbc-4fec-ba0f-ff10dab34db2 +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:02/28/2024 16:18:39 + +>>>>>>> d28f7920d8c82ae74b3b4579a35df26704bc6372 + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 +鍑洪敊鏃堕棿:03/05/2024 12:16:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 +鍑洪敊鏃堕棿:03/05/2024 14:16:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍒楀悕 'CompileManDate' 鏃犳晥銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.BindGrid() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:琛屽彿 55 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/06/2024 10:41:09 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeeting.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/06/2024 10:41:09 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 +鍑洪敊鏃堕棿:03/06/2024 12:42:19 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 17:17:40 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 +鍑洪敊鏃堕棿:03/06/2024 17:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 19:17:39 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 19:17:40 +鍑洪敊鏃堕棿:03/06/2024 19:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/06/2024 21:17:40 +鍑洪敊鏃堕棿:03/06/2024 21:17:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/06/2024 21:17:40 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 +鍑洪敊鏃堕棿:03/06/2024 21:17:41 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:26:42 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:26:42 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:26:42 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:26:42 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:27:16 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:27:16 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:08 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:09 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:09 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:10 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:10 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:10 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:10 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 239 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 222 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:30:12 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:30:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 260 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 243 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:46:01 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:46:01 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 260 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 243 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:46:02 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:46:02 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 260 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 243 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 09:46:06 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 09:46:06 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:27 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:27 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:28 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:28 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:01:32 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:01:32 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:04:30 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:04:30 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:04:30 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:04:30 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 273 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 256 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:04:31 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252 +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:04:31 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 274 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 257 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:07:25 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:07:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 274 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 257 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 10:07:26 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/07/2024 10:07:26 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingView.aspx(80): error CS1061: 鈥淎SP.testrun_meeting_schedulemeetingview_aspx鈥濅笉鍖呭惈鈥渢vAttendMeetingsPerson_NodeCheck鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.testrun_meeting_schedulemeetingview_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渢vAttendMeetingsPerson_NodeCheck鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/07/2024 10:11:48 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingView.aspx?id=ec5242d2-de49-4c14-bff2-2957f1f8a04f +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/07/2024 10:11:48 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 +鍑洪敊鏃堕棿:03/07/2024 12:33:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 +鍑洪敊鏃堕棿:03/07/2024 14:33:11 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:02 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:02 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:03 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:04 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:04 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:03:05 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:03:05 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:FormatException +閿欒淇℃伅:璇ュ瓧绗︿覆鏈璇嗗埆涓烘湁鏁堢殑甯冨皵鍊笺 +閿欒鍫嗘爤: + 鍦 System.Boolean.Parse(String value) + 鍦 System.Convert.ToBoolean(String value) + 鍦 FineUIPro.Web.TestRun.Meeting.Feedback.btnSave_Click(Object sender, EventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\Feedback.aspx.cs:琛屽彿 62 + 鍦 FineUIPro.Button.OnClick(EventArgs e) + 鍦 (Button , EventArgs ) + 鍦 FineUIPro.Button.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 15:30:12 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/Feedback.aspx?id=ec5242d2-de49-4c14-bff2-2957f1f8a04f +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:30:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentNullException +閿欒淇℃伅:鍊间笉鑳戒负 null銆 +鍙傛暟鍚: expression +閿欒鍫嗘爤: + 鍦 System.Web.UI.DataBinder.Eval(Object container, String expression) + 鍦 System.Web.UI.TemplateControl.Eval(String expression) + 鍦 ASP.testrun_meeting_schedulemeeting_aspx.__DataBindinglblUserId(Object sender, EventArgs e) 浣嶇疆 e:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx:琛屽彿 57 + 鍦 System.Web.UI.Control.OnDataBinding(EventArgs e) + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 System.Web.UI.Control.DataBindChildren() + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 (Control ) + 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN() 鍦 (GridRow ) 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object ) 鍦 (Grid , Int32 , Object ) @@ -15,19 +1482,511 @@ 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData) 鍦 (Grid , Boolean ) 鍦 FineUIPro.Grid.DataBind() - 鍦 FineUIPro.Web.Personal.TestRunPerformance.BindGrid() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Personal\TestRunPerformance.aspx.cs:琛屽彿 61 - 鍦 FineUIPro.Web.Personal.TestRunPerformance.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Personal\TestRunPerformance.aspx.cs:琛屽彿 28 + 鍦 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/13/2024 11:05:47 -鍑洪敊鏂囦欢:http://localhost:8579/Personal/TestRunPerformance.aspx +鍑洪敊鏃堕棿:03/07/2024 15:45:20 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/ScheduleMeeting.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 15:45:20 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 16:45:48 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 16:45:48 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 286 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 269 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/07/2024 16:45:49 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:鏉ㄩ挦 + +鍑洪敊鏃堕棿:03/07/2024 16:45:49 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 +鍑洪敊鏃堕棿:03/07/2024 18:45:24 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 +鍑洪敊鏃堕棿:03/07/2024 18:45:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 +鍑洪敊鏃堕棿:03/07/2024 20:45:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 20:45:22 +鍑洪敊鏃堕棿:03/07/2024 20:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 +鍑洪敊鏃堕棿:03/07/2024 22:45:21 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 +鍑洪敊鏃堕棿:03/07/2024 22:45:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 285 + 鍦 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:琛屽彿 268 + 鍦 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e) + 鍦 (Tree , TreeCheckEventArgs ) + 鍦 FineUIPro.Tree.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/08/2024 14:12:38 +鍑洪敊鏂囦欢:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx IP鍦板潃:::1 鎿嶄綔浜哄憳:JT -鍑洪敊鏃堕棿:03/13/2024 11:05:47 +鍑洪敊鏃堕棿: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 閿欒淇℃伅寮濮=====> @@ -50,10 +2009,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 - 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -76,10 +2035,10 @@ IP鍦板潃:::1 鍦 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:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -102,10 +2061,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -128,10 +2087,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 - 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 -鍑洪敊鏃堕棿:03/13/2024 12:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -154,10 +2113,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 - 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -180,10 +2139,10 @@ IP鍦板潃:::1 鍦 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:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -206,10 +2165,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -232,10 +2191,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 - 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 -鍑洪敊鏃堕棿:03/13/2024 14:26:34 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -258,10 +2217,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 - 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -284,10 +2243,10 @@ IP鍦板潃:::1 鍦 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:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -310,10 +2269,10 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 + 鍦 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 閿欒淇℃伅寮濮=====> @@ -336,136 +2295,717 @@ IP鍦板潃:::1 鍦 System.ServiceModel.ClientBase`1.CreateChannel() 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 - 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 -鍑洪敊鏃堕棿:03/14/2024 12:31:49 + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\浜旂幆\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 +鍑洪敊鏃堕棿:03/08/2024 21:03:12 +======= +>>>>>>> 7772c5b6828d71f0eaf77c1945ac9ec596c86a91 閿欒淇℃伅寮濮=====> -閿欒绫诲瀷:ArgumentException -閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 -鍙傛暟鍚: via -閿欒鍫嗘爤: - 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14204 - 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2181 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 - - -閿欒淇℃伅寮濮=====> -閿欒绫诲瀷:ArgumentException -閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 -鍙傛暟鍚: via -閿欒鍫嗘爤: - 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14228 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2046 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 - - -閿欒淇℃伅寮濮=====> -閿欒绫诲瀷:ArgumentException -閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 -鍙傛暟鍚: via -閿欒鍫嗘爤: - 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14220 - 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1942 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 - - -閿欒淇℃伅寮濮=====> -閿欒绫诲瀷:ArgumentException -閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 -鍙傛暟鍚: via -閿欒鍫嗘爤: - 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) - 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannel() - 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() - 鍦 System.ServiceModel.ClientBase`1.get_Channel() - 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 14020 - 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1884 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 -鍑洪敊鏃堕棿:03/14/2024 14:31:48 - - -閿欒淇℃伅寮濮=====> -閿欒绫诲瀷:InvalidOperationException -閿欒淇℃伅:涓嶈兘灏 Null 鍊艰祴缁欑被鍨嬩负 System.Int32 (涓嶅彲涓 null 鐨勫肩被鍨)鐨勬垚鍛樸 +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) 鍦 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression) - 鍦 System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector) - 鍦 FineUIPro.Web.ZHGL.TestRunPerformance.TestRunPerformanceMonthReportEdit.BindGrid() 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\ZHGL\TestRunPerformance\TestRunPerformanceMonthReportEdit.aspx.cs:琛屽彿 136 - 鍦 FineUIPro.Web.ZHGL.TestRunPerformance.TestRunPerformanceMonthReportEdit.drpUser_SelectedIndexChanged(Object sender, EventArgs e) 浣嶇疆 E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\ZHGL\TestRunPerformance\TestRunPerformanceMonthReportEdit.aspx.cs:琛屽彿 342 - 鍦 FineUIPro.RealTextField.OnTextChanged(EventArgs e) - 鍦 (RealTextField , EventArgs ) - 鍦 FineUIPro.RealTextField.RaisePostDataChangedEvent() - 鍦 System.Web.UI.Page.RaiseChangedEvents() + 鍦 System.Linq.Queryable.Count[TSource](IQueryable`1 source) + 鍦 FineUIPro.Web.common.main_new.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\main_new.aspx.cs:琛屽彿 103 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) -鍑洪敊鏃堕棿:03/15/2024 09:31:11 -鍑洪敊鏂囦欢:http://localhost:8579/ZHGL/TestRunPerformance/TestRunPerformanceMonthReportEdit.aspx +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 13:57:14 +鍑洪敊鏂囦欢:http://localhost:8579/common/main_new.aspx IP鍦板潃:::1 鎿嶄綔浜哄憳:JT -鍑洪敊鏃堕棿:03/15/2024 09:31:11 +鍑洪敊鏃堕棿:03/11/2024 13:57:22 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression) + 鍦 System.Linq.Queryable.Count[TSource](IQueryable`1 source) + 鍦 FineUIPro.Web.common.mainProject2.GetGeneralClosedNum() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 194 + 鍦 FineUIPro.Web.common.mainProject2.getZgsj() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 182 + 鍦 FineUIPro.Web.common.mainProject2.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:琛屽彿 92 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 14:13:02 +鍑洪敊鏂囦欢:http://localhost:8579/common/mainProject2.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 14:13:02 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Collections.Generic.IEnumerable.GetEnumerator() + 鍦 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + 鍦 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + 鍦 BLL.InspectionManagementService.getInspectionManagementDetailListByCNProfessionalIdAndDate(String projectId, String cNProfessionalId, DateTime startDate, DateTime SoptDate, Boolean isOnceQualified) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\CQMS\ProcessControl\InspectionManagementService.cs:琛屽彿 332 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.CheckLotBindStatisc(String cNProfessionalCode) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 524 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 111 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 14:17:25 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReportEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 14:17:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鎵ц瓒呮椂宸茶繃鏈熴傚畬鎴愭搷浣滀箣鍓嶅凡瓒呮椂鎴栨湇鍔″櫒鏈搷搴斻 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.ExecuteReader() + 鍦 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) + 鍦 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) + 鍦 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) + 鍦 System.Data.Linq.DataQuery`1.System.Collections.Generic.IEnumerable.GetEnumerator() + 鍦 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + 鍦 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + 鍦 BLL.InspectionManagementService.getInspectionManagementDetailListByCNProfessionalIdAndDate(String projectId, String cNProfessionalId, DateTime startDate, DateTime SoptDate, Boolean isOnceQualified) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\CQMS\ProcessControl\InspectionManagementService.cs:琛屽彿 332 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.CheckLotBindStatisc(String cNProfessionalCode) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 524 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:琛屽彿 111 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +----閿欒绫诲瀷:Win32Exception +----閿欒淇℃伅: +----绛夊緟鐨勬搷浣滆繃鏃躲 +----閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:03/11/2024 14:18:52 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReportEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 14:19:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鏂囦欢鈥/CQMS/ManageReportNew/MonthReport.aspx鈥濅笉瀛樺湪銆 +閿欒鍫嗘爤: + 鍦 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:24:21 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:24:21 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 32 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 19 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:29:14 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:29:14 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select Id, Sortid, StartDate, EndDate' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 32 + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:琛屽彿 19 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:31:35 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:31:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.Form鈥濅笉鍏锋湁鍚嶄负鈥渢able鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.Form鈥濅笉鍏锋湁鍚嶄负鈥渢able鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/11/2024 15:35:03 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:35:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: 鈥渂tnSave_Click鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:38:16 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:38:16 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: 鈥渂tnSave_Click鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:38:40 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:38:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: 鈥渂tnSave_Click鈥濈殑閲嶈浇鍧囦笌濮旀墭鈥淪ystem.EventHandler鈥濅笉鍖归厤 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 15:39:25 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 15:39:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:琛屽彿 57 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:41:00 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:41:00 + +鎻掑叆鏁版嵁澶辫触,鍘熷洜锛氫笉鑳藉皢鍊 NULL 鎻掑叆鍒 'Id'锛岃〃 'SGGLDB_WH.dbo.Report_WeekAndMonthReport_New'锛涘垪涓嶅厑璁告湁 Null 鍊笺侷NSERT 澶辫触銆 +璇彞宸茬粓姝€ +鎻掑叆鏁版嵁澶辫触,鍘熷洜锛氫笉鑳藉皢鍊 NULL 鎻掑叆鍒 'Id'锛岃〃 'SGGLDB_WH.dbo.Report_WeekAndMonthReport_New'锛涘垪涓嶅厑璁告湁 Null 鍊笺侷NSERT 澶辫触銆 +璇彞宸茬粓姝€ + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:DataBinding:鈥淪ystem.Data.DataRowView鈥濅笉鍖呭惈鍚嶄负鈥淩eportId鈥濈殑灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName) + 鍦 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts) + 鍦 System.Web.UI.DataBinder.Eval(Object container, String expression) + 鍦 System.Web.UI.TemplateControl.Eval(String expression) + 鍦 ASP.cqms_managereportnew_monthreport_aspx.__DataBindingLabel41(Object sender, EventArgs e) 浣嶇疆 e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx:琛屽彿 43 + 鍦 System.Web.UI.Control.OnDataBinding(EventArgs e) + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 System.Web.UI.Control.DataBindChildren() + 鍦 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) + 鍦 System.Web.UI.Control.DataBind() + 鍦 (Control ) + 鍦 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object ) + 鍦 (Grid , Int32 , Object ) + 鍦 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean ) + 鍦 (Grid , DataTable , Boolean ) + 鍦 FineUIPro.Grid.DataBind(Boolean keepCurrentData) + 鍦 (Grid , Boolean ) + 鍦 FineUIPro.Grid.DataBind() + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() + 鍦 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Window1_Close(Object sender, WindowCloseEventArgs e) + 鍦 FineUIPro.Window.OnClose(WindowCloseEventArgs e) + 鍦 (Window , WindowCloseEventArgs ) + 鍦 FineUIPro.Window.RaisePostBackEvent(String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 鍦 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/11/2024 15:42:41 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/11/2024 15:42:41 + +鎻掑叆鏁版嵁澶辫触,鍘熷洜锛氳繚鍙嶄簡 PRIMARY KEY 绾︽潫鈥淧K_Report_WeekAndMonthReport_New鈥濄備笉鑳藉湪瀵硅薄鈥渄bo.Report_WeekAndMonthReport_New鈥濅腑鎻掑叆閲嶅閿傞噸澶嶉敭鍊间负 (a7666577-2499-41a6-a724-98150978bc41)銆 +璇彞宸茬粓姝€ + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1061: 鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濅笉鍖呭惈鈥渃hangeFrameHeight鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渃hangeFrameHeight鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 16:17:15 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 16:17:15 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1061: 鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濅笉鍖呭惈鈥渃hangeFrameHeight鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.cqms_managereportnew_monthreportedit_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渃hangeFrameHeight鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 16:18:13 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 16:18:13 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鏈嶅姟鍣ㄦ爣璁扮殑鏍煎紡涓嶆纭 +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessError(String message) + 鍦 System.Web.UI.TemplateParser.DetectSpecialServerTagError(String text, Int32 textPos) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/11/2024 17:29:27 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 17:29:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1041: 搴旇緭鍏ユ爣璇嗙锛涒渢his鈥濇槸鍏抽敭瀛 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 17:36:38 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 17:36:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:e:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1041: 搴旇緭鍏ユ爣璇嗙锛涒渢his鈥濇槸鍏抽敭瀛 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:03/11/2024 17:39:29 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/11/2024 17:39:29 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:鍩虹被鍖呮嫭瀛楁鈥渉idReportId鈥濓紝浣嗗叾绫诲瀷(System.Web.UI.HtmlControls.HtmlInputHidden)涓庢帶浠(System.Web.UI.HtmlControls.HtmlInputText)鐨勭被鍨嬩笉鍏煎銆 +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildFieldDeclaration(ControlBuilder builder) + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse) + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse) + 鍦 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse) + 鍦 System.Web.Compilation.TemplateControlCodeDomTreeGenerator.BuildMiscClassMembers() + 鍦 System.Web.Compilation.PageCodeDomTreeGenerator.BuildMiscClassMembers() + 鍦 System.Web.Compilation.BaseCodeDomTreeGenerator.BuildSourceDataTree() + 鍦 System.Web.Compilation.BaseCodeDomTreeGenerator.GetCodeDomTree(CodeDomProvider codeDomProvider, StringResourceBuilder stringResourceBuilder, VirtualPath virtualPath) + 鍦 System.Web.Compilation.BaseTemplateBuildProvider.GenerateCode(AssemblyBuilder assemblyBuilder) + 鍦 System.Web.Compilation.AssemblyBuilder.AddBuildProvider(BuildProvider buildProvider) +鍑洪敊鏃堕棿:03/12/2024 09:51:40 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 09:51:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鎺т欢鍖呭惈浠g爜鍧(鍗 <% ... %>)锛屽洜姝ゆ棤娉曚慨鏀规帶浠堕泦鍚堛 +閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlCollection.AddAt(Int32 index, Control child) + 鍦 FineUIPro.Web.PageBase.OnInit(EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:琛屽彿 227 + 鍦 System.Web.UI.Control.InitRecursive(Control namingContainer) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 09:58:10 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 09:58:10 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpException +閿欒淇℃伅:鎺т欢鍖呭惈浠g爜鍧(鍗 <% ... %>)锛屽洜姝ゆ棤娉曚慨鏀规帶浠堕泦鍚堛 +閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlCollection.AddAt(Int32 index, Control child) + 鍦 FineUIPro.Web.PageBase.OnInit(EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:琛屽彿 227 + 鍦 System.Web.UI.Control.InitRecursive(Control namingContainer) + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 09:58:12 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 09:58:12 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 30 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 10:27:57 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 10:27:57 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:Runat 鐗规у繀椤诲叿鏈夊 Server銆 +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----Runat 鐗规у繀椤诲叿鏈夊 Server銆 +----閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessError(String message) + 鍦 System.Web.UI.TemplateParser.ProcessAttributes(String text, Match match, ParsedAttributeCollection& attribs, Boolean fDirective, String& duplicateAttribute) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/12/2024 10:49:18 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 10:49:18 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淏utton鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淏utton鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/12/2024 10:57:49 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 10:57:49 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淭oolbarPosition鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.Toolbar鈥濅笉鍏锋湁鍚嶄负鈥淭oolbarPosition鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs) + 鍦 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs) + 鍦 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:03/12/2024 11:00:25 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:03/12/2024 11:00:25 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:SqlException +閿欒淇℃伅:鍙傛暟鍖栨煡璇 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 闇瑕佸弬鏁 '@ProjectId'锛屼絾鏈彁渚涜鍙傛暟銆 +閿欒鍫嗘爤: + 鍦 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 鍦 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 鍦 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 鍦 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 鍦 System.Data.SqlClient.SqlDataReader.get_MetaData() + 鍦 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 鍦 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 鍦 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 鍦 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 鍦 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:琛屽彿 311 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.BindGrid() 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 30 + 鍦 FineUIPro.Web.CQMS.ManageReport.MonthReport.Page_Load(Object sender, EventArgs e) 浣嶇疆 E:\2023鍏徃椤圭洰\浜旂幆鏂癨CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:琛屽彿 18 + 鍦 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) + 鍦 System.EventHandler.Invoke(Object sender, EventArgs e) + 鍦 System.Web.UI.Control.OnLoad(EventArgs e) + 鍦 System.Web.UI.Control.LoadRecursive() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:03/12/2024 14:53:51 +鍑洪敊鏂囦欢:http://localhost:8579/CQMS/ManageReport/MonthReport.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:03/12/2024 14:53:51 diff --git a/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.dll b/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.dll index 97985ba8..cbabe47e 100644 Binary files a/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.dll and b/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.dll differ diff --git a/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.messages b/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.messages index edef383e..4572211c 100644 --- a/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.messages +++ b/SGGL/FineUIPro.Web/FakesAssemblies/Apache.NMS.Fakes.messages @@ -1,50 +1,2 @@ -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.AcknowledgementMode 鐢熸垚瀛樻牴: 绫诲瀷鏄竴涓肩被鍨嬨 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ExceptionListener 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ConnectionInterruptedListener 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ConnectionResumedListener 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.DestinationType 鐢熸垚瀛樻牴: 绫诲瀷鏄竴涓肩被鍨嬨 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.MessageListener 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ConsumerTransformerDelegate 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ProducerTransformerDelegate 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.SessionTxEventDelegate 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.MsgPriority 鐢熸垚瀛樻牴: 绫诲瀷鏄竴涓肩被鍨嬨 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.MsgDeliveryMode 鐢熸垚瀛樻牴: 绫诲瀷鏄竴涓肩被鍨嬨 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.Tracer 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.Util.NMSExceptionSupport 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IBytesMessage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.AcknowledgementMode 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓灇涓俱 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ExceptionListener 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ConnectionInterruptedListener 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ConnectionResumedListener 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IConnection 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IConnectionFactory 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IConnectionMetaData 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.DestinationType 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓灇涓俱 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IDestination 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IMapMessage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IMessage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.MessageListener 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ConsumerTransformerDelegate 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IMessageConsumer 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ProducerTransformerDelegate 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IMessageProducer 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.INetTxConnection 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.INetTxConnectionFactory 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.INetTxSession 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IObjectMessage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IPrimitiveMap 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IQueue 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IQueueBrowser 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IRedeliveryPolicy 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.SessionTxEventDelegate 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓鎵樸 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ISession 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IStartable 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IStoppable 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.IStreamMessage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ITemporaryQueue 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ITemporaryTopic 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ITextMessage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ITopic 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.ITrace 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.MsgPriority 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓灇涓俱 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\SGGL_CWCEC\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.MsgDeliveryMode 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓灇涓俱 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.Tracer 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\Apache.NMS.fakes : warning : 鏃犳硶涓 Apache.NMS.Util.NMSExceptionSupport 鐢熸垚瀛樻牴: 绫诲瀷宸插瘑灏併 diff --git a/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.dll b/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.dll index 561f26ad..188eedf9 100644 Binary files a/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.dll and b/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.dll differ diff --git a/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.messages b/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.messages index 1f18a040..8cf6dfbd 100644 --- a/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.messages +++ b/SGGL/FineUIPro.Web/FakesAssemblies/ThoughtWorks.QRCode.Fakes.messages @@ -1,15 +1,5 @@ -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Properties.Resources 鐢熸垚瀛樻牴: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Reader.Pattern.AlignmentPattern 鐢熸垚瀛樻牴: 绫诲瀷娌℃湁绯诲垪鍙鐨勬瀯閫犲嚱鏁般 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Util.Color_Fields 鐢熸垚瀛樻牴: 绫诲瀷鏄竴涓肩被鍨嬨 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Reader.Pattern.FinderPattern 鐢熸垚瀛樻牴: 绫诲瀷娌℃湁绯诲垪鍙鐨勬瀯閫犲嚱鏁般 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 {09D8BC6E-02EC-4FA4-99BD-B668F38E6DC6} 鐢熸垚瀛樻牴: 绫诲瀷涓嶅彈鏀寔锛屽洜涓哄瓨鍦ㄥ唴閮ㄩ檺鍒躲 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Util.DebugCanvas 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Geom.SamplingGrid+AreaGrid 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.QRCodeDecoder+DecodeResult 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Data.QRCodeImage 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Properties.Resources 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Reader.QRCodeImageReader+ModulePitch 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.QRCodeEncoder+ENCODE_MODE 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓灇涓俱 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.QRCodeEncoder+ERROR_CORRECTION 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓灇涓俱 -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Util.Color 鐢熸垚濉厖鐮: 绫诲瀷鏄竴涓帴鍙c -E:\宸ヤ綔\浜旂幆鏂藉伐骞冲彴\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 {09D8BC6E-02EC-4FA4-99BD-B668F38E6DC6} 鐢熸垚濉厖鐮: 绫诲瀷涓嶅彈鏀寔锛屽洜涓哄瓨鍦ㄥ唴閮ㄩ檺鍒躲 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Reader.Pattern.AlignmentPattern 鐢熸垚瀛樻牴: 绫诲瀷娌℃湁瀵圭▼搴忛泦鍙鐨勬瀯閫犲嚱鏁般傛瀯閫犲嚱鏁版湰韬垨鍙傛暟鍙兘涓嶅彲瑙併傘 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Reader.Pattern.FinderPattern 鐢熸垚瀛樻牴: 绫诲瀷娌℃湁瀵圭▼搴忛泦鍙鐨勬瀯閫犲嚱鏁般傛瀯閫犲嚱鏁版湰韬垨鍙傛暟鍙兘涓嶅彲瑙併傘 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Geom.SamplingGrid+AreaGrid 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.QRCodeDecoder+DecodeResult 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 +G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Fakes\ThoughtWorks.QRCode.fakes : warning : 鏃犳硶涓 ThoughtWorks.QRCode.Codec.Reader.QRCodeImageReader+ModulePitch 鐢熸垚濉厖鐮: 绫诲瀷瀵 exported or assembly(ThoughtWorks.QRCode.Fakes) 涓嶅彲瑙併 diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index fa21b660..7c094da9 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -495,6 +495,9 @@ + + + @@ -7773,6 +7776,27 @@ ShoBreakdownProject.aspx + + MonthReport.aspx + ASPXCodeBehind + + + MonthReport.aspx + + + MonthReportEdit.aspx + ASPXCodeBehind + + + MonthReportEdit.aspx + + + MonthReportNewEdit.aspx + ASPXCodeBehind + + + MonthReportNewEdit.aspx + CheckStatisc.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/Web.config b/SGGL/FineUIPro.Web/Web.config index 56282e91..6605fbff 100644 --- a/SGGL/FineUIPro.Web/Web.config +++ b/SGGL/FineUIPro.Web/Web.config @@ -12,7 +12,7 @@ - + diff --git a/SGGL/FineUIPro.Web/bin.rar b/SGGL/FineUIPro.Web/bin.rar new file mode 100644 index 00000000..36329031 Binary files /dev/null and b/SGGL/FineUIPro.Web/bin.rar differ diff --git a/SGGL/FineUIPro.Web/common/Menu_CQMS.xml b/SGGL/FineUIPro.Web/common/Menu_CQMS.xml index e80d4dd9..d8c81922 100644 --- a/SGGL/FineUIPro.Web/common/Menu_CQMS.xml +++ b/SGGL/FineUIPro.Web/common/Menu_CQMS.xml @@ -36,6 +36,7 @@ + diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 171e8463..ba1e2196 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -1955,6 +1955,9 @@ namespace Model partial void InsertReport_ConstructionProblems(Report_ConstructionProblems instance); partial void UpdateReport_ConstructionProblems(Report_ConstructionProblems instance); partial void DeleteReport_ConstructionProblems(Report_ConstructionProblems instance); + partial void InsertReport_CqmsTarget(Report_CqmsTarget instance); + partial void UpdateReport_CqmsTarget(Report_CqmsTarget instance); + partial void DeleteReport_CqmsTarget(Report_CqmsTarget instance); partial void InsertReport_NextQualityControl(Report_NextQualityControl instance); partial void UpdateReport_NextQualityControl(Report_NextQualityControl instance); partial void DeleteReport_NextQualityControl(Report_NextQualityControl instance); @@ -1964,12 +1967,18 @@ namespace Model partial void InsertReport_RowMaterialProblem(Report_RowMaterialProblem instance); partial void UpdateReport_RowMaterialProblem(Report_RowMaterialProblem instance); partial void DeleteReport_RowMaterialProblem(Report_RowMaterialProblem instance); + partial void InsertReport_TextBoxContent(Report_TextBoxContent instance); + partial void UpdateReport_TextBoxContent(Report_TextBoxContent instance); + partial void DeleteReport_TextBoxContent(Report_TextBoxContent instance); partial void InsertReport_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent instance); partial void UpdateReport_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent instance); partial void DeleteReport_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent instance); partial void InsertReport_WeekAndMonthReport(Report_WeekAndMonthReport instance); partial void UpdateReport_WeekAndMonthReport(Report_WeekAndMonthReport instance); partial void DeleteReport_WeekAndMonthReport(Report_WeekAndMonthReport instance); + partial void InsertReport_WeekAndMonthReport_New(Report_WeekAndMonthReport_New instance); + partial void UpdateReport_WeekAndMonthReport_New(Report_WeekAndMonthReport_New instance); + partial void DeleteReport_WeekAndMonthReport_New(Report_WeekAndMonthReport_New instance); partial void InsertReportServer(ReportServer instance); partial void UpdateReportServer(ReportServer instance); partial void DeleteReportServer(ReportServer instance); @@ -7734,6 +7743,14 @@ namespace Model } } + public System.Data.Linq.Table Report_CqmsTarget + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Report_NextQualityControl { get @@ -7758,6 +7775,14 @@ namespace Model } } + public System.Data.Linq.Table Report_TextBoxContent + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table Report_ThisWeekOrMonthContent { get @@ -7774,6 +7799,14 @@ namespace Model } } + public System.Data.Linq.Table Report_WeekAndMonthReport_New + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table ReportServer { get @@ -305202,6 +305235,236 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_CqmsTarget")] + public partial class Report_CqmsTarget : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _Id; + + private string _ReportId; + + private string _ProStage; + + private string _ProDescribe; + + private string _TargetValue; + + private string _MonthPer; + + private string _Remarks; + + private System.Nullable _SortId; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIdChanging(string value); + partial void OnIdChanged(); + partial void OnReportIdChanging(string value); + partial void OnReportIdChanged(); + partial void OnProStageChanging(string value); + partial void OnProStageChanged(); + partial void OnProDescribeChanging(string value); + partial void OnProDescribeChanged(); + partial void OnTargetValueChanging(string value); + partial void OnTargetValueChanged(); + partial void OnMonthPerChanging(string value); + partial void OnMonthPerChanged(); + partial void OnRemarksChanging(string value); + partial void OnRemarksChanged(); + partial void OnSortIdChanging(System.Nullable value); + partial void OnSortIdChanged(); + #endregion + + public Report_CqmsTarget() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string Id + { + get + { + return this._Id; + } + set + { + if ((this._Id != value)) + { + this.OnIdChanging(value); + this.SendPropertyChanging(); + this._Id = value; + this.SendPropertyChanged("Id"); + this.OnIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportId", DbType="NVarChar(50)")] + public string ReportId + { + get + { + return this._ReportId; + } + set + { + if ((this._ReportId != value)) + { + this.OnReportIdChanging(value); + this.SendPropertyChanging(); + this._ReportId = value; + this.SendPropertyChanged("ReportId"); + this.OnReportIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProStage", DbType="NVarChar(50)")] + public string ProStage + { + get + { + return this._ProStage; + } + set + { + if ((this._ProStage != value)) + { + this.OnProStageChanging(value); + this.SendPropertyChanging(); + this._ProStage = value; + this.SendPropertyChanged("ProStage"); + this.OnProStageChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProDescribe", DbType="NVarChar(200)")] + public string ProDescribe + { + get + { + return this._ProDescribe; + } + set + { + if ((this._ProDescribe != value)) + { + this.OnProDescribeChanging(value); + this.SendPropertyChanging(); + this._ProDescribe = value; + this.SendPropertyChanged("ProDescribe"); + this.OnProDescribeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TargetValue", DbType="NVarChar(50)")] + public string TargetValue + { + get + { + return this._TargetValue; + } + set + { + if ((this._TargetValue != value)) + { + this.OnTargetValueChanging(value); + this.SendPropertyChanging(); + this._TargetValue = value; + this.SendPropertyChanged("TargetValue"); + this.OnTargetValueChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthPer", DbType="NVarChar(50)")] + public string MonthPer + { + get + { + return this._MonthPer; + } + set + { + if ((this._MonthPer != value)) + { + this.OnMonthPerChanging(value); + this.SendPropertyChanging(); + this._MonthPer = value; + this.SendPropertyChanged("MonthPer"); + this.OnMonthPerChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(200)")] + public string Remarks + { + get + { + return this._Remarks; + } + set + { + if ((this._Remarks != value)) + { + this.OnRemarksChanging(value); + this.SendPropertyChanging(); + this._Remarks = value; + this.SendPropertyChanged("Remarks"); + this.OnRemarksChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortId", DbType="Int")] + public System.Nullable SortId + { + get + { + return this._SortId; + } + set + { + if ((this._SortId != value)) + { + this.OnSortIdChanging(value); + this.SendPropertyChanging(); + this._SortId = value; + this.SendPropertyChanged("SortId"); + this.OnSortIdChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_NextQualityControl")] public partial class Report_NextQualityControl : INotifyPropertyChanging, INotifyPropertyChanged { @@ -305734,6 +305997,140 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_TextBoxContent")] + public partial class Report_TextBoxContent : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _Id; + + private string _ReportId; + + private string _ContentType; + + private string _ContentText; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIdChanging(string value); + partial void OnIdChanged(); + partial void OnReportIdChanging(string value); + partial void OnReportIdChanged(); + partial void OnContentTypeChanging(string value); + partial void OnContentTypeChanged(); + partial void OnContentTextChanging(string value); + partial void OnContentTextChanged(); + #endregion + + public Report_TextBoxContent() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string Id + { + get + { + return this._Id; + } + set + { + if ((this._Id != value)) + { + this.OnIdChanging(value); + this.SendPropertyChanging(); + this._Id = value; + this.SendPropertyChanged("Id"); + this.OnIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportId", DbType="NVarChar(50)")] + public string ReportId + { + get + { + return this._ReportId; + } + set + { + if ((this._ReportId != value)) + { + this.OnReportIdChanging(value); + this.SendPropertyChanging(); + this._ReportId = value; + this.SendPropertyChanged("ReportId"); + this.OnReportIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContentType", DbType="NVarChar(20)")] + public string ContentType + { + get + { + return this._ContentType; + } + set + { + if ((this._ContentType != value)) + { + this.OnContentTypeChanging(value); + this.SendPropertyChanging(); + this._ContentType = value; + this.SendPropertyChanged("ContentType"); + this.OnContentTypeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContentText", DbType="NVarChar(1000)")] + public string ContentText + { + get + { + return this._ContentText; + } + set + { + if ((this._ContentText != value)) + { + this.OnContentTextChanging(value); + this.SendPropertyChanging(); + this._ContentText = value; + this.SendPropertyChanged("ContentText"); + this.OnContentTextChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_ThisWeekOrMonthContent")] public partial class Report_ThisWeekOrMonthContent : INotifyPropertyChanging, INotifyPropertyChanged { @@ -306248,6 +306645,212 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_WeekAndMonthReport_New")] + public partial class Report_WeekAndMonthReport_New : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _Id; + + private string _ProjectId; + + private System.Nullable _StartDate; + + private System.Nullable _EndDate; + + private string _SortId; + + private System.Nullable _CreateDate; + + private string _CreateMan; + + #region 鍙墿灞曟ф柟娉曞畾涔 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnIdChanging(string value); + partial void OnIdChanged(); + partial void OnProjectIdChanging(string value); + partial void OnProjectIdChanged(); + partial void OnStartDateChanging(System.Nullable value); + partial void OnStartDateChanged(); + partial void OnEndDateChanging(System.Nullable value); + partial void OnEndDateChanged(); + partial void OnSortIdChanging(string value); + partial void OnSortIdChanged(); + partial void OnCreateDateChanging(System.Nullable value); + partial void OnCreateDateChanged(); + partial void OnCreateManChanging(string value); + partial void OnCreateManChanged(); + #endregion + + public Report_WeekAndMonthReport_New() + { + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string Id + { + get + { + return this._Id; + } + set + { + if ((this._Id != value)) + { + this.OnIdChanging(value); + this.SendPropertyChanging(); + this._Id = value; + this.SendPropertyChanged("Id"); + this.OnIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")] + public string ProjectId + { + get + { + return this._ProjectId; + } + set + { + if ((this._ProjectId != value)) + { + this.OnProjectIdChanging(value); + this.SendPropertyChanging(); + this._ProjectId = value; + this.SendPropertyChanged("ProjectId"); + this.OnProjectIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StartDate", DbType="DateTime")] + public System.Nullable StartDate + { + get + { + return this._StartDate; + } + set + { + if ((this._StartDate != value)) + { + this.OnStartDateChanging(value); + this.SendPropertyChanging(); + this._StartDate = value; + this.SendPropertyChanged("StartDate"); + this.OnStartDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EndDate", DbType="DateTime")] + public System.Nullable EndDate + { + get + { + return this._EndDate; + } + set + { + if ((this._EndDate != value)) + { + this.OnEndDateChanging(value); + this.SendPropertyChanging(); + this._EndDate = value; + this.SendPropertyChanged("EndDate"); + this.OnEndDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortId", DbType="NVarChar(50)")] + public string SortId + { + get + { + return this._SortId; + } + set + { + if ((this._SortId != value)) + { + this.OnSortIdChanging(value); + this.SendPropertyChanging(); + this._SortId = value; + this.SendPropertyChanged("SortId"); + this.OnSortIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDate", DbType="DateTime")] + public System.Nullable CreateDate + { + get + { + return this._CreateDate; + } + set + { + if ((this._CreateDate != value)) + { + this.OnCreateDateChanging(value); + this.SendPropertyChanging(); + this._CreateDate = value; + this.SendPropertyChanged("CreateDate"); + this.OnCreateDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateMan", DbType="NVarChar(50)")] + public string CreateMan + { + get + { + return this._CreateMan; + } + set + { + if ((this._CreateMan != value)) + { + this.OnCreateManChanging(value); + this.SendPropertyChanging(); + this._CreateMan = value; + this.SendPropertyChanged("CreateMan"); + this.OnCreateManChanged(); + } + } + } + + public event PropertyChangingEventHandler PropertyChanging; + + public event PropertyChangedEventHandler PropertyChanged; + + protected virtual void SendPropertyChanging() + { + if ((this.PropertyChanging != null)) + { + this.PropertyChanging(this, emptyChangingEventArgs); + } + } + + protected virtual void SendPropertyChanged(String propertyName) + { + if ((this.PropertyChanged != null)) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ReportServer")] public partial class ReportServer : INotifyPropertyChanging, INotifyPropertyChanged { diff --git a/SGGL/SgManager.AI/SgManager.AI.csproj b/SGGL/SgManager.AI/SgManager.AI.csproj index bbe7f573..6e58277e 100644 --- a/SGGL/SgManager.AI/SgManager.AI.csproj +++ b/SGGL/SgManager.AI/SgManager.AI.csproj @@ -31,11 +31,11 @@ 4 - + ..\packages\Baidu.AI.4.15.9\lib\net45\AipSdk.dll - ..\..\..\SGGL_CWCEC\SGGL\SgManager.AI\bin\Debug\AOP.Common.dll + bin\AOP.Common.dll ..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll