diff --git a/DataBase/版本日志/SGGLDB_V2022-09-13.sql b/DataBase/版本日志/SGGLDB_V2022-09-13.sql new file mode 100644 index 00000000..c53b0ed6 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_V2022-09-13.sql @@ -0,0 +1,3 @@ +alter table PHTGL_Contract add Clause nvarchar(1000) null +alter table PHTGL_Contract add MainContent nvarchar(max) null +GO \ No newline at end of file diff --git a/DataBase/版本日志/SGGLDB_V2022-09-13修改明细.txt b/DataBase/版本日志/SGGLDB_V2022-09-13修改明细.txt new file mode 100644 index 00000000..87439067 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_V2022-09-13修改明细.txt @@ -0,0 +1,3 @@ +--ADD BY gaofei 2022-09-13 +1,合同编制和合同台账增加合同条款、合同主要内容 +--END diff --git a/SGGL/BLL/PHTGL/ContractCompile/ContractService.cs b/SGGL/BLL/PHTGL/ContractCompile/ContractService.cs index 38809482..2341e3df 100644 --- a/SGGL/BLL/PHTGL/ContractCompile/ContractService.cs +++ b/SGGL/BLL/PHTGL/ContractCompile/ContractService.cs @@ -123,6 +123,8 @@ namespace BLL SubcontractingMethod = newtable.SubcontractingMethod, IsItACentralizedPurchaseSupplier = newtable.IsItACentralizedPurchaseSupplier, ContactUnitOfPartyA = newtable.ContactUnitOfPartyA, + Clause = newtable.Clause, + MainContent = newtable.MainContent, }; Funs.DB.PHTGL_Contract.InsertOnSubmit(table); Funs.DB.SubmitChanges(); @@ -185,6 +187,8 @@ namespace BLL newContract.SubcontractingMethod = contract.SubcontractingMethod; newContract.IsItACentralizedPurchaseSupplier = contract.IsItACentralizedPurchaseSupplier; newContract.ContactUnitOfPartyA = contract.ContactUnitOfPartyA; + newContract.Clause = contract.Clause; + newContract.MainContent = contract.MainContent; Funs.DB.SubmitChanges(); } } diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index 34b8e588..39f7ac69 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -112,3 +112,26 @@ IP地址:::1 出错时间:09/08/2022 19:57:53 + +错误信息开始=====> +错误类型:ChangeConflictException +错误信息:2 的 1 更新失败。 +错误堆栈: + 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode) + 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode) + 在 System.Data.Linq.DataContext.SubmitChanges() + 在 BLL.ContractService.UpdateContract(PHTGL_Contract contract) 位置 E:\工作\赛鼎施工平台\SGGL_SeDin(New)\SGGL_SeDin_New\SGGL\BLL\PHTGL\ContractCompile\ContractService.cs:行号 177 + 在 FineUIPro.Web.PHTGL.ContractCompile.ContractFormationEdit.btnSave_Tab1_Click(Object sender, EventArgs e) 位置 E:\工作\赛鼎施工平台\SGGL_SeDin(New)\SGGL_SeDin_New\SGGL\FineUIPro.Web\PHTGL\ContractCompile\ContractFormationEdit.aspx.cs:行号 564 + 在 FineUIPro.Button.OnClick(EventArgs e) + 在 (Button , EventArgs ) + 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument) + 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) + 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) + 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +出错时间:09/13/2022 10:46:27 +出错文件:http://localhost:8008/PHTGL/ContractCompile/ContractFormationEdit.aspx?ContractId=60594f33-0093-416f-afbf-a7c1bac3170c +IP地址:::1 +操作人员:JT + +出错时间:09/13/2022 10:46:27 + diff --git a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx index a50e943a..ef683414 100644 --- a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx +++ b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx @@ -237,6 +237,16 @@ + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.cs b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.cs index ce64dcb1..c40e8d6b 100644 --- a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.cs +++ b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.cs @@ -247,7 +247,8 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { this.drpContractType.SelectedValue = contract.ContractType; } - + this.txtClause.Text = contract.Clause; + this.txtMainContent.Text = contract.MainContent; } } } @@ -549,7 +550,8 @@ namespace FineUIPro.Web.PHTGL.ContractCompile newContract.ActionPlanCode = DropActionPlanCode.SelectedValue; newContract.Remarks = this.tab1_txtRemark.Text.Trim(); newContract.CreatUser = this.CurrUser.PersonId; - + newContract.Clause = this.txtClause.Text.Trim(); + newContract.MainContent = this.txtMainContent.Text.Trim(); if (!string.IsNullOrEmpty(ContractId)) { var con = ContractService.GetContractById(ContractId); diff --git a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs index a5123c94..0ade06c6 100644 --- a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs @@ -7,13 +7,11 @@ // //------------------------------------------------------------------------------ -namespace FineUIPro.Web.PHTGL.ContractCompile -{ - - - public partial class ContractFormationEdit - { - +namespace FineUIPro.Web.PHTGL.ContractCompile { + + + public partial class ContractFormationEdit { + /// /// form1 控件。 /// @@ -22,7 +20,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; - + /// /// PageManager1 控件。 /// @@ -31,7 +29,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.PageManager PageManager1; - + /// /// Form4 控件。 /// @@ -40,7 +38,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form4; - + /// /// Panel2 控件。 /// @@ -49,7 +47,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel2; - + /// /// Panel16 控件。 /// @@ -58,7 +56,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel16; - + /// /// btnSubmitForm1 控件。 /// @@ -67,7 +65,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSubmitForm1; - + /// /// btnClose 控件。 /// @@ -76,7 +74,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnClose; - + /// /// TabStrip1 控件。 /// @@ -85,7 +83,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TabStrip TabStrip1; - + /// /// Tab1 控件。 /// @@ -94,7 +92,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab1; - + /// /// SimpleForm1 控件。 /// @@ -103,7 +101,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form SimpleForm1; - + /// /// DropContractAttribute 控件。 /// @@ -112,7 +110,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropContractAttribute; - + /// /// DropStatus 控件。 /// @@ -121,7 +119,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropStatus; - + /// /// txtSignedOnDate 控件。 /// @@ -130,7 +128,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtSignedOnDate; - + /// /// txtContractStartDate 控件。 /// @@ -139,7 +137,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtContractStartDate; - + /// /// txtContractEndDate 控件。 /// @@ -148,7 +146,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtContractEndDate; - + /// /// DropConfirmWay 控件。 /// @@ -157,7 +155,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropConfirmWay; - + /// /// dropSubcontractingMethod 控件。 /// @@ -166,7 +164,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList dropSubcontractingMethod; - + /// /// IsUseStandardtxt 控件。 /// @@ -175,7 +173,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.RadioButtonList IsUseStandardtxt; - + /// /// DropSetSubReviewCode 控件。 /// @@ -184,7 +182,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropSetSubReviewCode; - + /// /// DropActionPlanCode 控件。 /// @@ -193,7 +191,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropActionPlanCode; - + /// /// DropMainContractCode 控件。 /// @@ -202,7 +200,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropMainContractCode; - + /// /// tab1_txtEPCCode 控件。 /// @@ -211,7 +209,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtEPCCode; - + /// /// tab1_txtProjectName 控件。 /// @@ -220,7 +218,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtProjectName; - + /// /// tab1_txtContractName 控件。 /// @@ -229,7 +227,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtContractName; - + /// /// tab1_txtContractNum 控件。 /// @@ -238,7 +236,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtContractNum; - + /// /// drpContractType 控件。 /// @@ -247,7 +245,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpContractType; - + /// /// tab1_BuildUnit 控件。 /// @@ -256,7 +254,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_BuildUnit; - + /// /// txtPriceMethod 控件。 /// @@ -265,7 +263,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPriceMethod; - + /// /// txtPricingBasis 控件。 /// @@ -274,7 +272,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPricingBasis; - + /// /// drpCurrency 控件。 /// @@ -283,7 +281,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpCurrency; - + /// /// tab1_txtContractAmount 控件。 /// @@ -292,7 +290,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.NumberBox tab1_txtContractAmount; - + /// /// txtContractAmountExcludingTax 控件。 /// @@ -301,7 +299,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.NumberBox txtContractAmountExcludingTax; - + /// /// drpDepartId 控件。 /// @@ -310,7 +308,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpDepartId; - + /// /// drpAgent 控件。 /// @@ -319,7 +317,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpAgent; - + /// /// txtContactUnitOfPartyA 控件。 /// @@ -328,7 +326,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactUnitOfPartyA; - + /// /// txtContactPersonOfPartyA 控件。 /// @@ -337,7 +335,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonOfPartyA; - + /// /// tab1_txtParties 控件。 /// @@ -346,7 +344,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtParties; - + /// /// dropIsItACentralizedPurchaseSupplier 控件。 /// @@ -355,7 +353,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList dropIsItACentralizedPurchaseSupplier; - + /// /// txtContactPersonOfPartyB 控件。 /// @@ -364,7 +362,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonOfPartyB; - + /// /// txtContactPersonPhoneOfPartyB 控件。 /// @@ -373,7 +371,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonPhoneOfPartyB; - + /// /// txtContactPersonEmailOfPartyB 控件。 /// @@ -382,7 +380,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonEmailOfPartyB; - + /// /// txtOpeningBank_TT 控件。 /// @@ -391,7 +389,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtOpeningBank_TT; - + /// /// txtBankAccount_TT 控件。 /// @@ -400,7 +398,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtBankAccount_TT; - + /// /// txtOpeningBank_Electrophore 控件。 /// @@ -409,7 +407,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtOpeningBank_Electrophore; - + /// /// txtBankAccount_Electrophore 控件。 /// @@ -418,7 +416,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtBankAccount_Electrophore; - + /// /// txtRetentionmoney 控件。 /// @@ -427,7 +425,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtRetentionmoney; - + /// /// txtLineNumber_Electrophore 控件。 /// @@ -436,7 +434,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtLineNumber_Electrophore; - + /// /// tab1_txtRemark 控件。 /// @@ -445,7 +443,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea tab1_txtRemark; - + /// /// Panel15 控件。 /// @@ -454,7 +452,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel15; - + /// /// SituationRemark 控件。 /// @@ -463,7 +461,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SituationRemark; - + /// /// btnAttachUrl_Remark 控件。 /// @@ -472,7 +470,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnAttachUrl_Remark; - + /// /// Panel17 控件。 /// @@ -481,7 +479,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel17; - + /// /// Label 控件。 /// @@ -490,7 +488,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label; - + /// /// btnAttachUrl 控件。 /// @@ -499,7 +497,25 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnAttachUrl; - + + /// + /// txtClause 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextArea txtClause; + + /// + /// txtMainContent 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextArea txtMainContent; + /// /// Toolbar5 控件。 /// @@ -508,7 +524,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar5; - + /// /// Toolbar1 控件。 /// @@ -517,7 +533,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// ToolbarFill1 控件。 /// @@ -526,7 +542,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + /// /// btnSave_Tab1 控件。 /// @@ -535,7 +551,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave_Tab1; - + /// /// Tab2 控件。 /// @@ -544,7 +560,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab2; - + /// /// Toolbar3 控件。 /// @@ -553,7 +569,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar3; - + /// /// btnSave 控件。 /// @@ -562,7 +578,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave; - + /// /// Form2 控件。 /// @@ -571,7 +587,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form2; - + /// /// Label2 控件。 /// @@ -580,7 +596,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label2; - + /// /// tab2_txtGeneralContractor 控件。 /// @@ -589,7 +605,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtGeneralContractor; - + /// /// tab2_txtSubConstruction 控件。 /// @@ -598,7 +614,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubConstruction; - + /// /// Label44 控件。 /// @@ -607,7 +623,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label44; - + /// /// tab2_txtContents 控件。 /// @@ -616,7 +632,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContents; - + /// /// Label47 控件。 /// @@ -625,7 +641,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label47; - + /// /// Label3 控件。 /// @@ -634,7 +650,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label3; - + /// /// tab2_txtContractProject 控件。 /// @@ -643,7 +659,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractProject; - + /// /// tab2_txtContractProjectOwner 控件。 /// @@ -652,7 +668,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractProjectOwner; - + /// /// tab2_txtSubProject 控件。 /// @@ -661,7 +677,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubProject; - + /// /// tab2_txtSubProjectAddress 控件。 /// @@ -670,7 +686,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubProjectAddress; - + /// /// tab2_txtFundingSources 控件。 /// @@ -679,7 +695,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtFundingSources; - + /// /// Label4 控件。 /// @@ -688,7 +704,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label4; - + /// /// tab2_txtSubProjectContractScope 控件。 /// @@ -697,7 +713,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubProjectContractScope; - + /// /// tab2_txtSubProjectContent 控件。 /// @@ -706,7 +722,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea tab2_txtSubProjectContent; - + /// /// Panel3 控件。 /// @@ -715,7 +731,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel3; - + /// /// ContentPanel3 控件。 /// @@ -724,7 +740,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel3; - + /// /// Label5 控件。 /// @@ -733,7 +749,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label5; - + /// /// tab2_txtPlanStartYear 控件。 /// @@ -742,7 +758,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanStartYear; - + /// /// Label6 控件。 /// @@ -751,7 +767,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label6; - + /// /// tab2_txtPlanStartMonth 控件。 /// @@ -760,7 +776,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanStartMonth; - + /// /// Label7 控件。 /// @@ -769,7 +785,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label7; - + /// /// tab2_txtPlanStartDay 控件。 /// @@ -778,7 +794,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanStartDay; - + /// /// Label8 控件。 /// @@ -787,7 +803,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label8; - + /// /// tab2_txtPlanEndYear 控件。 /// @@ -796,7 +812,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanEndYear; - + /// /// Label45 控件。 /// @@ -805,7 +821,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label45; - + /// /// tab2_txtPlanEndMonth 控件。 /// @@ -814,7 +830,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanEndMonth; - + /// /// Label46 控件。 /// @@ -823,7 +839,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label46; - + /// /// tab2_txtPlanEndDay 控件。 /// @@ -832,7 +848,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanEndDay; - + /// /// Label48 控件。 /// @@ -841,7 +857,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label48; - + /// /// tab2_txtLimit 控件。 /// @@ -850,7 +866,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLimit; - + /// /// Label9 控件。 /// @@ -859,7 +875,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label9; - + /// /// Panel4 控件。 /// @@ -868,7 +884,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel4; - + /// /// ContentPanel4 控件。 /// @@ -877,7 +893,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel4; - + /// /// Label10 控件。 /// @@ -886,7 +902,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label10; - + /// /// Panel5 控件。 /// @@ -895,7 +911,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel5; - + /// /// ContentPanel5 控件。 /// @@ -904,7 +920,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel5; - + /// /// tab2_txtQualityStandards 控件。 /// @@ -913,7 +929,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtQualityStandards; - + /// /// Panel6 控件。 /// @@ -922,7 +938,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel6; - + /// /// ContentPanel6 控件。 /// @@ -931,7 +947,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel6; - + /// /// tab2_txtHSEManageStandards 控件。 /// @@ -940,7 +956,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtHSEManageStandards; - + /// /// Label11 控件。 /// @@ -949,7 +965,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label11; - + /// /// Panel1 控件。 /// @@ -958,7 +974,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// ContentPanel7 控件。 /// @@ -967,7 +983,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel7; - + /// /// Label12 控件。 /// @@ -976,7 +992,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label12; - + /// /// tab2_txtSubcontractPriceForm 控件。 /// @@ -985,7 +1001,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubcontractPriceForm; - + /// /// Label13 控件。 /// @@ -994,7 +1010,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label13; - + /// /// tab2_txtContractPriceCapital 控件。 /// @@ -1003,7 +1019,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractPriceCapital; - + /// /// Label14 控件。 /// @@ -1012,7 +1028,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label14; - + /// /// tab2_txtContractPriceCNY 控件。 /// @@ -1021,7 +1037,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractPriceCNY; - + /// /// Label15 控件。 /// @@ -1030,7 +1046,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label15; - + /// /// tab2_txtContractPriceAttUrlCode 控件。 /// @@ -1039,7 +1055,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractPriceAttUrlCode; - + /// /// tab2_txtContractPriceDesc 控件。 /// @@ -1048,7 +1064,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea tab2_txtContractPriceDesc; - + /// /// Panel7 控件。 /// @@ -1057,7 +1073,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel7; - + /// /// ContentPanel8 控件。 /// @@ -1066,7 +1082,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel8; - + /// /// Label16 控件。 /// @@ -1075,7 +1091,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label16; - + /// /// tab2_txtInvoice 控件。 /// @@ -1084,7 +1100,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtInvoice; - + /// /// Label17 控件。 /// @@ -1093,7 +1109,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label17; - + /// /// Label18 控件。 /// @@ -1102,7 +1118,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label18; - + /// /// Panel8 控件。 /// @@ -1111,7 +1127,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel8; - + /// /// ContentPanel9 控件。 /// @@ -1120,7 +1136,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel9; - + /// /// Label19 控件。 /// @@ -1129,7 +1145,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label19; - + /// /// Panel9 控件。 /// @@ -1138,7 +1154,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel9; - + /// /// ContentPanel10 控件。 /// @@ -1147,7 +1163,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel10; - + /// /// Label20 控件。 /// @@ -1156,7 +1172,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label20; - + /// /// Panel10 控件。 /// @@ -1165,7 +1181,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel10; - + /// /// ContentPanel11 控件。 /// @@ -1174,7 +1190,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel11; - + /// /// tab2_txtLaw 控件。 /// @@ -1183,7 +1199,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLaw; - + /// /// ContentPanel12 控件。 /// @@ -1192,7 +1208,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel12; - + /// /// Label21 控件。 /// @@ -1201,7 +1217,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label21; - + /// /// Panel11 控件。 /// @@ -1210,7 +1226,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel11; - + /// /// ContentPanel13 控件。 /// @@ -1219,7 +1235,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel13; - + /// /// Label22 控件。 /// @@ -1228,7 +1244,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label22; - + /// /// tab2_txtSignedYear 控件。 /// @@ -1237,7 +1253,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSignedYear; - + /// /// Label23 控件。 /// @@ -1246,7 +1262,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label23; - + /// /// tab2_txtSignedMonth 控件。 /// @@ -1255,7 +1271,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSignedMonth; - + /// /// Label24 控件。 /// @@ -1264,7 +1280,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label24; - + /// /// tab2_txtSignedAddress 控件。 /// @@ -1273,7 +1289,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSignedAddress; - + /// /// Label25 控件。 /// @@ -1282,7 +1298,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label25; - + /// /// Label26 控件。 /// @@ -1291,7 +1307,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label26; - + /// /// tab2_txtAgreementNum 控件。 /// @@ -1300,7 +1316,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAgreementNum; - + /// /// Label27 控件。 /// @@ -1309,7 +1325,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label27; - + /// /// tab2_txtGeneralContractorNum 控件。 /// @@ -1318,7 +1334,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtGeneralContractorNum; - + /// /// Label28 控件。 /// @@ -1327,7 +1343,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label28; - + /// /// tab2_txtSubContractorNum 控件。 /// @@ -1336,7 +1352,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubContractorNum; - + /// /// Label29 控件。 /// @@ -1345,7 +1361,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label29; - + /// /// Panel12 控件。 /// @@ -1354,7 +1370,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel12; - + /// /// ContentPanel14 控件。 /// @@ -1363,7 +1379,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel14; - + /// /// Panel13 控件。 /// @@ -1372,7 +1388,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel13; - + /// /// ContentPanel15 控件。 /// @@ -1381,7 +1397,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel15; - + /// /// Label30 控件。 /// @@ -1390,7 +1406,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label30; - + /// /// tab2_txtSub 控件。 /// @@ -1399,7 +1415,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSub; - + /// /// Label31 控件。 /// @@ -1408,7 +1424,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label31; - + /// /// Label32 控件。 /// @@ -1417,7 +1433,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label32; - + /// /// Label33 控件。 /// @@ -1426,7 +1442,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label33; - + /// /// Label34 控件。 /// @@ -1435,7 +1451,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label34; - + /// /// Label35 控件。 /// @@ -1444,7 +1460,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label35; - + /// /// Label36 控件。 /// @@ -1453,7 +1469,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label36; - + /// /// Label37 控件。 /// @@ -1462,7 +1478,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label37; - + /// /// Label38 控件。 /// @@ -1471,7 +1487,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label38; - + /// /// Label39 控件。 /// @@ -1480,7 +1496,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label39; - + /// /// Label40 控件。 /// @@ -1489,7 +1505,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label40; - + /// /// Label41 控件。 /// @@ -1498,7 +1514,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label41; - + /// /// Label42 控件。 /// @@ -1507,7 +1523,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label42; - + /// /// Label43 控件。 /// @@ -1516,7 +1532,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label43; - + /// /// Label49 控件。 /// @@ -1525,7 +1541,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label49; - + /// /// tab2_txtSocialCreditCode1 控件。 /// @@ -1534,7 +1550,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSocialCreditCode1; - + /// /// tab2_txtSocialCreditCode2 控件。 /// @@ -1543,7 +1559,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSocialCreditCode2; - + /// /// tab2_txtAddress1 控件。 /// @@ -1552,7 +1568,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAddress1; - + /// /// tab2_txtAddress2 控件。 /// @@ -1561,7 +1577,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAddress2; - + /// /// tab2_txtZipCode1 控件。 /// @@ -1570,7 +1586,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtZipCode1; - + /// /// tab2_txtZipCode2 控件。 /// @@ -1579,7 +1595,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtZipCode2; - + /// /// tab2_txtLegalRepresentative1 控件。 /// @@ -1588,7 +1604,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLegalRepresentative1; - + /// /// tab2_txtLegalRepresentative2 控件。 /// @@ -1597,7 +1613,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLegalRepresentative2; - + /// /// tab2_txtEntrustedAgent1 控件。 /// @@ -1606,7 +1622,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEntrustedAgent1; - + /// /// tab2_txtEntrustedAgent2 控件。 /// @@ -1615,7 +1631,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEntrustedAgent2; - + /// /// tab2_txtTelephone1 控件。 /// @@ -1624,7 +1640,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtTelephone1; - + /// /// tab2_txtTelephone2 控件。 /// @@ -1633,7 +1649,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtTelephone2; - + /// /// tab2_txtFax1 控件。 /// @@ -1642,7 +1658,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtFax1; - + /// /// tab2_txtFax2 控件。 /// @@ -1651,7 +1667,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtFax2; - + /// /// tab2_txtEmail1 控件。 /// @@ -1660,7 +1676,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEmail1; - + /// /// tab2_txtEmail2 控件。 /// @@ -1669,7 +1685,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEmail2; - + /// /// tab2_txtBank1 控件。 /// @@ -1678,7 +1694,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtBank1; - + /// /// tab2_txtBank2 控件。 /// @@ -1687,7 +1703,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtBank2; - + /// /// tab2_txtAccount1 控件。 /// @@ -1696,7 +1712,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAccount1; - + /// /// tab2_txtAccount2 控件。 /// @@ -1705,7 +1721,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAccount2; - + /// /// Tab3 控件。 /// @@ -1714,7 +1730,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab3; - + /// /// Form3 控件。 /// @@ -1723,7 +1739,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form3; - + /// /// Label50 控件。 /// @@ -1732,7 +1748,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label50; - + /// /// Panel14 控件。 /// @@ -1741,7 +1757,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel14; - + /// /// ContentPanel1 控件。 /// @@ -1750,7 +1766,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel1; - + /// /// Toolbar2 控件。 /// @@ -1759,7 +1775,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar2; - + /// /// Tab4 控件。 /// @@ -1768,7 +1784,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab4; - + /// /// Form_Tab4 控件。 /// @@ -1777,7 +1793,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form_Tab4; - + /// /// Label51 控件。 /// @@ -1786,7 +1802,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label51; - + /// /// Labe00 控件。 /// @@ -1795,7 +1811,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Labe00; - + /// /// lable 控件。 /// @@ -1804,7 +1820,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label lable; - + /// /// TotalPackageContract 控件。 /// @@ -1813,7 +1829,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalPackageContract; - + /// /// OtherSubDocuments 控件。 /// @@ -1822,7 +1838,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherSubDocuments; - + /// /// OtherPlaces 控件。 /// @@ -1831,7 +1847,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherPlaces; - + /// /// NormativeDocument 控件。 /// @@ -1840,7 +1856,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox NormativeDocument; - + /// /// Label56 控件。 /// @@ -1849,7 +1865,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label56; - + /// /// StandardSpecification 控件。 /// @@ -1858,7 +1874,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox StandardSpecification; - + /// /// Label58 控件。 /// @@ -1867,7 +1883,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label58; - + /// /// DrawingPeriod 控件。 /// @@ -1876,7 +1892,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DrawingPeriod; - + /// /// DrawingCount 控件。 /// @@ -1885,7 +1901,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DrawingCount; - + /// /// DrawingContents 控件。 /// @@ -1894,7 +1910,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DrawingContents; - + /// /// Label62 控件。 /// @@ -1903,7 +1919,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label62; - + /// /// DeepeningDesign 控件。 /// @@ -1912,7 +1928,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DeepeningDesign; - + /// /// Label64 控件。 /// @@ -1921,7 +1937,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label64; - + /// /// ConstructionSubFileCount 控件。 /// @@ -1930,7 +1946,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ConstructionSubFileCount; - + /// /// ConstructionSubFileForm 控件。 /// @@ -1939,7 +1955,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ConstructionSubFileForm; - + /// /// Label67 控件。 /// @@ -1948,7 +1964,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label67; - + /// /// GeneralContractorAddress 控件。 /// @@ -1957,7 +1973,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GeneralContractorAddress; - + /// /// GeneralContractorMan 控件。 /// @@ -1966,7 +1982,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GeneralContractorMan; - + /// /// SubAddress 控件。 /// @@ -1975,7 +1991,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubAddress; - + /// /// SubMan 控件。 /// @@ -1984,7 +2000,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubMan; - + /// /// Label72 控件。 /// @@ -1993,7 +2009,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label72; - + /// /// Label73 控件。 /// @@ -2002,7 +2018,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label73; - + /// /// FacilitiesConditions 控件。 /// @@ -2011,7 +2027,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox FacilitiesConditions; - + /// /// Label75 控件。 /// @@ -2020,7 +2036,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label75; - + /// /// ProjectManagerName 控件。 /// @@ -2029,7 +2045,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerName; - + /// /// ProjectManagerTitle 控件。 /// @@ -2038,7 +2054,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerTitle; - + /// /// BuilderQualificationLevel 控件。 /// @@ -2047,7 +2063,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox BuilderQualificationLevel; - + /// /// BuilderRegistrationCertificate 控件。 /// @@ -2056,7 +2072,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox BuilderRegistrationCertificate; - + /// /// ProjectManagerTel 控件。 /// @@ -2065,7 +2081,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerTel; - + /// /// ProjectManagerEmail 控件。 /// @@ -2074,7 +2090,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerEmail; - + /// /// ProjectManagerAddress 控件。 /// @@ -2083,7 +2099,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerAddress; - + /// /// ScopeAuthorization 控件。 /// @@ -2092,7 +2108,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ScopeAuthorization; - + /// /// Label83 控件。 /// @@ -2101,7 +2117,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label83; - + /// /// Label84 控件。 /// @@ -2110,7 +2126,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label84; - + /// /// PermitsApprovals 控件。 /// @@ -2119,7 +2135,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PermitsApprovals; - + /// /// Label86 控件。 /// @@ -2128,7 +2144,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label86; - + /// /// Label87 控件。 /// @@ -2137,7 +2153,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label87; - + /// /// SubProjectManagerName 控件。 /// @@ -2146,7 +2162,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerName; - + /// /// SubProjectManagerTitle 控件。 /// @@ -2155,7 +2171,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerTitle; - + /// /// SubBuilderQualificationLevel 控件。 /// @@ -2164,7 +2180,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubBuilderQualificationLevel; - + /// /// SubBuilderRegistrationCertificate 控件。 /// @@ -2173,7 +2189,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubBuilderRegistrationCertificate; - + /// /// SubProjectManagerTel 控件。 /// @@ -2182,7 +2198,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerTel; - + /// /// SubProjectManagerEmail 控件。 /// @@ -2191,7 +2207,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerEmail; - + /// /// SubProjectManagerAddress 控件。 /// @@ -2200,7 +2216,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerAddress; - + /// /// SubScopeAuthorization 控件。 /// @@ -2209,7 +2225,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SubScopeAuthorization; - + /// /// AttachmentName 控件。 /// @@ -2218,7 +2234,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AttachmentName; - + /// /// DaysNum 控件。 /// @@ -2227,7 +2243,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DaysNum; - + /// /// Label97 控件。 /// @@ -2236,7 +2252,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label97; - + /// /// DefaultResponsibility 控件。 /// @@ -2245,7 +2261,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea DefaultResponsibility; - + /// /// LeaveSiteResponsibility 控件。 /// @@ -2254,7 +2270,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea LeaveSiteResponsibility; - + /// /// ChangeManagerResponsibility 控件。 /// @@ -2263,7 +2279,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ChangeManagerResponsibility; - + /// /// RefusedChangeResponsibility 控件。 /// @@ -2272,7 +2288,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea RefusedChangeResponsibility; - + /// /// Label99 控件。 /// @@ -2281,7 +2297,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label99; - + /// /// WithoutCardMountGuard 控件。 /// @@ -2290,7 +2306,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea WithoutCardMountGuard; - + /// /// Label100 控件。 /// @@ -2299,7 +2315,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label100; - + /// /// SubcontractWorks 控件。 /// @@ -2308,7 +2324,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SubcontractWorks; - + /// /// IllegalSubcontracting 控件。 /// @@ -2317,7 +2333,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea IllegalSubcontracting; - + /// /// Label101 控件。 /// @@ -2326,7 +2342,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label101; - + /// /// PerformanceWay 控件。 /// @@ -2335,7 +2351,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PerformanceWay; - + /// /// PerformanceMoney 控件。 /// @@ -2344,7 +2360,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PerformanceMoney; - + /// /// PerformanceTimelimit 控件。 /// @@ -2353,7 +2369,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PerformanceTimelimit; - + /// /// Label105 控件。 /// @@ -2362,7 +2378,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label105; - + /// /// AssociationAgreementAttachUrl 控件。 /// @@ -2371,7 +2387,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AssociationAgreementAttachUrl; - + /// /// Label107 控件。 /// @@ -2380,7 +2396,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label107; - + /// /// Label108 控件。 /// @@ -2389,7 +2405,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label108; - + /// /// SpecialStandards 控件。 /// @@ -2398,7 +2414,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SpecialStandards; - + /// /// Label109 控件。 /// @@ -2407,7 +2423,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label109; - + /// /// Label110 控件。 /// @@ -2416,7 +2432,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label110; - + /// /// Label111 控件。 /// @@ -2425,7 +2441,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label111; - + /// /// ConstructionMeasures 控件。 /// @@ -2434,7 +2450,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ConstructionMeasures; - + /// /// SubMeasures 控件。 /// @@ -2443,7 +2459,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SubMeasures; - + /// /// Label112 控件。 /// @@ -2452,7 +2468,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label112; - + /// /// LabourCost 控件。 /// @@ -2461,7 +2477,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea LabourCost; - + /// /// Label113 控件。 /// @@ -2470,7 +2486,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label113; - + /// /// LaborSupervisorName 控件。 /// @@ -2479,7 +2495,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorName; - + /// /// LaborSupervisorTitle 控件。 /// @@ -2488,7 +2504,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorTitle; - + /// /// LaborSupervisorTel 控件。 /// @@ -2497,7 +2513,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorTel; - + /// /// LaborSupervisorEmail 控件。 /// @@ -2506,7 +2522,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorEmail; - + /// /// LaborSupervisorAddress 控件。 /// @@ -2515,7 +2531,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorAddress; - + /// /// Label119 控件。 /// @@ -2524,7 +2540,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label119; - + /// /// Label120 控件。 /// @@ -2533,7 +2549,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label120; - + /// /// Label121 控件。 /// @@ -2542,7 +2558,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label121; - + /// /// Label122 控件。 /// @@ -2551,7 +2567,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label122; - + /// /// OrganizationalDesign 控件。 /// @@ -2560,7 +2576,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea OrganizationalDesign; - + /// /// Amendments 控件。 /// @@ -2569,7 +2585,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea Amendments; - + /// /// Label123 控件。 /// @@ -2578,7 +2594,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label123; - + /// /// Labour 控件。 /// @@ -2587,7 +2603,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea Labour; - + /// /// Label124 控件。 /// @@ -2596,7 +2612,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label124; - + /// /// Label125 控件。 /// @@ -2605,7 +2621,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label125; - + /// /// WithinTimeLimit 控件。 /// @@ -2614,7 +2630,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea WithinTimeLimit; - + /// /// Label126 控件。 /// @@ -2623,7 +2639,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label126; - + /// /// AdverseMaterialConditions 控件。 /// @@ -2632,7 +2648,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdverseMaterialConditions; - + /// /// Label128 控件。 /// @@ -2641,7 +2657,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label128; - + /// /// BadWeatherInclude 控件。 /// @@ -2650,7 +2666,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox BadWeatherInclude; - + /// /// Label130 控件。 /// @@ -2659,7 +2675,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label130; - + /// /// MaterialEquipmentSupplyRange 控件。 /// @@ -2668,7 +2684,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox MaterialEquipmentSupplyRange; - + /// /// Label52 控件。 /// @@ -2677,7 +2693,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label52; - + /// /// UnloadingRateStandard 控件。 /// @@ -2686,7 +2702,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox UnloadingRateStandard; - + /// /// SecondaryHandlingCharges 控件。 /// @@ -2695,7 +2711,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SecondaryHandlingCharges; - + /// /// Label135 控件。 /// @@ -2704,7 +2720,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label135; - + /// /// Label136 控件。 /// @@ -2713,7 +2729,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label136; - + /// /// SampleRequirements 控件。 /// @@ -2722,7 +2738,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SampleRequirements; - + /// /// Label137 控件。 /// @@ -2731,7 +2747,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label137; - + /// /// AlternativeAgreed 控件。 /// @@ -2740,7 +2756,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AlternativeAgreed; - + /// /// Label139 控件。 /// @@ -2749,7 +2765,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label139; - + /// /// Equipment 控件。 /// @@ -2758,7 +2774,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox Equipment; - + /// /// Label141 控件。 /// @@ -2767,7 +2783,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label141; - + /// /// Label142 控件。 /// @@ -2776,7 +2792,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label142; - + /// /// OtherCircumstances 控件。 /// @@ -2785,7 +2801,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherCircumstances; - + /// /// Label144 控件。 /// @@ -2794,7 +2810,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label144; - + /// /// Label145 控件。 /// @@ -2803,7 +2819,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label145; - + /// /// ChangeValuation 控件。 /// @@ -2812,7 +2828,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ChangeValuation; - + /// /// Label147 控件。 /// @@ -2821,7 +2837,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label147; - + /// /// Reward 控件。 /// @@ -2830,7 +2846,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox Reward; - + /// /// Label149 控件。 /// @@ -2839,7 +2855,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label149; - + /// /// IncreaseDecreasePeriod 控件。 /// @@ -2848,7 +2864,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox IncreaseDecreasePeriod; - + /// /// Label151 控件。 /// @@ -2857,7 +2873,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label151; - + /// /// Label152 控件。 /// @@ -2866,7 +2882,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label152; - + /// /// RiskRange 控件。 /// @@ -2875,7 +2891,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox RiskRange; - + /// /// Label154 控件。 /// @@ -2884,7 +2900,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label154; - + /// /// AdjustmentMethodA 控件。 /// @@ -2893,7 +2909,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdjustmentMethodA; - + /// /// AdjustmentMethodB 控件。 /// @@ -2902,7 +2918,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdjustmentMethodB; - + /// /// Label157 控件。 /// @@ -2911,7 +2927,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label157; - + /// /// TotalPriceRiskRange 控件。 /// @@ -2920,7 +2936,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalPriceRiskRange; - + /// /// Label159 控件。 /// @@ -2929,7 +2945,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label159; - + /// /// TotalAdjustmentMethodA 控件。 /// @@ -2938,7 +2954,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalAdjustmentMethodA; - + /// /// TotalAdjustmentMethodB 控件。 /// @@ -2947,7 +2963,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalAdjustmentMethodB; - + /// /// OtherPriceForms 控件。 /// @@ -2956,7 +2972,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherPriceForms; - + /// /// Label163 控件。 /// @@ -2965,7 +2981,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label163; - + /// /// Label164 控件。 /// @@ -2974,7 +2990,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label164; - + /// /// MarketPriceRange 控件。 /// @@ -2983,7 +2999,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox MarketPriceRange; - + /// /// DifferenceRange 控件。 /// @@ -2992,7 +3008,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DifferenceRange; - + /// /// PricingWay 控件。 /// @@ -3001,7 +3017,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PricingWay; - + /// /// Label168 控件。 /// @@ -3010,7 +3026,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label168; - + /// /// Label169 控件。 /// @@ -3019,7 +3035,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label169; - + /// /// QuantityCalculationRules 控件。 /// @@ -3028,7 +3044,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox QuantityCalculationRules; - + /// /// Label171 控件。 /// @@ -3037,7 +3053,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label171; - + /// /// Label172 控件。 /// @@ -3046,7 +3062,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label172; - + /// /// AdvancePayment 控件。 /// @@ -3055,7 +3071,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdvancePayment; - + /// /// AdvancePaymentPeriod 控件。 /// @@ -3064,7 +3080,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdvancePaymentPeriod; - + /// /// LatePaymentAdvance 控件。 /// @@ -3073,7 +3089,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LatePaymentAdvance; - + /// /// PaymentAgreement 控件。 /// @@ -3082,7 +3098,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PaymentAgreement; - + /// /// Label177 控件。 /// @@ -3091,7 +3107,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label177; - + /// /// ProgressPaymentContents 控件。 /// @@ -3100,7 +3116,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProgressPaymentContents; - + /// /// Label53 控件。 /// @@ -3109,7 +3125,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label53; - + /// /// ProgressPaymentConvention 控件。 /// @@ -3118,7 +3134,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ProgressPaymentConvention; - + /// /// Label180 控件。 /// @@ -3127,7 +3143,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label180; - + /// /// Label54 控件。 /// @@ -3136,7 +3152,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label54; - + /// /// GuaranteedScopeWork 控件。 /// @@ -3145,7 +3161,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GuaranteedScopeWork; - + /// /// Label183 控件。 /// @@ -3154,7 +3170,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label183; - + /// /// Label184 控件。 /// @@ -3163,7 +3179,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label184; - + /// /// GuaranteedCostStandard 控件。 /// @@ -3172,7 +3188,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GuaranteedCostStandard; - + /// /// Label185 控件。 /// @@ -3181,7 +3197,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label185; - + /// /// Label186 控件。 /// @@ -3190,7 +3206,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label186; - + /// /// AcceptanceCondition 控件。 /// @@ -3199,7 +3215,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AcceptanceCondition; - + /// /// Label188 控件。 /// @@ -3208,7 +3224,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label188; - + /// /// UnqualifiedResponsibility 控件。 /// @@ -3217,7 +3233,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea UnqualifiedResponsibility; - + /// /// Label189 控件。 /// @@ -3226,7 +3242,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label189; - + /// /// CleanExitTimeLimit 控件。 /// @@ -3235,7 +3251,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox CleanExitTimeLimit; - + /// /// Label191 控件。 /// @@ -3244,7 +3260,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label191; - + /// /// Label192 控件。 /// @@ -3253,7 +3269,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label192; - + /// /// DataTransferTimeLimit 控件。 /// @@ -3262,7 +3278,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DataTransferTimeLimit; - + /// /// DataNumContents 控件。 /// @@ -3271,7 +3287,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DataNumContents; - + /// /// Label195 控件。 /// @@ -3280,7 +3296,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label195; - + /// /// Label196 控件。 /// @@ -3289,7 +3305,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label196; - + /// /// DataListing 控件。 /// @@ -3298,7 +3314,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea DataListing; - + /// /// Label197 控件。 /// @@ -3307,7 +3323,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label197; - + /// /// FinalSettlementNum 控件。 /// @@ -3316,7 +3332,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox FinalSettlementNum; - + /// /// Label199 控件。 /// @@ -3325,7 +3341,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label199; - + /// /// Label200 控件。 /// @@ -3334,7 +3350,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label200; - + /// /// DefectLiabilityDate 控件。 /// @@ -3343,7 +3359,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DefectLiabilityDate; - + /// /// DefectLiabilityPeriod 控件。 /// @@ -3352,7 +3368,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DefectLiabilityPeriod; - + /// /// Label203 控件。 /// @@ -3361,7 +3377,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label203; - + /// /// WarrantyPeriodDate 控件。 /// @@ -3370,7 +3386,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox WarrantyPeriodDate; - + /// /// WarrantyPeriodPeriod 控件。 /// @@ -3379,7 +3395,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox WarrantyPeriodPeriod; - + /// /// Label206 控件。 /// @@ -3388,7 +3404,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label206; - + /// /// MarginDetainWay 控件。 /// @@ -3397,7 +3413,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox MarginDetainWay; - + /// /// Label208 控件。 /// @@ -3406,7 +3422,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label208; - + /// /// Label209 控件。 /// @@ -3415,7 +3431,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label209; - + /// /// DefaultMethod 控件。 /// @@ -3424,7 +3440,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DefaultMethod; - + /// /// Label211 控件。 /// @@ -3433,7 +3449,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label211; - + /// /// TerminationContract 控件。 /// @@ -3442,7 +3458,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TerminationContract; - + /// /// Label213 控件。 /// @@ -3451,7 +3467,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label213; - + /// /// Label214 控件。 /// @@ -3460,7 +3476,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label214; - + /// /// DefaultLiability 控件。 /// @@ -3469,7 +3485,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea DefaultLiability; - + /// /// Label215 控件。 /// @@ -3478,7 +3494,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label215; - + /// /// SubDefaultCancelContract 控件。 /// @@ -3487,7 +3503,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubDefaultCancelContract; - + /// /// Label217 控件。 /// @@ -3496,7 +3512,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label217; - + /// /// Label218 控件。 /// @@ -3505,7 +3521,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label218; - + /// /// ForceMajeure 控件。 /// @@ -3514,7 +3530,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ForceMajeure; - + /// /// Label220 控件。 /// @@ -3523,7 +3539,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label220; - + /// /// NotConsideredForceMajeure 控件。 /// @@ -3532,7 +3548,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox NotConsideredForceMajeure; - + /// /// Label1 控件。 /// @@ -3541,7 +3557,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label1; - + /// /// Label223 控件。 /// @@ -3550,7 +3566,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label223; - + /// /// Label224 控件。 /// @@ -3559,7 +3575,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label224; - + /// /// Label225 控件。 /// @@ -3568,7 +3584,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label225; - + /// /// Label226 控件。 /// @@ -3577,7 +3593,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label226; - + /// /// LimitIndemnity 控件。 /// @@ -3586,7 +3602,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LimitIndemnity; - + /// /// InsuredAmount 控件。 /// @@ -3595,7 +3611,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox InsuredAmount; - + /// /// Label229 控件。 /// @@ -3604,7 +3620,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label229; - + /// /// CertificateInsurance 控件。 /// @@ -3613,7 +3629,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox CertificateInsurance; - + /// /// Label231 控件。 /// @@ -3622,7 +3638,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label231; - + /// /// Label232 控件。 /// @@ -3631,7 +3647,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label232; - + /// /// Label233 控件。 /// @@ -3640,7 +3656,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label233; - + /// /// Label57 控件。 /// @@ -3649,7 +3665,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label57; - + /// /// ArbitrationCommission 控件。 /// @@ -3658,7 +3674,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ArbitrationCommission; - + /// /// Label235 控件。 /// @@ -3667,7 +3683,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label235; - + /// /// Label55 控件。 /// @@ -3676,7 +3692,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label55; - + /// /// PeopleCourt 控件。 /// @@ -3685,7 +3701,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PeopleCourt; - + /// /// Label237 控件。 /// @@ -3694,7 +3710,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label237; - + /// /// Grid1 控件。 /// @@ -3703,7 +3719,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid1; - + /// /// lblPageIndex 控件。 /// @@ -3712,7 +3728,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.Label lblPageIndex; - + /// /// Toolbar4 控件。 /// @@ -3721,7 +3737,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar4; - + /// /// btnSave_Tab4 控件。 /// @@ -3730,7 +3746,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave_Tab4; - + /// /// Window1 控件。 /// @@ -3739,7 +3755,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window1; - + /// /// WindowAtt 控件。 /// diff --git a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx index 5bf74bca..6522f1e2 100644 --- a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx +++ b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx @@ -6,6 +6,17 @@ +
@@ -77,24 +88,12 @@ - - - - - - - - - @@ -104,6 +103,15 @@ + + + + + + @@ -119,7 +127,7 @@ - + + + + <%-- diff --git a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx.cs b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx.cs index 8f251fb3..f8d602af 100644 --- a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx.cs +++ b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractStandingBook.aspx.cs @@ -73,7 +73,12 @@ namespace FineUIPro.Web.PHTGL.ContractCompile con.ProjectShortName, (convert(varchar(20), Sub.SignedYear) + '年' + convert(varchar(20), Sub.SignedMonth) + '月') as DepartName, (CASE Con.Status WHEN '0' THEN '已签订' - WHEN '1' THEN '已完毕' END) as Status, + WHEN '1' THEN '已完毕' END) as Status, + (CASE Con.ContractType WHEN '1' THEN '施工总承包分包合同' + WHEN '2' THEN '施工专业分包合同' + WHEN '3' THEN '上官红劳务分包合同' + WHEN '4' THEN '试车服务合同' + WHEN '5' THEN '租赁合同' END) AS ContractType, Con.ContactUnitOfPartyA, Con.ContactPersonOfPartyA, Con.ContactPersonOfPartyB, @@ -81,6 +86,8 @@ namespace FineUIPro.Web.PHTGL.ContractCompile Con.ContactPersonEmailOfPartyB, Con.ContractAmountExcludingTax, Con.PriceMethod, + Con.Clause, + Con.MainContent, CONVERT(varchar(100), SignedOnDate, 111) as SignedOnDate, CONVERT(varchar(100), ContractStartDate, 111) as ContractStartDate, CONVERT(varchar(100), ContractEndDate, 111) as ContractEndDate, diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 0fb4cdfc..dbff45ad 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -137389,6 +137389,10 @@ namespace Model private System.Nullable _IsItACentralizedPurchaseSupplier; + private string _Clause; + + private string _MainContent; + private EntityRef _Base_Depart; private EntityRef _Base_Project; @@ -137497,6 +137501,10 @@ namespace Model partial void OnSubcontractingMethodChanged(); partial void OnIsItACentralizedPurchaseSupplierChanging(System.Nullable value); partial void OnIsItACentralizedPurchaseSupplierChanged(); + partial void OnClauseChanging(string value); + partial void OnClauseChanged(); + partial void OnMainContentChanging(string value); + partial void OnMainContentChanged(); #endregion public PHTGL_Contract() @@ -138480,6 +138488,46 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Clause", DbType="NVarChar(1000)")] + public string Clause + { + get + { + return this._Clause; + } + set + { + if ((this._Clause != value)) + { + this.OnClauseChanging(value); + this.SendPropertyChanging(); + this._Clause = value; + this.SendPropertyChanged("Clause"); + this.OnClauseChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainContent", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string MainContent + { + get + { + return this._MainContent; + } + set + { + if ((this._MainContent != value)) + { + this.OnMainContentChanging(value); + this.SendPropertyChanging(); + this._MainContent = value; + this.SendPropertyChanged("MainContent"); + this.OnMainContentChanged(); + } + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HTGL_Contract_Base_Depart", Storage="_Base_Depart", ThisKey="DepartId", OtherKey="DepartId", IsForeignKey=true)] public Base_Depart Base_Depart {