diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs index b8506108..8802e64d 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx.cs @@ -949,6 +949,38 @@ namespace FineUIPro.Web.CQMS.ManageReportNew //自动设置表格样式 table.AutoFit(AutoFitBehavior.FixedColumnWidths); } + else { + isYm = true; + numberIndex = 1; + whileIndex += 1; + table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, whileIndex, true); + //跳过页眉的表头 + while (isYm) + { + if (table.Range.Text.Substring(0, 2) != "序号") + { + whileIndex += 1; + table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, whileIndex, true); + } + else + { + isYm = false; + } + } + //创建合计 + Row rowhj = new Row(doc); + double numcount0 = table.FirstRow.Cells[0].CellFormat.Width; + double numcount1 = table.FirstRow.Cells[1].CellFormat.Width; + double numcount2 = table.FirstRow.Cells[2].CellFormat.Width; + double numcount3 = table.FirstRow.Cells[3].CellFormat.Width; + double numcount4 = table.FirstRow.Cells[4].CellFormat.Width; + double numcount = numcount0 + numcount1 + numcount2 + numcount3 + numcount4; + rowhj.Cells.Add(CreateCell("暂无数据", doc, numcount)); + table.Rows.Insert(numberIndex + 1, rowhj); + + //自动设置表格样式 + table.AutoFit(AutoFitBehavior.FixedColumnWidths); + } #endregion #region 7.3无损检测管理情况 @@ -1193,7 +1225,38 @@ namespace FineUIPro.Web.CQMS.ManageReportNew table.AutoFit(AutoFitBehavior.FixedColumnWidths); } else { + isYm = true; + numberIndex = 1; whileIndex += 1; + table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, whileIndex, true); + //跳过页眉的表头 + while (isYm) + { + if (table.Range.Text.Substring(0, 2) != "序号") + { + whileIndex += 1; + table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, whileIndex, true); + } + else + { + isYm = false; + } + } + //创建合计 + Row rowhj = new Row(doc); + double numcount0 = table.Rows[0].Cells[0].CellFormat.Width; + double numcount1 = table.Rows[0].Cells[1].CellFormat.Width; + double numcount2 = table.Rows[0].Cells[2].CellFormat.Width; + double numcount3 = table.Rows[0].Cells[3].CellFormat.Width; + double numcount4 = table.Rows[0].Cells[4].CellFormat.Width; + double numcount5 = table.Rows[0].Cells[5].CellFormat.Width; + double numcount6 = table.Rows[0].Cells[6].CellFormat.Width; + double numcount = numcount0 + numcount1 + numcount2 + numcount3 + numcount4 + numcount5 + numcount6; + rowhj.Cells.Add(CreateCell("暂无数据", doc, numcount)); + table.Rows.Insert(numberIndex + 1, rowhj); + + //自动设置表格样式 + table.AutoFit(AutoFitBehavior.FixedColumnWidths); } #endregion @@ -1252,6 +1315,39 @@ namespace FineUIPro.Web.CQMS.ManageReportNew //自动设置表格样式 table.AutoFit(AutoFitBehavior.FixedColumnWidths); } + else { + isYm = true; + numberIndex = 1; + whileIndex += 1; + table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, whileIndex, true); + //跳过页眉的表头 + while (isYm) + { + if (table.Range.Text.Substring(0, 2) != "序号") + { + whileIndex += 1; + table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, whileIndex, true); + } + else + { + isYm = false; + } + } + //创建合计 + Row rowhj = new Row(doc); + double numcount0 = table.Rows[0].Cells[0].CellFormat.Width; + double numcount1 = table.Rows[0].Cells[1].CellFormat.Width; + double numcount2 = table.Rows[0].Cells[2].CellFormat.Width; + double numcount3 = table.Rows[0].Cells[3].CellFormat.Width; + double numcount4 = table.Rows[0].Cells[4].CellFormat.Width; + double numcount5 = table.Rows[0].Cells[5].CellFormat.Width; + double numcount = numcount0 + numcount1 + numcount2 + numcount3 + numcount4 + numcount5; + rowhj.Cells.Add(CreateCell("暂无数据", doc, numcount)); + table.Rows.Insert(numberIndex + 1, rowhj); + + //自动设置表格样式 + table.AutoFit(AutoFitBehavior.FixedColumnWidths); + } #endregion diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx index 7b4bbc32..428b6f9f 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx @@ -2022,6 +2022,9 @@ + + + @@ -2048,4 +2051,18 @@ function onGrid10DataLoad(event) { this.mergeColumns(['CreateMan']); } + + var Window1ClientID = '<%= ContentPanel1.ClientID %>'; + function refresh() { + // 第一个参数: 遮罩层的透明度 + F(Window1ClientID).showLoading(0.8); + $('[id$="_Button5"]').click(); + + } + + function rehiden() { + F(Window1ClientID).hideLoading(); + } + + diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs index 438065e8..64b29ff4 100644 --- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs @@ -6,6 +6,7 @@ using System.Web.UI; using System.Web.UI.WebControls; using BLL; using Newtonsoft.Json.Linq; +using System.Threading; namespace FineUIPro.Web.CQMS.ManageReportNew { @@ -308,22 +309,28 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim()) && !string.IsNullOrEmpty(this.txtEndDate.Text.Trim())) { - if (Funs.GetNewDateTime(this.txtStartDate.Text.Trim()) > Funs.GetNewDateTime(this.txtEndDate.Text.Trim())) { Alert.ShowInTop("开始时间不能大于结束时间!", MessageBoxIcon.Warning); return; } - if (AddOrUpdate == "update") - { - lodAllGrid("1"); - } - else - { - lodAllGrid("0"); - } + PageContext.RegisterStartupScript("refresh();"); } } + + protected void btnLoad_Click(object sender, EventArgs e) { + if (AddOrUpdate == "update") + { + lodAllGrid("1"); + PageContext.RegisterStartupScript("rehiden();"); + } + else + { + lodAllGrid("0"); + PageContext.RegisterStartupScript("rehiden();"); + } + } + #endregion #region 本月质量目标管理情况 Grid1方法 diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs index 5f2f2fec..4a7ee283 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; - + /// /// hidWsjcgl 控件。 /// @@ -722,7 +724,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label hidWsjcgl; - + /// /// Panel20 控件。 /// @@ -731,7 +733,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel20; - + /// /// Form18 控件。 /// @@ -740,7 +742,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form18; - + /// /// Grid11 控件。 /// @@ -749,7 +751,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid11; - + /// /// TextBox6 控件。 /// @@ -758,7 +760,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox6; - + /// /// Form19 控件。 /// @@ -767,7 +769,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form19; - + /// /// txtAre8 控件。 /// @@ -776,7 +778,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea txtAre8; - + /// /// Pnl9 控件。 /// @@ -785,7 +787,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Pnl9; - + /// /// Form26 控件。 /// @@ -794,7 +796,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form26; - + /// /// gvMeasuringInspection 控件。 /// @@ -803,7 +805,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvMeasuringInspection; - + /// /// TextBox9 控件。 /// @@ -812,7 +814,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox9; - + /// /// Pnl10 控件。 /// @@ -821,7 +823,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Pnl10; - + /// /// Form27 控件。 /// @@ -830,7 +832,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form27; - + /// /// gvTj 控件。 /// @@ -839,7 +841,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvTj; - + /// /// GvSb 控件。 /// @@ -848,7 +850,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid GvSb; - + /// /// GvGD 控件。 /// @@ -857,7 +859,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid GvGD; - + /// /// GvDq 控件。 /// @@ -866,7 +868,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid GvDq; - + /// /// GvYb 控件。 /// @@ -875,7 +877,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid GvYb; - + /// /// GvFf 控件。 /// @@ -884,7 +886,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid GvFf; - + /// /// GvXf 控件。 /// @@ -893,7 +895,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid GvXf; - + /// /// gvInspectionDataInspection 控件。 /// @@ -902,7 +904,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvInspectionDataInspection; - + /// /// TextBox14 控件。 /// @@ -911,7 +913,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox14; - + /// /// Pnl11 控件。 /// @@ -920,7 +922,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Pnl11; - + /// /// Form28 控件。 /// @@ -929,7 +931,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form28; - + /// /// gvPressureInspection 控件。 /// @@ -938,7 +940,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvPressureInspection; - + /// /// TextBox15 控件。 /// @@ -947,7 +949,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox15; - + /// /// Pnl12 控件。 /// @@ -956,7 +958,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Pnl12; - + /// /// Form29 控件。 /// @@ -965,7 +967,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form29; - + /// /// gvPipingInspection 控件。 /// @@ -974,7 +976,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvPipingInspection; - + /// /// TextBox16 控件。 /// @@ -983,7 +985,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox16; - + /// /// TextBox17 控件。 /// @@ -992,7 +994,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox17; - + /// /// Pnl13 控件。 /// @@ -1001,7 +1003,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Pnl13; - + /// /// Form30 控件。 /// @@ -1010,7 +1012,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form30; - + /// /// gvSpecialInspection 控件。 /// @@ -1019,7 +1021,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvSpecialInspection; - + /// /// TextBox18 控件。 /// @@ -1028,7 +1030,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox18; - + /// /// Pnl14 控件。 /// @@ -1037,7 +1039,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Pnl14; - + /// /// Form31 控件。 /// @@ -1046,7 +1048,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form31; - + /// /// gvNcrManagementInspection 控件。 /// @@ -1055,7 +1057,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvNcrManagementInspection; - + /// /// Panel21 控件。 /// @@ -1064,7 +1066,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel21; - + /// /// Form20 控件。 /// @@ -1073,7 +1075,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form20; - + /// /// gvQualityInspection 控件。 /// @@ -1082,7 +1084,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvQualityInspection; - + /// /// TextBox11 控件。 /// @@ -1091,7 +1093,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox11; - + /// /// Panel22 控件。 /// @@ -1100,7 +1102,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel22; - + /// /// Form21 控件。 /// @@ -1109,7 +1111,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form21; - + /// /// gvSpecialCheck 控件。 /// @@ -1118,7 +1120,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvSpecialCheck; - + /// /// TextBox12 控件。 /// @@ -1127,7 +1129,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox12; - + /// /// Panel23 控件。 /// @@ -1136,7 +1138,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel23; - + /// /// Form22 控件。 /// @@ -1145,7 +1147,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form22; - + /// /// gvFileReport 控件。 /// @@ -1154,7 +1156,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvFileReport; - + /// /// Panel24 控件。 /// @@ -1163,7 +1165,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel24; - + /// /// Panel25 控件。 /// @@ -1172,7 +1174,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel25; - + /// /// Toolbar5 控件。 /// @@ -1181,7 +1183,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar5; - + /// /// btnRowMaterialProblem 控件。 /// @@ -1190,7 +1192,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnRowMaterialProblem; - + /// /// Form23 控件。 /// @@ -1199,7 +1201,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form23; - + /// /// gvRowMaterialProblem 控件。 /// @@ -1208,7 +1210,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvRowMaterialProblem; - + /// /// txtUnitId 控件。 /// @@ -1217,7 +1219,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtUnitId; - + /// /// txtProblemDesrioption 控件。 /// @@ -1226,7 +1228,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtProblemDesrioption; - + /// /// txtTreatmentMeasures 控件。 /// @@ -1235,7 +1237,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtTreatmentMeasures; - + /// /// txtProcessingResults 控件。 /// @@ -1244,7 +1246,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtProcessingResults; - + /// /// txtRemark 控件。 /// @@ -1253,7 +1255,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtRemark; - + /// /// Panel26 控件。 /// @@ -1262,7 +1264,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel26; - + /// /// Toolbar6 控件。 /// @@ -1271,7 +1273,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar6; - + /// /// btnAddConstructionProblems 控件。 /// @@ -1280,7 +1282,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnAddConstructionProblems; - + /// /// Form24 控件。 /// @@ -1289,7 +1291,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form24; - + /// /// gvConstructionProblems 控件。 /// @@ -1298,7 +1300,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvConstructionProblems; - + /// /// drpUnitId 控件。 /// @@ -1307,7 +1309,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpUnitId; - + /// /// txtProblemDesrioption2 控件。 /// @@ -1316,7 +1318,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtProblemDesrioption2; - + /// /// txtTreatmentMeasures2 控件。 /// @@ -1325,7 +1327,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtTreatmentMeasures2; - + /// /// txtProcessingResults2 控件。 /// @@ -1334,7 +1336,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtProcessingResults2; - + /// /// txtRemark2 控件。 /// @@ -1343,7 +1345,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtRemark2; - + /// /// Panel27 控件。 /// @@ -1352,7 +1354,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel27; - + /// /// Toolbar7 控件。 /// @@ -1361,7 +1363,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar7; - + /// /// btnAddNextControl 控件。 /// @@ -1370,7 +1372,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnAddNextControl; - + /// /// Form25 控件。 /// @@ -1379,7 +1381,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form25; - + /// /// gvNextQualityControl 控件。 /// @@ -1388,7 +1390,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid gvNextQualityControl; - + /// /// TextBox13 控件。 /// @@ -1397,7 +1399,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TextBox13; - + /// /// Panel3 控件。 /// @@ -1406,7 +1408,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel3; - + /// /// Form3 控件。 /// @@ -1415,7 +1417,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form3; - + /// /// txtAre20 控件。 /// @@ -1424,7 +1426,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea txtAre20; - + /// /// Panel1 控件。 /// @@ -1433,7 +1435,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// Form2 控件。 /// @@ -1442,7 +1444,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form2; - + /// /// txtAre21 控件。 /// @@ -1451,7 +1453,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea txtAre21; - + /// /// Panel2 控件。 /// @@ -1460,7 +1462,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel2; - + /// /// Form4 控件。 /// @@ -1469,7 +1471,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form4; - + /// /// txtAre22 控件。 /// @@ -1478,7 +1480,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea txtAre22; - + /// /// Panel28 控件。 /// @@ -1487,7 +1489,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel28; - + /// /// Form32 控件。 /// @@ -1496,7 +1498,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form32; - + /// /// imgPhoto 控件。 /// @@ -1505,7 +1507,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Image imgPhoto; - + /// /// imgPhoto2 控件。 /// @@ -1514,7 +1516,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Image imgPhoto2; - + /// /// Label7 控件。 /// @@ -1523,7 +1525,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label7; - + /// /// filePhoto 控件。 /// @@ -1532,7 +1534,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.FileUpload filePhoto; - + /// /// Label8 控件。 /// @@ -1541,7 +1543,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label8; - + /// /// filePhoto2 控件。 /// @@ -1550,7 +1552,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.FileUpload filePhoto2; - + /// /// Label9 控件。 /// @@ -1559,7 +1561,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label9; - + /// /// Label4 控件。 /// @@ -1568,7 +1570,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label4; - + /// /// txtPhotoContent1 控件。 /// @@ -1577,7 +1579,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPhotoContent1; - + /// /// Label5 控件。 /// @@ -1586,7 +1588,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label5; - + /// /// txtPhotoContent2 控件。 /// @@ -1595,7 +1597,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPhotoContent2; - + /// /// Label6 控件。 /// @@ -1604,7 +1606,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label6; - + /// /// imgPhoto3 控件。 /// @@ -1613,7 +1615,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Image imgPhoto3; - + /// /// imgPhoto4 控件。 /// @@ -1622,7 +1624,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Image imgPhoto4; - + /// /// Label10 控件。 /// @@ -1631,7 +1633,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label10; - + /// /// filePhoto3 控件。 /// @@ -1640,7 +1642,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.FileUpload filePhoto3; - + /// /// Label11 控件。 /// @@ -1649,7 +1651,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label11; - + /// /// filePhoto4 控件。 /// @@ -1658,7 +1660,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.FileUpload filePhoto4; - + /// /// Label12 控件。 /// @@ -1667,7 +1669,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label12; - + /// /// Label13 控件。 /// @@ -1676,7 +1678,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label13; - + /// /// txtPhotoContent3 控件。 /// @@ -1685,7 +1687,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPhotoContent3; - + /// /// Label14 控件。 /// @@ -1694,7 +1696,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label14; - + /// /// txtPhotoContent4 控件。 /// @@ -1703,7 +1705,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPhotoContent4; - + /// /// Label15 控件。 /// @@ -1712,7 +1714,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label15; - + /// /// imgPhoto5 控件。 /// @@ -1721,7 +1723,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Image imgPhoto5; - + /// /// imgPhoto6 控件。 /// @@ -1730,7 +1732,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Image imgPhoto6; - + /// /// Label16 控件。 /// @@ -1739,7 +1741,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label16; - + /// /// filePhoto5 控件。 /// @@ -1748,7 +1750,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.FileUpload filePhoto5; - + /// /// Label17 控件。 /// @@ -1757,7 +1759,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label17; - + /// /// filePhoto6 控件。 /// @@ -1766,7 +1768,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.FileUpload filePhoto6; - + /// /// Label18 控件。 /// @@ -1775,7 +1777,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label18; - + /// /// Label19 控件。 /// @@ -1784,7 +1786,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label19; - + /// /// txtPhotoContent5 控件。 /// @@ -1793,7 +1795,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPhotoContent5; - + /// /// Label20 控件。 /// @@ -1802,7 +1804,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label20; - + /// /// txtPhotoContent6 控件。 /// @@ -1811,7 +1813,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPhotoContent6; - + /// /// Label21 控件。 /// @@ -1820,7 +1822,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label21; - + /// /// Toolbar1 控件。 /// @@ -1829,7 +1831,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// hdCheckControlCode 控件。 /// @@ -1838,7 +1840,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.HiddenField hdCheckControlCode; - + /// /// ToolbarFill1 控件。 /// @@ -1847,7 +1849,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + /// /// Button1 控件。 /// @@ -1856,7 +1858,16 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button Button1; - + + /// + /// Button5 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button Button5; + /// /// hdId 控件。 /// @@ -1865,7 +1876,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.HiddenField hdId; - + /// /// hdAttachUrl 控件。 /// @@ -1874,7 +1885,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.HiddenField hdAttachUrl; - + /// /// ValidationSummary1 控件。 /// @@ -1883,7 +1894,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 e69de29b..5d41e68b 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -0,0 +1,136 @@ + +错误信息开始=====> +错误类型:SqlException +错误信息:过程或函数 'Sp_GJSX_getlist' 需要参数 '@ProjectId',但未提供该参数。 +错误堆栈: + 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) + 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) + 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) + 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() + 在 System.Data.SqlClient.SqlDataReader.get_MetaData() + 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted) + 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) + 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) + 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) + 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) + 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) + 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior) + 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) + 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior) + 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable) + 在 BLL.SQLHelper.GetDataTableRunProc(String storedProcName, SqlParameter[] parameters) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 276 + 在 FineUIPro.Web.PZHGL.GJSX.GJSXList.BindGrid() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\PZHGL\GJSX\GJSXList.aspx.cs:行号 60 + 在 FineUIPro.Web.PZHGL.GJSX.GJSXList.Page_Load(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\PZHGL\GJSX\GJSXList.aspx.cs:行号 35 + 在 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) +出错时间:04/22/2024 11:27:38 +出错文件:http://localhost:8579/PZHGL/GJSX/GJSXList.aspx +IP地址:::1 +操作人员:JT + +出错时间:04/22/2024 11:27:38 + + +错误信息开始=====> +错误类型: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 +出错时间:04/22/2024 13:27:34 +出错时间:04/22/2024 13:27:34 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:提供的 URI 方案“http”无效,应为“https”。 +参数名: via +错误堆栈: + 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.ChannelFactory`1.CreateChannel() + 在 System.ServiceModel.ClientBase`1.CreateChannel() + 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 在 System.ServiceModel.ClientBase`1.get_Channel() + 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2045 +出错时间:04/22/2024 13:27:34 +出错时间:04/22/2024 13:27:34 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:提供的 URI 方案“http”无效,应为“https”。 +参数名: via +错误堆栈: + 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.ChannelFactory`1.CreateChannel() + 在 System.ServiceModel.ClientBase`1.CreateChannel() + 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 在 System.ServiceModel.ClientBase`1.get_Channel() + 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1941 +出错时间:04/22/2024 13:27:34 +出错时间:04/22/2024 13:27:34 + + +错误信息开始=====> +错误类型:ArgumentException +错误信息:提供的 URI 方案“http”无效,应为“https”。 +参数名: via +错误堆栈: + 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 在 System.ServiceModel.ChannelFactory`1.CreateChannel() + 在 System.ServiceModel.ClientBase`1.CreateChannel() + 在 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 在 System.ServiceModel.ClientBase`1.get_Channel() + 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1883 +出错时间:04/22/2024 13:27:34 +出错时间:04/22/2024 13:27:34 + diff --git a/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc b/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc index d896d188..e84a84a9 100644 --- a/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc +++ b/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc @@ -1,6 +1,6 @@ PK -N@ docProps/PKN@xudocProps/app.xmlRMo0WrvBi0b".Gd9b5-ۭʿ_S͌=ϡ>m"/'4(jsXs1ϳieo .#|oo`C5,YȻ!Au80IIA^+|}@ tF3i-0?;>|5m: K948^FNqz 4G.I a-ȹmବkR4=Ϊz>_ M_U@U2O#o<(٣H'xj[mT)flt$ʹ^+1z|-lWIIY˧݋bZm*kVZS:oP{4PKN@ .+docProps/core.xml}N0w$!NKi41T  죵H6n L3oN"}}>'"XU)ТJ/<;'(kRYܔ--V,voJSpf+.npDV=H)zdug  -b:[φ,[W>Skw-Ŧثꅫj66/OOΚ[ @i"E3 ܁ \ю?($N2B0f4Jڇ{UÔƍ9nPKN@vldocProps/custom.xmlAo0KHHЀF,3s( +N@ docProps/PKN@xudocProps/app.xmlRMo0WrvBi0b".Gd9b5-ۭʿ_S͌=ϡ>m"/'4(jsXs1ϳieo .#|oo`C5,YȻ!Au80IIA^+|}@ tF3i-0?;>|5m: K948^FNqz 4G.I a-ȹmବkR4=Ϊz>_ M_U@U2O#o<(٣H'xj[mT)flt$ʹ^+1z|-lWIIY˧݋bZm*kVZS:oP{4PKN@]ƑdocProps/core.xml}N0w$!1%m41QR@,ȲED[ 1VkI1ws<BQ# !r.s RF4qj+UuJ2fmo!Al6QHmi$%4vfVԅ˛QSZ#t- |hx?L~X{.wKPKN@vldocProps/custom.xmlAo0KHHЀF,3s( ҖЪsj[[ ƺ$RJ"+)r}<3+zrTFI1c-#s\ j;|g3I8yPK N@word/PKN@nzword/styles.xml]r*)9%귖H"{S=P?\-@*C*JUr䴧67y !rT"o |6 @@ -26,94 +26,102 @@ lm ^ 3b'k+6(qjWU37@DM_!վ rq!(fQ|)?Q<|{՘IǗʇX4?[轜@m5M4T|_&~|m]4z)6Xcߗi|X)kE@yem}g_X5ܰ5v~+UQM֮g7qnTʼn4T0W{">ѕël"b`E $"L]UoMQo[)p?7:֛ly~JHrjoTRmWPKN@CbmB0word/settings.xml]sƵjJs;XQNh 'If|MnYInIY?x<ݼ|^zxs~~1>vw8\n/t{/3nqswv}g/^ܝ9^~wz{At{}?oq}/Oo]^]mN/9p//oOw咳חt幏W_ۻ]ލW|t^ ޞΏww|׽>\|M}vS;_[qy]=>^Ww(ޭOpxۻߝ|/Zݾ@ϮϾt{t9T_w=>ݿzw{{zwst^|XSEx^w:ްϏe}7^ݟ>=kǑ]x{yϧիs~|cşx{y֩p˻W>1zƾ9m79Ι^Ep:}> |./{V/8enϑyç,\ܾzsx{̏3~ߟώ/.Y-ˋ_"2?{a xˋK7>L{ŧ|_?>W=*2;q?Ϗpu9?K]Sˋ7fÏp\7ˇ÷S՛qGooa~y;r{<ﮎw;۟>د˛ v|Ƈ Gdbnh_?6_.rP C$ޟ}`,gsOӷ.ן~o7~ͷo|e7oWˇql_|YUʟ}TUk 485m_ρ$5K @24{k궙}u-_mm$}J߭9|6:-{𜡛>hߎz؆ck)xӦ^NüsߌHRiRQsvU8?ͦVsв}6u5Z~}v4n4vv)a wu=5{k![7>]/~_%)e.ko\Ӭh&xNkT](Y\W9X*xPMg4< P PWJVݺm3a5 9Љc?Hc=Ǧش;G&qG@+OuԤu;xj6+dlRh)-ĹF\|g sU0\#ͩ]C5Cs^IL~o+`uȒr!VZ6c[ydmտctvI~Mi'W7k'Wk.sU:\o:7c<[S4󦑤+4gC}k:3?[u}/l]|ٿ%{UZ2Ws_aBٱ)~l}}a|CUUW~sk yC2n]W}r0T#6$$v6!5y]7Cvs; s]wmSwu=̍[I֤n"uoMӺ[t!ɾP\ݤvykڅkߴ-ԝ{6`M, }3$A쬶O!_su۷Erkk`uUJXޮwXԬ Ww]n}u\_5ۥ4W)[?k -j} f4KmWۅ@^u6zs'Po?'u( Ͳi6A$ ;]pg_;ðjV3gg;VD+dll1C\>`=v[GǴjLٽzM^$[`L {nP2=ZO1O-ouמۭ8wAo<L>}c[0!}.U^9KOi4lﬥ/n fg1uvc\kr`]N)XokCt4rE\z]dL -Cskڙ태Vު!Ж[5{[v6Mmjiٛi9؛5״{ Ν{Oѝ(8,_@X ^hdLJS)!4kj&.]n'4uXnʔ\7ĸt5oi9$z*~%H!xA|]M3Yw}6ɄdT_#كQmpr H6 Hc:Қ=tRW |0 -|k_ `A-G2smv^|vizIWx HN(9=[ޤz>3J !Qj$]gh`l_~b4CGE@G: \6Ak6Қ`^w'x6A0[FԎqz. P2*zmi&N|guoVϟ+hQŦ~&W467y<2$CM_)|Kz>69M%TyFX6"iLHpulH6 -[=ﮫ6w dV=lMׁF8f:ɛĽXfOspCH<XO;.U[-g*AHV[j1l1u]-z=֜t[RPbعetIM~M˺UՒ:,O8([\DsZʺ[Y$щMQkn;0>];bE[|/tm`ّAFy#d7:-;D_6ڞؓ642Ч-op6~mhٱ"q4do)<$0| >o`pͰՂ g@(z TmמEћԲ||_!`jN۸md Gf28f]*\/ G|/5yn6]>` H{82g[\la_kJuX[;678Cr -CpM7޶nud\U4~ttF $ڽsfr,~6H2,m#kg>5c0@N@+Fph0-a{ OmgeU$H d(6ęIO2Ԝ~ BD3u:$5+ DG0D0;3ޙytQrيn.PY>3F0אc_&н AkJ`]싏-𲒯DZqD4Z+OGGvx9wZ8tTH;U~0)8OKlݿl ]Sl-%XѯGZ"5QKs^Y]$؍;ĽtMv NZ0:39> ^]*["a# z56_1ȭN$w=yS;5۲aôl| -|VS"ֵ #+~kgk=XT ]5g* ~#s:ޡ zz$DC=`Q7r_tފV ?'zHc0=0;Ֆ=5˂ fc%l@BDTG -"}w09 .*ap1b$@ĺȏaqZ 7~EmO?wӽׄ# XԫǢXsf*R86 {Oĥazp['%Ng5z|=:yqw}/1U"B -I|.  oT nOa !w[UE[=>WhǶr?ͨwO_2U;!eupv=_2r"B!?7|: -gkgV߿֯%X~KcmwL|ཙ_Q>{7{{'ڣv. -)U+ UhrMX-)TÂߦ#ȽD R%Q 2+A5T^uA>Li+|#[K|uIԎpNNx~ pv3 (k*@%$`fן"<]9gy#P/H&ԒFb|oT߸3:Y54ڙtM-?3'\OKt3[%*_<ǒMxl=-tt7J:b3sJZ:l|%*8^Gw4TxF 刵I,)>ڪճdzŸ^N1 ृP$B4v -4^;tlObgB}v8`=7e@U6BP,ұ! 8A2zj"ٽ~H<A2czPVl1C!du>A(N0&^}@ENG/ &3$e@Pz'`Ly,muHI {S݋$u;rxHJX:׌̑q{^A8ְy :6jVm[$J# 1 Cޱy(7 O B7dG_YFkǡ@e -|F @_%5\ *^<}"$P&> nTeT$F > mn[( 7];.yS{g3XWظu$_ܦ@)9kgŧف3Z`}]QVHh}&$uDF.],62oA$$#K\P|zX(}jtUq` pPu+Kc =G9nr}u-uH[iqU`MB!hz28S(THWHz)EQT#[q@`%vtJw1{!ɞBo:q@zn=E{cJ(G裦0w0/ϒU#^O;R!])dlHW)#YE#VtWAVFk8M9]S#@q5S1=~ L4^Cٽݑm8d+ucC$9ԃZy`rx\y=q$\r$H ? nBp rGŒSG]zw& -1Fred\$B@'Ž*gyTj>ˣR9<t*srf̎WTDkTצB1s#5]+8*ִ;}yZ&jja(D$UC@_uLk:KOG T-9W 2h ɴw냉]M -dp$ IpO0cEaS ɞ)yJţlA!л>4^zwk@H*Ok83Ra蹏R8b#?Hk0d_C)=SVk{n™9?Iaٵ?[tYdFpq ³ؔoW^Ydvvi^=Y'H76&^߈ޑd#K1P8_GБXHʎ @y)XjQi+FZڪi_PVɽi$LqX< -[|өʎBE0M=ͫ2'Ց=H]뙐L~c\9M,lvpPG=W{ Sѹ  O9ƛzQA^sZd,rS+zZ` Zi%ϡ/oOR{V~ZAF"湏$gM -6Y X`Pe"9ۅ=ՅBp¢q>VQל6 Cvz*J{M 鼃2ht$D5S2P~bnVX zaQtG;BO,ţ3bPwkJ! }J)D~M+ $ŀFկeʁ~I -K*ΨY3W5I  :!n/<쟴IuQG@9f.!3c0s4N~6, pGq.[sVSs==$3ws)&ua&l<~ dv <6)n w[IW ƹ u0ӌ(|-.Jm߂wM#3!VQT_2";v<35)Y2 9={d8}x{_3 g8t13^-9->t\7WvvʼP^ĨcaX|Fa. 3'n'twhļsS 弮LKsTx .IXX( -9q -u ,X}h}A!R}:΂}:'ϡ xǼᣦ_hȕ;(]7tlTxDs+{Hx Nչ7:x͵Ɔ$`kF7Hsl.@A -#qp fJ` ARʭ$p#sNFs X{6RH3JOwI@Bݻ^Kkxtx| xkV Ơ U_ ;ε֣|`F)w4Ђ4HV.ХyԐXعuJ;Y9WMl,J69Q,Et ?ؑzڅ ^d?أ_ ԱMrӝBPwK}½S*Iw|@܍? 2NOg6G@7!deA)7` Q# NZ0s;/snS Y:jk/8{LkHɿ@_([WX,\B+?] -|G igI :Y/$+ֆ\Q caϻ(+ѱiw^e]mszH&B$w"=$8=,M IlA]_!˰;.`# |! ޮ`f B窗 ,zm8g*6({^6_~΁ݲ{͵ \1Z6Ȏ\l{8xJۀa1x|#JiZ5H}s(ܯ!\C +5P -Wڲؠ6 (NjABJ$M\`CW:s?hssRQ]hg_,DnWG=(sM&`\R789:;yIQ& K 0kFGC -"V%ىVH.BӘ} d-U$)6y<~%Y"+3PcŎ?W!y *:5(aZ[^'sIe#?b_ fky7 83^ Ip:gl(`\еN\7NkP1|NW?ia?5!Kɸ3cHxHVIvV'$*$(g -IP Iѯ]oHIGKCFxL7MZ׽l"S/cLF=~EЙ#IF;'gp! j @_~# i5[ĴrX 4X]I2 ;@ ~~7o, `0A\/ga>5&G~h_C44bͫo2Ee'G]_,VF䳐&$[@ /G'@Z\I.X6ot#6WHn|S_!xęD~=];0/#-ĉ|a3X6e:|ݛ2H2_Etep 8*P;>/0[Lq5Hps-}`5@e wcĚgEljKdk^$;'LA`[ ͐һ!kSE~7(Pb 8 s`3G=̞G1,AMa BK]*<#>-]>>~_{+t~az g$^uv y7jyBRP(n}3'5>;{ᎵzT!nlBɄ?l $A AX$GhYT[Ox1[]ʚulThi-bRz#7|&?4 u:j$ejtMLP\Ew<|{ԭ'!G[7zzbqHz{`s[ nZ߭O=k2^ 6*R+X?H{†j ߔ4o+sqS!ŸCRO Sk -بwF$G74ϊl 읍 uԑc8 }6AiLD=kpMP in8Fzϖo @'b_{'̧WUS@esyoХ;^Bz]w0nV%@>-gh؉;" 0f,*@:oe:XV5YA h^Dž(k-cRUQ).f -مDJkҐBGٟV`Fxx;(xkD28 @~:j$q6Q:Hv<.mEBDWk0=潃re9rEC$ytA֗mM >yfF98fWg ͑7 NE),>3wa<} -O{GMwd󺶝 -vږ;gvJ ,Egs3d(JCl}! Z}lCq}hxFk[Hs"O -gEӝX;w f0@oҜ!+QHkGVЩG7݀g7%RhˆQ.N\{Z5ӎŞcC8Ld]m$`umLB3#0^2U}M'T<0(qll kΙMdhPDfm 1wzH2;*M_8d s8,X[Gm_N ͶiG캙~uܔ^> l~ 9K>=Z}[ؙL}R9 -.T0:e*FۺYrQ pUG$s0i-q1 #]SFG=i&\x۸eL-~ꈭkg*Z ߭ƒ5 -y.mC(?4 -]Z VLm@{gfIƥ.j_+q@ؖ~jj|xrP0tF,CǾJYsQ/Is9M>}gFN#iHޖO!H+P7EWm[ v0nr [@9;hkIf.cnRVe H&AUɬh¦t5B҈l -H8A@7Á ?(kL]q̯:͚-;VϿ#zBBzB * ᪴Qt٨wu)c Gҥ:Rꉳn) +q#࿌D-(|α6A4aDicO@Z8Orr)cR蟯&m}Pulz4~Y{xA9-/}ӬݻLwA~԰u[3|SbӜeV(KEIj.>֛ly~JHrjoTRmWPKN@BP1word/settings.xml]Ƒ7b{2Y'`kxFC>Mүߧ٢>Xߘ: +x?o}<]n_=W=v8]^~_???^OW8=?/3nq{^xqwxsp}qs8gwWW?h*=xӫϷ/?ⳛ\=]q<|xsx1n^{xŷO7?{oC]gu?Η?]_^tq\?onT~V\^W4\/_+p~,tÇ}xwۏW>]Ͽ=YX?N7>|w<_YUE\<竻wׇr޳W;oU?k^m|.ߞ7xq,{OO-̂}~Ev<oY^w_=(}p|͞(w8w]qz]W,˫˛û_t2|xq˹ xϫ˟~}"nO/|/{e$w,~:sp}8~ŗ>.?={Wo?⻻۹_WKͷWo]F?}͌w$q;wW|<|﯏w;۟>/Kv|3qC=kx1i/Nޟ~MO'[+jqI|xiQ;YdE 7'??^?NW_|s~o}7o_~?Eo7b|z8/YUʟ}TUk 485m_ρ$5K @24{k궙}u-_mGm$}J߭9|6:-{𜡛>j_z؆ck)xӦ^NüsAӥ=jӤ<`U|<~5jH7N[͋A˺9h״kHiӸkwK[Kڡ˾K!` +6߭\Tn\wݾ~}7[_ѾIcpM>}>9}ή)R=tdq]Nj`%9C5KC}Ґ#8|C5>;C]+q:[]GwѿϐRa +v0@'UdJW4zL:oc+~8đISVUS[Զ_qJMt}sx}z}/XOs;Ws4vv23Yz $}3ݖ _G!K:XXik mmϒYW>k׏~ӵ%}5Uku\_\[5Wr5>-oƠF VF @plju]6Ng +['UM t^͵ ez +ӦuNcssgUVWmgdv[W{^[]a>G2l:HVHR3Zm$ɽC$kn^w}] Iv" RgF?iz-IWUԵ EޮuIC} I֤ ,i[[ ; m4:h>YfHr$Ym߮۾ ([\뭫WbtvusfMX=rKuY|}.uѿB?La]}]coYg'U덀L0^o.F4}0a tP5~C;?1z9aDA]mhO "YS\ݡu<-Uc_>;c!ذt&Z!cg&F` .Zlf=:%UcUSlj"{gbM$sSׅzfxny`U _UnĹ Ǽf|s`ۂ tY},M쬥Yvf[}g-~ItK0;K ew>X&ЖkzϤpNz[[,}Ր|(W:4c:$cR7*VG\ΜnTV ܪ1sHPނqllü\UL{ULެ9݃wm`u{B>6,F9dlBx$gR*e?LAdYSWG4q6l7u;y䧩ƲuS!ƥspM!S,A sma̺뛶 N&$ۤmkUDgD>\@m tkڿWHצv>o]'rfHH~ l99LhӷsзkvHtO}Hξc(DֿviIU&Փ𑬞!$P> o߇ 9=R#:>C[c:,>j<0>az %\֌z[?yƳ +΅߂U5v|ֻvHFV# oO3aw:=kLk|uWL~L^ACru-65&?R3j!u>ɓA @oWM#X!JMЭNem5eIs}J5+/_k}ݬL5\FZ*اkV,._+)=+يVw:49k`?95ʵ\u!qgd +t|n)ܑlQA6i((3H6DzIkgB˯cCWyw]^ fk`޶4ҖFq55ׁM|%=֘gz4{}lDQfzItYq^uby$Yduk%1vQղݳ}mI+%) mM^FWH:Y۴+[U-Ck59 J4>%AA{,ս#Z$u BDh7BvrP -ї'{#@}/iK["\?'2xہ}Z9yvHvA> -p +Ͻ'# ! _;Fۀ5\3l~f $r}:U['bѮavf; WȄ9o;Ǻc6n["="Ñで k> _KM^Dggi9[5}j4.6q^5Da0+[Rzٵ+n~2zv,N1s}{p2{οVh \Ӎ[n}n9v! 9?wtH$6OtKvkcf;5imcçjNJ3PH?;ĊZϣ#]"&乶p.%6Y_LH6; +=k5uhHظ؁s]EO׮Pv<ɑy_F+c6@H_ |%w5s:;r,/ꃹm^sd,zl>}M[9Gtx´<ǂdfjt c%Nlo\3{TKA$AK=p:A?1 ? Tt +N#s8ul=dsfS6޳}Ų*$d}2Md wF$ݧwHjNGZE_!T"{{t̚fBn"b#xO"̿ z<:(WdlE7~c#kHoȱxg/ޅݠ5sKFWuxY +"`juȸzNC[-'X# +;;ZZ]NM:j*q?%_nk6↮)d_\SW-k[Wrn,ى.ASW^p:{'-րn`|UQv_Q.-l ůAGSgV'컞֩ǀYmYְaZ6vwU>}[SQ)tݍ|[v5Գ5} fwv,AQ`v s.ͳ?LdUP=x QǡJH}(9_/:oňy+etM\s=1j˞m Ze3K W"v#I >uK;gQ0J8nr1HW b] \8byw +"6Czǻ`U^k,cv,9f{g^N{'Rj0=ܓpN3H =\>~͸a*!@MɤlFh_7 Yp'0z-ë{4Hc[VTfT'/y*ԝ: Y8_;/^]@zgnﳵYxs t`uGűl6 };&ǵ/(뽛AF`gQu;\]`Ǫ*4ZOHv&MEyVH(%/\I2KECB)W> E0~N !WKaoPh^NLn _ccq* PH`%Ӻj@8'y'@ρCυBcQPh# +$iju&1(zG*!In!Y_9} V14BX4.HvQ1b/GOٙF|o~KSZi`LPH&쟙`'٥Vciim&9E{a&ϙ/cI EH<L +R}oRo֛Wa%x1͙yt%]PK 6uHv;kU<#rZtliQД y}xpfmY_fGP/'mA](L!N;d}|Z|qf@Ew:6P'3>;X2*[!uO|ؐq`GG g=5^P${L~ vb1u(+ptF:  '@/ >iƗqi2 }(=d<6:{ɽnwh̩EݺZEOGܒat.j>slul7o2{*_# tJ67-a.\sD_o+`j>V`x#.Xx7z - F@=fCi59[gplR0y Ims $GJX60}6,Vǡ {T" ;E)ε?u9Y'5_>?csaD9bX6ڀIU+.3 W/MKTWz r֠oO%F(>~{,>5T{f|0Q8tvsGq잣7>H : bۭ״Ȫ0`vvԂ?Z4=FMAzdA$+$(ЭXk~:; +ʽdc}|7w8 v=@Hm=1%#QQS;gIGNzdA2x|둬"|o +:+ +c5n|vpXlKT)pX 8К)dfs? Iq&yT!Y킇6uzFɺ1|`FDA\<-DGGV0t{r"ȪsT:&5@%̧GIP4dڻD.&RE2 drl8dž$8'"0 )dI@EOPӔ"tЕb@#h2@K@ars %`AgTęt+ GltqO$ú#o3y`p1x9'?gA֣8PjpJ9`+9SF왻w\v `캿0 b2QՉt ʔ|7^qޭ$+|\:IiFic>[S6\o;&N^+d\*\/qds;x,hr䎿g|vf2>H<= /G3Ls/DSvn: L +WK;;Be^(R b10 ,>0 {gx4b^9G)_Hr^AFfUI}rKTԤ`,,rm˸e: +~}~,>j4֠Id>}g>֓ЂecQ/4 +ʝK.:6b<9ԽC$Nre<N_`a~aeH +`cC5#]9nbkD}s83M%\{ R)MV9t'y#H|p^)$i'?\绿$K gNN5 <:h~<<5A_c텪HޯZli >A0;huJ$g{aPm{4-t$>s m9א`^SυUgt+mYlP`vJ zG!a% Dk0ˡ+ +f99.4߳WPz"+ģ`v .M_oy{N EX޼Rp$(ask@5#!tD+a$g\i>jx^yBw*Z<Z au#킙9/C ڑ0H:ҜѱT +|]nMya'R.~#DtnuB8sW)S\WQvHVю-\L}}B_ԃxJQHڙMun@r Gb{J+|Sj< a +| 0l{Gӭla@ҹ$Xݟ[Ƀ@}5eB$83S~6fU0`i.Zlk'h}'V^ KMlu+ %Gd`U1$A<$W|݋$;YJu`FIU$ʄ$d}7$|pNKp#I%p! ^&it˛&C^6}PAq1`i&#?"]TGБL$#35ń t/Gp д-bZ9 +i ĮO p?D0 YV.3 +zX0H@h?G4گƿ\@72#ɮsQj+# YH -b oxͣyzZ-.`$,7:l +~Pp7@H$" j28I}-QPZ&I$9>@R 2׻QE1 bͳ"ym6g%Ppr25VAp& }-\tOfPuݐx恁5)"M1S̹ 0ۙȣHf#قݘS Ew_!b ʥ.u{y ^C.N} Xv:۰ys3sy/:n;<^ )(O~>]psE=dP6XdB՟i BKo,#,ͭ ӭ.e:6*\Slsp1)>LH]O?525| J G;Fa=٣=F=[QHA$ V=m0-T7{Vu'5BO/))F+t(n9 SBU)c㫞?H0n67~9 IvutѨŎf4( ,^W@ +kCCQmciϡZ?%/lypƳ7ؼ&%a3=T1~nol s3^jny`u`=B2Oǿ{[HVGM ;# үe`N@sJaC HoJOcPw!)f)5XSl?G##fgE6zFW :~s 1 WX̾^AsM4&5&v4{7{o{g7xZ Q+Ϫ)Xt9 + +҂zv/GQ!Y.;7+ i|3Ps ĝzv3p 7CݲnrB,w_ 4/BBS NG_1*d[Bu"[iHh!#G +Z0r_罣&vH;Dy]NG W\m˝ZO3C;H%@3J׹v2n! H6Ͼx >8T4kr<#5٭hBAoc$9'"wN,;d +N3} G iJp퐕k#Dsk5MgdOW^?=:ЏK_7r 8G&9}lp9a/[Y[C[C#n3 aDF@(xda'UvibAO]M!&2ou6IRwkL/*Ծ *S`8@65̦TFi@JZ l6ׅU=Z$^ʦK tR2rfEAO'rf[#|vL?LCtDnV/xmrW6%yPZLO-SL˾)_trt2BuӉXm]IԬ]*գ@9n`ˌ閸텑X׮)\ej##ힴ^NVm2t}Zy?u53RyĆVELcI<ȶJ!OVS.Z_z{ `н سc3yڤ~RW8dlKFU>p<9(z# lc!c_ae 椹&x>3RZ _b yz$@Z\oL$k"+f;XUCY-d ByZ5tւW$3]17ljI iyZ$NMdV4aSf !]V| iDR6$v I eThxC8f͖+ o#zBBzB * ᪴Qt٨wu)c Gҥ:Rꉳn) 9֮є*r{/ui'4`$kCbS |he gAWAbcO P#V@qn+"ռ[]"! *zaWI DO;H +5ZMsZ>*W| 9`0; tƤF[.9}:i{Fi.ʐETB+'@Ǡ9]~ %ir931lv `bބ`3lAvISXO` ں9r k': 2r #mh"ni}@-ؙՠWr6e~C)5DB?_! {ҚV -&EigHMa@r{v. R$3T ,C!Ds;V -V 5EdHL-b;N jA{l7=m#t\ IF~a7%@NO - -1tD# gk8z#R .+.MBАpI$FPMir$wEt -Ug=4Yzh,~Vk%z+~bvANy}qc94REs~rf,zI>wO!1 *VԃUVș|>-`56j Z>\S֜ 9@+E^Q@r`lD_^>0l&Z8 iȩ]J5>OmZVr/er2ᶖB0?p bn%b6&PTٮQs\( -Y-Rf:%d nC䔼F[P^+@@F2BFa'VIzSMdhиXi6k$xmJ ]>,$zF$6[N$[ߒmY($ N[pBf !p+M7smIOdFO7eN4ubD{g$_`pۡѸi]ENWjʛNTaeeG3h޴٢%V )Fӳfgibfȅuަ~P%PVIN?pn]naI5z-~Yj,4 QƏc7òа}#_~̐w&YLV`A٣+$)ަ>R8Z[|@rty*QCtr7M [YoɖbnK1+&[Uoջ#mvjnNz*mn`ɡ3$V1j L ڲ *9Y9,׆d%D(m &KԘcd$T-NI$C !_cX"~ځ9$]^coJNvI!;B #|@JھҔ:>b -1+F8RE\BS@WMzٰ]3Y.s'$60 8ɻ8#@ץkЊpRi,*k -(8b`!"w#XM) /GtPj}SGRkk?Dk0 [BGB_k łDBGA欈q.#Z>sꊧ \?:&b*=,MLH0V{S,a%("J9TTPDJOY[;\!\5:и}8,R  -}1ϰ=E5G M]BFgт ތ9+eRlz2a.ƥ^RG7 \%}0)WvfM5fEq4]WBGL{ӕ1dXu;2HyJ&|05Ӟ5!g㡃c)P7͘?racZ\vbl( T=u$Nڗ[U%[8Ngo|6a"ea -G O[X($9K {-5Vl!!gg"``-_™ʽIy z aRSƃn^D LmNW>pac`()t `Eց66E26egv0U@ʭNFP8޴^=)z^K(V! :'lkj! D9`w3 8eJgewU]p`qD’_S"5:TWqWZJD'"A/7ܒޤ^FiBdp"5J%yA$`_⒒ [kA{!6 t$jcw.lr]Z!W.ޔB:+,Ե/QG -cf.w!nCX,rzFR[1upk>eTWX 5a]\fHVHZk{9i Op 1DA20=E*j`F$.ĈsD[r e3@*[״t1mY%1 ,я$akPv͂KkI8`uœ)9HFjc'+5OJF]GkciEM\)UEV[h?Nn6Եax7])m0M ҽ0A˙nwR#YD콖q ..jfkC0m#4ZѻVXLWM<,K4^C0\C;%lJ*Ѯ𡹊Jz7) - iE5='Ou80`L]rt=BU%L!xI@:dߛAfKQ5xzBI uol`/$M$TD$3qY1(%@a5RIiV0bdJXV-S~6=gtl#VE+mȫ"qX @#9.jn`i YJpay#ֱL2Z$3CʢamE>5 G ="wBPvaVg+{{SVb[2op n$1""(z5$cC%sdٮ#P\s`K_.C`UrxpBBQáV4DU\kت[$ 3Il$tUBGoρO D_*%"`dl+y&!~xڗ͈H75`TҌ@cЄWȨ3Qʲ<v:bwRFIee s]mJuZa)7%oVk^d@v~}v}ۧgg?^>_^}_ow}͓W{~ţpuΟJm>~W?a*n׋xwo˛ ~Qq_]w߽zp/Dn.rϟ7?{8GǛ/9u?-=oo~z{,>]]/IOpqtջ# t~ͫݽ9=Y?<{}yuu~:ݾ|?=oO??ʟ>;~n?ҧw,YwPKN@I Bword/footnotes.xmln0 ,-#N 66 DA'ٖAЏ]%?Iۻ?MLDyI + J>@Ǡ9]~ %ir931lv `bބ`3lAvISXO` ں9r k': 2r #mh"ni}@-ؙՠWr6e~C)5DBBb5-aLN~6ϐٛ€b]H0d#!g$xYBDv2j +ɐ[huwZԾؾ(n&z+Fi@6oJ& ,ڟbFξp F ]W5]z!"^I +eH +x;hB'"26O5~HQpDm#94D*(@IdQ4 @w<:̠ 7I®~d]$8`>MRznUPi{БL _F@ԿVWYOd7Ŷ|#]Q'ޖ YJ%JwlvwڧqiǢw#l%_>$-/AF_wx.Mf[ ҉G>Qk+eIB]h".sPAJUVy6B\zi9p%J,bxNNgy}c;t"RsΗNr$N3Lx1\ a,V7VɦvZbDrlԘ44Dn!!+917sAVɢreآ0 ]~{/0^SBWT1UC”j}0ڼReM%P +dЖ1?бp@b%b':'Uٮs,) +Ⱥ-xSi:Ԩv% nCLF [De+@.F 3F-V +HSgdQjpo#6k$sƖ]r,%`zF$*71[Q$[ߒm.$+ Npf#!p, +MQɛmIʳOdF*S7clNآDi{gemp<i]_N^wʛNgertyG;7h޴ڢ% )Ffgiof\Ʌަ.Q%,VFJN?pwn}5Yz.[j=-i6RƜ7&1Dzа}#_N̐z)Y`[+)~>"9][@BuZ|*DRwr7N aYɖ2nK+I([Uջ#\nvjn8Nzjpn ɮ`:פ\1j f ڲ%9Y@, d?D( #&K8 +cxe$W-}$ !c("۵asVI"vޔ-&|xfw= +hAF,d}B)u}(XźBVpO@_;Țij@fӳ,|OI@i UB)>u  -H"eÀp + +5rt(5bv2! XMAgpX)9VSBy%+vF:dk>WTZ?]ᓅlb޸8Sa6,WdFBfV<[p?6`#@hv,:Io" [!D&37N2;/oOe#ı@KĝyȠ, /7#DOâH@X ,/BMLɋaq"YlH) r2[T-S1h} +ӢH`\O7sJ)iVo c؞Dm + lQE +&.6 ,J=I֚%o(ڿε#bkgQ5@X~`PogVh59Ւv0}gfqW+Oź-h&og=YB-gcɯt]kiFV ;%е(uܭ!Z4VNL)(8fôv8{v5 YH58fRԍx{3 F47&pdT\c=*݈moپ # |C-:5No3* E+,`Ua%NY6E[BUQrfk5Y?A{c|8/3!d"uͫVEۂ$˒bx`+1QɹZxI`-}*e5x(`f J' *t/)y ΫHF*m'_53 ўC+!9rpkT ~iX-֙&b%E 􅳹Jcݾ)}Jτi7o'pT(T!lIPdp[&.|9 ] ֺ``* +|GF0Rg\ ,cx % Z/MnHH5!5]BBv .rj%ZNwŜPhQaosD^sF4U+gz k#]U´:ī(XԶ WՉTDh{i sa{KFcCiO@r3d.1d,񍜍\eԐ)*d&.67+]A yVTpɼXs&II`k-z dkpX58էԲ#adE!;0ʊ= +)GYE@ c+1TALC c͂k UT/cC%sdٮ#PxK.C3bUNsXpBB~QݡV4DU\k?[<$;! 3l@$tUTBnoρhO{lJѭxU +*%a#`dl+4|&!}蟼 ۗ豭7?`Tߌ1@}ҶdȨ32Cv:Ӱ*zRIe rz]Zc0NmJEZ h)7%Vke@Ǡ7~p/g7/?\zn^Ͼ/ʷyru$}|s:.'g= +np$xP7//㛇^q8Sq^O8<޿{|ڇ緗G}W7O߽U?/>Mχo72?>~o?W~:z/^^\(}qx֯__}._w棬y_E?x'~k~k?=}[z-xY~s>}8^7?=N/,_ݑpx}ς<|ó7W?o?vw>}w,YAtG|XP߿|gOw#$>(??/ʃN/.o~=amxNjYD_;_,?_PKN@I Bword/footnotes.xmln0 ,-#N 66 DA'ٖAЏ]%?Iۻ?MLDyI m%Y$+щtiJ$!M-Qc*06aTp@mS C]sʰ]ug@1>=GbЈK(&} ֤Xܩ+bo=yvv1PNbb4ޢ^dq! &mkz M՜{i>&J:^K(hTYěR~M8ߊ](F58vC՗%D \NޗY򛅒Z9 ֕ L w ic2 48hyd~e1о 0C1A{XjԣM_h8Hx`Sr*Mlݕ0X0O*I֚a&,2F#2k { q@fMGo@wG[4h$vR7By }XPKN@dCuword/header1.xmlTێ }`cMJݨվU&1Z``;8W^^ ϹxVY/`jRɄH__I3 S`DMv“ŗX0*Z^6[Qy+4܁M9h Fp ,bY\xT̓64 >.ݲ RɰCvtTAIP f.^GwZ00R'j[i6>QRD]oX# d4 yH=VIJ8gP1ixͤ`>73%gs{9'3 Ag'?V~0HNxu "րckby&K B8)b3ӯ$txnPxkpŒ\ZI\&Ph㯴`%LRN|Kz2ćV#8ԡﱫ߉irLב1hDלI0+Iqӻiy2Pn`5C eld -0h682p6{HN/"IV!"x4] ZgK˳i,YMDxs4ޮ[|PKN@Aknd<oword/header2.xml=َu!r_."5}wpDHn KbF0qLoENvu[}oߙi"SOU}ӥ\ٲCR`@ECRu^łuW ]d;zdn'\8Lxfpmlne; <#Xc X>L0}mCh$d& -D7Ӟ9q+vrc'݊lw:ÒF0@'&^]Q}8bW6g PS+P}0 ߏ04>6sae ݱ1o -Xo7Gϯi -2y 6^o T)Aq3,i/\a -HGWU ЃV4S@\' R6NG`yLK -:b3 jx5TDvK\k#4-泖]Xh_ީF켾bhaqM3{ɏ0iس0ta -0%a)6BoG#Fd7aB`V~\I"\c4hf³x -v?P`fa"u^F+H-0_'3!V(bւ:}xг2{t+}HMx},s CD]|PEXX]w'W t v6,rRn@x;_;+,Ûȼ| -n:&UTX Y[ %6Uv,'r6,jҐO,GjG|0Mvr2X = -ۨThx*t-Yh#[U#0@3%|_CG/7a0Dpz/%zA M`P:7'Vg:]#~2#<f˩xE˗PUAe47L[þb|a! -]Q9[Xn7 DͯL{?;j!*Yvk ` [e?{+dwow7?_2L>d` /c6 COxǩa0ԽE'}fPۼ෌tlNīL#gK~~iדTu#g>7_ߛ_1?2>1/ǔh__=c'C(@2 =t)e0_Z.h?{d;lh%˭Fw,!a8>R \ *¿~t;O #0ۧwp:o:xʅ/1-rcK5!E_>F/w9 Ž׻ʰ2媛" +t|8k~8/\#=!:W Y ->{cGlۙ,ⳕo5~b^}hڱ5Ma>3=;S~=4/yc1 [>Q38HX9*%} :^62ܾ@߾K>/B` hv>˿٧v@[owQ_IH2",# q$^(fo|.mro7zP׆gcƔCh W}Z2Yc `nM%4C:vs1#jGgOĽV,"Yb8r5E#;rwl$'?<4dgd2qh6@1EqN 2tM48*8 )7 =Ě Q%JM l D4_{t`CXGu'A' -_b ԉ8Fes9e#p !Yg`bWat}e%ƍt,fWmJ1}X7(&J9׷5"$l0d۹;ektl5{UcMDc"Y#Ec^49 ADX׉i%V)f^5H4ղYJk4X:-WDŨZR)VqLFm˰&}ZfUktS:Lgfj^ IVP"BWF1< -Ԗc$jn-GfS+%53Zq3KSt -35Kz^xi._,ս$% j׭LH9kKU&*W) !PƼF4V[(\EKRrDIʦ2ˣB9vڊ1ɦ@CKRôs,Ԓ-u2WfE(L\"Se^׹X.*?TBz7TXF5K\V {{x' LH@Das A,7a<14̚| ~&n8z#69d$?fҳ3l -Sdv E`D:bHl(:|țD"Wpu"7%Foc7ёOzPK +0h682p6{HN/"IV!"x4] ZgK˳i,YMDxs4ޮ[|PKN@Ps@nword/header2.xml=َu!r_."5}w0IM$EJz7lg%#~8 `& 7sg<SEjV=-:Tѧ?^jj-[1 d]4$E_;U,^xJ?~񩗘HVjv3qADxa#hh1)Lx%4Iʴ Qmh*.o7 S֡aic11la^twAQgq\Xzbӡ]Pߡ׶uk'k qɺ[$,Y>=Q0 + 8v=7WSy&jo7 mb!4՟=VoBs`>]8nsWMR쭞[C$g s7S0h}[C/p[ޔw1v -;yo<~#Ar}TGJ&& +cݰxAy(6$Ė#h9+Ux WAAbSރ2:AtV&. uNj&@"O1{ P :1ЭbHɋ鷤#uÁ|hmKOܴۊ$m@3hј݇T&0^PXH)KYڡ1%jc t<ӓMշy]W,EBT4@J<pTJ#9*fh8}БRSͅԉwivLΖVfaC232Ύ u^olDueo+/ +0E#!3i.V D ω[L;Vdk 6<4sġ88,E}޷>h`Մ^!`XpG~LE(Ā_ +k y[TxϾ?x~MVɻ z[@mN!@ zMgM{ +3f&x]V@Rl%?J`PL4\7>]iq:/@-Eg_bT`WUëG&*ܵXZ+Ll5 :BNm4eC T+n +#PM~,߄I Ş0S@!, DKz;y4E'  +"NB:YF3śU+ `ހ3 0z]%@m$o>OW_? DAÃݗ]7^FjcM""?V,º:?xJߦ[p?t` "p[£=߁]eD%[ Pt{1AU̬'uJȚx*H- µcɎ8A#)'6`Q6|b94T<'p4lZGMOnF}Wb@}WAm,pDS + +>Ɍ.kWTPuhg?2| !<@F{9.-[m ollҹa?>a |!w 803\NU;],-_&8@ + +0 XƷx,ƠaJܲm;|}{}V +D +pa _~ǯFMunL6UsnOֻ/>׿_Sgݓ U1e$xI\V85 ݜ,<sW =ivx޶ߖ`lO֯:-zrnDӣqg{˿t+0B>etCc>T-~W 6 +L~g8l~e']Jay:rWKmZG#tl MXi4H#-@hx|;c} +qgwY` +x +{N/~~7u VOq_P_W%^*=VDXR` +k"qq qY,Hzo +s])Bχk5"m1{!۝೗8v>">[VH/LjX4X& ;:3?o0x0@1o,&5sK3/8WA.1[񲙿0O}yFX>{8ܺHEPw.lgMzF:u=8Dp`Y#1By7{;vo+xÄ6=ۼErœSUڣ}'\C:[}jHd07uS ?vv!JhZ|?߽gb.~"᫑tWn&ϏdYqi?L9L9 쬡 |S(^:}5'˔FOZ=PY?5uԻoÒ4"^ +(Z8?Z?@UNp^Ç6A kt2adl2rz#H(]ۊ&ہCVtP&^뛯b31b{ۦh&4&(􌷮ZM&E 3O41ou`1oN4CQoqCZg6$*ޣ8/c׋W^[,j߆p^S \4:&n)v𞨓@(_6 qBo"p'w 9fKT `y\-c,yX] >̃wXm4$\.8Ȗi]e%efk# ls|d&oּH7݉!-m{G%;G;=oha08V?4{ҿ8X?G统CH:r Ohi>Ii_#cO"]?+);BA`fd90\!`GhdgCΘ-">^曬MfR#>]M>Bļl? OJQwl.R~#%J8&J!h1nn&x̧ N4O"eW/k*NQ NDț(B8љ$XM=]_Aay@I]#$}~j5ңr֍F me }IG#~d%\OkEᦖI6*UWЛ*yRY8BltJ2뿢OTF^62䬽,%M)[sd٫k"qO\β\u/ra"źN\MSE/.xJ7iE⥑-RZ:i -F/"Lsf0`Mm[5j6XRՙe:7SjL2q Wa%)WK+b0}O_ikb{YLЎt^9cXthkJ\Z]NV|ඝ^t*qJ0ݗ򜜇zOWn#cV 2qpQU PfJvdJzsRД̹fNYt'+%tgTbDL* +5o=hD:ű*hTɳm n4 &#&ܒsMI|Lj˱Ue8[j|@i[<=TJ9t$A\RԀG&;%lnFIjFHn-R0Zjx"P$G![aSt]\* b$y2Y dXFnr C$$6Mi$ޘ"\Ls˂^x,[;[B]TѵEڼZd~RKEħ.g*\̚eˍ-t/,b&̌85_Y#fEKTlmZJ )7:jDvTe"hBY2XfeMi砻SS)F3Iph2Q& m*7sxV s4(WĠ^d4K*JH$#BWXƳ^!Rz1RkK%w.iy5sh)MuΉE/ ;)binhL*6gjyP8'LZ|kiǙf.ff-kWMiViՈ0_-U'-SQۊ67a٬F|0R|dtk92ZŐ.()`ƧЬՒ{Y2rU؜ɭ^jcMsReI%)}.lHUn5fB]oD]2WJa1grm4^7BڊUE*Z#ZHzV65!d^Z͙VI6mt\Uclf2+-B`b*Ċm:7]əL?tMJb +/gPV&T LRM{Mo*Tha^/SD,eekt8ntKe(u1S7kU|&ui2zV&ʔA_KeY87|,K7rZB3 j q8Se+Ғ#I\Pa؜gX=F2ބ3k\rC4hL1Tޫ߿z}rx{h96qg?~x_Teɣ>} 2|@c"5rvx 8݌AiyzJ`B~OE,;F^v ލX @@ -124,92 +132,88 @@ l n64Cuek0XD6 -e8kp0:vbp)H#l&IyC1Q+ikio$I*kQgMW4Ko#KtZŦ|ikB֥a͐-ct41 pMa>jȖyK&kbzVJ +V5+ njhD|UNviD>fTNJ(8@C6;үK t++^,pFENpDž dViq?#We?sE'pS p+0PJ#l w@],d_}a|jHPXT$Z2wzvY,d*dLCO@s^=A6h֟u0ԛr9R靏mfpa_Xfz/۬FMNZƚxY Q =H SzAV?4haP6PiC8A[LZ muQ3z[[v|2UY;k;67Ԑ٣- -C cc~*ć!p?fJZPKN@ -p'YZword/document.xml]ֵ&|V\U${5%%Y5Qv[J$jWvb}ز%rb[8:8mı>i+YkAH$Ip5  ^Z+enVs5{!Yқua47W3]e56|FgO-mHPXRrYud /D#?[/ޏS3q~ݹj%qE8]T+,ҹڂh\zV!i/уB_Z(MآݕeZ $·V3 nEK'2 '鹰ҰIϦLzl uz^3 >8$'6ÎyfծZ;b6+zݥ54_Ոp%i6}OKKݥ8]-f[o] -;ٕ)@ GQ\=_>a .g̏6 nk2`2Z964\iZDy -n5[0EҀ%Ypjsj\m-S?o -4)˺L[.UAdj:<_Mi/ &:\7 MYBg]Z+<|Sii8񋍍P %dcq.sYukNԯ8KlkY(eU[+Ɔ^wNojIZ\ϗwmu+J8o/MmDyh:\o{EhJp-~ʆs406zG^ev 6FsGzM$`AfL\pJ -29)½eIV O`#|ruZkB vh.<4oljrwb3`!gt4+%Ztjh{\z$ڬ ˽&k@/bLs(\Y׸QyQ/ٺv% .F~k45Ц6!H? d]ځ# P 4iR>ߢB<:B@_>I'ޟ5aOi 8 7:CqP]ZuR}tz0OU!ړ=[$,,%ims_p\'s83LBh&&|TgD)H#!GoTj뮈.T2` *~9<#KФi#Xp-6:a d;9=?VH9cI1Ԅ#a kSL?YM@_:fP @qb cˁ8h_ω=A J#1Plnı9ysXVL@Ȕ~0F@M/Vßp wς1((B4X]\A"`frunAtrX ->{p!q!+>ݒdABscbc 0Enpm Tmsԇ< -oy\- -nF"Q+#$A'3@TAr+fl"Fk&D#V y p3"fUBŴ ۗt'~.(P/_=ySꉋK5#64hAEuIo93rKo&*\BhI٘fS>nw3r!XV 4҅$0ҝ ʹ3F\E,!f%M4&LM޹$\\ ͊Nn -(#ŕ:$ -+ՑFu o/e U8(5_'NCkݾNAli]=X]%xX1\! -*%ndx=T5Ni5kn5P%ϻhb=nN$@E`'#\9 -q`<*{4RkQzI#4rҎ H3x>X2$pFC-H.rH`dz2C-R&n.v2v.KОK `[m,%XJ,;K Ӓ -amf,q OtgELEޏS! -9T\Ȝ^q[cY<[@Q1J{EeFJVCoO9{.;:?7tUk0\e[%#&w7!!хM*XG8^XܺHȋ LVk^6z l϶j1=`Jhvs^Fb܆sjӃCX KbJ]x;*y=E@7#GJW9)Y^"߾߽O?a^wW[ ]T͆,~3Z2~* 9}6yJ2 &;)@>['wr6A"2JN.dO,uQP!['!Q~}ٱIi\ф6{.Onw%8^[N/E^1l>#D*AVW(TQ:yu$L5b5ֱs9/s\L8xr뾮^+P Vh؎DS. x|`Gװ FảM6DѶ^UqƶeI1hSM -fǮ7%" !֊Y&>BԌ6g˿ -+'j5 Ig#`J8"8V=:Ga⍆ -Vu=wO 1mw3HgsŽ upsU=Wy`-]k}Cf]_I4gzSvLy rBOZo !f+EW5찚rNdgD -Qh91G@6 w'l8pnY`k#<״oDM ۫&CϨ ϔ]3C6rn k"aOF4qp[Ћ?O;T+jP GX9e5fmK~ʉfpKX&Do⋀bY5wOH&0-Jr2+Vir%Q>ҧ/+{,_ĕuw5/YKkN:,ך?Bj ɔ.xH9lS\M߰lFKz%d )~~ -HI 'K Z -z/PC,}~~'UP53%Gܻ%_NM.NxS;oۣ6u|ne0 > !-tkݹ -ZNH16TW}D䯴o[rAYTH.dd 25W,ڸ!|*tL\]͓.oM\Z|6+qx+ҕmSY-[oe=s/֖~i-ڱ;/~˝%|>xڈ k-͖㠎zφrKl3Kv1%p[z?ys}ү.Z\xY8C#sU@p\҆eYw<m.3ˀonE0E)ȧ|K <۽-=/qwQ\\/xכjo!5V 4RG7;w{;7w#K4X/g}uD_+WWŴg{wa>VMX5Qr"筲"ԪRZUS狿<~spX51' -<Ԟ(Y*Ԫ崪&5uX5j:JP A@/_etb#iUM߽+%VJҦrRLUJ*%:~}+Cb -*u -PJWA~N糯;q{ h34Y8塁=gReӪn߹XTvݻw?c^X^ursa"I=n_@H;|[M+u&MiMJ~SuSj{E>y';q)my|)W.pX/a8x>vX7nJn*gVK.*URTRT]Jڞ>x MnCJ{rRvk?Gh21XVMiPM<Km;0u?Cm&MҠ7ћ1 -!{0qrnPI~dAF "M xBjaϦQL''FQIUɛnMdp4&rgvos7><5OXqpUY:a2ʧ>O NC~XI)B,+yS8sМ5ӧB;W{g{<ݣo0|7aXðI0Bl`EVC%(ꦮ"aW3jFg<'~(Z[])ҁ6 tGՆXlxՖFS?#gKU7kh94]m[Zemݾgǂ!kૃk:xFUDk.d94~ʖj&W,VІaFv6{/"PJˠԛD@DYMGo:-Tu窩_-ta^6gD+Q6^q%oY ͤfUŐ%&|oX6a.O(=N8͖ք8j/ Cmhhn hd œb 3QjNDa|>_",-.X2nC J\Km[X-+mcS3i}O9m[ǥ;/ qIϭYcm'=IO@_דbvֳ}nn`7 \ͼ\h;miKlOַx/K~v;a8.ɬFCC^Zç,qڸ qoFum4I64]f( |az!pP۹|IpLbPiyWX=dW$/{6Z,+Y?}GHg.#I”۱_э-WB˨sE$tuNH..QOCnOf芘9x>1:76p cm!|qH)1 -Պʛ]]񷳽dU!IԚjԙ<Kմ%n%i$& uRmtN]`mkM$ڭ`~-qbf59|9H!Y9)B;t<%0L-IK36Qv@3cب[`37db"ގN^LM쑐l -=uy}YlTimBv/K-i.>?AiDIr}]ͼul휔rir0}>7:ÂOD}2,H>CV(޿ aZ! |]w~?c3ΈRԪآ/Z4ɘO?"Z:_ᑌ TBΗE\x/)xn~+4cs*(1ǭY"AU &Dyf:*J-ْJ˗ʲ\U\7nbX <IU~WЧ.kꑾdN+r`pa.ia5D0:GAG#E;Xz+qRObʇLȁP."{߸gѻdʺuk3D(:&Ry6< B۰A,#i/3NɊ?[,͡(Wi̹bxa k,+{D5,IO@ }8G*QRޚ-f-K|1R 3x?PT@CR }DǞt=HiD,_[GQ:O3qy"2r<" /;?PoCsBB;p77rl] dC:j6 u -։-$mQ:`t0Z:Luu&XO -@)Nƻ0DՐɊ}fQQR'j9L:v[[[<>I -Bou??wAiP"bRAMMٙμNu>]\A0AbKj_` {oS~Խi˜@pvn%tt&2W>)("Y~F&LBg ";5Gأ+o{MG#!d8x7.N IA.?0,?g޹|46 -9.|3V1#q(%|2d"bǽ9o}H%"iF1I@o x`0on" ƙ:q|M&G\Cvd5deMs/~-SGn%hv b :CQ7xɲMg%DʉN^ȡtgҁ,eø7DfgNԗT*2T?J;\ͅJeSm4a::"4!Я';@0U c]1Ը !tUzl;(9;94D.ŵsIjH3c]I84Q TU=[]V6n&Z-ͪǡOǸSu7+ -|_E2-zG2RNM>szr.̑V f2sc̳2~z&:{XO$e02Mrz}22۹UN֡aEH]A'Ji'@UF;mBéZ -o2o"Mk<y18 Ky!{WRuӹ bOGu M[ /=)6(l@(惴<5<>X -,#s.seGSʹun@̹̹̹#M.XX˜˜{4;Lb(Cކ u'%1y=hUX&@ @IxStWEbRQU,wJ؂aIR70i5e/V(O2uj20LM)X,BӤn.mL 3V켥 `y9{_VTK%É$VO?Pl/x;)sA>ݔ&fsr7^D@s4hEjs_#{D8V\QnRz{.B0s%53 WRAՔ#qHxylsoby2's jcH50e>Y>Ju^OǸs!<)L -ޥ'j6tB~XpYYPe沅y+[ 1}79g/"`#ߣ3^ ~wJ -{$aygםk??4@ F *HmEDKSSm Kkrq*E0IHA ^Y^WtgDh,kw-@YbF@BN/0\i?bZf`X5G̓EfǓǁm$2y_0ܖwV5Pg1CHȨCfYe#R8IWwV7'ʢ{P =MS@2& Dž8}|9C)Iӵd9Dk w-d{ еDq CNy:_pqY&hS)~>lZ<sRr|s*7W3H,(iHp;iu>R 2wjѽLFCS, dCH_2cUn:e[p;{;)0w%Z9ϣ||JO K rޣp~QQ#Pj9 -=ܸ޽wpMQipJj^Ih,ڟHjKfST -18Ww~eۭȹ F /3_U_r#dBS\2dr<$Å3Lzm5.T䖧eL{3>׳!jUbnaW<ӹ qveNkl#}y2jΨBN~ uK#<'Ql2#1#1##޻D1((((Q75Ga99j^8 -hu>A޻mT۷o$Q`M;#cY (; 1OйD0A$pY?~##0Jфb257vL8@eg$ O!rfU!aBꦮ(ZLOenI`DoRoX~.yz::m@+Chb1̍&fKknfy6 =}{{0*:WmԫX֥m;h6mjFPSۆ}E˕rߧz6E>QDv$l<'i*2Lh1- hgC+slXwr(t»" 4 \\Li9߀rmȡ \|'x@ ғ܅_ZNEcLh8i:ܹ!Ō擯59#xcpc)v:l23U)E0E:F^ !z [lu%v{ݕ[Ix2;IgPd\tKZLI1[[ΡPd|LkztFT؆jcА* d&SXg6 v-R.7Ž.z{霾t֚GTv \p-mZM]\`NQޡFbyph@YvXB-0춃i̻ȯ [ roFOYlH*$rhhZ^R -1E1Ca!&>{:8mJfEfy)+b^F#g{W糯;$K[FT"NiKlDsm?Yn-(BBd.p)J%pzxY|xa,00var`ᩭp;uI"AO2 n =q L ;%‹EA<>E:&Ag3T*8%#2޴{~JJ;L\IL';t[w pH`Ûb9*VSw//Ua?7n߹_c_Ta/$ }գ"KPTG|u Gl9{+'Y"~jąq0Uۙ \(Z RJushsp`bqEoH>m%{9fPΗam+@&>}9lh~=IyϑtDYMdc ,ZA+ H‗_MH"D'0@c ʊ\R ة2="4xgK囔1p-2( Nz ӗ@`54j!4ҊX0T [*ld <08% 0-!XVDӪMTimkT3By8Id)K }OoOKhQ|fG2n<.*"!Y`1e}@`¤Xby6ky|BLC$#s.s.{%h YʹU.qqq3G26"ʭ@=3.3.300 vGNbDwCv*F N6L~vjċt ϽhU*Z\.pZ(Z)+"kjiYM1f00*q"FRr)/e@-^n;'A[G3Ւa we.bֿa@ƋY\ڪc`i#&P aF[FG I1.e#}`J[6X U#F[EXJ%c8;gbM-˅Z*Zظ2no"NtF 0.\<*gjfA 2 *(d!E %g><\0|'m%JkyS];fM<=3Ov܌"](摬G3 qk\Ceˈg<2F5.0.Bdk\naQhZĜ烽x5e1wj -W4Qj<ѱooa -G4ؚe¶C|yc4]~/QD5̎{츦櫚hNp#pbBuL5z3q cgO#gTAA7jIR H x-[ND 8xgA9`,DFzwڀ 02A*x\ۊjV[M *t!T<:}FaҷS j/mN!d}Kk@lvxU51kc:7)*Ce" )Sd7ĀTg$]5 S$\j+H@?WѴ` 1qE\P\m ]+0\\jpJ(sJsg'a^FOR)(aD22rMTdJzPMȸU.W1.6h4np,[)TfSiGS;LbKfRE1]0shBGb{dmK(͈BO!Ac"CmO(|דb.x!\US!USb(0%*srŨ*kT2jz|qQ&mh#[.nꚍg׫ݠ./?8`L2"To.`{Q?3,-fׂ 4Ǡ؂7 Y׽U㦅n`I[4hB>qg)_SwR?W,X i3︣qqþ$,QcJ"bdF[\F U3zUan1m2~{_¢DHgWd Ρ"}ȳO^ǂ/YvCj)Om47M=$b~ `x.IϭYcm'=>IO6m2';]d_3t|UD+ D rçlXCPwI#Wqqk͈.,ccN=c\D" I;QU`8<ɼ.HAn4*vc\PrS b)rW1A< t0>c7S|0 { R'S:7)I ]63[JleJ0D3.kKR.Ӹhra961Ϯ}hMޒ -5RN|D{hC),+$8\ FFbTf^H~tq'8 S\d]ZM Rl[?}nwqE) -<.0|`0I )n=*' zSX ː"&'Ll4j/Ū??ӟ<]rګ\:J[c1 Sԥ/mN!VeWS rVp\1Fy#]pU ~_!S⍠-DHn7S|0 r#CZl^q5"aH9So讒H֋U.W1.ƌ;5.W1̦xL vW1j?ބBFb*FoSCq1tLbfP11`vsUB`*+Мju?-qqA˹Q⤂QɁW5hRӚq:D1m7}1"5 -1`pDĕyPdM%$ggܡt ]er:RQII,FX. -A8wkKU\ŨjW3 R&HpR+]Z\1Fy#]0̳D CO1R6_1ݽonH"cW1.>E)>H\R||0vMci0nGP(3us1\#xCq#8(ivj:8 Uow(쬵4ASy<)i5|FSGG'qyGDm/~aW3$bo@L"Ǭzd-cs˄;,D$M7`+*bM`2x\5uu~nY\vW3Bb4s_ɗ xɲMbX:&GoIn@q0؎$`㢱Km)dt ?}нt~Ɲҏυ&I!dW !Ą̱LOwO 4 _hR+` nW)TU2.ӊߋv 5x{!|AR4ЅCPnC \\~Z gC*P@02iٲK;$t8i\dd gHD*ΆaB2G G4%(*[dfyYXP):~&:ܚ^Ÿ6$ д>9"7Ϥ#kShZfƧe @~RzoQB_LLO>;FSI;͆HJ L˽bz|z8Q|@05"\v 2g >0B{hX bA11I$$v@+Q|l+Wd]6^O}3Q>8p_>%oLB=Q_g =/%H99ApE nzsra1LNMU^=6+zpON m/KҺÕIlD^K|'@if/SѓLt#y2Vb25tl \) kypT+T4&Z͝sk>R/ucUN0۱.D y%N[07 \ͺZ7`_4Nfs/Դxv!'GܔEۮ;['O\e)ӏrb,J2mf5;7|uŒ\ҙeD uJSS5c /:pih͈=o:{5mc> 3H -,F6aJxeN"Q…޷{7Ex.lc;a#IAW"Px'"Q~%(9R솨]"C9d]=}#$Qy: @vcHldvX5s3 wJ>ڴ,7::V̓w=}kcRX%o qK#)V4 FFxH`QoiKÏAї_jGV+u!y! RfQ(!F@ve^<;c^|/yrk;|.v0TAnpG/M]:~Л2xZ -YU$P'sFBjTX8j]XK+RT?hyqjfhZIMuԇ*yMS%>w#r鎜|H.?(t3Z,tZ: x4Ŭg|r'r?s}wg2#vQ܈hxDZ4=d I#h̪~I! -[\nwaX̶) @c!-c\j Wl q&Z͔$GZ>#w'?uW?XH  -7j\*ECS·GO?;Rb#X<"7Xi[ӄ:K D+C( ,ED'3QLOJClP҇r"ֽs?Op~x9Cc~@ LLmdgGf5`'w^H ٭<U:ׯ~!dVۚ5o# 7n!5;nc1(?nD.(ʯRo4 ap '!e.p1}ˌk!A,p*18! apm(Iyk9<\g>0"vuxch!Jfx u9il6BV2D$:vkxYb`\XO\f~cp(y-T a6+e3?3?<`' -C6RECo$;]m"mEGN8&;}aǟL̖^?'5 뵸Wm~&w[{7刷~2yҶf_:I}f,BL;O`0C}\L)%].gk+p[nK$D gh|D9IPCOݥ ֶ;{0zBJ%O?yK(>~ [!8q[CZ*,b-/+?&r=a 1` VV*w.nvd[ɯ.Z|T!D(CNF-wG ش: .%UٻO~[+c慀7'8eI9.#BDE -V'pih5)tV4>د%S{%qLfg'E{֋/h{{Ƅm&M~V.+9^?܀WBDZKڟ޻1\鶴% dx|MBF@okKmX-*{j"Ah%?w`<0t6+_\@-ߊf]圤Y_ֵ,8m 3Ҝe~*1 -SvtvuBsEa.D2U]8..09ȃ@թ{@I.\ T{xvTp$V.-0PEW,ap ߣaD-D'¸>mfd,6XIZWg,@0nMzYH) -uJ-!-cHW2V<+|Hu4K6$LD-I77 -9چ&,#GUqC-d0qsǑohuZ9S \ -"xyC#{EUm;`x]qe(؄wP"a< G,N} Wu˚ոJ`&a?PK +C cc~*ć!p?fJZPKN@CfXzXword/document.xml]ֵ&|V\U${5%e5Q+v[J$ Mh+;,Kr-'u3_vNɏ&[_H@W\Q7콾׳Nknu =ͬ0_^xD%ҵvCkm}=sEf׽Y +ܢ]3M=lw3;F2Ly2{x6e鷎enoCk_Һyѻ ߵeZ;}ƴѬpf5eWUus=kp/Y$+^qr<65 ^ҸRurős^9SoKA\YN}ii^+ dN쪙+CnYv^ϜW2pZLH:f ̶݅?kݺ৏)5:cv  ݫ@.l{ıgQkgGk-C<|޴t꒸# gxվҁh\ -A!зu_-آ2AHjW3 nᗎV/oҷJǽv0Fk4mPz růƹv̽Y특(vn˸7][5"\v vih>_KKCv:r׋vE|te4قTJ@vNK?g +4)KL[-UAdVj:_M:e/ +p̊j{ou==++/ZgM/:_eg:ڶ..3~BZ1l=|5-sr.nwWe:<-T`-j*qgMiq&,).,%(|IgiW s֊ +v@Ԝ3ޭmV{ÿ Yr ܦi_d& W]O8*81ٓghjmTJ;V׫k{_#h ~[ǂ*rx־t q+nLDç5+!2˳`yhϤ+֚SC^jTAب`Ikk]~66~-ݮ7-<oæ]޲vJ& <5 k_`;5.>#NmߖZRDc2@T?hm tA۰wVgf+|/D ;lGJd LϕrZДhV͓<];j3±XO^){リe y_Ox+pA_ QN쳨Q)0 BxC'H?>LJ7#'Bwu:=Pl:ٰSħ_AT,2}u{;<޵o{,$ S̗ +>ɰ0Ѥ5݁3G>-)IpDx }Km٣вD!}e-SԱz_n7 nxybaz㳸EGm +9Ko+ ݮnoBA:6x"A>&̱_su1|`0f؂zn݋!7+%w&ޜ XԸ.s4"BΝ&0 g*tڼbGu +MM4MM,,ܖ;}7–\ahVJ~h{X:۬1ʽ&ĞkIQ]1%\+(\Y8QyQYv9 Fuh{M-B~P7kɼ G@5H [i8ۦ|(пI_M }4]< +} c=x(~n[\0@.ΓGrUGSu谒š5cK\kqEQI$$[ 25<i}?2@-J+.1.>_NN4DZkņ?T'$ n9t[M/ 6c &0;αME?1JWloA77Emu 䑏L  +SYtc5|"DXƊ ,zJ3hs *ÕrT'م Yy$ R'*n8.@w`ഫy +ATv߇6]QGma?Q݃<`PC ::jvRrd:$?sʡuQsomՀ:? Avb5}"uF*Ib:ѭKPTrԙ++WNAo(__>}~qSV={$6w4 ÀAEuIm9p0mU"ђ1}-B5 |+&r"XV 4҅$l?]-@#@.b`Ջ vgb&wyu&&]Kj.Qn.ZT6lPC+CuI +q`<*{f}EhsV{9iGxQFk8f*M\X8n#CH.O`dFxAH]Lucs~̌p֙rWީa,%4=^7UvP~o;M&T$f)Rsv۲'̦sȷ۪q5`f"KX ,X,K $8HH/nqPG +#A_%eߘU}O=>age)?oBi +'wr6ATCYR".[c6TlqJ1#BQ9p#GA$ISV |Kd8O\)9 wPe6 H,_c2.\/Η7> y3 ad4 Q|^UF>_ͱm30sc0 } [0T [0Af0em0TB iPA7T-0,`dΑ]ٻHm֪=SW[E]7bJZ[*0ܬ_,1f:%5ݣ9 +{XRM1K{(٦h'c#Ba ɪ*.-xq,'Z"~1E#y&䙪*w"Wa1xAIMܹE-YQuQ@*&@EDA2bˈSZJW{OemM02e‘˄B%xD +&4`C(ٔ)j[)je&pomxk&h#Tw]>;^멖V̊qÓp{kQ՞3:m{~h;0h<gB%WSId2Tn2h߯,q)?j;Z[-ԗ,STphe07̤uӾ >vXEe!4S1W8,U!llY|郼׷5Dñc3 @p0?SD"T?Fx[:42"P]U 8\nGm3'z~4,򇐣?~Mqm͛ЭnbRPR|[nKn4m ܶUxPHrլpJQDge͂33RىL0Z3UiP̉D)6DER ~wA+gq>;'ї d5ج[\fM[ykhμ<vb6eD#?y~>vTA@2:(йaBНM +h9"L6TuLDy%iǎ "ZP- "Y(Ld96{ fF /uLs `[ 2F_w%0 e{NKYK%=s/6V~e5;|?DmufɩKǽg9!%?٭?ϝ>WʯZ+`sR>hE rdaO}qApeg6Ol$~M\ARt &-U؅xL/߅|Tzom wO_"A`!eDă& 32Ue%h@޳ ,F'AP[':ɿٻOwzo_?-/nX5y2:7UGleUVMUMԪO~Aޭw덧߼ލ@R8& ܁)2w{ab8\YJ*U_=;襃=jbĪR/f }PG]筲"ԪRZUS>3pX51'<ў(߂|ZeՔZմV$ޭ??U&VM 2h˹,c#NlD9w7bJRڔR.Wq)JVRaO~`VPXANAVPUP*O}u=VP\;q.yRDIp0D>}8ڰ^.V uxޝ*w/,>@=RQIM*7HKD8BzOߡn^X7nJnU +URR+Bh%E%5;qމNi;Krz 륶_;GĺuStS93lh]r yvX%JJJʕ +ON>{?qXAVNN3ÿ<:xX(>|t odϽ{пMzɽ/5 k0i0Fp-i|"z, u 45K$C5 jFXh։Sx[=-'~bORbB:S?;-)IlQKUhh94]ZvXzW.陓XpItm}uxO\O0ڨ{[)d94~FS\XC[յm٬/_"*-Z5ؑ=2U&]g-#I”۶^݂P^Fe kDuɔur}Gttel|NwΉ++wñѐHY8!RF|ΣO*T+~{kGWfo tU!'v$Qk RgH_0:t]MXQFb B[7 5|ѻ+{+D<_F\a8'6nh-f9'/)tg $6':Zwޭ{)1`iF= + :36s3c2<6~-{=M?m7.FzOݫ~<4ڐVuRkrwedS֓|C"EfÙGk@VIk8cH"Ipwq au0 +&! nƁRۅ]7HP(ȡd4TdV$Pz=`{ԯGS@.SRUGUa:s][ ȱ|PDn)q16u@7j/snȚ K9"sfysBb . c=cM봄E9?V]Bv ߖ6Γ[$}87~tMW<񊔙&#Yߕ{__ȹφEOҪc2G5dGS(Xlȃ%h\KPYu +-3ׯ?,A%2|%(y Jr}LemPDQ +۠jERo Z%,AYb?xy J{? zAd XF )(VfuxCrQ4qc=iF71 L+OglFQ=\Z[DfEDK?1]6yK#ɍoft"ٟYX%e>~85K\X>jbr(LG_E%O]>[U)5|RY;ze*Y|zKOKZZKzkT2i?kH_2cq9kd8'wyjZo ~wЖe5\t7]k2|*SdG +dLջ΋`cozVEu+V +;w\"uaS,~gʳ + 82Ӕx2 c [,Ϝ+8vh"r9GTsGLz:Bxcu5>Uz*tl1`oY96!`3 +(O`Hao 16cؓ.f(UE/7bS5 <+gco6D6|ǝG(HU\#]FkAqq!q<(7fk67Am5T2٦9BH`ם)YxZk3;S= NKI; \fbqI9`gU1L+0W< zqbt?>ܿ{>#IPΙi tx8?p3$djW(Î4ܳߔy7ol78xFe4˚c6m5`R?qΌsf.xd8g +SRO_D68gƁ}xl]mCWM)OΙ1k1kI'>/ 4=9Xsf3/2#څR9L*03E⚾eZY JšSv:-ecc ʄ@枤 f L$ubDDǟAI}gژ O |6uνܹw8. &g̭qvNrW^'jsv8;9W$N k!1cmp;-w (J 6Sg0Krt}R˄z#L]oۺ%.u#'EIbr 9 0i]"Q#HOMfQ<\{t1(t'7G9ilĒUz5P0;G7Lg8SGz8yЂlGP`.o; +dr*_ֻ?DQ"X-!i7zsi5tK;GŪkb][3m܉2j ږqYo7jkud~e4WO)a*O=J9\JUS |c8pΒk-HŸ@L|5.,7&a֥uk[W;h][l!d?܃^k6Q A䓗3;ϫ cqM:fjX%tF11STĝ`geuYRhAov"h`eMhXa'\x=d 69C]{`>ww_aWP^eD1KaMO"[C<];>sVg`N-It#I Bv!ź?rcTdrY3W) UN>AhmE]SR9cSyCD4j%(RWTDmv]]8v +.m-Ou +o2o:O**i$ѿH<Us,.}k'L-Bs<:ghf2jdCXŽC} % |v>Zme'tc+\̹̹$&4=,sss3ǂs999x8wPwd9SB[9{s)g~98ai|.Cv2)l'|Ѹ$^'&8Z(f׸mAkCo^Ap"mKIh5L/A?m0X¼ Ghu_kw-~↚.@AAOQB4Tl47 ]ڀVb5,lyb]Teˌi=^k32nl9Cy_6Tp2- Q~ԳȢIMߍq9⹞)=ԓD^ƍq+PwF4.P w&#A@@p'E|~ȫtӴQTk@8k6~gT%>]KkրLWdZkkk[ 0jy"Es4-Q圔޳KeRùlX$4hO +nc#·עF:Sꇹ-Iu +ežԌB:yJRs%!}ɌVVsrcC V{~ * ]ḑ̧!>"7ƒ΃wp~QQ(5wݿbpMQipTRI,:l?Ϥ +&W\taW^z2(>R ߯JK@p|q~y2_)\iFs er<$Ç ~yܪ٥KCM^ږC S&.nSjs>4^O瞰`g@)i^ѬfTFc=#V>YJ9YFs!Ӌ +у"Dɧ:Q2xӴmNB32֤WX +mm6k_YlQOuE[sSk+)5LZ 8cqRIr>Lhx^sS3ǃK&_D+Ibti23U%qZ2;+a=sybsIEUTK1}◛RT2c>%Sa5UspT! +;~4Ym 2CLT~@]3MoGEH{E+\0v+ysGk R9ئl1]K! vGxByphjpk#w]! ,0)eX]w`o-*tl0lxN_ϏET%CCC$6`ؙ޶eJa*\*-zŅtA~]xbсK %@S$Dɬv0/r%*%!=ٿ =z~ݻv/^q)4k֡]bEhw"|xrnL[]#:~t ̱M}Gִmm7H9Y&p/PT|ʾWbe[?-kda͋kaz] :X%,0PYDŽ⣶ss`~a^v{JFORNbVֽ+$Q]#׸I(kZ9׃Nvluws"!mrh9dhyZL*}\2 *7XCiޭ{_>ˡUtt Kwt|Ce.&2#m ow 3Y4Ϟh5zjRQO"`<}'?|QkзQ+dʎT,'SBQq=ԡ\0:X9X0US}!.lGS(QRPe\8q˸7p_’/T$fPΗ~+@&> +Up7\?ZP.yHب$yY22iEx= FK/ֶ)Jg]; Hw;hBHhN1f:Q;X$-%h!?i!yq'ݰ?N +y>} DUж|&Vim fM8=7N!Ȑ99w,Ĥrnl8`f\f\f̱Lt3Vόˌˌ{<;I1W +I'`ia6hYWtlG21ϧ=Xe \ܤzj+xf4f<R',X isR-$XcM‰`TT1bO +?ENFn7_>j`9URPĵ{q fr_**LYaȀ+8mj"dI r UJ6T \x/t2o7" I6Q9[$7Hs| +//mw$S-cdum떌uQFƵwwAu +58\g7$7G[(>^5兾 J B^f˴BSTVc6%.B7eH5.;`̸B6Og;\p + Aʰ̦23$ vj]T,x入Ѣ./vmE7LGR]^WGDClHQIOm`@ya.{vwB,h5 ?$c`YZb eTэtA=f~~•mE҂y 繈QH -N;з/W`,ELQcA IA."FSfL#d4zl]}*= X <˓[F2k7.gs#16Vml+#U4.jPk9UqPB;R3T@'Fxc(07NQS9H\ #eJr"'1:|l45 ^PryP޹[F;rHnY`Egh0S:3wnvMߐNqȌ˳Wy1TlU%QUV2&UTC[RGR.㑹̸HV`$ ⋫W1<ݯgYX]BZIIDb, pQXs4-W bG%/S;W \U$W1N5u4tcR?{RLSXb%\Z 7\5 .Hi Ee7ϗ?2 HE):n P#-FW8ً*Fb,9ކn\JWbW11t[qry#]a4*$:\ꪕ9F%QTc?53[(>UK֢bO!)rUDӌIM-rl3.3n;KP.ڡt஀f7qqqq'i\;q|?ǓkrlDmڶ"]QST'`"P^lFCq_w9Ii5t~+Wň~;=%\شqRcT>7W1_>6W1.o#(cPC^\N}岚1E6WMm. uWSR;*Fb*9bfQZZz +2q .#U;Fhzʌ 6(/\&Xg|*zŀd^jd5*#'~D3W'6^qHkO~wzߎCtZc At`kpW\:y=@RɬȐ<&Cj\cz_K287XʋTᾚY(;&rL;1ދ$ n РDOx&X2gRx!k!5ӼY7U |X䋸xmm`j"|w9{oz^=OAA2=5HtcEY^jpMf&AϲoBsgrx"+%+(9ֽ +re/@^kGl[nEg "p(tM鸡PKMB +XؠP!p Nm vĩ8򊾷rBHJO8~tQ#(a^įԄ>Bq2zLLB&5Z,)1Xv1ESA>W)TU20)q"r|faZNU=9MOȗsU:@>&/ b/8~:?p,A ?_A 2 +@Xw'z4 >qѲ +HPȭ+=q|0ꞳE;Q|sJ~l_z+7.FDRPWY3v!`8;cAI14]gBnS ) 8Ρu'!&=n'+^ή hx5[DNu m˾|UӼo?;{[;-8x~4pLJ755o7~4\mf0o0ƞ +&6h A,q53@ KR!+Yۘ#] ݻa );rй wg+OM\␄< 5Ze\{%# +<颊os|Q s\w>B.rgi5x(!s[c4@#*2T('!H|:pA3Xa{#jk +04pLn>܅s?Ƞ1ر`޶<Ӳ2o켻e%D $IzN08 8T/?S0nִ!D^D'J G8£sfJZ˨Yعɫg:.h=db +{a,iSqt>ad/ +OA%H{km@KB(`yGOCENd6dS`7INM" І8"=V=h[lLc//?29Û}`eVm"mݮ2:GSU,4r)`Ry PXGB T3<}u{7o~߻^7!Mʓ [WX[Oj+RTBGG3;F۴Nk]Tp ]# +z ߖYOA}}8. GdGK23_| s[łjߒUUKnK@L zLJ}$ =[@Ç<7y$Cq#cAn脇!!12(H[G|(lq{߂A_!;(piZR6V&ZϔZϞ^5]EOPj`  8PahrBBɧb},:dإ>xVL+$:S>kPGt A^01 +ŨE. \͵jG|p0?|5r!X3Q\a*ܥ +6BbLOuoz0?XxÃ,s!7qaWE{!HdQDᣏz'KP7Y 脠Q:! Q[#: XMdGFo&bѦ]$k ۟:bB8R1΃qڞIK+yLk"jpp ҁtv/llUYXhmq5e9UVMgS52ZOk@KZv[m[tt"ua3ކٶ-ӧ8^lH,J08i(p@{75e'䊫TzPS,Ih%P8~cM]&ȩB n_ ,1g%3D~ >G{c.)39AO5#"BDQT0^OUҢ DZDQ/.OYt'B+nUkЭ*_n`+O-wnim7Ի5-wZLA:7/P҂`à JJA-jQpgZxޝB!ODBD ߵa H4)`l3-'[[¥&}p޿GMC +RnuE TrZQE}zsV.ְ> ;խKzJlښMJ)`TD@l)b.):o.t]3@'xru8K +a5`ROP񴬣URݵqrw}vCa o狥JL(dvHNV ɞ{Ͷ.¸#g53lӷ8Y)oĨՌFsc !^K2[\;uy|N_LNN%F9A)G̣" 9n-p&UL +/&L$Oo➍]jRuUKS$W*bk:|纇@$^mD%W s'P`s-dN`hot\> +HJb݌ _]b⷏o1IՐ7x5v"b9'i֓/b%feL }A# +ukmANϢ0Ot"J%2pC7sC$8v~N#@r| X +!<eAiI  . k;&^$:nK;ڶKȁō--C!`Pb-Lƺ棪 H)'Y/ӆ{U;[Y""Jf+-WdYg *SNqR~GYilI6V[$<ҍՖ]ט9>{ĕwonrߥMªE H@gXn]]N1 r`~"aRR.TY f͔]Z&5d%e)! f#îB{֋tpMhJhsFy"+iyhd\.d˽˅NbkIwC='xtUV|3S^yJr˅&B)\} sB±JrJɳ8E@ sZߙ].Q4We$W ҅P:Nigrw\0RyZĮT{CAEz9 ˋ>3y6kØ10☭_itMr&`]ް&^pcTVQz&pNP붰@nbQRa +-m%qsM|(j'^͊t3te͂3w-&|~rp"(e⁜?n&HJOmNgۅs n\huQ+ :ꄓ|.n*P PVEYì#x"Y3z;БWoj֦j{ךٸB`&. PK N@ customXml/PKN@NTcustomXml/item1.xmlM 0 M:yp ,ev{ ܒ7CH: Pn5#[`Y4*WE0φy&ۼ$&98CD**<1M~VI鴡j,{kJ32M)ЇxC`3PKN@cC{EGcustomXml/itemProps1.xmleQk0r5Fb,N`!^ۀI17t}{9]\ph4!@-L'kXuZՏUgw:3ѡ @@ -255,16 +259,15 @@ W c@*m[x:͹`ˣZf̮6m;OXZ75̘YNLJOCP ™@J~x&1MH ;&թҿ0]=uH_-5% o!"0H>4$Dj&9! ƍ6,̷Dsh p=1T^#(~&Iڂь8 ~ #ůPK4f]ݧOPKN@X`"word/_rels/header2.xml.rels 0EfoӺnDp+dFI(.^9Lډ=(&㝀^\j ,et -'HL rўi\Fi4!BqIsqHS >Z匚7uxR ~H:xy7 ,2HZYPKN@2` 9 [Content_Types].xmlVK0#"_QBM.H"q:ԋ_3vj&%KBTV쪜tmž?ޱ"Bvz!bD(7`D,K+ F {!|Kg,0qX=$U1VR ĩ:^Ep⡣aRGB"F4a4Q_$=HgIFۭ@c李 !"YD-N_HwP~Z匚7uxR ~H:xy7 ,2HZYPKN@2` 9 [Content_Types].xmlVK0#"_QBM.H"q:ԋ_3vj&%KBTV쪜tmž?ޱ"Bvz!bD(7`D,K+ F {!|Kg,0qX=$U1VR ĩ:^Ep⡣aRGB"F4a4Q_$=HgIFۭ@c李 !"YD-N_HwP~customXml/item1.xmlPKN@*H customXml/item2.xmlPKN@cC{EG %customXml/itemProps1.xmlPKN@7 ~customXml/itemProps2.xmlPK +N@ docProps/PKN@xu 'docProps/app.xmlPKN@]Ƒ docProps/core.xmlPKN@vl xdocProps/custom.xmlPK +N@word/PK +N@ word/_rels/PKN@zVpjZ word/_rels/document.xml.relsPKN@X`" word/_rels/header2.xml.relsPKN@CfXzX |word/document.xmlPKN@4`< Zword/endnotes.xmlPKN@  uword/fontTable.xmlPKN@_a( _word/footer1.xmlPKN@I B Xword/footnotes.xmlPKN@dCu ]word/header1.xmlPKN@Ps@n `word/header2.xmlPK +N@ word/media/PKN@H  - word/media/image1.jpegPKN@ ,! 2word/media/image2.jpegPKN@QWB` word/numbering.xmlPKN@CbmB0 word/settings.xmlPKN@nz :word/styles.xmlPK -N@ *vword/theme/PKN@3L; Svword/theme/theme1.xmlPK""o \ No newline at end of file + 9word/media/image1.jpegPKN@ ,! word/media/image2.jpegPKN@QWB` @word/numbering.xmlPKN@BP1 word/settings.xmlPKN@nz 8word/styles.xmlPK +N@ vword/theme/PKN@3L; Cvword/theme/theme1.xmlPK""o \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/common/mainProject2.aspx.cs b/SGGL/FineUIPro.Web/common/mainProject2.aspx.cs index 4f4d6b35..0536faf2 100644 --- a/SGGL/FineUIPro.Web/common/mainProject2.aspx.cs +++ b/SGGL/FineUIPro.Web/common/mainProject2.aspx.cs @@ -105,7 +105,7 @@ namespace FineUIPro.Web.common divCqmsPxNum.InnerHtml = CqmsPxNum.ToString(); //施工审批量 - int sgspl = Funs.DB.Solution_CQMSConstructSolution.Where(x => x.ProjectId == ProjectId && x.State == "1").Count(); + int sgspl = Funs.DB.Solution_CQMSConstructSolution.Where(x => x.ProjectId == ProjectId && x.State == Const.CQMSConstructSolution_Complete).Count(); div_sgfaSpl.InnerHtml = sgspl.ToString(); GetJD(); //质量共检 @@ -405,12 +405,13 @@ namespace FineUIPro.Web.common { int result = 0; //机具报验的到期提醒和过期提醒记录数加一起 - //机具报验的到期提醒数 - var num1 = Funs.DB.Comprehensive_InspectionMachine.Where(x => x.IsOnSite == true && DateTime.Now < x.NextTestDate && x.ProjectId == ProjectId - && ((DateTime)x.NextTestDate).AddDays(-15) < DateTime.Now).Count(); + ////机具报验的到期提醒数 + //var num1 = Funs.DB.Comprehensive_InspectionMachine.Where(x => x.IsOnSite == true && DateTime.Now < x.NextTestDate && x.ProjectId == ProjectId + // && ((DateTime)x.NextTestDate).AddDays(-15) < DateTime.Now).Count(); //过期提醒记录数 var num2 = Funs.DB.Comprehensive_InspectionMachine.Where(x => x.IsOnSite == true && x.NextTestDate < DateTime.Now && x.ProjectId == ProjectId).Count(); - result = num1 + num2; + //result = num1 + num2; + result = num2; return result; } @@ -636,59 +637,64 @@ namespace FineUIPro.Web.common List listdata = new List(); double result = 0; Model.SGGLDB db = Funs.DB; - var ndtLists = from x in db.HJGL_FL_NdtList where x.ProjectId == ProjectId select x; - ////一次检测合格焊口数 - //int oneCheckJotNum = (from x in db.HJGL_Batch_NDEItem - // join y in db.HJGL_Batch_BatchTrustItem on x.TrustBatchItemId equals y.TrustBatchItemId - // join z in db.HJGL_Batch_PointBatchItem on y.PointBatchItemId equals z.PointBatchItemId - // join a in db.HJGL_Batch_NDE on x.NDEID equals a.NDEID - // where z.PointDate != null && z.PointState == "1" && y.RepairRecordId == null - // && a.ProjectId == ProjectId - // select x.NDEItemID).Count(); - ////一次检测返修焊口数 - //int oneCheckRepairJotNum = (from x in db.HJGL_Batch_NDEItem - // join y in db.HJGL_Batch_BatchTrustItem on x.TrustBatchItemId equals y.TrustBatchItemId - // join z in db.HJGL_Batch_PointBatchItem on y.PointBatchItemId equals z.PointBatchItemId - // join a in db.HJGL_Batch_NDE on x.NDEID equals a.NDEID - // where z.PointDate != null && z.PointState == "1" && y.RepairRecordId == null && x.CheckResult == "2" - // && a.ProjectId == ProjectId - // select x.NDEItemID).Count(); - if (ndtLists.Count() > 0) + var ndtList = (from x in db.ProcessControl_NondestructiveTest_New where x.ProfessionalName == "工艺管道" && x.ProjectId == ProjectId orderby x.CreateDate descending select x).FirstOrDefault(); + decimal a = 0, b = 0; + if (ndtList != null) { - decimal a = 0, b = 0; - foreach (var item in ndtLists) + if (ndtList.TotalQuantity.HasValue) { - a += Funs.GetNewDecimalOrZero(item.OneTimeFilmQualifiedAmount); - b += Funs.GetNewDecimalOrZero(item.OneTimeFilmAmount); + a += Math.Floor(ndtList.TotalQuantity.Value * Funs.GetNewDecimalOrZero(ndtList.TotalRate) / 100); + b += ndtList.TotalQuantity.Value; } - if (b > 0) + if (!string.IsNullOrEmpty(ndtList.TotalRate)) { - result = Convert.ToDouble(decimal.Round(decimal.Parse((a / b * 100).ToString()), 2)); - - hjallNumber = b.ToString(); - hjfinishNumber = a.ToString(); - hjzgl = result.ToString(); - hjDataValue = (100 - result).ToString(); + result = Convert.ToDouble(ndtList.TotalRate); } } - else + if (b > 0) { - var data = (from x in db.HJGL_FL_Data where x.ProjectId == ProjectId orderby x.CompileDate descending select x).FirstOrDefault(); - if (data != null) - { - decimal a = Funs.GetNewDecimalOrZero(data.OneTimeFilmQualifiedAmount); - decimal b = Funs.GetNewDecimalOrZero(data.OneTimeFilmAmount); - if (b > 0) - { - result = Convert.ToDouble(decimal.Round(decimal.Parse((a / b * 100).ToString()), 2)); - - hjallNumber = b.ToString(); - hjfinishNumber = a.ToString(); - hjzgl = result.ToString(); - hjDataValue = (100 - result).ToString(); - } - } + hjallNumber = b.ToString(); + hjfinishNumber = a.ToString(); + hjzgl = result.ToString(); + hjDataValue = (100 - result).ToString(); } + //var ndtLists = from x in db.HJGL_FL_NdtList where x.ProjectId == ProjectId select x; + //if (ndtLists.Count() > 0) + //{ + // decimal a = 0, b = 0; + // foreach (var item in ndtLists) + // { + // a += Funs.GetNewDecimalOrZero(item.OneTimeFilmQualifiedAmount); + // b += Funs.GetNewDecimalOrZero(item.OneTimeFilmAmount); + // } + // if (b > 0) + // { + // result = Convert.ToDouble(decimal.Round(decimal.Parse((a / b * 100).ToString()), 2)); + + // hjallNumber = b.ToString(); + // hjfinishNumber = a.ToString(); + // hjzgl = result.ToString(); + // hjDataValue = (100 - result).ToString(); + // } + //} + //else + //{ + // var data = (from x in db.HJGL_FL_Data where x.ProjectId == ProjectId orderby x.CompileDate descending select x).FirstOrDefault(); + // if (data != null) + // { + // decimal a = Funs.GetNewDecimalOrZero(data.OneTimeFilmQualifiedAmount); + // decimal b = Funs.GetNewDecimalOrZero(data.OneTimeFilmAmount); + // if (b > 0) + // { + // result = Convert.ToDouble(decimal.Round(decimal.Parse((a / b * 100).ToString()), 2)); + + // hjallNumber = b.ToString(); + // hjfinishNumber = a.ToString(); + // hjzgl = result.ToString(); + // hjDataValue = (100 - result).ToString(); + // } + // } + //} } #endregion diff --git a/SGGL/FineUIPro.Web/common/main_new1.aspx.cs b/SGGL/FineUIPro.Web/common/main_new1.aspx.cs index 9f7bd7b4..145b96ff 100644 --- a/SGGL/FineUIPro.Web/common/main_new1.aspx.cs +++ b/SGGL/FineUIPro.Web/common/main_new1.aspx.cs @@ -162,11 +162,12 @@ namespace FineUIPro.Web.common int result = 0; //机具报验的到期提醒和过期提醒记录数加一起 //机具报验的到期提醒数 - var num1 = Funs.DB.Comprehensive_InspectionMachine.Where(x => x.IsOnSite == true && DateTime.Now < x.NextTestDate - && ((DateTime)x.NextTestDate).AddDays(-15) < DateTime.Now).Count(); + //var num1 = Funs.DB.Comprehensive_InspectionMachine.Where(x => x.IsOnSite == true && DateTime.Now < x.NextTestDate + // && ((DateTime)x.NextTestDate).AddDays(-15) < DateTime.Now).Count(); //过期提醒记录数 var num2 = Funs.DB.Comprehensive_InspectionMachine.Where(x => x.IsOnSite == true && x.NextTestDate < DateTime.Now).Count(); - result = num1 + num2; + //result = num1 + num2; + result = num2; return result; } @@ -200,9 +201,8 @@ namespace FineUIPro.Web.common private void getEarlyWarningCounts() { int allCount = 0; - var getPersonQualitys = from x in Funs.DB.QualityAudit_PersonQuality - join y in Funs.DB.SitePerson_Person on x.PersonId equals y.PersonId - where x.LimitDate.HasValue && x.LimitDate < DateTime.Now + var getPersonQualitys = from x in Funs.DB.Comprehensive_InspectionPerson + where x.ValidityDate.HasValue && x.ValidityDate < DateTime.Now && x.IsOnSite == true select x; //// 预警人数 allCount = getPersonQualitys.Count(); diff --git a/SGGL/FineUIPro.Web/upload/638493775269376155_图片5.png b/SGGL/FineUIPro.Web/upload/638493775269376155_图片5.png new file mode 100644 index 00000000..fa44dcdf Binary files /dev/null and b/SGGL/FineUIPro.Web/upload/638493775269376155_图片5.png differ diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 1e195972..027a6033 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -1457,9 +1457,6 @@ namespace Model partial void InsertManager_Month_CheckC(Manager_Month_CheckC instance); partial void UpdateManager_Month_CheckC(Manager_Month_CheckC instance); partial void DeleteManager_Month_CheckC(Manager_Month_CheckC instance); - partial void InsertManager_Month_ComplianceObligations(Manager_Month_ComplianceObligations instance); - partial void UpdateManager_Month_ComplianceObligations(Manager_Month_ComplianceObligations instance); - partial void DeleteManager_Month_ComplianceObligations(Manager_Month_ComplianceObligations instance); partial void InsertManager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC instance); partial void UpdateManager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC instance); partial void DeleteManager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC instance); @@ -2018,9 +2015,6 @@ namespace Model partial void InsertReport_CQMS_MonthReportItem(Report_CQMS_MonthReportItem instance); partial void UpdateReport_CQMS_MonthReportItem(Report_CQMS_MonthReportItem instance); partial void DeleteReport_CQMS_MonthReportItem(Report_CQMS_MonthReportItem instance); - partial void InsertReport_CQMS_ProblemHandle(Report_CQMS_ProblemHandle instance); - partial void UpdateReport_CQMS_ProblemHandle(Report_CQMS_ProblemHandle instance); - partial void DeleteReport_CQMS_ProblemHandle(Report_CQMS_ProblemHandle instance); partial void InsertReport_CqmsTarget(Report_CqmsTarget instance); partial void UpdateReport_CqmsTarget(Report_CqmsTarget instance); partial void DeleteReport_CqmsTarget(Report_CqmsTarget instance); @@ -6505,14 +6499,6 @@ namespace Model } } - public System.Data.Linq.Table Manager_Month_ComplianceObligations - { - get - { - return this.GetTable(); - } - } - public System.Data.Linq.Table Manager_Month_ComplianceObligationsC { get @@ -8001,14 +7987,6 @@ namespace Model } } - public System.Data.Linq.Table Report_CQMS_ProblemHandle - { - get - { - return this.GetTable(); - } - } - public System.Data.Linq.Table Report_CqmsTarget { get @@ -21574,6 +21552,8 @@ namespace Model private string _CodeRule; + private EntitySet _Doc_DocManage; + #region 可扩展性方法定义 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -21590,6 +21570,7 @@ namespace Model public Base_DocType() { + this._Doc_DocManage = new EntitySet(new Action(this.attach_Doc_DocManage), new Action(this.detach_Doc_DocManage)); OnCreated(); } @@ -21673,6 +21654,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManage_Base_DocType", Storage="_Doc_DocManage", ThisKey="DocTypeId", OtherKey="DocTypeId", DeleteRule="NO ACTION")] + public EntitySet Doc_DocManage + { + get + { + return this._Doc_DocManage; + } + set + { + this._Doc_DocManage.Assign(value); + } + } + public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -21692,6 +21686,18 @@ namespace Model this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } + + private void attach_Doc_DocManage(Doc_DocManage entity) + { + this.SendPropertyChanging(); + entity.Base_DocType = this; + } + + private void detach_Doc_DocManage(Doc_DocManage entity) + { + this.SendPropertyChanging(); + entity.Base_DocType = null; + } } [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_EmergencyType")] @@ -97620,10 +97626,10 @@ namespace Model private string _AuditMan; - private string _Measure; - private string _Problem; + private string _Measure; + private string _RemarkCode; private EntityRef _Sys_User; @@ -97672,10 +97678,10 @@ namespace Model partial void OnStatusChanged(); partial void OnAuditManChanging(string value); partial void OnAuditManChanged(); - partial void OnMeasureChanging(string value); - partial void OnMeasureChanged(); partial void OnProblemChanging(string value); partial void OnProblemChanged(); + partial void OnMeasureChanging(string value); + partial void OnMeasureChanged(); partial void OnRemarkCodeChanging(string value); partial void OnRemarkCodeChanged(); #endregion @@ -98045,27 +98051,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Measure", DbType="VarChar(500)")] - public string Measure - { - get - { - return this._Measure; - } - set - { - if ((this._Measure != value)) - { - this.OnMeasureChanging(value); - this.SendPropertyChanging(); - this._Measure = value; - this.SendPropertyChanged("Measure"); - this.OnMeasureChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Problem", DbType="VarChar(100)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Problem", DbType="VarChar(50)")] public string Problem { get @@ -98085,6 +98071,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Measure", DbType="VarChar(100)")] + public string Measure + { + get + { + return this._Measure; + } + set + { + if ((this._Measure != value)) + { + this.OnMeasureChanging(value); + this.SendPropertyChanging(); + this._Measure = value; + this.SendPropertyChanged("Measure"); + this.OnMeasureChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RemarkCode", DbType="NVarChar(50)")] public string RemarkCode { @@ -120443,6 +120449,8 @@ namespace Model private EntityRef _Base_CNProfessional; + private EntityRef _Base_DocType; + private EntityRef _Base_Project; private EntityRef _Base_Unit; @@ -120494,6 +120502,7 @@ namespace Model public Doc_DocManage() { this._Base_CNProfessional = default(EntityRef); + this._Base_DocType = default(EntityRef); this._Base_Project = default(EntityRef); this._Base_Unit = default(EntityRef); this._Sys_User = default(EntityRef); @@ -120572,6 +120581,10 @@ namespace Model { if ((this._DocTypeId != value)) { + if (this._Base_DocType.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } this.OnDocTypeIdChanging(value); this.SendPropertyChanging(); this._DocTypeId = value; @@ -120891,6 +120904,40 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManage_Base_DocType", Storage="_Base_DocType", ThisKey="DocTypeId", OtherKey="DocTypeId", IsForeignKey=true)] + public Base_DocType Base_DocType + { + get + { + return this._Base_DocType.Entity; + } + set + { + Base_DocType previousValue = this._Base_DocType.Entity; + if (((previousValue != value) + || (this._Base_DocType.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Base_DocType.Entity = null; + previousValue.Doc_DocManage.Remove(this); + } + this._Base_DocType.Entity = value; + if ((value != null)) + { + value.Doc_DocManage.Add(this); + this._DocTypeId = value.DocTypeId; + } + else + { + this._DocTypeId = default(string); + } + this.SendPropertyChanged("Base_DocType"); + } + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManage_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)] public Base_Project Base_Project { @@ -121061,6 +121108,8 @@ namespace Model private EntityRef _Doc_DocManage; + private EntityRef _Sys_User; + #region 可扩展性方法定义 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -121084,6 +121133,7 @@ namespace Model public Doc_DocManageApprove() { this._Doc_DocManage = default(EntityRef); + this._Sys_User = default(EntityRef); OnCreated(); } @@ -121131,7 +121181,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveMan", DbType="NVarChar(500)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveMan", DbType="NVarChar(50)")] public string ApproveMan { get @@ -121142,6 +121192,10 @@ namespace Model { if ((this._ApproveMan != value)) { + if (this._Sys_User.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } this.OnApproveManChanging(value); this.SendPropertyChanging(); this._ApproveMan = value; @@ -121265,6 +121319,40 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManageApprove_Sys_User", Storage="_Sys_User", ThisKey="ApproveMan", OtherKey="UserId", IsForeignKey=true)] + public Sys_User Sys_User + { + get + { + return this._Sys_User.Entity; + } + set + { + Sys_User previousValue = this._Sys_User.Entity; + if (((previousValue != value) + || (this._Sys_User.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Sys_User.Entity = null; + previousValue.Doc_DocManageApprove.Remove(this); + } + this._Sys_User.Entity = value; + if ((value != null)) + { + value.Doc_DocManageApprove.Add(this); + this._ApproveMan = value.UserId; + } + else + { + this._ApproveMan = default(string); + } + this.SendPropertyChanged("Sys_User"); + } + } + } + public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -235052,229 +235140,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Manager_Month_ComplianceObligations")] - public partial class Manager_Month_ComplianceObligations : INotifyPropertyChanging, INotifyPropertyChanged - { - - private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); - - private string _ComplianceObligationsId; - - private string _MonthReportId; - - private string _InformationContent; - - private string _ResponseMeasures; - - private string _ImplementationStatus; - - private string _EvaluationConclusion; - - private EntityRef _Manager_MonthReportC; - - #region 可扩展性方法定义 - partial void OnLoaded(); - partial void OnValidate(System.Data.Linq.ChangeAction action); - partial void OnCreated(); - partial void OnComplianceObligationsIdChanging(string value); - partial void OnComplianceObligationsIdChanged(); - partial void OnMonthReportIdChanging(string value); - partial void OnMonthReportIdChanged(); - partial void OnInformationContentChanging(string value); - partial void OnInformationContentChanged(); - partial void OnResponseMeasuresChanging(string value); - partial void OnResponseMeasuresChanged(); - partial void OnImplementationStatusChanging(string value); - partial void OnImplementationStatusChanged(); - partial void OnEvaluationConclusionChanging(string value); - partial void OnEvaluationConclusionChanged(); - #endregion - - public Manager_Month_ComplianceObligations() - { - this._Manager_MonthReportC = default(EntityRef); - OnCreated(); - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ComplianceObligationsId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] - public string ComplianceObligationsId - { - get - { - return this._ComplianceObligationsId; - } - set - { - if ((this._ComplianceObligationsId != value)) - { - this.OnComplianceObligationsIdChanging(value); - this.SendPropertyChanging(); - this._ComplianceObligationsId = value; - this.SendPropertyChanged("ComplianceObligationsId"); - this.OnComplianceObligationsIdChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthReportId", DbType="NVarChar(50)")] - public string MonthReportId - { - get - { - return this._MonthReportId; - } - set - { - if ((this._MonthReportId != value)) - { - if (this._Manager_MonthReportC.HasLoadedOrAssignedValue) - { - throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); - } - this.OnMonthReportIdChanging(value); - this.SendPropertyChanging(); - this._MonthReportId = value; - this.SendPropertyChanged("MonthReportId"); - this.OnMonthReportIdChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InformationContent", DbType="NVarChar(500)")] - public string InformationContent - { - get - { - return this._InformationContent; - } - set - { - if ((this._InformationContent != value)) - { - this.OnInformationContentChanging(value); - this.SendPropertyChanging(); - this._InformationContent = value; - this.SendPropertyChanged("InformationContent"); - this.OnInformationContentChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponseMeasures", DbType="NVarChar(500)")] - public string ResponseMeasures - { - get - { - return this._ResponseMeasures; - } - set - { - if ((this._ResponseMeasures != value)) - { - this.OnResponseMeasuresChanging(value); - this.SendPropertyChanging(); - this._ResponseMeasures = value; - this.SendPropertyChanged("ResponseMeasures"); - this.OnResponseMeasuresChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ImplementationStatus", DbType="NVarChar(500)")] - public string ImplementationStatus - { - get - { - return this._ImplementationStatus; - } - set - { - if ((this._ImplementationStatus != value)) - { - this.OnImplementationStatusChanging(value); - this.SendPropertyChanging(); - this._ImplementationStatus = value; - this.SendPropertyChanged("ImplementationStatus"); - this.OnImplementationStatusChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EvaluationConclusion", DbType="NVarChar(50)")] - public string EvaluationConclusion - { - get - { - return this._EvaluationConclusion; - } - set - { - if ((this._EvaluationConclusion != value)) - { - this.OnEvaluationConclusionChanging(value); - this.SendPropertyChanging(); - this._EvaluationConclusion = value; - this.SendPropertyChanged("EvaluationConclusion"); - this.OnEvaluationConclusionChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_ComplianceObligations_Manager_MonthReportC", Storage="_Manager_MonthReportC", ThisKey="MonthReportId", OtherKey="MonthReportId", IsForeignKey=true)] - public Manager_MonthReportC Manager_MonthReportC - { - get - { - return this._Manager_MonthReportC.Entity; - } - set - { - Manager_MonthReportC previousValue = this._Manager_MonthReportC.Entity; - if (((previousValue != value) - || (this._Manager_MonthReportC.HasLoadedOrAssignedValue == false))) - { - this.SendPropertyChanging(); - if ((previousValue != null)) - { - this._Manager_MonthReportC.Entity = null; - previousValue.Manager_Month_ComplianceObligations.Remove(this); - } - this._Manager_MonthReportC.Entity = value; - if ((value != null)) - { - value.Manager_Month_ComplianceObligations.Add(this); - this._MonthReportId = value.MonthReportId; - } - else - { - this._MonthReportId = default(string); - } - this.SendPropertyChanged("Manager_MonthReportC"); - } - } - } - - public event PropertyChangingEventHandler PropertyChanging; - - public event PropertyChangedEventHandler PropertyChanged; - - protected virtual void SendPropertyChanging() - { - if ((this.PropertyChanging != null)) - { - this.PropertyChanging(this, emptyChangingEventArgs); - } - } - - protected virtual void SendPropertyChanged(String propertyName) - { - if ((this.PropertyChanged != null)) - { - this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); - } - } - } - [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Manager_Month_ComplianceObligationsC")] public partial class Manager_Month_ComplianceObligationsC : INotifyPropertyChanging, INotifyPropertyChanged { @@ -241474,8 +241339,6 @@ namespace Model private EntitySet _Manager_Month_CheckC; - private EntitySet _Manager_Month_ComplianceObligations; - private EntitySet _Manager_Month_ComplianceObligationsC; private EntitySet _Manager_Month_CostInvestmentPlanC; @@ -241748,7 +241611,6 @@ namespace Model this._Manager_Month_ActivitiesC = new EntitySet(new Action(this.attach_Manager_Month_ActivitiesC), new Action(this.detach_Manager_Month_ActivitiesC)); this._Manager_Month_ActivityDesC = new EntitySet(new Action(this.attach_Manager_Month_ActivityDesC), new Action(this.detach_Manager_Month_ActivityDesC)); this._Manager_Month_CheckC = new EntitySet(new Action(this.attach_Manager_Month_CheckC), new Action(this.detach_Manager_Month_CheckC)); - this._Manager_Month_ComplianceObligations = new EntitySet(new Action(this.attach_Manager_Month_ComplianceObligations), new Action(this.detach_Manager_Month_ComplianceObligations)); this._Manager_Month_ComplianceObligationsC = new EntitySet(new Action(this.attach_Manager_Month_ComplianceObligationsC), new Action(this.detach_Manager_Month_ComplianceObligationsC)); this._Manager_Month_CostInvestmentPlanC = new EntitySet(new Action(this.attach_Manager_Month_CostInvestmentPlanC), new Action(this.detach_Manager_Month_CostInvestmentPlanC)); this._Manager_Month_EmergencyExercisesC = new EntitySet(new Action(this.attach_Manager_Month_EmergencyExercisesC), new Action(this.detach_Manager_Month_EmergencyExercisesC)); @@ -243929,19 +243791,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_ComplianceObligations_Manager_MonthReportC", Storage="_Manager_Month_ComplianceObligations", ThisKey="MonthReportId", OtherKey="MonthReportId", DeleteRule="NO ACTION")] - public EntitySet Manager_Month_ComplianceObligations - { - get - { - return this._Manager_Month_ComplianceObligations; - } - set - { - this._Manager_Month_ComplianceObligations.Assign(value); - } - } - [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_Month_ComplianceObligationsC_Manager_MonthReportC", Storage="_Manager_Month_ComplianceObligationsC", ThisKey="MonthReportId", OtherKey="MonthReportId", DeleteRule="NO ACTION")] public EntitySet Manager_Month_ComplianceObligationsC { @@ -244523,18 +244372,6 @@ namespace Model entity.Manager_MonthReportC = null; } - private void attach_Manager_Month_ComplianceObligations(Manager_Month_ComplianceObligations entity) - { - this.SendPropertyChanging(); - entity.Manager_MonthReportC = this; - } - - private void detach_Manager_Month_ComplianceObligations(Manager_Month_ComplianceObligations entity) - { - this.SendPropertyChanging(); - entity.Manager_MonthReportC = null; - } - private void attach_Manager_Month_ComplianceObligationsC(Manager_Month_ComplianceObligationsC entity) { this.SendPropertyChanging(); @@ -272879,7 +272716,7 @@ namespace Model private System.Nullable _ProblemType; - private string _QuestionTechnologyId; + private string _SubInspectId; private string _TermItemId; @@ -272893,20 +272730,18 @@ namespace Model private string _InspectUser; + private string _HandleUser; + private string _ApproveUser; + private System.Nullable _AdjustCompleteTime; + private System.Nullable _ApproveState; private string _AddUser; private System.Nullable _AddTime; - private string _HandleUser; - - private System.Nullable _AdjustCompleteTime; - - private string _SubInspectId; - #region 可扩展性方法定义 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -272923,8 +272758,8 @@ namespace Model partial void OnConstructionUnitChanged(); partial void OnProblemTypeChanging(System.Nullable value); partial void OnProblemTypeChanged(); - partial void OnQuestionTechnologyIdChanging(string value); - partial void OnQuestionTechnologyIdChanged(); + partial void OnSubInspectIdChanging(string value); + partial void OnSubInspectIdChanged(); partial void OnTermItemIdChanging(string value); partial void OnTermItemIdChanged(); partial void OnWorkPackIdChanging(string value); @@ -272937,20 +272772,18 @@ namespace Model partial void OnRectifyTimeChanged(); partial void OnInspectUserChanging(string value); partial void OnInspectUserChanged(); + partial void OnHandleUserChanging(string value); + partial void OnHandleUserChanged(); partial void OnApproveUserChanging(string value); partial void OnApproveUserChanged(); + partial void OnAdjustCompleteTimeChanging(System.Nullable value); + partial void OnAdjustCompleteTimeChanged(); partial void OnApproveStateChanging(System.Nullable value); partial void OnApproveStateChanged(); partial void OnAddUserChanging(string value); partial void OnAddUserChanged(); partial void OnAddTimeChanging(System.Nullable value); partial void OnAddTimeChanged(); - partial void OnHandleUserChanging(string value); - partial void OnHandleUserChanged(); - partial void OnAdjustCompleteTimeChanging(System.Nullable value); - partial void OnAdjustCompleteTimeChanged(); - partial void OnSubInspectIdChanging(string value); - partial void OnSubInspectIdChanged(); #endregion public PreRun_InspectTailTerm() @@ -273078,22 +272911,22 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QuestionTechnologyId", DbType="VarChar(50)")] - public string QuestionTechnologyId + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubInspectId", DbType="VarChar(50)")] + public string SubInspectId { get { - return this._QuestionTechnologyId; + return this._SubInspectId; } set { - if ((this._QuestionTechnologyId != value)) + if ((this._SubInspectId != value)) { - this.OnQuestionTechnologyIdChanging(value); + this.OnSubInspectIdChanging(value); this.SendPropertyChanging(); - this._QuestionTechnologyId = value; - this.SendPropertyChanged("QuestionTechnologyId"); - this.OnQuestionTechnologyIdChanged(); + this._SubInspectId = value; + this.SendPropertyChanged("SubInspectId"); + this.OnSubInspectIdChanged(); } } } @@ -273218,6 +273051,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleUser", DbType="VarChar(50)")] + public string HandleUser + { + get + { + return this._HandleUser; + } + set + { + if ((this._HandleUser != value)) + { + this.OnHandleUserChanging(value); + this.SendPropertyChanging(); + this._HandleUser = value; + this.SendPropertyChanged("HandleUser"); + this.OnHandleUserChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveUser", DbType="VarChar(50)")] public string ApproveUser { @@ -273238,6 +273091,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AdjustCompleteTime", DbType="DateTime")] + public System.Nullable AdjustCompleteTime + { + get + { + return this._AdjustCompleteTime; + } + set + { + if ((this._AdjustCompleteTime != value)) + { + this.OnAdjustCompleteTimeChanging(value); + this.SendPropertyChanging(); + this._AdjustCompleteTime = value; + this.SendPropertyChanged("AdjustCompleteTime"); + this.OnAdjustCompleteTimeChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveState", DbType="Int")] public System.Nullable ApproveState { @@ -273298,66 +273171,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HandleUser", DbType="VarChar(50)")] - public string HandleUser - { - get - { - return this._HandleUser; - } - set - { - if ((this._HandleUser != value)) - { - this.OnHandleUserChanging(value); - this.SendPropertyChanging(); - this._HandleUser = value; - this.SendPropertyChanged("HandleUser"); - this.OnHandleUserChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AdjustCompleteTime", DbType="DateTime")] - public System.Nullable AdjustCompleteTime - { - get - { - return this._AdjustCompleteTime; - } - set - { - if ((this._AdjustCompleteTime != value)) - { - this.OnAdjustCompleteTimeChanging(value); - this.SendPropertyChanging(); - this._AdjustCompleteTime = value; - this.SendPropertyChanged("AdjustCompleteTime"); - this.OnAdjustCompleteTimeChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubInspectId", DbType="NVarChar(50)")] - public string SubInspectId - { - get - { - return this._SubInspectId; - } - set - { - if ((this._SubInspectId != value)) - { - this.OnSubInspectIdChanging(value); - this.SendPropertyChanging(); - this._SubInspectId = value; - this.SendPropertyChanged("SubInspectId"); - this.OnSubInspectIdChanged(); - } - } - } - public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -273399,14 +273212,14 @@ namespace Model private string _ApproveUser; + private System.Nullable _ApproveType; + private System.Nullable _ApproveState; private string _AddUser; private System.Nullable _AddTime; - private System.Nullable _ApproveType; - #region 可扩展性方法定义 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -273425,14 +273238,14 @@ namespace Model partial void OnApproveTimeChanged(); partial void OnApproveUserChanging(string value); partial void OnApproveUserChanged(); + partial void OnApproveTypeChanging(System.Nullable value); + partial void OnApproveTypeChanged(); partial void OnApproveStateChanging(System.Nullable value); partial void OnApproveStateChanged(); partial void OnAddUserChanging(string value); partial void OnAddUserChanged(); partial void OnAddTimeChanging(System.Nullable value); partial void OnAddTimeChanged(); - partial void OnApproveTypeChanging(System.Nullable value); - partial void OnApproveTypeChanged(); #endregion public PreRun_InspectTermApproveRecords() @@ -273580,6 +273393,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveType", DbType="Int")] + public System.Nullable ApproveType + { + get + { + return this._ApproveType; + } + set + { + if ((this._ApproveType != value)) + { + this.OnApproveTypeChanging(value); + this.SendPropertyChanging(); + this._ApproveType = value; + this.SendPropertyChanged("ApproveType"); + this.OnApproveTypeChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveState", DbType="Int")] public System.Nullable ApproveState { @@ -273640,26 +273473,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveType", DbType="Int")] - public System.Nullable ApproveType - { - get - { - return this._ApproveType; - } - set - { - if ((this._ApproveType != value)) - { - this.OnApproveTypeChanging(value); - this.SendPropertyChanging(); - this._ApproveType = value; - this.SendPropertyChanged("ApproveType"); - this.OnApproveTypeChanged(); - } - } - } - public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -274592,7 +274405,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string Remark { get @@ -274715,12 +274528,6 @@ namespace Model private string _InspectResult; - private System.Nullable _InspectTime; - - private string _AddUser; - - private System.Nullable _AddTime; - private string _Subcontractor; private string _Contractor; @@ -274729,12 +274536,6 @@ namespace Model private string _Owner; - private System.Nullable _IsUnifyWanderAbout; - - private System.Nullable _UnifyWanderAboutData; - - private string _UnifyWanderAboutOpinion; - private System.Nullable _InspectionIsAllPass; private System.Nullable _SubcontractorIsAllPass; @@ -274745,7 +274546,9 @@ namespace Model private System.Nullable _OwnerIsAllPass; - private System.Nullable _WanderIsComplete; + private System.Nullable _WorkPackType; + + private string _PropertyTechnologyId; private System.Nullable _SubcontractorAllPassData; @@ -274755,25 +274558,35 @@ namespace Model private System.Nullable _OwnerAllPassData; - private System.Nullable _WanderCompleteData; + private System.Nullable _WanderIsComplete; - private System.Nullable _WorkPackType; + private System.Nullable _WanderCompleteData; private System.Nullable _IsSiteImplement; - private System.Nullable _InspectIsClose; - - private System.Nullable _InspectCloseData; - - private string _InspectIsCloseUser; - - private string _PropertyTechnologyId; - - private System.Nullable _RecordUploadData; + private string _SiteImplementUser; private System.Nullable _SiteImplementConfirmData; - private string _SiteImplementUser; + private System.Nullable _RecordUploadData; + + private System.Nullable _InspectIsClose; + + private string _InspectIsCloseUser; + + private System.Nullable _InspectCloseData; + + private System.Nullable _IsUnifyWanderAbout; + + private System.Nullable _UnifyWanderAboutData; + + private string _UnifyWanderAboutOpinion; + + private System.Nullable _InspectTime; + + private string _AddUser; + + private System.Nullable _AddTime; #region 可扩展性方法定义 partial void OnLoaded(); @@ -274795,12 +274608,6 @@ namespace Model partial void OnWorkPackIdChanged(); partial void OnInspectResultChanging(string value); partial void OnInspectResultChanged(); - partial void OnInspectTimeChanging(System.Nullable value); - partial void OnInspectTimeChanged(); - partial void OnAddUserChanging(string value); - partial void OnAddUserChanged(); - partial void OnAddTimeChanging(System.Nullable value); - partial void OnAddTimeChanged(); partial void OnSubcontractorChanging(string value); partial void OnSubcontractorChanged(); partial void OnContractorChanging(string value); @@ -274809,12 +274616,6 @@ namespace Model partial void OnSupervisionChanged(); partial void OnOwnerChanging(string value); partial void OnOwnerChanged(); - partial void OnIsUnifyWanderAboutChanging(System.Nullable value); - partial void OnIsUnifyWanderAboutChanged(); - partial void OnUnifyWanderAboutDataChanging(System.Nullable value); - partial void OnUnifyWanderAboutDataChanged(); - partial void OnUnifyWanderAboutOpinionChanging(string value); - partial void OnUnifyWanderAboutOpinionChanged(); partial void OnInspectionIsAllPassChanging(System.Nullable value); partial void OnInspectionIsAllPassChanged(); partial void OnSubcontractorIsAllPassChanging(System.Nullable value); @@ -274825,8 +274626,10 @@ namespace Model partial void OnSupervisionIsAllPassChanged(); partial void OnOwnerIsAllPassChanging(System.Nullable value); partial void OnOwnerIsAllPassChanged(); - partial void OnWanderIsCompleteChanging(System.Nullable value); - partial void OnWanderIsCompleteChanged(); + partial void OnWorkPackTypeChanging(System.Nullable value); + partial void OnWorkPackTypeChanged(); + partial void OnPropertyTechnologyIdChanging(string value); + partial void OnPropertyTechnologyIdChanged(); partial void OnSubcontractorAllPassDataChanging(System.Nullable value); partial void OnSubcontractorAllPassDataChanged(); partial void OnContractorAllPassDataChanging(System.Nullable value); @@ -274835,26 +274638,36 @@ namespace Model partial void OnSupervisionAllPassDataChanged(); partial void OnOwnerAllPassDataChanging(System.Nullable value); partial void OnOwnerAllPassDataChanged(); + partial void OnWanderIsCompleteChanging(System.Nullable value); + partial void OnWanderIsCompleteChanged(); partial void OnWanderCompleteDataChanging(System.Nullable value); partial void OnWanderCompleteDataChanged(); - partial void OnWorkPackTypeChanging(System.Nullable value); - partial void OnWorkPackTypeChanged(); partial void OnIsSiteImplementChanging(System.Nullable value); partial void OnIsSiteImplementChanged(); - partial void OnInspectIsCloseChanging(System.Nullable value); - partial void OnInspectIsCloseChanged(); - partial void OnInspectCloseDataChanging(System.Nullable value); - partial void OnInspectCloseDataChanged(); - partial void OnInspectIsCloseUserChanging(string value); - partial void OnInspectIsCloseUserChanged(); - partial void OnPropertyTechnologyIdChanging(string value); - partial void OnPropertyTechnologyIdChanged(); - partial void OnRecordUploadDataChanging(System.Nullable value); - partial void OnRecordUploadDataChanged(); - partial void OnSiteImplementConfirmDataChanging(System.Nullable value); - partial void OnSiteImplementConfirmDataChanged(); partial void OnSiteImplementUserChanging(string value); partial void OnSiteImplementUserChanged(); + partial void OnSiteImplementConfirmDataChanging(System.Nullable value); + partial void OnSiteImplementConfirmDataChanged(); + partial void OnRecordUploadDataChanging(System.Nullable value); + partial void OnRecordUploadDataChanged(); + partial void OnInspectIsCloseChanging(System.Nullable value); + partial void OnInspectIsCloseChanged(); + partial void OnInspectIsCloseUserChanging(string value); + partial void OnInspectIsCloseUserChanged(); + partial void OnInspectCloseDataChanging(System.Nullable value); + partial void OnInspectCloseDataChanged(); + partial void OnIsUnifyWanderAboutChanging(System.Nullable value); + partial void OnIsUnifyWanderAboutChanged(); + partial void OnUnifyWanderAboutDataChanging(System.Nullable value); + partial void OnUnifyWanderAboutDataChanged(); + partial void OnUnifyWanderAboutOpinionChanging(string value); + partial void OnUnifyWanderAboutOpinionChanged(); + partial void OnInspectTimeChanging(System.Nullable value); + partial void OnInspectTimeChanged(); + partial void OnAddUserChanging(string value); + partial void OnAddUserChanged(); + partial void OnAddTimeChanging(System.Nullable value); + partial void OnAddTimeChanged(); #endregion public PreRun_SubInspectTerm() @@ -275022,66 +274835,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectTime", DbType="DateTime")] - public System.Nullable InspectTime - { - get - { - return this._InspectTime; - } - set - { - if ((this._InspectTime != value)) - { - this.OnInspectTimeChanging(value); - this.SendPropertyChanging(); - this._InspectTime = value; - this.SendPropertyChanged("InspectTime"); - this.OnInspectTimeChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")] - public string AddUser - { - get - { - return this._AddUser; - } - set - { - if ((this._AddUser != value)) - { - this.OnAddUserChanging(value); - this.SendPropertyChanging(); - this._AddUser = value; - this.SendPropertyChanged("AddUser"); - this.OnAddUserChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")] - public System.Nullable AddTime - { - get - { - return this._AddTime; - } - set - { - if ((this._AddTime != value)) - { - this.OnAddTimeChanging(value); - this.SendPropertyChanging(); - this._AddTime = value; - this.SendPropertyChanged("AddTime"); - this.OnAddTimeChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subcontractor", DbType="VarChar(50)")] public string Subcontractor { @@ -275162,66 +274915,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUnifyWanderAbout", DbType="Int")] - public System.Nullable IsUnifyWanderAbout - { - get - { - return this._IsUnifyWanderAbout; - } - set - { - if ((this._IsUnifyWanderAbout != value)) - { - this.OnIsUnifyWanderAboutChanging(value); - this.SendPropertyChanging(); - this._IsUnifyWanderAbout = value; - this.SendPropertyChanged("IsUnifyWanderAbout"); - this.OnIsUnifyWanderAboutChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutData", DbType="DateTime")] - public System.Nullable UnifyWanderAboutData - { - get - { - return this._UnifyWanderAboutData; - } - set - { - if ((this._UnifyWanderAboutData != value)) - { - this.OnUnifyWanderAboutDataChanging(value); - this.SendPropertyChanging(); - this._UnifyWanderAboutData = value; - this.SendPropertyChanged("UnifyWanderAboutData"); - this.OnUnifyWanderAboutDataChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutOpinion", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] - public string UnifyWanderAboutOpinion - { - get - { - return this._UnifyWanderAboutOpinion; - } - set - { - if ((this._UnifyWanderAboutOpinion != value)) - { - this.OnUnifyWanderAboutOpinionChanging(value); - this.SendPropertyChanging(); - this._UnifyWanderAboutOpinion = value; - this.SendPropertyChanged("UnifyWanderAboutOpinion"); - this.OnUnifyWanderAboutOpinionChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionIsAllPass", DbType="Int")] public System.Nullable InspectionIsAllPass { @@ -275322,22 +275015,42 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")] - public System.Nullable WanderIsComplete + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackType", DbType="Int")] + public System.Nullable WorkPackType { get { - return this._WanderIsComplete; + return this._WorkPackType; } set { - if ((this._WanderIsComplete != value)) + if ((this._WorkPackType != value)) { - this.OnWanderIsCompleteChanging(value); + this.OnWorkPackTypeChanging(value); this.SendPropertyChanging(); - this._WanderIsComplete = value; - this.SendPropertyChanged("WanderIsComplete"); - this.OnWanderIsCompleteChanged(); + this._WorkPackType = value; + this.SendPropertyChanged("WorkPackType"); + this.OnWorkPackTypeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string PropertyTechnologyId + { + get + { + return this._PropertyTechnologyId; + } + set + { + if ((this._PropertyTechnologyId != value)) + { + this.OnPropertyTechnologyIdChanging(value); + this.SendPropertyChanging(); + this._PropertyTechnologyId = value; + this.SendPropertyChanged("PropertyTechnologyId"); + this.OnPropertyTechnologyIdChanged(); } } } @@ -275422,6 +275135,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")] + public System.Nullable WanderIsComplete + { + get + { + return this._WanderIsComplete; + } + set + { + if ((this._WanderIsComplete != value)) + { + this.OnWanderIsCompleteChanging(value); + this.SendPropertyChanging(); + this._WanderIsComplete = value; + this.SendPropertyChanged("WanderIsComplete"); + this.OnWanderIsCompleteChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderCompleteData", DbType="DateTime")] public System.Nullable WanderCompleteData { @@ -275442,26 +275175,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackType", DbType="Int")] - public System.Nullable WorkPackType - { - get - { - return this._WorkPackType; - } - set - { - if ((this._WorkPackType != value)) - { - this.OnWorkPackTypeChanging(value); - this.SendPropertyChanging(); - this._WorkPackType = value; - this.SendPropertyChanged("WorkPackType"); - this.OnWorkPackTypeChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSiteImplement", DbType="Int")] public System.Nullable IsSiteImplement { @@ -275482,102 +275195,22 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsClose", DbType="Int")] - public System.Nullable InspectIsClose + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="VarChar(50)")] + public string SiteImplementUser { get { - return this._InspectIsClose; + return this._SiteImplementUser; } set { - if ((this._InspectIsClose != value)) + if ((this._SiteImplementUser != value)) { - this.OnInspectIsCloseChanging(value); + this.OnSiteImplementUserChanging(value); this.SendPropertyChanging(); - this._InspectIsClose = value; - this.SendPropertyChanged("InspectIsClose"); - this.OnInspectIsCloseChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectCloseData", DbType="DateTime")] - public System.Nullable InspectCloseData - { - get - { - return this._InspectCloseData; - } - set - { - if ((this._InspectCloseData != value)) - { - this.OnInspectCloseDataChanging(value); - this.SendPropertyChanging(); - this._InspectCloseData = value; - this.SendPropertyChanged("InspectCloseData"); - this.OnInspectCloseDataChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="NVarChar(50)")] - public string InspectIsCloseUser - { - get - { - return this._InspectIsCloseUser; - } - set - { - if ((this._InspectIsCloseUser != value)) - { - this.OnInspectIsCloseUserChanging(value); - this.SendPropertyChanging(); - this._InspectIsCloseUser = value; - this.SendPropertyChanged("InspectIsCloseUser"); - this.OnInspectIsCloseUserChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="NVarChar(500)")] - public string PropertyTechnologyId - { - get - { - return this._PropertyTechnologyId; - } - set - { - if ((this._PropertyTechnologyId != value)) - { - this.OnPropertyTechnologyIdChanging(value); - this.SendPropertyChanging(); - this._PropertyTechnologyId = value; - this.SendPropertyChanged("PropertyTechnologyId"); - this.OnPropertyTechnologyIdChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")] - public System.Nullable RecordUploadData - { - get - { - return this._RecordUploadData; - } - set - { - if ((this._RecordUploadData != value)) - { - this.OnRecordUploadDataChanging(value); - this.SendPropertyChanging(); - this._RecordUploadData = value; - this.SendPropertyChanged("RecordUploadData"); - this.OnRecordUploadDataChanged(); + this._SiteImplementUser = value; + this.SendPropertyChanged("SiteImplementUser"); + this.OnSiteImplementUserChanged(); } } } @@ -275602,22 +275235,202 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="NVarChar(50)")] - public string SiteImplementUser + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")] + public System.Nullable RecordUploadData { get { - return this._SiteImplementUser; + return this._RecordUploadData; } set { - if ((this._SiteImplementUser != value)) + if ((this._RecordUploadData != value)) { - this.OnSiteImplementUserChanging(value); + this.OnRecordUploadDataChanging(value); this.SendPropertyChanging(); - this._SiteImplementUser = value; - this.SendPropertyChanged("SiteImplementUser"); - this.OnSiteImplementUserChanged(); + this._RecordUploadData = value; + this.SendPropertyChanged("RecordUploadData"); + this.OnRecordUploadDataChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsClose", DbType="Int")] + public System.Nullable InspectIsClose + { + get + { + return this._InspectIsClose; + } + set + { + if ((this._InspectIsClose != value)) + { + this.OnInspectIsCloseChanging(value); + this.SendPropertyChanging(); + this._InspectIsClose = value; + this.SendPropertyChanged("InspectIsClose"); + this.OnInspectIsCloseChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="VarChar(50)")] + public string InspectIsCloseUser + { + get + { + return this._InspectIsCloseUser; + } + set + { + if ((this._InspectIsCloseUser != value)) + { + this.OnInspectIsCloseUserChanging(value); + this.SendPropertyChanging(); + this._InspectIsCloseUser = value; + this.SendPropertyChanged("InspectIsCloseUser"); + this.OnInspectIsCloseUserChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectCloseData", DbType="DateTime")] + public System.Nullable InspectCloseData + { + get + { + return this._InspectCloseData; + } + set + { + if ((this._InspectCloseData != value)) + { + this.OnInspectCloseDataChanging(value); + this.SendPropertyChanging(); + this._InspectCloseData = value; + this.SendPropertyChanged("InspectCloseData"); + this.OnInspectCloseDataChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUnifyWanderAbout", DbType="Int")] + public System.Nullable IsUnifyWanderAbout + { + get + { + return this._IsUnifyWanderAbout; + } + set + { + if ((this._IsUnifyWanderAbout != value)) + { + this.OnIsUnifyWanderAboutChanging(value); + this.SendPropertyChanging(); + this._IsUnifyWanderAbout = value; + this.SendPropertyChanged("IsUnifyWanderAbout"); + this.OnIsUnifyWanderAboutChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutData", DbType="DateTime")] + public System.Nullable UnifyWanderAboutData + { + get + { + return this._UnifyWanderAboutData; + } + set + { + if ((this._UnifyWanderAboutData != value)) + { + this.OnUnifyWanderAboutDataChanging(value); + this.SendPropertyChanging(); + this._UnifyWanderAboutData = value; + this.SendPropertyChanged("UnifyWanderAboutData"); + this.OnUnifyWanderAboutDataChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutOpinion", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string UnifyWanderAboutOpinion + { + get + { + return this._UnifyWanderAboutOpinion; + } + set + { + if ((this._UnifyWanderAboutOpinion != value)) + { + this.OnUnifyWanderAboutOpinionChanging(value); + this.SendPropertyChanging(); + this._UnifyWanderAboutOpinion = value; + this.SendPropertyChanged("UnifyWanderAboutOpinion"); + this.OnUnifyWanderAboutOpinionChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectTime", DbType="DateTime")] + public System.Nullable InspectTime + { + get + { + return this._InspectTime; + } + set + { + if ((this._InspectTime != value)) + { + this.OnInspectTimeChanging(value); + this.SendPropertyChanging(); + this._InspectTime = value; + this.SendPropertyChanged("InspectTime"); + this.OnInspectTimeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")] + public string AddUser + { + get + { + return this._AddUser; + } + set + { + if ((this._AddUser != value)) + { + this.OnAddUserChanging(value); + this.SendPropertyChanging(); + this._AddUser = value; + this.SendPropertyChanged("AddUser"); + this.OnAddUserChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")] + public System.Nullable AddTime + { + get + { + return this._AddTime; + } + set + { + if ((this._AddTime != value)) + { + this.OnAddTimeChanging(value); + this.SendPropertyChanging(); + this._AddTime = value; + this.SendPropertyChanged("AddTime"); + this.OnAddTimeChanged(); } } } @@ -275685,6 +275498,22 @@ namespace Model private string _Owner; + private System.Nullable _SubcontractorIsPass; + + private System.Nullable _ContractorIsPass; + + private System.Nullable _SupervisionIsPass; + + private System.Nullable _OwnerIsPass; + + private string _SubcontractorRemark; + + private string _ContractorRemark; + + private string _SupervisionRemark; + + private string _OwnerRemark; + private System.Nullable _WorkPackType; private string _PropertyTechnologyId; @@ -275697,22 +275526,6 @@ namespace Model private System.Nullable _Sort; - private string _SubcontractorRemark; - - private string _ContractorRemark; - - private string _SupervisionRemark; - - private string _OwnerRemark; - - private System.Nullable _SubcontractorIsPass; - - private System.Nullable _ContractorIsPass; - - private System.Nullable _SupervisionIsPass; - - private System.Nullable _OwnerIsPass; - #region 可扩展性方法定义 partial void OnLoaded(); partial void OnValidate(System.Data.Linq.ChangeAction action); @@ -275753,6 +275566,22 @@ namespace Model partial void OnSupervisionChanged(); partial void OnOwnerChanging(string value); partial void OnOwnerChanged(); + partial void OnSubcontractorIsPassChanging(System.Nullable value); + partial void OnSubcontractorIsPassChanged(); + partial void OnContractorIsPassChanging(System.Nullable value); + partial void OnContractorIsPassChanged(); + partial void OnSupervisionIsPassChanging(System.Nullable value); + partial void OnSupervisionIsPassChanged(); + partial void OnOwnerIsPassChanging(System.Nullable value); + partial void OnOwnerIsPassChanged(); + partial void OnSubcontractorRemarkChanging(string value); + partial void OnSubcontractorRemarkChanged(); + partial void OnContractorRemarkChanging(string value); + partial void OnContractorRemarkChanged(); + partial void OnSupervisionRemarkChanging(string value); + partial void OnSupervisionRemarkChanged(); + partial void OnOwnerRemarkChanging(string value); + partial void OnOwnerRemarkChanged(); partial void OnWorkPackTypeChanging(System.Nullable value); partial void OnWorkPackTypeChanged(); partial void OnPropertyTechnologyIdChanging(string value); @@ -275765,22 +275594,6 @@ namespace Model partial void OnAddTimeChanged(); partial void OnSortChanging(System.Nullable value); partial void OnSortChanged(); - partial void OnSubcontractorRemarkChanging(string value); - partial void OnSubcontractorRemarkChanged(); - partial void OnContractorRemarkChanging(string value); - partial void OnContractorRemarkChanged(); - partial void OnSupervisionRemarkChanging(string value); - partial void OnSupervisionRemarkChanged(); - partial void OnOwnerRemarkChanging(string value); - partial void OnOwnerRemarkChanged(); - partial void OnSubcontractorIsPassChanging(System.Nullable value); - partial void OnSubcontractorIsPassChanged(); - partial void OnContractorIsPassChanging(System.Nullable value); - partial void OnContractorIsPassChanged(); - partial void OnSupervisionIsPassChanging(System.Nullable value); - partial void OnSupervisionIsPassChanged(); - partial void OnOwnerIsPassChanging(System.Nullable value); - partial void OnOwnerIsPassChanged(); #endregion public PreRun_SubInspectTermItem() @@ -276148,6 +275961,166 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorIsPass", DbType="Int")] + public System.Nullable SubcontractorIsPass + { + get + { + return this._SubcontractorIsPass; + } + set + { + if ((this._SubcontractorIsPass != value)) + { + this.OnSubcontractorIsPassChanging(value); + this.SendPropertyChanging(); + this._SubcontractorIsPass = value; + this.SendPropertyChanged("SubcontractorIsPass"); + this.OnSubcontractorIsPassChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorIsPass", DbType="Int")] + public System.Nullable ContractorIsPass + { + get + { + return this._ContractorIsPass; + } + set + { + if ((this._ContractorIsPass != value)) + { + this.OnContractorIsPassChanging(value); + this.SendPropertyChanging(); + this._ContractorIsPass = value; + this.SendPropertyChanged("ContractorIsPass"); + this.OnContractorIsPassChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionIsPass", DbType="Int")] + public System.Nullable SupervisionIsPass + { + get + { + return this._SupervisionIsPass; + } + set + { + if ((this._SupervisionIsPass != value)) + { + this.OnSupervisionIsPassChanging(value); + this.SendPropertyChanging(); + this._SupervisionIsPass = value; + this.SendPropertyChanged("SupervisionIsPass"); + this.OnSupervisionIsPassChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerIsPass", DbType="Int")] + public System.Nullable OwnerIsPass + { + get + { + return this._OwnerIsPass; + } + set + { + if ((this._OwnerIsPass != value)) + { + this.OnOwnerIsPassChanging(value); + this.SendPropertyChanging(); + this._OwnerIsPass = value; + this.SendPropertyChanged("OwnerIsPass"); + this.OnOwnerIsPassChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorRemark", DbType="VarChar(1000)")] + public string SubcontractorRemark + { + get + { + return this._SubcontractorRemark; + } + set + { + if ((this._SubcontractorRemark != value)) + { + this.OnSubcontractorRemarkChanging(value); + this.SendPropertyChanging(); + this._SubcontractorRemark = value; + this.SendPropertyChanged("SubcontractorRemark"); + this.OnSubcontractorRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorRemark", DbType="VarChar(1000)")] + public string ContractorRemark + { + get + { + return this._ContractorRemark; + } + set + { + if ((this._ContractorRemark != value)) + { + this.OnContractorRemarkChanging(value); + this.SendPropertyChanging(); + this._ContractorRemark = value; + this.SendPropertyChanged("ContractorRemark"); + this.OnContractorRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionRemark", DbType="VarChar(1000)")] + public string SupervisionRemark + { + get + { + return this._SupervisionRemark; + } + set + { + if ((this._SupervisionRemark != value)) + { + this.OnSupervisionRemarkChanging(value); + this.SendPropertyChanging(); + this._SupervisionRemark = value; + this.SendPropertyChanged("SupervisionRemark"); + this.OnSupervisionRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerRemark", DbType="VarChar(1000)")] + public string OwnerRemark + { + get + { + return this._OwnerRemark; + } + set + { + if ((this._OwnerRemark != value)) + { + this.OnOwnerRemarkChanging(value); + this.SendPropertyChanging(); + this._OwnerRemark = value; + this.SendPropertyChanged("OwnerRemark"); + this.OnOwnerRemarkChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackType", DbType="Int")] public System.Nullable WorkPackType { @@ -276168,7 +276141,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="VarChar(50)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PropertyTechnologyId", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string PropertyTechnologyId { get @@ -276268,166 +276241,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorRemark", DbType="VarChar(1000)")] - public string SubcontractorRemark - { - get - { - return this._SubcontractorRemark; - } - set - { - if ((this._SubcontractorRemark != value)) - { - this.OnSubcontractorRemarkChanging(value); - this.SendPropertyChanging(); - this._SubcontractorRemark = value; - this.SendPropertyChanged("SubcontractorRemark"); - this.OnSubcontractorRemarkChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorRemark", DbType="VarChar(1000)")] - public string ContractorRemark - { - get - { - return this._ContractorRemark; - } - set - { - if ((this._ContractorRemark != value)) - { - this.OnContractorRemarkChanging(value); - this.SendPropertyChanging(); - this._ContractorRemark = value; - this.SendPropertyChanged("ContractorRemark"); - this.OnContractorRemarkChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionRemark", DbType="VarChar(1000)")] - public string SupervisionRemark - { - get - { - return this._SupervisionRemark; - } - set - { - if ((this._SupervisionRemark != value)) - { - this.OnSupervisionRemarkChanging(value); - this.SendPropertyChanging(); - this._SupervisionRemark = value; - this.SendPropertyChanged("SupervisionRemark"); - this.OnSupervisionRemarkChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerRemark", DbType="VarChar(1000)")] - public string OwnerRemark - { - get - { - return this._OwnerRemark; - } - set - { - if ((this._OwnerRemark != value)) - { - this.OnOwnerRemarkChanging(value); - this.SendPropertyChanging(); - this._OwnerRemark = value; - this.SendPropertyChanged("OwnerRemark"); - this.OnOwnerRemarkChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorIsPass", DbType="Int")] - public System.Nullable SubcontractorIsPass - { - get - { - return this._SubcontractorIsPass; - } - set - { - if ((this._SubcontractorIsPass != value)) - { - this.OnSubcontractorIsPassChanging(value); - this.SendPropertyChanging(); - this._SubcontractorIsPass = value; - this.SendPropertyChanged("SubcontractorIsPass"); - this.OnSubcontractorIsPassChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorIsPass", DbType="Int")] - public System.Nullable ContractorIsPass - { - get - { - return this._ContractorIsPass; - } - set - { - if ((this._ContractorIsPass != value)) - { - this.OnContractorIsPassChanging(value); - this.SendPropertyChanging(); - this._ContractorIsPass = value; - this.SendPropertyChanged("ContractorIsPass"); - this.OnContractorIsPassChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionIsPass", DbType="Int")] - public System.Nullable SupervisionIsPass - { - get - { - return this._SupervisionIsPass; - } - set - { - if ((this._SupervisionIsPass != value)) - { - this.OnSupervisionIsPassChanging(value); - this.SendPropertyChanging(); - this._SupervisionIsPass = value; - this.SendPropertyChanged("SupervisionIsPass"); - this.OnSupervisionIsPassChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerIsPass", DbType="Int")] - public System.Nullable OwnerIsPass - { - get - { - return this._OwnerIsPass; - } - set - { - if ((this._OwnerIsPass != value)) - { - this.OnOwnerIsPassChanging(value); - this.SendPropertyChanging(); - this._OwnerIsPass = value; - this.SendPropertyChanged("OwnerIsPass"); - this.OnOwnerIsPassChanged(); - } - } - } - public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangedEventHandler PropertyChanged; @@ -277429,6 +277242,8 @@ namespace Model private string _RestrictCondition; + private System.Nullable _ResponsibilityProposeSatate; + private System.Nullable _ResponsibilityConfirm; private System.Nullable _ProposeConfirm; @@ -277439,9 +277254,11 @@ namespace Model private System.Nullable _OwnerConfirm; + private System.Nullable _ProposeConfirmData; + private System.Nullable _ResponsibilityConfirmData; - private System.Nullable _ProposeConfirmData; + private System.Nullable _ProposeHandleData; private System.Nullable _GeneraConfirmData; @@ -277457,10 +277274,6 @@ namespace Model private System.Nullable _Sort; - private System.Nullable _ResponsibilityProposeSatate; - - private System.Nullable _ProposeHandleData; - private string _FourDecisionCode; #region 可扩展性方法定义 @@ -277497,6 +277310,8 @@ namespace Model partial void OnRealityDestructionTimeChanged(); partial void OnRestrictConditionChanging(string value); partial void OnRestrictConditionChanged(); + partial void OnResponsibilityProposeSatateChanging(System.Nullable value); + partial void OnResponsibilityProposeSatateChanged(); partial void OnResponsibilityConfirmChanging(System.Nullable value); partial void OnResponsibilityConfirmChanged(); partial void OnProposeConfirmChanging(System.Nullable value); @@ -277507,10 +277322,12 @@ namespace Model partial void OnSupervisionConfirmChanged(); partial void OnOwnerConfirmChanging(System.Nullable value); partial void OnOwnerConfirmChanged(); - partial void OnResponsibilityConfirmDataChanging(System.Nullable value); - partial void OnResponsibilityConfirmDataChanged(); partial void OnProposeConfirmDataChanging(System.Nullable value); partial void OnProposeConfirmDataChanged(); + partial void OnResponsibilityConfirmDataChanging(System.Nullable value); + partial void OnResponsibilityConfirmDataChanged(); + partial void OnProposeHandleDataChanging(System.Nullable value); + partial void OnProposeHandleDataChanged(); partial void OnGeneraConfirmDataChanging(System.Nullable value); partial void OnGeneraConfirmDataChanged(); partial void OnSupervisionConfirmDataChanging(System.Nullable value); @@ -277525,10 +277342,6 @@ namespace Model partial void OnAddTimeChanged(); partial void OnSortChanging(System.Nullable value); partial void OnSortChanged(); - partial void OnResponsibilityProposeSatateChanging(System.Nullable value); - partial void OnResponsibilityProposeSatateChanged(); - partial void OnProposeHandleDataChanging(System.Nullable value); - partial void OnProposeHandleDataChanged(); partial void OnFourDecisionCodeChanging(string value); partial void OnFourDecisionCodeChanged(); #endregion @@ -277838,6 +277651,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityProposeSatate", DbType="Int")] + public System.Nullable ResponsibilityProposeSatate + { + get + { + return this._ResponsibilityProposeSatate; + } + set + { + if ((this._ResponsibilityProposeSatate != value)) + { + this.OnResponsibilityProposeSatateChanging(value); + this.SendPropertyChanging(); + this._ResponsibilityProposeSatate = value; + this.SendPropertyChanged("ResponsibilityProposeSatate"); + this.OnResponsibilityProposeSatateChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityConfirm", DbType="Int")] public System.Nullable ResponsibilityConfirm { @@ -277938,6 +277771,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeConfirmData", DbType="DateTime")] + public System.Nullable ProposeConfirmData + { + get + { + return this._ProposeConfirmData; + } + set + { + if ((this._ProposeConfirmData != value)) + { + this.OnProposeConfirmDataChanging(value); + this.SendPropertyChanging(); + this._ProposeConfirmData = value; + this.SendPropertyChanged("ProposeConfirmData"); + this.OnProposeConfirmDataChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityConfirmData", DbType="DateTime")] public System.Nullable ResponsibilityConfirmData { @@ -277958,22 +277811,22 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeConfirmData", DbType="DateTime")] - public System.Nullable ProposeConfirmData + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeHandleData", DbType="DateTime")] + public System.Nullable ProposeHandleData { get { - return this._ProposeConfirmData; + return this._ProposeHandleData; } set { - if ((this._ProposeConfirmData != value)) + if ((this._ProposeHandleData != value)) { - this.OnProposeConfirmDataChanging(value); + this.OnProposeHandleDataChanging(value); this.SendPropertyChanging(); - this._ProposeConfirmData = value; - this.SendPropertyChanged("ProposeConfirmData"); - this.OnProposeConfirmDataChanged(); + this._ProposeHandleData = value; + this.SendPropertyChanged("ProposeHandleData"); + this.OnProposeHandleDataChanged(); } } } @@ -278118,46 +277971,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibilityProposeSatate", DbType="Int")] - public System.Nullable ResponsibilityProposeSatate - { - get - { - return this._ResponsibilityProposeSatate; - } - set - { - if ((this._ResponsibilityProposeSatate != value)) - { - this.OnResponsibilityProposeSatateChanging(value); - this.SendPropertyChanging(); - this._ResponsibilityProposeSatate = value; - this.SendPropertyChanged("ResponsibilityProposeSatate"); - this.OnResponsibilityProposeSatateChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposeHandleData", DbType="DateTime")] - public System.Nullable ProposeHandleData - { - get - { - return this._ProposeHandleData; - } - set - { - if ((this._ProposeHandleData != value)) - { - this.OnProposeHandleDataChanging(value); - this.SendPropertyChanging(); - this._ProposeHandleData = value; - this.SendPropertyChanged("ProposeHandleData"); - this.OnProposeHandleDataChanged(); - } - } - } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FourDecisionCode", DbType="VarChar(20)")] public string FourDecisionCode { @@ -278870,7 +278683,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] public string Remark { get @@ -313755,164 +313568,6 @@ namespace Model } } - [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_CQMS_ProblemHandle")] - public partial class Report_CQMS_ProblemHandle : INotifyPropertyChanging, INotifyPropertyChanged - { - - private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); - - private string _Id; - - private string _ReportId; - - private string _ReType; - - private string _UnitName; - - private string _ProblemDes; - - #region 可扩展性方法定义 - partial void OnLoaded(); - partial void OnValidate(System.Data.Linq.ChangeAction action); - partial void OnCreated(); - partial void OnIdChanging(string value); - partial void OnIdChanged(); - partial void OnReportIdChanging(string value); - partial void OnReportIdChanged(); - partial void OnReTypeChanging(string value); - partial void OnReTypeChanged(); - partial void OnUnitNameChanging(string value); - partial void OnUnitNameChanged(); - partial void OnProblemDesChanging(string value); - partial void OnProblemDesChanged(); - #endregion - - public Report_CQMS_ProblemHandle() - { - OnCreated(); - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] - public string Id - { - get - { - return this._Id; - } - set - { - if ((this._Id != value)) - { - this.OnIdChanging(value); - this.SendPropertyChanging(); - this._Id = value; - this.SendPropertyChanged("Id"); - this.OnIdChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportId", DbType="NVarChar(50)")] - public string ReportId - { - get - { - return this._ReportId; - } - set - { - if ((this._ReportId != value)) - { - this.OnReportIdChanging(value); - this.SendPropertyChanging(); - this._ReportId = value; - this.SendPropertyChanged("ReportId"); - this.OnReportIdChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReType", DbType="NChar(20)")] - public string ReType - { - get - { - return this._ReType; - } - set - { - if ((this._ReType != value)) - { - this.OnReTypeChanging(value); - this.SendPropertyChanging(); - this._ReType = value; - this.SendPropertyChanged("ReType"); - this.OnReTypeChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(100)")] - public string UnitName - { - get - { - return this._UnitName; - } - set - { - if ((this._UnitName != value)) - { - this.OnUnitNameChanging(value); - this.SendPropertyChanging(); - this._UnitName = value; - this.SendPropertyChanged("UnitName"); - this.OnUnitNameChanged(); - } - } - } - - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProblemDes", DbType="NVarChar(100)")] - public string ProblemDes - { - get - { - return this._ProblemDes; - } - set - { - if ((this._ProblemDes != value)) - { - this.OnProblemDesChanging(value); - this.SendPropertyChanging(); - this._ProblemDes = value; - this.SendPropertyChanged("ProblemDes"); - this.OnProblemDesChanged(); - } - } - } - - public event PropertyChangingEventHandler PropertyChanging; - - public event PropertyChangedEventHandler PropertyChanged; - - protected virtual void SendPropertyChanging() - { - if ((this.PropertyChanging != null)) - { - this.PropertyChanging(this, emptyChangingEventArgs); - } - } - - protected virtual void SendPropertyChanged(String propertyName) - { - if ((this.PropertyChanged != null)) - { - this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); - } - } - } - [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_CqmsTarget")] public partial class Report_CqmsTarget : INotifyPropertyChanging, INotifyPropertyChanged { @@ -350334,6 +349989,8 @@ namespace Model private EntitySet _Doc_DocManage; + private EntitySet _Doc_DocManageApprove; + private EntitySet _Driver_DriverProgress; private EntitySet _Driver_DriverReport; @@ -351048,6 +350705,7 @@ namespace Model this._DataBase_File = new EntitySet(new Action(this.attach_DataBase_File), new Action(this.detach_DataBase_File)); this._DataBase_StartWorkReport = new EntitySet(new Action(this.attach_DataBase_StartWorkReport), new Action(this.detach_DataBase_StartWorkReport)); this._Doc_DocManage = new EntitySet(new Action(this.attach_Doc_DocManage), new Action(this.detach_Doc_DocManage)); + this._Doc_DocManageApprove = new EntitySet(new Action(this.attach_Doc_DocManageApprove), new Action(this.detach_Doc_DocManageApprove)); this._Driver_DriverProgress = new EntitySet(new Action(this.attach_Driver_DriverProgress), new Action(this.detach_Driver_DriverProgress)); this._Driver_DriverReport = new EntitySet(new Action(this.attach_Driver_DriverReport), new Action(this.detach_Driver_DriverReport)); this._Driver_DriverScheme = new EntitySet(new Action(this.attach_Driver_DriverScheme), new Action(this.detach_Driver_DriverScheme)); @@ -353439,6 +353097,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Doc_DocManageApprove_Sys_User", Storage="_Doc_DocManageApprove", ThisKey="UserId", OtherKey="ApproveMan", DeleteRule="NO ACTION")] + public EntitySet Doc_DocManageApprove + { + get + { + return this._Doc_DocManageApprove; + } + set + { + this._Doc_DocManageApprove.Assign(value); + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Driver_DriverProgress_Sys_User", Storage="_Driver_DriverProgress", ThisKey="UserId", OtherKey="CompileMan", DeleteRule="NO ACTION")] public EntitySet Driver_DriverProgress { @@ -357931,6 +357602,18 @@ namespace Model entity.Sys_User = null; } + private void attach_Doc_DocManageApprove(Doc_DocManageApprove entity) + { + this.SendPropertyChanging(); + entity.Sys_User = this; + } + + private void detach_Doc_DocManageApprove(Doc_DocManageApprove entity) + { + this.SendPropertyChanging(); + entity.Sys_User = null; + } + private void attach_Driver_DriverProgress(Driver_DriverProgress entity) { this.SendPropertyChanging();