From ed4bd2261f4de3fc7afd3fa639294c03edd70aa1 Mon Sep 17 00:00:00 2001
From: wendy <408182087@qq.com>
Date: Mon, 1 Apr 2024 10:45:52 +0800
Subject: [PATCH 1/3] =?UTF-8?q?20240401=20=E8=B4=A8=E9=87=8F=E6=9C=88?=
=?UTF-8?q?=E6=8A=A515=E6=95=B4=E6=94=B9=E7=8E=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../CQMS/ManageReportNew/MonthReportEdit.aspx | 9 +-
.../ManageReportNew/MonthReportEdit.aspx.cs | 27 +-
.../MonthReportEdit.aspx.designer.cs | 365 +++++-----
SGGL/FineUIPro.Web/ErrLog.txt | 636 +-----------------
SGGL/FineUIPro.Web/Web.config | 2 +-
5 files changed, 244 insertions(+), 795 deletions(-)
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx
index 7658c249..9bda98d9 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx
@@ -1437,10 +1437,10 @@
-
+ <%--
-
+ --%>
@@ -1537,6 +1537,11 @@
+
+
+
+
+
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
index 0ba8b3f6..9144b350 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
@@ -2095,6 +2095,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
int Quantity1Sum = 0;
int Quantity2Sum = 0;
+ int ClosedCountSum = 0;
//加载所有单位
var units = from x in Funs.DB.Project_ProjectUnit
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
@@ -2112,17 +2113,28 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
c.CheckDate,
c.ProjectId,
u.UnitId,
- u.UnitName
+ u.UnitName,
+ c.State
};
var AllList = query.ToList();
var monethCount = query
.Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+ var ClosedCount = query.Where(x => x.State == "7");//已关闭数量
Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
model.Id = Guid.NewGuid().ToString();
model.ContentName = item.UnitName;
model.MonthsCount = monethCount.Count();
model.ProjectCount = AllList.Count();
+ if (AllList.Count() > 0)
+ {
+ model.RectificationRate = (100.0 * (ClosedCount.Count() / AllList.Count())).ToString("#0.00") + "%";
+ }
+ else
+ {
+ model.RectificationRate = "0.00%";
+ }
+
model.ReportId = ReportId;
//如果是修改,查询表中数据
if (objType == "1")
@@ -2130,7 +2142,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.UnitName && x.ReType == "1");
if (NewModel != null)
{
- model.RectificationRate = NewModel.RectificationRate;
+ //model.RectificationRate = NewModel.RectificationRate;
model.Remarks = NewModel.Remarks;
}
}
@@ -2138,6 +2150,8 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
Quantity1Sum += monethCount.Count();
Quantity2Sum += AllList.Count();
+ ClosedCountSum += ClosedCount.Count();
+
i++;
}
gvQualityInspection.DataSource = list;
@@ -2148,7 +2162,14 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
summary.Add("ContentName", "合计");
summary.Add("MonthsCount", Quantity1Sum.ToString());
summary.Add("ProjectCount", Quantity2Sum.ToString());
-
+ if (Quantity2Sum > 0)
+ {
+ summary.Add("RectificationRate", (100.00 * (ClosedCountSum / Quantity2Sum)).ToString("#0.00") + "%");
+ }
+ else
+ {
+ summary.Add("RectificationRate", "0.00%");
+ }
gvQualityInspection.SummaryData = summary;
}
#endregion
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
index 891842c2..e3d616e3 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
@@ -7,13 +7,11 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.CQMS.ManageReportNew
-{
-
-
- public partial class MonthReportEdit
- {
-
+namespace FineUIPro.Web.CQMS.ManageReportNew {
+
+
+ public partial class MonthReportEdit {
+
///
/// form1 控件。
///
@@ -22,7 +20,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -31,7 +29,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// ContentPanel1 控件。
///
@@ -40,7 +38,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ContentPanel ContentPanel1;
-
+
///
/// Table1 控件。
///
@@ -49,7 +47,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table1;
-
+
///
/// tabbtn 控件。
///
@@ -58,7 +56,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn;
-
+
///
/// image15 控件。
///
@@ -67,7 +65,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Image image15;
-
+
///
/// Button2 控件。
///
@@ -76,7 +74,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button2;
-
+
///
/// Table5 控件。
///
@@ -85,7 +83,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table5;
-
+
///
/// lblProjectName 控件。
///
@@ -94,7 +92,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label lblProjectName;
-
+
///
/// Label1 控件。
///
@@ -103,7 +101,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label1;
-
+
///
/// txtPeriod 控件。
///
@@ -112,7 +110,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.TextBox txtPeriod;
-
+
///
/// RequiredFieldValidator1 控件。
///
@@ -121,7 +119,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
-
+
///
/// Label2 控件。
///
@@ -130,7 +128,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label2;
-
+
///
/// lblTital 控件。
///
@@ -139,7 +137,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label lblTital;
-
+
///
/// Table2 控件。
///
@@ -148,7 +146,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table2;
-
+
///
/// txtStartDate 控件。
///
@@ -157,7 +155,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtStartDate;
-
+
///
/// Label3 控件。
///
@@ -166,7 +164,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label Label3;
-
+
///
/// txtEndDate 控件。
///
@@ -175,7 +173,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtEndDate;
-
+
///
/// Panel4 控件。
///
@@ -184,7 +182,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel4;
-
+
///
/// Toolbar2 控件。
///
@@ -193,7 +191,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// Button3 控件。
///
@@ -202,7 +200,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button3;
-
+
///
/// Form5 控件。
///
@@ -211,7 +209,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form5;
-
+
///
/// Grid1 控件。
///
@@ -220,7 +218,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// txtProStage 控件。
///
@@ -229,7 +227,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProStage;
-
+
///
/// txtProDescribe 控件。
///
@@ -238,7 +236,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProDescribe;
-
+
///
/// txtTargetValue 控件。
///
@@ -247,7 +245,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTargetValue;
-
+
///
/// txtMonthPer 控件。
///
@@ -256,7 +254,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtMonthPer;
-
+
///
/// txtRemarks 控件。
///
@@ -265,7 +263,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemarks;
-
+
///
/// Panel5 控件。
///
@@ -274,7 +272,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel5;
-
+
///
/// Panel6 控件。
///
@@ -283,7 +281,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel6;
-
+
///
/// Form6 控件。
///
@@ -292,7 +290,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form6;
-
+
///
/// txtAre0 控件。
///
@@ -301,7 +299,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre0;
-
+
///
/// Panel7 控件。
///
@@ -310,7 +308,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel7;
-
+
///
/// Form7 控件。
///
@@ -319,7 +317,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form7;
-
+
///
/// txtAre1 控件。
///
@@ -328,7 +326,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre1;
-
+
///
/// Panel8 控件。
///
@@ -337,7 +335,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel8;
-
+
///
/// Form8 控件。
///
@@ -346,7 +344,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form8;
-
+
///
/// txtAre2 控件。
///
@@ -355,7 +353,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre2;
-
+
///
/// Panel9 控件。
///
@@ -364,7 +362,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel9;
-
+
///
/// Panel10 控件。
///
@@ -373,7 +371,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel10;
-
+
///
/// Form9 控件。
///
@@ -382,7 +380,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form9;
-
+
///
/// Grid2 控件。
///
@@ -391,7 +389,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid2;
-
+
///
/// TextBox5 控件。
///
@@ -400,7 +398,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox5;
-
+
///
/// Panel11 控件。
///
@@ -409,7 +407,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel11;
-
+
///
/// Form10 控件。
///
@@ -418,7 +416,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form10;
-
+
///
/// Grid3 控件。
///
@@ -427,7 +425,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid3;
-
+
///
/// TextBox1 控件。
///
@@ -436,7 +434,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox1;
-
+
///
/// Panel12 控件。
///
@@ -445,7 +443,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel12;
-
+
///
/// Form11 控件。
///
@@ -454,7 +452,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form11;
-
+
///
/// Grid4 控件。
///
@@ -463,7 +461,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid4;
-
+
///
/// TextBox2 控件。
///
@@ -472,7 +470,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox2;
-
+
///
/// Panel13 控件。
///
@@ -481,7 +479,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel13;
-
+
///
/// Form12 控件。
///
@@ -490,7 +488,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form12;
-
+
///
/// Grid5 控件。
///
@@ -499,7 +497,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid5;
-
+
///
/// TextBox3 控件。
///
@@ -508,7 +506,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox3;
-
+
///
/// Panel14 控件。
///
@@ -517,7 +515,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel14;
-
+
///
/// Form13 控件。
///
@@ -526,7 +524,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form13;
-
+
///
/// Grid6 控件。
///
@@ -535,7 +533,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid6;
-
+
///
/// TextBox4 控件。
///
@@ -544,7 +542,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox4;
-
+
///
/// Panel15 控件。
///
@@ -553,7 +551,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel15;
-
+
///
/// Form14 控件。
///
@@ -562,7 +560,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form14;
-
+
///
/// Grid7 控件。
///
@@ -571,7 +569,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid7;
-
+
///
/// Panel16 控件。
///
@@ -580,7 +578,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel16;
-
+
///
/// Panel17 控件。
///
@@ -589,7 +587,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel17;
-
+
///
/// Form15 控件。
///
@@ -598,7 +596,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form15;
-
+
///
/// Grid8 控件。
///
@@ -607,7 +605,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid8;
-
+
///
/// Panel18 控件。
///
@@ -616,7 +614,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel18;
-
+
///
/// Toolbar3 控件。
///
@@ -625,7 +623,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar3;
-
+
///
/// Button4 控件。
///
@@ -634,7 +632,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button4;
-
+
///
/// Form16 控件。
///
@@ -643,7 +641,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form16;
-
+
///
/// Grid9 控件。
///
@@ -652,7 +650,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid9;
-
+
///
/// drpUnitIdGrid9 控件。
///
@@ -661,7 +659,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnitIdGrid9;
-
+
///
/// TextBox7 控件。
///
@@ -670,7 +668,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox TextBox7;
-
+
///
/// TextBox8 控件。
///
@@ -679,7 +677,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox TextBox8;
-
+
///
/// TextBox10 控件。
///
@@ -688,7 +686,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox10;
-
+
///
/// Panel19 控件。
///
@@ -697,7 +695,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel19;
-
+
///
/// Form17 控件。
///
@@ -706,7 +704,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form17;
-
+
///
/// Grid10 控件。
///
@@ -715,7 +713,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid10;
-
+
///
/// Panel20 控件。
///
@@ -724,7 +722,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel20;
-
+
///
/// Form18 控件。
///
@@ -733,7 +731,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form18;
-
+
///
/// Grid11 控件。
///
@@ -742,7 +740,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid11;
-
+
///
/// TextBox6 控件。
///
@@ -751,7 +749,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox6;
-
+
///
/// Toolbar4 控件。
///
@@ -760,7 +758,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar4;
-
+
///
/// Button5 控件。
///
@@ -769,7 +767,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button5;
-
+
///
/// Form19 控件。
///
@@ -778,7 +776,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form19;
-
+
///
/// txtAre8 控件。
///
@@ -787,7 +785,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre8;
-
+
///
/// Pnl9 控件。
///
@@ -796,7 +794,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl9;
-
+
///
/// Form26 控件。
///
@@ -805,7 +803,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form26;
-
+
///
/// gvMeasuringInspection 控件。
///
@@ -814,7 +812,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvMeasuringInspection;
-
+
///
/// TextBox14 控件。
///
@@ -823,7 +821,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox14;
-
+
///
/// Pnl10 控件。
///
@@ -832,7 +830,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl10;
-
+
///
/// Form27 控件。
///
@@ -841,7 +839,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form27;
-
+
///
/// gvTj 控件。
///
@@ -850,7 +848,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvTj;
-
+
///
/// GvSb 控件。
///
@@ -859,7 +857,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvSb;
-
+
///
/// GvGD 控件。
///
@@ -868,7 +866,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvGD;
-
+
///
/// GvDq 控件。
///
@@ -877,7 +875,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvDq;
-
+
///
/// GvYb 控件。
///
@@ -886,7 +884,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvYb;
-
+
///
/// GvFf 控件。
///
@@ -895,7 +893,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvFf;
-
+
///
/// GvXf 控件。
///
@@ -904,7 +902,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvXf;
-
+
///
/// gvInspectionDataInspection 控件。
///
@@ -913,7 +911,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvInspectionDataInspection;
-
+
///
/// TextBox15 控件。
///
@@ -922,7 +920,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox15;
-
+
///
/// Pnl11 控件。
///
@@ -931,7 +929,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl11;
-
+
///
/// Form28 控件。
///
@@ -940,7 +938,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form28;
-
+
///
/// gvPressureInspection 控件。
///
@@ -949,7 +947,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvPressureInspection;
-
+
///
/// TextBox16 控件。
///
@@ -958,7 +956,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox16;
-
+
///
/// Pnl12 控件。
///
@@ -967,7 +965,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl12;
-
+
///
/// Form29 控件。
///
@@ -976,7 +974,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form29;
-
+
///
/// gvPipingInspection 控件。
///
@@ -985,7 +983,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvPipingInspection;
-
+
///
/// TextBox17 控件。
///
@@ -994,7 +992,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox17;
-
+
///
/// TextBox18 控件。
///
@@ -1003,7 +1001,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox18;
-
+
///
/// Pnl13 控件。
///
@@ -1012,7 +1010,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl13;
-
+
///
/// Form30 控件。
///
@@ -1021,7 +1019,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form30;
-
+
///
/// gvSpecialInspection 控件。
///
@@ -1030,7 +1028,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvSpecialInspection;
-
+
///
/// TextBox19 控件。
///
@@ -1039,7 +1037,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox19;
-
+
///
/// TextBox20 控件。
///
@@ -1048,7 +1046,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox20;
-
+
///
/// Pnl14 控件。
///
@@ -1057,7 +1055,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl14;
-
+
///
/// Form31 控件。
///
@@ -1066,7 +1064,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form31;
-
+
///
/// gvNcrManagementInspection 控件。
///
@@ -1075,7 +1073,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvNcrManagementInspection;
-
+
///
/// Panel21 控件。
///
@@ -1084,7 +1082,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel21;
-
+
///
/// Form20 控件。
///
@@ -1093,7 +1091,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form20;
-
+
///
/// gvQualityInspection 控件。
///
@@ -1102,16 +1100,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvQualityInspection;
-
- ///
- /// TextBox9 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.TextBox TextBox9;
-
+
///
/// TextBox11 控件。
///
@@ -1120,7 +1109,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox11;
-
+
///
/// Panel22 控件。
///
@@ -1129,7 +1118,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel22;
-
+
///
/// Form21 控件。
///
@@ -1138,7 +1127,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form21;
-
+
///
/// gvSpecialCheck 控件。
///
@@ -1147,7 +1136,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvSpecialCheck;
-
+
///
/// TextBox12 控件。
///
@@ -1156,7 +1145,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox12;
-
+
///
/// Panel23 控件。
///
@@ -1165,7 +1154,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel23;
-
+
///
/// Form22 控件。
///
@@ -1174,7 +1163,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form22;
-
+
///
/// gvFileReport 控件。
///
@@ -1183,7 +1172,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvFileReport;
-
+
///
/// Panel24 控件。
///
@@ -1192,7 +1181,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel24;
-
+
///
/// Panel25 控件。
///
@@ -1201,7 +1190,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel25;
-
+
///
/// Toolbar5 控件。
///
@@ -1210,7 +1199,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar5;
-
+
///
/// btnRowMaterialProblem 控件。
///
@@ -1219,7 +1208,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnRowMaterialProblem;
-
+
///
/// Form23 控件。
///
@@ -1228,7 +1217,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form23;
-
+
///
/// gvRowMaterialProblem 控件。
///
@@ -1237,7 +1226,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvRowMaterialProblem;
-
+
///
/// txtUnitId 控件。
///
@@ -1246,7 +1235,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtUnitId;
-
+
///
/// txtProblemDesrioption 控件。
///
@@ -1255,7 +1244,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProblemDesrioption;
-
+
///
/// txtTreatmentMeasures 控件。
///
@@ -1264,7 +1253,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTreatmentMeasures;
-
+
///
/// txtProcessingResults 控件。
///
@@ -1273,7 +1262,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProcessingResults;
-
+
///
/// txtRemark 控件。
///
@@ -1282,7 +1271,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemark;
-
+
///
/// Panel26 控件。
///
@@ -1291,7 +1280,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel26;
-
+
///
/// Toolbar6 控件。
///
@@ -1300,7 +1289,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar6;
-
+
///
/// btnAddConstructionProblems 控件。
///
@@ -1309,7 +1298,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnAddConstructionProblems;
-
+
///
/// Form24 控件。
///
@@ -1318,7 +1307,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form24;
-
+
///
/// gvConstructionProblems 控件。
///
@@ -1327,7 +1316,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvConstructionProblems;
-
+
///
/// drpUnitId 控件。
///
@@ -1336,7 +1325,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnitId;
-
+
///
/// txtProblemDesrioption2 控件。
///
@@ -1345,7 +1334,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProblemDesrioption2;
-
+
///
/// txtTreatmentMeasures2 控件。
///
@@ -1354,7 +1343,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTreatmentMeasures2;
-
+
///
/// txtProcessingResults2 控件。
///
@@ -1363,7 +1352,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProcessingResults2;
-
+
///
/// txtRemark2 控件。
///
@@ -1372,7 +1361,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemark2;
-
+
///
/// Panel27 控件。
///
@@ -1381,7 +1370,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel27;
-
+
///
/// Toolbar7 控件。
///
@@ -1390,7 +1379,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar7;
-
+
///
/// btnAddNextControl 控件。
///
@@ -1399,7 +1388,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnAddNextControl;
-
+
///
/// Form25 控件。
///
@@ -1408,7 +1397,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form25;
-
+
///
/// gvNextQualityControl 控件。
///
@@ -1417,7 +1406,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvNextQualityControl;
-
+
///
/// TextBox13 控件。
///
@@ -1426,7 +1415,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox13;
-
+
///
/// Panel3 控件。
///
@@ -1435,7 +1424,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel3;
-
+
///
/// Form3 控件。
///
@@ -1444,7 +1433,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form3;
-
+
///
/// txtAre20 控件。
///
@@ -1453,7 +1442,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre20;
-
+
///
/// Panel1 控件。
///
@@ -1462,7 +1451,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// Form2 控件。
///
@@ -1471,7 +1460,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form2;
-
+
///
/// txtAre21 控件。
///
@@ -1480,7 +1469,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre21;
-
+
///
/// Panel2 控件。
///
@@ -1489,7 +1478,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel2;
-
+
///
/// Form4 控件。
///
@@ -1498,7 +1487,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form4;
-
+
///
/// txtAre22 控件。
///
@@ -1507,7 +1496,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre22;
-
+
///
/// Toolbar1 控件。
///
@@ -1516,7 +1505,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// hdCheckControlCode 控件。
///
@@ -1525,7 +1514,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdCheckControlCode;
-
+
///
/// ToolbarFill1 控件。
///
@@ -1534,7 +1523,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// Button1 控件。
///
@@ -1543,7 +1532,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button1;
-
+
///
/// hdId 控件。
///
@@ -1552,7 +1541,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdId;
-
+
///
/// hdAttachUrl 控件。
///
@@ -1561,7 +1550,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdAttachUrl;
-
+
///
/// ValidationSummary1 控件。
///
@@ -1570,7 +1559,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
-
+
///
/// hidReportId 控件。
///
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index c4212c22..3702cc41 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1,629 +1,63 @@
错误信息开始=====>
-<<<<<<< HEAD
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
+错误类型:DivideByZeroException
+错误信息:尝试除以零。
错误堆栈:
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 188
+ 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.loadQualityInspection(String objType) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 2128
+ 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.lodAllGrid(String objType) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 271
+ 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 218
在 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/30/2024 16:25:08
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx?reportId=c759797f-0e9c-4c4d-9f3e-b0920d9ab930
+出错时间:04/01/2024 10:31:03
+出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
IP地址:::1
操作人员:JT
-出错时间:03/30/2024 16:25:08
+出错时间:04/01/2024 10:31:03
错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
+错误类型:ChangeConflictException
+错误信息:找不到行或行已更改。
错误堆栈:
- 在 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/30/2024 18:23:33
-出错时间:03/30/2024 18:23:33
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/30/2024 18:23:33
-出错时间:03/30/2024 18:23:33
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/30/2024 18:23:33
-出错时间:03/30/2024 18:23:33
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.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/30/2024 18:23:33
-出错时间:03/30/2024 18:23:33
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.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/30/2024 20:23:32
-出错时间:03/30/2024 20:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/30/2024 20:23:32
-出错时间:03/30/2024 20:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/30/2024 20:23:32
-出错时间:03/30/2024 20:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/30/2024 20:23:32
-出错时间:03/30/2024 20:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/30/2024 22:23:32
-出错时间:03/30/2024 22:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/30/2024 22:23:32
-出错时间:03/30/2024 22:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/30/2024 22:23:32
-出错时间:03/30/2024 22:23:32
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/30/2024 22:23:32
-出错时间:03/30/2024 22:23:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.btnPrinter_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:行号 1208
- 在 FineUIPro.MenuButton.OnClick(EventArgs e)
- 在 (MenuButton , EventArgs )
- 在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
+ 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
+ 在 System.Data.Linq.DataContext.SubmitChanges()
+ 在 BLL.UserService.UpdateLastUserInfo(String userId, String LastMenuType, Boolean LastIsOffice, String LastProjectId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\SysManage\UserService.cs:行号 95
+ 在 FineUIPro.Web.indexProject.MenuSwitchMethod(String type) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 727
+ 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 315
+ 在 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/30/2024 22:29:44
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx
+出错时间:04/01/2024 10:37:35
+出错文件:http://localhost:8579/indexProject.aspx?projectId=a7f692aa-4bd5-4fb3-87f8-ba1ab8f94cc2
IP地址:::1
操作人员:JT
-出错时间:03/30/2024 22:29:44
+出错时间:04/01/2024 10:37:35
错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
+错误类型:DivideByZeroException
+错误信息:尝试除以零。
错误堆栈:
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.btnPrinter_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:行号 1208
- 在 FineUIPro.MenuButton.OnClick(EventArgs e)
- 在 (MenuButton , EventArgs )
- 在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
+ 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.loadQualityInspection(String objType) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 2153
+ 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.lodAllGrid(String objType) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 271
+ 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 218
+ 在 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/30/2024 23:10:44
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx
+出错时间:04/01/2024 10:38:20
+出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
IP地址:::1
操作人员:JT
-出错时间:03/30/2024 23:10:44
-=======
-错误类型:HttpCompileException
-错误信息:e:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\ZHGL\TestRunPerformance\TestRunMonthSummaryReport.aspx(24): error CS1061: “ASP.zhgl_testrunperformance_testrunmonthsummaryreport_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.zhgl_testrunperformance_testrunmonthsummaryreport_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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/25/2024 09:28:04
-出错文件:http://localhost:8579/ZHGL/TestRunPerformance/TestRunMonthSummaryReport.aspx
-IP地址:::1
-
-出错时间:03/25/2024 09:28:04
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:文件“/ZHGL/TestRunPerformance/TestRunMonthSummaryReportEdit.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/25/2024 09:34:30
-出错文件:http://localhost:8579/ZHGL/TestRunPerformance/TestRunMonthSummaryReportEdit.aspx
-IP地址:::1
-
-出错时间:03/25/2024 09:34:30
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2180
-出错时间:03/25/2024 12:20:30
-出错时间:03/25/2024 12:20:30
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2045
-出错时间:03/25/2024 12:20:30
-出错时间:03/25/2024 12:20:30
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1941
-出错时间:03/25/2024 12:20:30
-出错时间:03/25/2024 12:20:30
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1883
-出错时间:03/25/2024 12:20:30
-出错时间:03/25/2024 12:20:30
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2180
-出错时间:03/25/2024 14:20:29
-出错时间:03/25/2024 14:20:29
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2045
-出错时间:03/25/2024 14:20:29
-出错时间:03/25/2024 14:20:29
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1941
-出错时间:03/25/2024 14:20:29
-出错时间:03/25/2024 14:20:29
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1883
-出错时间:03/25/2024 14:20:29
-出错时间:03/25/2024 14:20:30
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:找到多个具有相同 ID“ftpl_efe04d84-3138-4a9f-b1fc-16eb8af69df5_5”的控件。FindControl 要求控件具有唯一的 ID。
-错误堆栈:
- 在 System.Web.UI.Control.FillNamedControlsTable(Control namingContainer, ControlCollection controls)
- 在 System.Web.UI.Control.FindControl(String id, Int32 pathOffset)
- 在 System.Web.UI.Control.FindControl(String id, Int32 pathOffset)
- 在 System.Web.UI.Control.FindControl(String id, Int32 pathOffset)
- 在 System.Web.UI.Page.FindControl(String id)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/26/2024 10:58:48
-出错文件:http://localhost:8579/HSSE/InformationProject/CreateLawRegulationIdentify.aspx?LawRegulationIds=
-IP地址:::1
-操作人员:JT
-
-出错时间:03/26/2024 10:58:48
->>>>>>> 0ae4143492852fa438a0c21d967acf7271ee604e
+出错时间:04/01/2024 10:38:20
diff --git a/SGGL/FineUIPro.Web/Web.config b/SGGL/FineUIPro.Web/Web.config
index 6605fbff..9fe9cb37 100644
--- a/SGGL/FineUIPro.Web/Web.config
+++ b/SGGL/FineUIPro.Web/Web.config
@@ -12,7 +12,7 @@
-
+
From c108e65aef727b6fe54bf3f58e61ead7fe9bfeaf Mon Sep 17 00:00:00 2001
From: panhf <754998852@qq.com>
Date: Mon, 1 Apr 2024 14:50:09 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B4=A8=E9=87=8F?=
=?UTF-8?q?=E6=9C=88=E6=8A=A5=E9=BB=98=E8=AE=A4=E6=95=B0=E6=8D=AE=E4=B8=BA?=
=?UTF-8?q?=E7=A9=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ManageReportNew/MonthReportEdit.aspx.cs | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
index 0ba8b3f6..ebaf390d 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
@@ -197,14 +197,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//加载所有grid
lodAllGrid("1");
- Grid10.EmptyText = "无数据
";
- gvTj.EmptyText = "无数据
";
- GvSb.EmptyText = "无数据
";
- GvGD.EmptyText = "无数据
";
- GvDq.EmptyText = "无数据
";
- GvYb.EmptyText = "无数据
";
- GvFf.EmptyText = "无数据
";
- GvXf.EmptyText = "无数据
";
+
}
else
{
@@ -217,6 +210,16 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//加载所有grid
lodAllGrid("0");
}
+
+ Grid10.EmptyText = "无数据
";
+ gvTj.EmptyText = "无数据
";
+ GvSb.EmptyText = "无数据
";
+ GvGD.EmptyText = "无数据
";
+ GvDq.EmptyText = "无数据
";
+ GvYb.EmptyText = "无数据
";
+ GvFf.EmptyText = "无数据
";
+ GvXf.EmptyText = "无数据
";
+
hidReportId.Value = ReportId;
}
}
From 172bd1fee935c021a369773ed2608f3f94424e09 Mon Sep 17 00:00:00 2001
From: panhf <754998852@qq.com>
Date: Mon, 1 Apr 2024 15:01:57 +0800
Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B4=A8=E9=87=8F?=
=?UTF-8?q?=E6=9C=88=E6=8A=A58.=E5=8F=96=E6=B6=88=E6=96=B0=E5=A2=9E?=
=?UTF-8?q?=E6=8C=89=E9=92=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../CQMS/ManageReportNew/MonthReportEdit.aspx | 11 +-
.../ManageReportNew/MonthReportEdit.aspx.cs | 6 +-
.../MonthReportEdit.aspx.designer.cs | 370 +++++++++---------
3 files changed, 180 insertions(+), 207 deletions(-)
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx
index 9bda98d9..fdd017fc 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx
@@ -837,16 +837,9 @@
-
-
-
-
-
-
-
-
+
-
+
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
index aa1a7d5d..2172f693 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
@@ -187,11 +187,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
txtAre21.Text = txtReportList.FirstOrDefault(x => x.ContentType == "21").ContentText;
txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText;
txtAre8.Text = txtReportList.FirstOrDefault(x => x.ContentType == "8").ContentText;
- if (txtAre8.Text != "本月报验的主要材料钢筋、水泥、预应力xxx等,其中现场抽检xx批,合格xx批")
- {
- Form19.Hidden = false;
- Toolbar4.Hidden = true;
- }
+
#endregion
//加载所有grid
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
index e3d616e3..444f0423 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.CQMS.ManageReportNew {
-
-
- public partial class MonthReportEdit {
-
+namespace FineUIPro.Web.CQMS.ManageReportNew
+{
+
+
+ public partial class MonthReportEdit
+ {
+
///
/// form1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// ContentPanel1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ContentPanel ContentPanel1;
-
+
///
/// Table1 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table1;
-
+
///
/// tabbtn 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn;
-
+
///
/// image15 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Image image15;
-
+
///
/// Button2 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button2;
-
+
///
/// Table5 控件。
///
@@ -83,7 +85,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table5;
-
+
///
/// lblProjectName 控件。
///
@@ -92,7 +94,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label lblProjectName;
-
+
///
/// Label1 控件。
///
@@ -101,7 +103,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label1;
-
+
///
/// txtPeriod 控件。
///
@@ -110,7 +112,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.TextBox txtPeriod;
-
+
///
/// RequiredFieldValidator1 控件。
///
@@ -119,7 +121,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
-
+
///
/// Label2 控件。
///
@@ -128,7 +130,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label2;
-
+
///
/// lblTital 控件。
///
@@ -137,7 +139,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label lblTital;
-
+
///
/// Table2 控件。
///
@@ -146,7 +148,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table2;
-
+
///
/// txtStartDate 控件。
///
@@ -155,7 +157,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtStartDate;
-
+
///
/// Label3 控件。
///
@@ -164,7 +166,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label Label3;
-
+
///
/// txtEndDate 控件。
///
@@ -173,7 +175,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtEndDate;
-
+
///
/// Panel4 控件。
///
@@ -182,7 +184,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel4;
-
+
///
/// Toolbar2 控件。
///
@@ -191,7 +193,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// Button3 控件。
///
@@ -200,7 +202,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button3;
-
+
///
/// Form5 控件。
///
@@ -209,7 +211,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form5;
-
+
///
/// Grid1 控件。
///
@@ -218,7 +220,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// txtProStage 控件。
///
@@ -227,7 +229,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProStage;
-
+
///
/// txtProDescribe 控件。
///
@@ -236,7 +238,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProDescribe;
-
+
///
/// txtTargetValue 控件。
///
@@ -245,7 +247,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTargetValue;
-
+
///
/// txtMonthPer 控件。
///
@@ -254,7 +256,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtMonthPer;
-
+
///
/// txtRemarks 控件。
///
@@ -263,7 +265,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemarks;
-
+
///
/// Panel5 控件。
///
@@ -272,7 +274,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel5;
-
+
///
/// Panel6 控件。
///
@@ -281,7 +283,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel6;
-
+
///
/// Form6 控件。
///
@@ -290,7 +292,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form6;
-
+
///
/// txtAre0 控件。
///
@@ -299,7 +301,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre0;
-
+
///
/// Panel7 控件。
///
@@ -308,7 +310,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel7;
-
+
///
/// Form7 控件。
///
@@ -317,7 +319,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form7;
-
+
///
/// txtAre1 控件。
///
@@ -326,7 +328,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre1;
-
+
///
/// Panel8 控件。
///
@@ -335,7 +337,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel8;
-
+
///
/// Form8 控件。
///
@@ -344,7 +346,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form8;
-
+
///
/// txtAre2 控件。
///
@@ -353,7 +355,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre2;
-
+
///
/// Panel9 控件。
///
@@ -362,7 +364,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel9;
-
+
///
/// Panel10 控件。
///
@@ -371,7 +373,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel10;
-
+
///
/// Form9 控件。
///
@@ -380,7 +382,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form9;
-
+
///
/// Grid2 控件。
///
@@ -389,7 +391,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid2;
-
+
///
/// TextBox5 控件。
///
@@ -398,7 +400,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox5;
-
+
///
/// Panel11 控件。
///
@@ -407,7 +409,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel11;
-
+
///
/// Form10 控件。
///
@@ -416,7 +418,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form10;
-
+
///
/// Grid3 控件。
///
@@ -425,7 +427,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid3;
-
+
///
/// TextBox1 控件。
///
@@ -434,7 +436,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox1;
-
+
///
/// Panel12 控件。
///
@@ -443,7 +445,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel12;
-
+
///
/// Form11 控件。
///
@@ -452,7 +454,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form11;
-
+
///
/// Grid4 控件。
///
@@ -461,7 +463,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid4;
-
+
///
/// TextBox2 控件。
///
@@ -470,7 +472,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox2;
-
+
///
/// Panel13 控件。
///
@@ -479,7 +481,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel13;
-
+
///
/// Form12 控件。
///
@@ -488,7 +490,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form12;
-
+
///
/// Grid5 控件。
///
@@ -497,7 +499,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid5;
-
+
///
/// TextBox3 控件。
///
@@ -506,7 +508,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox3;
-
+
///
/// Panel14 控件。
///
@@ -515,7 +517,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel14;
-
+
///
/// Form13 控件。
///
@@ -524,7 +526,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form13;
-
+
///
/// Grid6 控件。
///
@@ -533,7 +535,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid6;
-
+
///
/// TextBox4 控件。
///
@@ -542,7 +544,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox4;
-
+
///
/// Panel15 控件。
///
@@ -551,7 +553,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel15;
-
+
///
/// Form14 控件。
///
@@ -560,7 +562,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form14;
-
+
///
/// Grid7 控件。
///
@@ -569,7 +571,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid7;
-
+
///
/// Panel16 控件。
///
@@ -578,7 +580,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel16;
-
+
///
/// Panel17 控件。
///
@@ -587,7 +589,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel17;
-
+
///
/// Form15 控件。
///
@@ -596,7 +598,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form15;
-
+
///
/// Grid8 控件。
///
@@ -605,7 +607,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid8;
-
+
///
/// Panel18 控件。
///
@@ -614,7 +616,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel18;
-
+
///
/// Toolbar3 控件。
///
@@ -623,7 +625,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar3;
-
+
///
/// Button4 控件。
///
@@ -632,7 +634,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button4;
-
+
///
/// Form16 控件。
///
@@ -641,7 +643,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form16;
-
+
///
/// Grid9 控件。
///
@@ -650,7 +652,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid9;
-
+
///
/// drpUnitIdGrid9 控件。
///
@@ -659,7 +661,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnitIdGrid9;
-
+
///
/// TextBox7 控件。
///
@@ -668,7 +670,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox TextBox7;
-
+
///
/// TextBox8 控件。
///
@@ -677,7 +679,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.NumberBox TextBox8;
-
+
///
/// TextBox10 控件。
///
@@ -686,7 +688,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox10;
-
+
///
/// Panel19 控件。
///
@@ -695,7 +697,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel19;
-
+
///
/// Form17 控件。
///
@@ -704,7 +706,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form17;
-
+
///
/// Grid10 控件。
///
@@ -713,7 +715,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid10;
-
+
///
/// Panel20 控件。
///
@@ -722,7 +724,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel20;
-
+
///
/// Form18 控件。
///
@@ -731,7 +733,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form18;
-
+
///
/// Grid11 控件。
///
@@ -740,7 +742,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid11;
-
+
///
/// TextBox6 控件。
///
@@ -749,25 +751,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox6;
-
- ///
- /// Toolbar4 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.Toolbar Toolbar4;
-
- ///
- /// Button5 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUIPro.Button Button5;
-
+
///
/// Form19 控件。
///
@@ -776,7 +760,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form19;
-
+
///
/// txtAre8 控件。
///
@@ -785,7 +769,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre8;
-
+
///
/// Pnl9 控件。
///
@@ -794,7 +778,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl9;
-
+
///
/// Form26 控件。
///
@@ -803,7 +787,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form26;
-
+
///
/// gvMeasuringInspection 控件。
///
@@ -812,7 +796,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvMeasuringInspection;
-
+
///
/// TextBox14 控件。
///
@@ -821,7 +805,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox14;
-
+
///
/// Pnl10 控件。
///
@@ -830,7 +814,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl10;
-
+
///
/// Form27 控件。
///
@@ -839,7 +823,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form27;
-
+
///
/// gvTj 控件。
///
@@ -848,7 +832,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvTj;
-
+
///
/// GvSb 控件。
///
@@ -857,7 +841,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvSb;
-
+
///
/// GvGD 控件。
///
@@ -866,7 +850,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvGD;
-
+
///
/// GvDq 控件。
///
@@ -875,7 +859,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvDq;
-
+
///
/// GvYb 控件。
///
@@ -884,7 +868,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvYb;
-
+
///
/// GvFf 控件。
///
@@ -893,7 +877,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvFf;
-
+
///
/// GvXf 控件。
///
@@ -902,7 +886,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid GvXf;
-
+
///
/// gvInspectionDataInspection 控件。
///
@@ -911,7 +895,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvInspectionDataInspection;
-
+
///
/// TextBox15 控件。
///
@@ -920,7 +904,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox15;
-
+
///
/// Pnl11 控件。
///
@@ -929,7 +913,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl11;
-
+
///
/// Form28 控件。
///
@@ -938,7 +922,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form28;
-
+
///
/// gvPressureInspection 控件。
///
@@ -947,7 +931,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvPressureInspection;
-
+
///
/// TextBox16 控件。
///
@@ -956,7 +940,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox16;
-
+
///
/// Pnl12 控件。
///
@@ -965,7 +949,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl12;
-
+
///
/// Form29 控件。
///
@@ -974,7 +958,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form29;
-
+
///
/// gvPipingInspection 控件。
///
@@ -983,7 +967,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvPipingInspection;
-
+
///
/// TextBox17 控件。
///
@@ -992,7 +976,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox17;
-
+
///
/// TextBox18 控件。
///
@@ -1001,7 +985,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox18;
-
+
///
/// Pnl13 控件。
///
@@ -1010,7 +994,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl13;
-
+
///
/// Form30 控件。
///
@@ -1019,7 +1003,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form30;
-
+
///
/// gvSpecialInspection 控件。
///
@@ -1028,7 +1012,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvSpecialInspection;
-
+
///
/// TextBox19 控件。
///
@@ -1037,7 +1021,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox19;
-
+
///
/// TextBox20 控件。
///
@@ -1046,7 +1030,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox20;
-
+
///
/// Pnl14 控件。
///
@@ -1055,7 +1039,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Pnl14;
-
+
///
/// Form31 控件。
///
@@ -1064,7 +1048,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form31;
-
+
///
/// gvNcrManagementInspection 控件。
///
@@ -1073,7 +1057,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvNcrManagementInspection;
-
+
///
/// Panel21 控件。
///
@@ -1082,7 +1066,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel21;
-
+
///
/// Form20 控件。
///
@@ -1091,7 +1075,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form20;
-
+
///
/// gvQualityInspection 控件。
///
@@ -1100,7 +1084,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvQualityInspection;
-
+
///
/// TextBox11 控件。
///
@@ -1109,7 +1093,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox11;
-
+
///
/// Panel22 控件。
///
@@ -1118,7 +1102,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel22;
-
+
///
/// Form21 控件。
///
@@ -1127,7 +1111,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form21;
-
+
///
/// gvSpecialCheck 控件。
///
@@ -1136,7 +1120,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvSpecialCheck;
-
+
///
/// TextBox12 控件。
///
@@ -1145,7 +1129,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox12;
-
+
///
/// Panel23 控件。
///
@@ -1154,7 +1138,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel23;
-
+
///
/// Form22 控件。
///
@@ -1163,7 +1147,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form22;
-
+
///
/// gvFileReport 控件。
///
@@ -1172,7 +1156,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvFileReport;
-
+
///
/// Panel24 控件。
///
@@ -1181,7 +1165,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel24;
-
+
///
/// Panel25 控件。
///
@@ -1190,7 +1174,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel25;
-
+
///
/// Toolbar5 控件。
///
@@ -1199,7 +1183,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar5;
-
+
///
/// btnRowMaterialProblem 控件。
///
@@ -1208,7 +1192,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnRowMaterialProblem;
-
+
///
/// Form23 控件。
///
@@ -1217,7 +1201,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form23;
-
+
///
/// gvRowMaterialProblem 控件。
///
@@ -1226,7 +1210,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvRowMaterialProblem;
-
+
///
/// txtUnitId 控件。
///
@@ -1235,7 +1219,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtUnitId;
-
+
///
/// txtProblemDesrioption 控件。
///
@@ -1244,7 +1228,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProblemDesrioption;
-
+
///
/// txtTreatmentMeasures 控件。
///
@@ -1253,7 +1237,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTreatmentMeasures;
-
+
///
/// txtProcessingResults 控件。
///
@@ -1262,7 +1246,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProcessingResults;
-
+
///
/// txtRemark 控件。
///
@@ -1271,7 +1255,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemark;
-
+
///
/// Panel26 控件。
///
@@ -1280,7 +1264,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel26;
-
+
///
/// Toolbar6 控件。
///
@@ -1289,7 +1273,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar6;
-
+
///
/// btnAddConstructionProblems 控件。
///
@@ -1298,7 +1282,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnAddConstructionProblems;
-
+
///
/// Form24 控件。
///
@@ -1307,7 +1291,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form24;
-
+
///
/// gvConstructionProblems 控件。
///
@@ -1316,7 +1300,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvConstructionProblems;
-
+
///
/// drpUnitId 控件。
///
@@ -1325,7 +1309,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnitId;
-
+
///
/// txtProblemDesrioption2 控件。
///
@@ -1334,7 +1318,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProblemDesrioption2;
-
+
///
/// txtTreatmentMeasures2 控件。
///
@@ -1343,7 +1327,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTreatmentMeasures2;
-
+
///
/// txtProcessingResults2 控件。
///
@@ -1352,7 +1336,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProcessingResults2;
-
+
///
/// txtRemark2 控件。
///
@@ -1361,7 +1345,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemark2;
-
+
///
/// Panel27 控件。
///
@@ -1370,7 +1354,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel27;
-
+
///
/// Toolbar7 控件。
///
@@ -1379,7 +1363,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar7;
-
+
///
/// btnAddNextControl 控件。
///
@@ -1388,7 +1372,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnAddNextControl;
-
+
///
/// Form25 控件。
///
@@ -1397,7 +1381,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form25;
-
+
///
/// gvNextQualityControl 控件。
///
@@ -1406,7 +1390,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid gvNextQualityControl;
-
+
///
/// TextBox13 控件。
///
@@ -1415,7 +1399,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox TextBox13;
-
+
///
/// Panel3 控件。
///
@@ -1424,7 +1408,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel3;
-
+
///
/// Form3 控件。
///
@@ -1433,7 +1417,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form3;
-
+
///
/// txtAre20 控件。
///
@@ -1442,7 +1426,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre20;
-
+
///
/// Panel1 控件。
///
@@ -1451,7 +1435,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// Form2 控件。
///
@@ -1460,7 +1444,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form2;
-
+
///
/// txtAre21 控件。
///
@@ -1469,7 +1453,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre21;
-
+
///
/// Panel2 控件。
///
@@ -1478,7 +1462,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel2;
-
+
///
/// Form4 控件。
///
@@ -1487,7 +1471,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form4;
-
+
///
/// txtAre22 控件。
///
@@ -1496,7 +1480,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre22;
-
+
///
/// Toolbar1 控件。
///
@@ -1505,7 +1489,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// hdCheckControlCode 控件。
///
@@ -1514,7 +1498,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdCheckControlCode;
-
+
///
/// ToolbarFill1 控件。
///
@@ -1523,7 +1507,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// Button1 控件。
///
@@ -1532,7 +1516,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button1;
-
+
///
/// hdId 控件。
///
@@ -1541,7 +1525,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdId;
-
+
///
/// hdAttachUrl 控件。
///
@@ -1550,7 +1534,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdAttachUrl;
-
+
///
/// ValidationSummary1 控件。
///
@@ -1559,7 +1543,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
-
+
///
/// hidReportId 控件。
///