diff --git a/.vs/SGGL_SeDin/v17/.wsuo b/.vs/SGGL_SeDin/v17/.wsuo index 77dededd..fde07a7a 100644 Binary files a/.vs/SGGL_SeDin/v17/.wsuo and b/.vs/SGGL_SeDin/v17/.wsuo differ diff --git a/DataBase/版本日志/SGGLDB_V2023-04-19_lpf.sql b/DataBase/版本日志/SGGLDB_V2023-04-19_lpf.sql new file mode 100644 index 00000000..1cbc6d92 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_V2023-04-19_lpf.sql @@ -0,0 +1,184 @@ + --drop table [PHTGL_ContractStandingBook] + INSERT [Sys_Menu] ([MenuId],[MenuName],[Url],[SortIndex],[SuperMenu],[MenuType],[IsOffice],[IsEnd],[IsUsed]) +VALUES ( N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'̨ͬ',N'PHTGL/Filing/ContractStandingBook.aspx',50,N'0',N'Menu_HTGL',1,0,1) +GO + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'FADA2113-5F03-4BB6-825E-9C7831659168',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'޸',2) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'D99CDA22-F4AC-4DC2-99E8-7453E9C276D2',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'ɾ',3) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'97B2A0A9-E842-495D-B99B-2E67DF5ECCAD',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'',4) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'BDFD1A0F-35AF-4143-A7C2-31A0DC024F67',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'',1) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'1A5D7CEC-2E64-4AAB-910B-A2C2CD6FA797',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'',5) +GO +/****** Object: Table [dbo].[PHTGL_ContractStandingBook] Script Date: 2023/4/17 21:27:51 ******/ +SET ANSI_NULLS ON +GO + +SET QUOTED_IDENTIFIER ON +GO + +SET ANSI_PADDING ON +GO + +CREATE TABLE [dbo].[PHTGL_ContractStandingBook]( + [ContractId] [nvarchar](50) NOT NULL, + [ProjectId] [nvarchar](50) NULL, + [ProjectName] [nvarchar](50) NULL, + [ProjectCode] [nvarchar](50) NULL, + [ContractName] [nvarchar](200) NULL, + [ContractNum] [nvarchar](50) NULL, + [Parties] [nvarchar](100) NULL, + [Currency] [nvarchar](50) NULL, + [ContractAmount] [nvarchar](50) NULL, + [DepartId] [nvarchar](50) NULL, + [Agent] [nvarchar](50) NULL, + [ContractType] [nvarchar](50) NULL, + [Remarks] [nvarchar](2000) NULL, + [ApproveState] [int] NULL, + [CreatUser] [nvarchar](50) NULL, + [ContractCode] [varchar](50) NULL, + [IsPassBid] [nvarchar](50) NULL, + [PassBidCode] [nvarchar](50) NULL, + [BuildUnit] [nvarchar](200) NULL, + [IsUseStandardtxt] [int] NULL, + [NoUseStandardtxtRemark] [nvarchar](max) NULL, + [EPCCode] [nvarchar](200) NULL, + [ProjectShortName] [nvarchar](200) NULL, + [ContractAttribute] [nvarchar](50) NULL, + [ContractAttributeRemark] [nvarchar](max) NULL, + [ConfirmWay] [nvarchar](50) NULL, + [SetSubReviewCode] [nvarchar](50) NULL, + [ActionPlanCode] [nvarchar](50) NULL, + [SituationRemark] [nvarchar](max) NULL, + [OpeningBank-TT] [nvarchar](100) NULL, + [OpeningBank-electrophore] [varchar](100) NULL, + [BankAccount-TT] [varchar](100) NULL, + [BankAccount-electrophore] [varchar](100) NULL, + [LineNumber-electrophore] [varchar](100) NULL, + [Retentionmoney] [varchar](100) NULL, + [CreateDate] [nvarchar](50) NULL, + [Status] [nvarchar](50) NULL, + [States] [int] NULL, + [ContactUnitOfPartyA] [varchar](50) NULL, + [ContactPersonOfPartyA] [varchar](50) NULL, + [ContactPersonOfPartyB] [varchar](50) NULL, + [ContactPersonPhoneOfPartyB] [varchar](50) NULL, + [ContactPersonEmailOfPartyB] [varchar](50) NULL, + [ContractAmountExcludingTax] [nvarchar](50) NULL, + [PriceMethod] [varchar](50) NULL, + [SignedOnDate] [nvarchar](50) NULL, + [ContractStartDate] [nvarchar](50) NULL, + [ContractEndDate] [nvarchar](50) NULL, + [PricingBasis] [nvarchar](200) NULL, + [SubcontractingMethod] [nvarchar](50) NULL, + [IsItACentralizedPurchaseSupplier] [nvarchar](50) NULL, + [Clause] [nvarchar](2000) NULL, + [MainContent] [nvarchar](max) NULL, + CONSTRAINT [PK_HTGL_ContractStandingBook] PRIMARY KEY CLUSTERED +( + [ContractId] ASC +)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] +) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] + +GO + +SET ANSI_PADDING OFF +GO + +ALTER TABLE [dbo].[PHTGL_ContractStandingBook] ADD CONSTRAINT [DF_PHTGL_ContractStandingBook_ApproveState] DEFAULT ((0)) FOR [ApproveState] +GO + + +ALTER TABLE [dbo].[PHTGL_ContractStandingBook] WITH CHECK ADD CONSTRAINT [FK_HTGL_ContractStandingBook_Base_Project] FOREIGN KEY([ProjectId]) +REFERENCES [dbo].[Base_Project] ([ProjectId]) +GO + +ALTER TABLE [dbo].[PHTGL_ContractStandingBook] CHECK CONSTRAINT [FK_HTGL_ContractStandingBook_Base_Project] +GO + + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ĿId' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ProjectId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractName' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractNum' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ǩԼ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'Parties' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'֣ҡԪŷԪӡܣ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'Currency' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractAmount' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'첿' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'DepartId' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'Agent' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬͣ1-ʩܳаְͬ2-ʩרҵְͬ3-Ϲٺְͬ4-Գͬ5-޺ͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractType' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬժҪ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'Remarks' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'״̬ 0 1 2 3 4 ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ApproveState' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractCode' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ״̬' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'Status' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'׷ϵλ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContactUnitOfPartyA' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'׷ϵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContactPersonOfPartyA' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҷϵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContactPersonOfPartyB' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҷϵ˵绰' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContactPersonPhoneOfPartyB' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҷϵ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContactPersonEmailOfPartyB' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬ˰' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractAmountExcludingTax' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ƽ۷ʽ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'PriceMethod' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ǩ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'SignedOnDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ͬʼ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractStartDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ֹͬ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'ContractEndDate' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Ƽ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'PricingBasis' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ְģʽ 1-ڲְ2-ⲿְ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'SubcontractingMethod' +GO + +EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҷǷΪɹӦ/ְ 0-1-' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'PHTGL_ContractStandingBook', @level2type=N'COLUMN',@level2name=N'IsItACentralizedPurchaseSupplier' +GO + + diff --git a/DataBase/菜单初始化脚本/0-3合同管理(Menu_HTGL).sql b/DataBase/菜单初始化脚本/0-3合同管理(Menu_HTGL).sql index 2c9ef138..2e28bbe6 100644 --- a/DataBase/菜单初始化脚本/0-3合同管理(Menu_HTGL).sql +++ b/DataBase/菜单初始化脚本/0-3合同管理(Menu_HTGL).sql @@ -79,4 +79,18 @@ GO INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) VALUES ( N'1C04B9DD-0737-4E48-88D5-20A39F3AD42E',N'C18B4A2E-7BE7-43E6-A969-8A6292D19987',N'增加',1) GO +INSERT [Sys_Menu] ([MenuId],[MenuName],[Url],[SortIndex],[SuperMenu],[MenuType],[IsOffice],[IsEnd],[IsUsed]) +VALUES ( N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'合同台账',N'PHTGL/Filing/ContractStandingBook.aspx',50,N'0',N'Menu_HTGL',1,0,1) +GO + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'FADA2113-5F03-4BB6-825E-9C7831659168',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'修改',2) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'D99CDA22-F4AC-4DC2-99E8-7453E9C276D2',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'删除',3) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'97B2A0A9-E842-495D-B99B-2E67DF5ECCAD',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'保存',4) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'BDFD1A0F-35AF-4143-A7C2-31A0DC024F67',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'增加',1) + INSERT [Sys_ButtonToMenu] ([ButtonToMenuId],[MenuId],[ButtonName],[SortIndex]) + VALUES ( N'1A5D7CEC-2E64-4AAB-910B-A2C2CD6FA797',N'0A5DF9F5-B6B5-41B8-8951-C203C5749495',N'导入',5) +GO diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj index cbf99b83..6f7c6a81 100644 --- a/SGGL/BLL/BLL.csproj +++ b/SGGL/BLL/BLL.csproj @@ -590,6 +590,7 @@ + diff --git a/SGGL/BLL/Common/AttachFileService.cs b/SGGL/BLL/Common/AttachFileService.cs index 833ee119..4a9499f8 100644 --- a/SGGL/BLL/Common/AttachFileService.cs +++ b/SGGL/BLL/Common/AttachFileService.cs @@ -415,6 +415,34 @@ namespace BLL } } + /// + /// 判断文件类型是否支持的预览 + /// + /// + /// + public static bool IsSupportFileType(string FiletExtension) + { + bool result = false; + List list = new List(); + list.Add(".doc"); + list.Add(".docx"); + list.Add(".pdf"); + list.Add(".txt"); + list.Add(".xlsx"); + list.Add(".xls"); + foreach (var item in list) + { + if (item == FiletExtension) + { + result = true; + break; + } + } + + return result; + + } + #region 根据图片路径转换为base64 /// /// 根据图片路径转换为base64 diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs index b088dc6b..34d49b00 100644 --- a/SGGL/BLL/Common/Const.cs +++ b/SGGL/BLL/Common/Const.cs @@ -3041,6 +3041,10 @@ /// 招标工作台账 /// public const string ProjectBidDocumentsStandingBookMenuId = "11f4f882-28a9-4610-a657-6a58336097d2"; + /// + /// 合同台账 + /// + public const string ContractStandingBookMenuId = "0A5DF9F5-B6B5-41B8-8951-C203C5749495"; @@ -4477,6 +4481,7 @@ /// 招标文件台账模板 /// public const string BidDocumentsStandingBookIn = "File\\Excel\\DataIn\\BidDocumentsStandingBookIn.xlsx"; + public const string ContractStandingBookIn = "File\\Excel\\DataIn\\ContractStandingBookIn.xlsx"; /// /// 附件1 diff --git a/SGGL/BLL/PHTGL/ContractCompile/ContractStandingBookService.cs b/SGGL/BLL/PHTGL/ContractCompile/ContractStandingBookService.cs new file mode 100644 index 00000000..e503b166 --- /dev/null +++ b/SGGL/BLL/PHTGL/ContractCompile/ContractStandingBookService.cs @@ -0,0 +1,530 @@ +using FineUIPro; +using MiniExcelLibs.Attributes; +using System.Collections; +using System.Collections.Generic; +using System.Linq; + +namespace BLL +{ + /// + /// 合同基本信息 + /// + public static class ContractStandingBookService + { + public static Model.SGGLDB db = Funs.DB; + #region 获取列表 + /// + /// 记录数 + /// + public static int count + { + get; + set; + } + public static List GetPHTGL_ContractStandingBookByModle(Model.PHTGL_ContractStandingBook table) + { + var q = from x in Funs.DB.PHTGL_ContractStandingBook + where + (string.IsNullOrEmpty(table.ContractId) || x.ContractId.Contains(table.ContractId)) && + (string.IsNullOrEmpty(table.ProjectId) || x.ProjectId.Contains(table.ProjectId)) && + (string.IsNullOrEmpty(table.ContractName) || x.ContractName.Contains(table.ContractName)) && + (string.IsNullOrEmpty(table.ContractNum) || x.ContractNum.Contains(table.ContractNum)) && + (string.IsNullOrEmpty(table.Parties) || x.Parties.Contains(table.Parties)) && + (string.IsNullOrEmpty(table.Currency) || x.Currency.Contains(table.Currency)) && + (string.IsNullOrEmpty(table.DepartId) || x.DepartId.Contains(table.DepartId)) && + (string.IsNullOrEmpty(table.Agent) || x.Agent.Contains(table.Agent)) && + (string.IsNullOrEmpty(table.ContractType) || x.ContractType.Contains(table.ContractType)) && + (string.IsNullOrEmpty(table.Remarks) || x.Remarks.Contains(table.Remarks)) && + (string.IsNullOrEmpty(table.CreatUser) || x.CreatUser.Contains(table.CreatUser)) && + (string.IsNullOrEmpty(table.ContractCode) || x.ContractCode.Contains(table.ContractCode)) && + (string.IsNullOrEmpty(table.IsPassBid) || x.IsPassBid.Contains(table.IsPassBid)) && + (string.IsNullOrEmpty(table.PassBidCode) || x.PassBidCode.Contains(table.PassBidCode)) && + (string.IsNullOrEmpty(table.BuildUnit) || x.BuildUnit.Contains(table.BuildUnit)) && + (string.IsNullOrEmpty(table.NoUseStandardtxtRemark) || x.NoUseStandardtxtRemark.Contains(table.NoUseStandardtxtRemark)) && + (string.IsNullOrEmpty(table.EPCCode) || x.EPCCode.Contains(table.EPCCode)) && + (string.IsNullOrEmpty(table.ProjectShortName) || x.ProjectShortName.Contains(table.ProjectShortName)) && + (string.IsNullOrEmpty(table.ContractAttribute) || x.ContractAttribute.Contains(table.ContractAttribute)) && + (string.IsNullOrEmpty(table.ContractAttributeRemark) || x.ContractAttributeRemark.Contains(table.ContractAttributeRemark)) && + (string.IsNullOrEmpty(table.ConfirmWay) || x.ConfirmWay.Contains(table.ConfirmWay)) && + (string.IsNullOrEmpty(table.SetSubReviewCode) || x.SetSubReviewCode.Contains(table.SetSubReviewCode)) && + (string.IsNullOrEmpty(table.ActionPlanCode) || x.ActionPlanCode.Contains(table.ActionPlanCode)) && + (string.IsNullOrEmpty(table.SituationRemark) || x.SituationRemark.Contains(table.SituationRemark)) && + (string.IsNullOrEmpty(table.OpeningBank_TT) || x.OpeningBank_TT.Contains(table.OpeningBank_TT)) && + (string.IsNullOrEmpty(table.OpeningBank_Electrophore) || x.OpeningBank_Electrophore.Contains(table.OpeningBank_Electrophore)) && + (string.IsNullOrEmpty(table.BankAccount_TT) || x.BankAccount_TT.Contains(table.BankAccount_TT)) && + (string.IsNullOrEmpty(table.BankAccount_Electrophore) || x.BankAccount_Electrophore.Contains(table.BankAccount_Electrophore)) && + (string.IsNullOrEmpty(table.LineNumber_Electrophore) || x.LineNumber_Electrophore.Contains(table.LineNumber_Electrophore)) && + (string.IsNullOrEmpty(table.Retentionmoney) || x.Retentionmoney.Contains(table.Retentionmoney)) && + (string.IsNullOrEmpty(table.CreateDate) || x.CreateDate.Contains(table.CreateDate)) && + (string.IsNullOrEmpty(table.Status) || x.Status.Contains(table.Status)) && + (table.States == null || x.States==table.States) && + (string.IsNullOrEmpty(table.ContactUnitOfPartyA) || x.ContactUnitOfPartyA.Contains(table.ContactUnitOfPartyA)) && + (string.IsNullOrEmpty(table.ContactPersonOfPartyA) || x.ContactPersonOfPartyA.Contains(table.ContactPersonOfPartyA)) && + (string.IsNullOrEmpty(table.ContactPersonOfPartyB) || x.ContactPersonOfPartyB.Contains(table.ContactPersonOfPartyB)) && + (string.IsNullOrEmpty(table.ContactPersonPhoneOfPartyB) || x.ContactPersonPhoneOfPartyB.Contains(table.ContactPersonPhoneOfPartyB)) && + (string.IsNullOrEmpty(table.ContactPersonEmailOfPartyB) || x.ContactPersonEmailOfPartyB.Contains(table.ContactPersonEmailOfPartyB)) && + (string.IsNullOrEmpty(table.PriceMethod) || x.PriceMethod.Contains(table.PriceMethod)) && + (string.IsNullOrEmpty(table.SignedOnDate) || x.SignedOnDate.Contains(table.SignedOnDate)) && + (string.IsNullOrEmpty(table.ContractStartDate) || x.ContractStartDate.Contains(table.ContractStartDate)) && + (string.IsNullOrEmpty(table.ContractEndDate) || x.ContractEndDate.Contains(table.ContractEndDate)) && + (string.IsNullOrEmpty(table.PricingBasis) || x.PricingBasis.Contains(table.PricingBasis)) && + (string.IsNullOrEmpty(table.SubcontractingMethod) || x.SubcontractingMethod.Contains(table.SubcontractingMethod)) && + (string.IsNullOrEmpty(table.IsItACentralizedPurchaseSupplier) || x.IsItACentralizedPurchaseSupplier.Contains(table.IsItACentralizedPurchaseSupplier)) && + (string.IsNullOrEmpty(table.Clause) || x.Clause.Contains(table.Clause)) && + (string.IsNullOrEmpty(table.MainContent) || x.MainContent.Contains(table.MainContent)) + select x + ; + + return q.ToList(); + } + + /// 获取分页列表 + /// + /// 页码 + /// 每页数量 + /// + public static IEnumerable getListData(Model.PHTGL_ContractStandingBook table, Grid Grid1) + { + var q = GetPHTGL_ContractStandingBookByModle(table); + count = q.Count(); + if (count == 0) + { + return null; + } + q= q.Take(Grid1.PageSize * Grid1.PageIndex).Skip(Grid1.PageSize * (Grid1.PageIndex)).ToList(); + // q = SortConditionHelper.SortingAndPaging(q, Grid1.SortField, Grid1.SortDirection, Grid1.PageIndex, Grid1.PageSize); + return from x in q + select new + { + x.ContractId, + x.ProjectId, + x.ContractName, + x.ContractNum, + x.Parties, + x.Currency, + x.ContractAmount, + x.DepartId, + x.Agent, + x.ContractType, + x.Remarks, + x.ApproveState, + x.CreatUser, + x.ContractCode, + x.IsPassBid, + x.PassBidCode, + x.BuildUnit, + x.IsUseStandardtxt, + x.NoUseStandardtxtRemark, + x.EPCCode, + x.ProjectShortName, + x.ContractAttribute, + x.ContractAttributeRemark, + x.ConfirmWay, + x.SetSubReviewCode, + x.ActionPlanCode, + x.SituationRemark, + x.OpeningBank_TT, + x.OpeningBank_Electrophore, + x.BankAccount_TT, + x.BankAccount_Electrophore, + x.LineNumber_Electrophore, + x.Retentionmoney, + x.CreateDate, + x.Status, + x.States, + x.ContactUnitOfPartyA, + x.ContactPersonOfPartyA, + x.ContactPersonOfPartyB, + x.ContactPersonPhoneOfPartyB, + x.ContactPersonEmailOfPartyB, + x.ContractAmountExcludingTax, + x.PriceMethod, + x.SignedOnDate, + x.ContractStartDate, + x.ContractEndDate, + x.PricingBasis, + x.SubcontractingMethod, + x.IsItACentralizedPurchaseSupplier, + x.Clause, + x.MainContent, + + }; + } + #endregion + /// + /// 根据主键获取合同基本信息 + /// + /// + /// + public static Model.PHTGL_ContractStandingBook GetContractById(string contractId) + { + return Funs.DB.PHTGL_ContractStandingBook.FirstOrDefault(e => e.ContractId == contractId); + } + /// + /// 根据总包合同编号 + /// + /// + /// + public static Model.PHTGL_ContractStandingBook GetContractByProjectId(string ProjectId) + { + return Funs.DB.PHTGL_ContractStandingBook.FirstOrDefault(e => e.ProjectId == ProjectId); + } + /// + /// 根据合同编号 + /// + /// + /// + public static Model.PHTGL_ContractStandingBook GetContractByContractNum(string ContractNum) + { + return Funs.DB.PHTGL_ContractStandingBook.FirstOrDefault(e => e.ContractNum == ContractNum); + } + + public static List GetProjectDropDownList() + { + var list = (from x in Funs.DB.PHTGL_ContractStandingBook + join y in Funs.DB.Base_Project on x.ProjectId equals y.ProjectId + where x.ApproveState > 0 + select y).ToList(); + return list; + } + + + public static void InitAllProjectCodeDropDownList(FineUIPro.DropDownList dropName, bool isShowPlease) + { + dropName.DataValueField = "ProjectId"; + dropName.DataTextField = "ProjectCode"; + var projectlist = BLL.ContractService.GetProjectDropDownList(); + dropName.DataSource = projectlist; + dropName.DataBind(); + if (projectlist.Count() == 0) + { + isShowPlease = true; + } + if (isShowPlease) + { + Funs.FineUIPleaseSelect(dropName); + } + } + + /// + /// 增加合同基本信息 + /// + /// + public static void AddContract(Model.PHTGL_ContractStandingBook newtable) + { + Model.PHTGL_ContractStandingBook table = new Model.PHTGL_ContractStandingBook + { + ContractId = newtable.ContractId, + ProjectId = newtable.ProjectId, + ProjectName= newtable.ProjectName, + ProjectCode= newtable.ProjectCode, + ContractName = newtable.ContractName, + ContractNum = newtable.ContractNum, + Parties = newtable.Parties, + Currency = newtable.Currency, + ContractAmount = newtable.ContractAmount, + DepartId = newtable.DepartId, + Agent = newtable.Agent, + ContractType = newtable.ContractType, + Remarks = newtable.Remarks, + ApproveState = newtable.ApproveState, + CreatUser = newtable.CreatUser, + ContractCode = newtable.ContractCode, + IsPassBid = newtable.IsPassBid, + PassBidCode = newtable.PassBidCode, + BuildUnit = newtable.BuildUnit, + IsUseStandardtxt = newtable.IsUseStandardtxt, + NoUseStandardtxtRemark = newtable.NoUseStandardtxtRemark, + EPCCode = newtable.EPCCode, + ProjectShortName = newtable.ProjectShortName, + ContractAttribute = newtable.ContractAttribute, + ContractAttributeRemark = newtable.ContractAttributeRemark, + ConfirmWay = newtable.ConfirmWay, + SetSubReviewCode = newtable.SetSubReviewCode, + ActionPlanCode = newtable.ActionPlanCode, + SituationRemark = newtable.SituationRemark, + OpeningBank_TT = newtable.OpeningBank_TT, + OpeningBank_Electrophore = newtable.OpeningBank_Electrophore, + BankAccount_TT = newtable.BankAccount_TT, + BankAccount_Electrophore = newtable.BankAccount_Electrophore, + LineNumber_Electrophore = newtable.LineNumber_Electrophore, + Retentionmoney = newtable.Retentionmoney, + CreateDate = newtable.CreateDate, + Status = newtable.Status, + States = newtable.States, + ContactPersonOfPartyA = newtable.ContactPersonOfPartyA, + ContactPersonOfPartyB = newtable.ContactPersonOfPartyB, + ContactPersonPhoneOfPartyB = newtable.ContactPersonPhoneOfPartyB, + ContactPersonEmailOfPartyB = newtable.ContactPersonEmailOfPartyB, + ContractAmountExcludingTax = newtable.ContractAmountExcludingTax, + PriceMethod = newtable.PriceMethod, + SignedOnDate = newtable.SignedOnDate, + ContractStartDate = newtable.ContractStartDate, + ContractEndDate = newtable.ContractEndDate, + PricingBasis = newtable.PricingBasis, + SubcontractingMethod = newtable.SubcontractingMethod, + IsItACentralizedPurchaseSupplier = newtable.IsItACentralizedPurchaseSupplier, + ContactUnitOfPartyA = newtable.ContactUnitOfPartyA, + Clause = newtable.Clause, + MainContent = newtable.MainContent, + }; + Funs.DB.PHTGL_ContractStandingBook.InsertOnSubmit(table); + Funs.DB.SubmitChanges(); + } + + + /// + /// 修改合同基本信息 + /// + /// + public static void UpdateContract(Model.PHTGL_ContractStandingBook contract) + { + Model.PHTGL_ContractStandingBook newContract = Funs.DB.PHTGL_ContractStandingBook.FirstOrDefault(e => e.ContractId == contract.ContractId); + if (newContract != null) + { + newContract.ProjectId = contract.ProjectId; + newContract.ProjectName=contract.ProjectName; + newContract.ProjectCode=contract.ProjectCode; + newContract.ContractCode = contract.ContractCode; + newContract.ContractName = contract.ContractName; + newContract.ContractNum = contract.ContractNum; + newContract.Parties = contract.Parties; + newContract.Currency = contract.Currency; + newContract.ContractAmount = contract.ContractAmount; + newContract.DepartId = contract.DepartId; + newContract.Agent = contract.Agent; + newContract.ContractType = contract.ContractType; + newContract.Remarks = contract.Remarks; + newContract.ApproveState = contract.ApproveState; + newContract.CreatUser = contract.CreatUser; + newContract.IsPassBid = contract.IsPassBid; + newContract.PassBidCode = contract.PassBidCode; + newContract.BuildUnit = contract.BuildUnit; + newContract.EPCCode = contract.EPCCode; + newContract.IsUseStandardtxt = contract.IsUseStandardtxt; + newContract.NoUseStandardtxtRemark = contract.NoUseStandardtxtRemark; + newContract.ProjectShortName = contract.ProjectShortName; + newContract.ContractAttribute = contract.ContractAttribute; + newContract.ContractAttributeRemark = contract.ContractAttributeRemark; + newContract.ConfirmWay = contract.ConfirmWay; + newContract.SetSubReviewCode = contract.SetSubReviewCode; + newContract.ActionPlanCode = contract.ActionPlanCode; + newContract.SituationRemark = contract.SituationRemark; + newContract.OpeningBank_TT = contract.OpeningBank_TT; + newContract.OpeningBank_Electrophore = contract.OpeningBank_Electrophore; + newContract.BankAccount_TT = contract.BankAccount_TT; + newContract.BankAccount_Electrophore = contract.BankAccount_Electrophore; + newContract.LineNumber_Electrophore = contract.LineNumber_Electrophore; + newContract.Retentionmoney = contract.Retentionmoney; + newContract.CreateDate = contract.CreateDate; + newContract.Status = contract.Status; + newContract.States = contract.States; + newContract.ContactPersonOfPartyA = contract.ContactPersonOfPartyA; + newContract.ContactPersonOfPartyB = contract.ContactPersonOfPartyB; + newContract.ContactPersonPhoneOfPartyB = contract.ContactPersonPhoneOfPartyB; + newContract.ContactPersonEmailOfPartyB = contract.ContactPersonEmailOfPartyB; + newContract.ContractAmountExcludingTax = contract.ContractAmountExcludingTax; + newContract.PriceMethod = contract.PriceMethod; + newContract.SignedOnDate = contract.SignedOnDate; + newContract.ContractStartDate = contract.ContractStartDate; + newContract.ContractEndDate = contract.ContractEndDate; + newContract.PricingBasis = contract.PricingBasis; + newContract.SubcontractingMethod = contract.SubcontractingMethod; + newContract.IsItACentralizedPurchaseSupplier = contract.IsItACentralizedPurchaseSupplier; + newContract.ContactUnitOfPartyA = contract.ContactUnitOfPartyA; + newContract.Clause = contract.Clause; + newContract.MainContent = contract.MainContent; + Funs.DB.SubmitChanges(); + } + } + + /// + /// 根据主键删除合同基本信息 + /// + /// + public static void DeleteContractById(string contractId) + { + + Model.PHTGL_ContractStandingBook contract = Funs.DB.PHTGL_ContractStandingBook.FirstOrDefault(e => e.ContractId == contractId); + if (contract != null) + { + Funs.DB.PHTGL_ContractStandingBook.DeleteOnSubmit(contract); + Funs.DB.SubmitChanges(); + } + } + + public static void AddBulkPHTGL_ContractStandingBook(List newtables) + { + + Funs.DB.PHTGL_ContractStandingBook.InsertAllOnSubmit(newtables); + Funs.DB.SubmitChanges(); + } + + + } + + + public class ContractStandingBooKDtoIn + { + + /// + /// 合同名称 + /// + [ExcelColumnName("合同名称")] + public string ContractName { get; set; } + /// + /// 合同编号 + /// + [ExcelColumnName("合同编号")] + public string ContractNum { get; set; } + + [ExcelColumnName("项目名称")] + public string ProjectName { get; set; } + + [ExcelColumnName("项目代码")] + public string ProjectCode { get; set; } + /// + /// 签约方 + /// + [ExcelColumnName("签约方")] + public string Parties { get; set; } + /// + /// 币种(人民币、美元、欧元、印尼盾) + /// + [ExcelColumnName("币种")] + public string Currency { get; set; } + /// + /// 合同金额 + /// + [ExcelColumnName("合同金额")] + public string ContractAmount { get; set; } + + /// + /// 合同类型(1-施工总承包分包合同、2-施工专业分包合同、3-上官红劳务分包合同、4-试车服务合同、5-租赁合同) + /// + [ExcelColumnName("合同类型")] + public string ContractType { get; set; } + + /// + /// + /// + [ExcelColumnName("总承包合同编号")] + public string EPCCode { get; set; } + /// + /// + /// + [ExcelColumnName("项目名称")] + public string ProjectShortName { get; set; } + /// + /// + /// + [ExcelColumnName("合同属性")] + public string ContractAttribute { get; set; } + + /// + /// + /// + [ExcelColumnName("开户行电汇")] + public string OpeningBankTT { get; set; } + /// + /// + /// + [ExcelColumnName("开户行电承")] + public string OpeningBankelectrophore { get; set; } + /// + /// + /// + [ExcelColumnName("银行账号电汇")] + public string BankAccountTT { get; set; } + /// + /// + /// + [ExcelColumnName("银行账号电承")] + public string BankAccountelectrophore { get; set; } + /// + /// + /// + [ExcelColumnName("行号电承")] + public string LineNumberelectrophore { get; set; } + /// + /// + /// + [ExcelColumnName("质保金")] + public string Retentionmoney { get; set; } + + /// + /// 合同状态 + /// + [ExcelColumnName("合同状态")] + public string Status { get; set; } + + /// + /// 甲方联系单位 + /// + [ExcelColumnName("甲方联系单位")] + public string ContactUnitOfPartyA { get; set; } + /// + /// 甲方联系人 + /// + [ExcelColumnName("甲方联系人")] + public string ContactPersonOfPartyA { get; set; } + /// + /// 乙方联系人 + /// + [ExcelColumnName("乙方联系人")] + public string ContactPersonOfPartyB { get; set; } + /// + /// 乙方联系人电话 + /// + [ExcelColumnName("乙方联系人电话")] + public string ContactPersonPhoneOfPartyB { get; set; } + /// + /// 乙方联系人邮箱 + /// + [ExcelColumnName("乙方联系人邮箱")] + public string ContactPersonEmailOfPartyB { get; set; } + /// + /// 合同不含税金额 + /// + [ExcelColumnName("合同不含税金额")] + public string ContractAmountExcludingTax { get; set; } + /// + /// 计价方式 + /// + [ExcelColumnName("计价方式")] + public string PriceMethod { get; set; } + /// + /// 签订日期 + /// + [ExcelColumnName("签订日期")] + public string SignedOnDate { get; set; } + /// + /// 合同起始日期 + /// + [ExcelColumnName("合同起始日期")] + public string ContractStartDate { get; set; } + /// + /// 合同终止日期 + /// + [ExcelColumnName("合同终止日期")] + public string ContractEndDate { get; set; } + /// + /// 计价依据 + /// + [ExcelColumnName("计价依据")] + public string PricingBasis { get; set; } + /// + /// 分包模式 1-内部分包,2-外部分包 + /// + [ExcelColumnName("分包模式")] + public string SubcontractingMethod { get; set; } + /// + /// 乙方是否为集采供应商/分包商 0-否,1-是 + /// + [ExcelColumnName("乙方是否为集采供应商/分包商")] + public string IsItACentralizedPurchaseSupplier { get; set; } + + } + + +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/AttachFile/Look.aspx.cs b/SGGL/FineUIPro.Web/AttachFile/Look.aspx.cs index a0faa87c..61f82bad 100644 --- a/SGGL/FineUIPro.Web/AttachFile/Look.aspx.cs +++ b/SGGL/FineUIPro.Web/AttachFile/Look.aspx.cs @@ -1,5 +1,6 @@ using BLL; using System; +using System.IO; namespace FineUIPro.Web.AttachFile { @@ -12,7 +13,23 @@ namespace FineUIPro.Web.AttachFile this.btnClose.OnClientClick = ActiveWindow.GetHideReference(); var url = Request.Params["fileUrl"]; - var newurl = Funs.SGGLUrl + url.Replace(Funs.RootPath, ""); + var Baseurl = "https://view.officeapps.live.com/op/embed.aspx?src="; + var Fileurl = Funs.SGGLUrl + url.Replace(Funs.RootPath, ""); + var newurl = ""; + var FiletExtension = Path.GetExtension(url); + if (FiletExtension == ".docx" || FiletExtension == ".doc"|| FiletExtension == ".xls" || FiletExtension == ".xlsx") + { + newurl = Baseurl + Fileurl; + } + else if (FiletExtension == ".txt"|| FiletExtension== "pdf") + { + newurl = Fileurl; + } + else + { + newurl = Fileurl; + } + this.LookHtml.Src = newurl; this.Tab1.IFrameUrl = newurl; //StreamReader fread = new StreamReader(url, System.Text.Encoding.GetEncoding("gb2312")); diff --git a/SGGL/FineUIPro.Web/AttachFile/webuploader.aspx.cs b/SGGL/FineUIPro.Web/AttachFile/webuploader.aspx.cs index 95c1ad7d..64c9a9dd 100644 --- a/SGGL/FineUIPro.Web/AttachFile/webuploader.aspx.cs +++ b/SGGL/FineUIPro.Web/AttachFile/webuploader.aspx.cs @@ -365,27 +365,37 @@ namespace FineUIPro.Web.AttachFile info = new FileInfo(url); } var FiletExtension = Path.GetExtension(savedName); - if (FiletExtension == ".docx" || FiletExtension == ".pdf") + bool isSupportType = AttachFileService.IsSupportFileType(FiletExtension); + if (isSupportType) { - string httpUrl = BLL.AsposeWordHelper.WordToHtml(url); - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../AttachFile/Look.aspx?fileUrl={0}", httpUrl, "查看 -"))); - - } - else if (FiletExtension == ".txt") - { - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../AttachFile/Look.aspx?fileUrl={0}", url, "查看 -"))); } - else if (FiletExtension == ".xls") - { - string httpUrl = BLL.AsposeWordHelper.PriviewExcel(url); - - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../AttachFile/Look.aspx?fileUrl={0}", httpUrl, "查看 -"))); - } else { ShowNotify("不支持预览", MessageBoxIcon.Warning); + } + //if (FiletExtension == ".docx" || FiletExtension == ".pdf") + //{ + // string httpUrl = BLL.AsposeWordHelper.WordToHtml(url); + // PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../AttachFile/Look.aspx?fileUrl={0}", httpUrl, "查看 -"))); + + //} + //else if (FiletExtension == ".txt") + //{ + + // PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../AttachFile/Look.aspx?fileUrl={0}", url, "查看 -"))); + //} + //else if (FiletExtension == ".xls") + //{ + // string httpUrl = BLL.AsposeWordHelper.PriviewExcel(url); + + // PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../AttachFile/Look.aspx?fileUrl={0}", httpUrl, "查看 -"))); + //} + //else + //{ + // ShowNotify("不支持预览", MessageBoxIcon.Warning); + //} } catch (Exception) { diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/ContractStandingBookIn.xlsx b/SGGL/FineUIPro.Web/File/Excel/DataIn/ContractStandingBookIn.xlsx new file mode 100644 index 00000000..933076e5 Binary files /dev/null and b/SGGL/FineUIPro.Web/File/Excel/DataIn/ContractStandingBookIn.xlsx differ diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 09f180ff..1d4f35f8 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1205,6 +1205,8 @@ + + @@ -12138,6 +12140,20 @@ ContractStandingBook.aspx + + ContractStandingBookEdit.aspx + ASPXCodeBehind + + + ContractStandingBookEdit.aspx + + + ContractStandingBookIn.aspx + ASPXCodeBehind + + + ContractStandingBookIn.aspx + Files.aspx ASPXCodeBehind diff --git a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs index 0ade06c6..76ce1531 100644 --- a/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/PHTGL/ContractCompile/ContractFormationEdit.aspx.designer.cs @@ -7,11 +7,13 @@ // //------------------------------------------------------------------------------ -namespace FineUIPro.Web.PHTGL.ContractCompile { - - - public partial class ContractFormationEdit { - +namespace FineUIPro.Web.PHTGL.ContractCompile +{ + + + public partial class ContractFormationEdit + { + /// /// form1 控件。 /// @@ -20,7 +22,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; - + /// /// PageManager1 控件。 /// @@ -29,7 +31,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.PageManager PageManager1; - + /// /// Form4 控件。 /// @@ -38,7 +40,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form4; - + /// /// Panel2 控件。 /// @@ -47,7 +49,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel2; - + /// /// Panel16 控件。 /// @@ -56,7 +58,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel16; - + /// /// btnSubmitForm1 控件。 /// @@ -65,7 +67,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSubmitForm1; - + /// /// btnClose 控件。 /// @@ -74,7 +76,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnClose; - + /// /// TabStrip1 控件。 /// @@ -83,7 +85,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TabStrip TabStrip1; - + /// /// Tab1 控件。 /// @@ -92,7 +94,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab1; - + /// /// SimpleForm1 控件。 /// @@ -101,7 +103,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form SimpleForm1; - + /// /// DropContractAttribute 控件。 /// @@ -110,7 +112,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropContractAttribute; - + /// /// DropStatus 控件。 /// @@ -119,7 +121,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropStatus; - + /// /// txtSignedOnDate 控件。 /// @@ -128,7 +130,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtSignedOnDate; - + /// /// txtContractStartDate 控件。 /// @@ -137,7 +139,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtContractStartDate; - + /// /// txtContractEndDate 控件。 /// @@ -146,7 +148,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DatePicker txtContractEndDate; - + /// /// DropConfirmWay 控件。 /// @@ -155,7 +157,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropConfirmWay; - + /// /// dropSubcontractingMethod 控件。 /// @@ -164,7 +166,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList dropSubcontractingMethod; - + /// /// IsUseStandardtxt 控件。 /// @@ -173,7 +175,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.RadioButtonList IsUseStandardtxt; - + /// /// DropSetSubReviewCode 控件。 /// @@ -182,7 +184,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropSetSubReviewCode; - + /// /// DropActionPlanCode 控件。 /// @@ -191,7 +193,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropActionPlanCode; - + /// /// DropMainContractCode 控件。 /// @@ -200,7 +202,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList DropMainContractCode; - + /// /// tab1_txtEPCCode 控件。 /// @@ -209,7 +211,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtEPCCode; - + /// /// tab1_txtProjectName 控件。 /// @@ -218,7 +220,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtProjectName; - + /// /// tab1_txtContractName 控件。 /// @@ -227,7 +229,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtContractName; - + /// /// tab1_txtContractNum 控件。 /// @@ -236,7 +238,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtContractNum; - + /// /// drpContractType 控件。 /// @@ -245,7 +247,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpContractType; - + /// /// tab1_BuildUnit 控件。 /// @@ -254,7 +256,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_BuildUnit; - + /// /// txtPriceMethod 控件。 /// @@ -263,7 +265,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPriceMethod; - + /// /// txtPricingBasis 控件。 /// @@ -272,7 +274,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtPricingBasis; - + /// /// drpCurrency 控件。 /// @@ -281,7 +283,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpCurrency; - + /// /// tab1_txtContractAmount 控件。 /// @@ -290,7 +292,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.NumberBox tab1_txtContractAmount; - + /// /// txtContractAmountExcludingTax 控件。 /// @@ -299,7 +301,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.NumberBox txtContractAmountExcludingTax; - + /// /// drpDepartId 控件。 /// @@ -308,7 +310,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpDepartId; - + /// /// drpAgent 控件。 /// @@ -317,7 +319,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpAgent; - + /// /// txtContactUnitOfPartyA 控件。 /// @@ -326,7 +328,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactUnitOfPartyA; - + /// /// txtContactPersonOfPartyA 控件。 /// @@ -335,7 +337,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonOfPartyA; - + /// /// tab1_txtParties 控件。 /// @@ -344,7 +346,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab1_txtParties; - + /// /// dropIsItACentralizedPurchaseSupplier 控件。 /// @@ -353,7 +355,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList dropIsItACentralizedPurchaseSupplier; - + /// /// txtContactPersonOfPartyB 控件。 /// @@ -362,7 +364,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonOfPartyB; - + /// /// txtContactPersonPhoneOfPartyB 控件。 /// @@ -371,7 +373,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonPhoneOfPartyB; - + /// /// txtContactPersonEmailOfPartyB 控件。 /// @@ -380,7 +382,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtContactPersonEmailOfPartyB; - + /// /// txtOpeningBank_TT 控件。 /// @@ -389,7 +391,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtOpeningBank_TT; - + /// /// txtBankAccount_TT 控件。 /// @@ -398,7 +400,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtBankAccount_TT; - + /// /// txtOpeningBank_Electrophore 控件。 /// @@ -407,7 +409,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtOpeningBank_Electrophore; - + /// /// txtBankAccount_Electrophore 控件。 /// @@ -416,7 +418,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtBankAccount_Electrophore; - + /// /// txtRetentionmoney 控件。 /// @@ -425,7 +427,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtRetentionmoney; - + /// /// txtLineNumber_Electrophore 控件。 /// @@ -434,7 +436,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtLineNumber_Electrophore; - + /// /// tab1_txtRemark 控件。 /// @@ -443,7 +445,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea tab1_txtRemark; - + /// /// Panel15 控件。 /// @@ -452,7 +454,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel15; - + /// /// SituationRemark 控件。 /// @@ -461,7 +463,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SituationRemark; - + /// /// btnAttachUrl_Remark 控件。 /// @@ -470,7 +472,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnAttachUrl_Remark; - + /// /// Panel17 控件。 /// @@ -479,7 +481,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel17; - + /// /// Label 控件。 /// @@ -488,7 +490,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label; - + /// /// btnAttachUrl 控件。 /// @@ -497,7 +499,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnAttachUrl; - + /// /// txtClause 控件。 /// @@ -506,7 +508,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea txtClause; - + /// /// txtMainContent 控件。 /// @@ -515,7 +517,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea txtMainContent; - + /// /// Toolbar5 控件。 /// @@ -524,7 +526,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar5; - + /// /// Toolbar1 控件。 /// @@ -533,7 +535,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// ToolbarFill1 控件。 /// @@ -542,7 +544,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + /// /// btnSave_Tab1 控件。 /// @@ -551,7 +553,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave_Tab1; - + /// /// Tab2 控件。 /// @@ -560,7 +562,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab2; - + /// /// Toolbar3 控件。 /// @@ -569,7 +571,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar3; - + /// /// btnSave 控件。 /// @@ -578,7 +580,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave; - + /// /// Form2 控件。 /// @@ -587,7 +589,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form2; - + /// /// Label2 控件。 /// @@ -596,7 +598,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label2; - + /// /// tab2_txtGeneralContractor 控件。 /// @@ -605,7 +607,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtGeneralContractor; - + /// /// tab2_txtSubConstruction 控件。 /// @@ -614,7 +616,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubConstruction; - + /// /// Label44 控件。 /// @@ -623,7 +625,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label44; - + /// /// tab2_txtContents 控件。 /// @@ -632,7 +634,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContents; - + /// /// Label47 控件。 /// @@ -641,7 +643,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label47; - + /// /// Label3 控件。 /// @@ -650,7 +652,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label3; - + /// /// tab2_txtContractProject 控件。 /// @@ -659,7 +661,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractProject; - + /// /// tab2_txtContractProjectOwner 控件。 /// @@ -668,7 +670,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractProjectOwner; - + /// /// tab2_txtSubProject 控件。 /// @@ -677,7 +679,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubProject; - + /// /// tab2_txtSubProjectAddress 控件。 /// @@ -686,7 +688,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubProjectAddress; - + /// /// tab2_txtFundingSources 控件。 /// @@ -695,7 +697,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtFundingSources; - + /// /// Label4 控件。 /// @@ -704,7 +706,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label4; - + /// /// tab2_txtSubProjectContractScope 控件。 /// @@ -713,7 +715,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubProjectContractScope; - + /// /// tab2_txtSubProjectContent 控件。 /// @@ -722,7 +724,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea tab2_txtSubProjectContent; - + /// /// Panel3 控件。 /// @@ -731,7 +733,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel3; - + /// /// ContentPanel3 控件。 /// @@ -740,7 +742,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel3; - + /// /// Label5 控件。 /// @@ -749,7 +751,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label5; - + /// /// tab2_txtPlanStartYear 控件。 /// @@ -758,7 +760,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanStartYear; - + /// /// Label6 控件。 /// @@ -767,7 +769,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label6; - + /// /// tab2_txtPlanStartMonth 控件。 /// @@ -776,7 +778,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanStartMonth; - + /// /// Label7 控件。 /// @@ -785,7 +787,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label7; - + /// /// tab2_txtPlanStartDay 控件。 /// @@ -794,7 +796,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanStartDay; - + /// /// Label8 控件。 /// @@ -803,7 +805,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label8; - + /// /// tab2_txtPlanEndYear 控件。 /// @@ -812,7 +814,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanEndYear; - + /// /// Label45 控件。 /// @@ -821,7 +823,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label45; - + /// /// tab2_txtPlanEndMonth 控件。 /// @@ -830,7 +832,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanEndMonth; - + /// /// Label46 控件。 /// @@ -839,7 +841,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label46; - + /// /// tab2_txtPlanEndDay 控件。 /// @@ -848,7 +850,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtPlanEndDay; - + /// /// Label48 控件。 /// @@ -857,7 +859,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label48; - + /// /// tab2_txtLimit 控件。 /// @@ -866,7 +868,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLimit; - + /// /// Label9 控件。 /// @@ -875,7 +877,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label9; - + /// /// Panel4 控件。 /// @@ -884,7 +886,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel4; - + /// /// ContentPanel4 控件。 /// @@ -893,7 +895,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel4; - + /// /// Label10 控件。 /// @@ -902,7 +904,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label10; - + /// /// Panel5 控件。 /// @@ -911,7 +913,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel5; - + /// /// ContentPanel5 控件。 /// @@ -920,7 +922,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel5; - + /// /// tab2_txtQualityStandards 控件。 /// @@ -929,7 +931,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtQualityStandards; - + /// /// Panel6 控件。 /// @@ -938,7 +940,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel6; - + /// /// ContentPanel6 控件。 /// @@ -947,7 +949,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel6; - + /// /// tab2_txtHSEManageStandards 控件。 /// @@ -956,7 +958,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtHSEManageStandards; - + /// /// Label11 控件。 /// @@ -965,7 +967,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label11; - + /// /// Panel1 控件。 /// @@ -974,7 +976,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// ContentPanel7 控件。 /// @@ -983,7 +985,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel7; - + /// /// Label12 控件。 /// @@ -992,7 +994,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label12; - + /// /// tab2_txtSubcontractPriceForm 控件。 /// @@ -1001,7 +1003,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubcontractPriceForm; - + /// /// Label13 控件。 /// @@ -1010,7 +1012,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label13; - + /// /// tab2_txtContractPriceCapital 控件。 /// @@ -1019,7 +1021,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractPriceCapital; - + /// /// Label14 控件。 /// @@ -1028,7 +1030,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label14; - + /// /// tab2_txtContractPriceCNY 控件。 /// @@ -1037,7 +1039,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractPriceCNY; - + /// /// Label15 控件。 /// @@ -1046,7 +1048,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label15; - + /// /// tab2_txtContractPriceAttUrlCode 控件。 /// @@ -1055,7 +1057,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtContractPriceAttUrlCode; - + /// /// tab2_txtContractPriceDesc 控件。 /// @@ -1064,7 +1066,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea tab2_txtContractPriceDesc; - + /// /// Panel7 控件。 /// @@ -1073,7 +1075,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel7; - + /// /// ContentPanel8 控件。 /// @@ -1082,7 +1084,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel8; - + /// /// Label16 控件。 /// @@ -1091,7 +1093,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label16; - + /// /// tab2_txtInvoice 控件。 /// @@ -1100,7 +1102,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtInvoice; - + /// /// Label17 控件。 /// @@ -1109,7 +1111,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label17; - + /// /// Label18 控件。 /// @@ -1118,7 +1120,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label18; - + /// /// Panel8 控件。 /// @@ -1127,7 +1129,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel8; - + /// /// ContentPanel9 控件。 /// @@ -1136,7 +1138,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel9; - + /// /// Label19 控件。 /// @@ -1145,7 +1147,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label19; - + /// /// Panel9 控件。 /// @@ -1154,7 +1156,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel9; - + /// /// ContentPanel10 控件。 /// @@ -1163,7 +1165,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel10; - + /// /// Label20 控件。 /// @@ -1172,7 +1174,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label20; - + /// /// Panel10 控件。 /// @@ -1181,7 +1183,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel10; - + /// /// ContentPanel11 控件。 /// @@ -1190,7 +1192,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel11; - + /// /// tab2_txtLaw 控件。 /// @@ -1199,7 +1201,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLaw; - + /// /// ContentPanel12 控件。 /// @@ -1208,7 +1210,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel12; - + /// /// Label21 控件。 /// @@ -1217,7 +1219,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label21; - + /// /// Panel11 控件。 /// @@ -1226,7 +1228,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel11; - + /// /// ContentPanel13 控件。 /// @@ -1235,7 +1237,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel13; - + /// /// Label22 控件。 /// @@ -1244,7 +1246,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label22; - + /// /// tab2_txtSignedYear 控件。 /// @@ -1253,7 +1255,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSignedYear; - + /// /// Label23 控件。 /// @@ -1262,7 +1264,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label23; - + /// /// tab2_txtSignedMonth 控件。 /// @@ -1271,7 +1273,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSignedMonth; - + /// /// Label24 控件。 /// @@ -1280,7 +1282,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label24; - + /// /// tab2_txtSignedAddress 控件。 /// @@ -1289,7 +1291,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSignedAddress; - + /// /// Label25 控件。 /// @@ -1298,7 +1300,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label25; - + /// /// Label26 控件。 /// @@ -1307,7 +1309,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label26; - + /// /// tab2_txtAgreementNum 控件。 /// @@ -1316,7 +1318,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAgreementNum; - + /// /// Label27 控件。 /// @@ -1325,7 +1327,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label27; - + /// /// tab2_txtGeneralContractorNum 控件。 /// @@ -1334,7 +1336,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtGeneralContractorNum; - + /// /// Label28 控件。 /// @@ -1343,7 +1345,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label28; - + /// /// tab2_txtSubContractorNum 控件。 /// @@ -1352,7 +1354,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSubContractorNum; - + /// /// Label29 控件。 /// @@ -1361,7 +1363,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label29; - + /// /// Panel12 控件。 /// @@ -1370,7 +1372,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel12; - + /// /// ContentPanel14 控件。 /// @@ -1379,7 +1381,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel14; - + /// /// Panel13 控件。 /// @@ -1388,7 +1390,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel13; - + /// /// ContentPanel15 控件。 /// @@ -1397,7 +1399,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel15; - + /// /// Label30 控件。 /// @@ -1406,7 +1408,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label30; - + /// /// tab2_txtSub 控件。 /// @@ -1415,7 +1417,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSub; - + /// /// Label31 控件。 /// @@ -1424,7 +1426,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label31; - + /// /// Label32 控件。 /// @@ -1433,7 +1435,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label32; - + /// /// Label33 控件。 /// @@ -1442,7 +1444,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label33; - + /// /// Label34 控件。 /// @@ -1451,7 +1453,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label34; - + /// /// Label35 控件。 /// @@ -1460,7 +1462,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label35; - + /// /// Label36 控件。 /// @@ -1469,7 +1471,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label36; - + /// /// Label37 控件。 /// @@ -1478,7 +1480,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label37; - + /// /// Label38 控件。 /// @@ -1487,7 +1489,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label38; - + /// /// Label39 控件。 /// @@ -1496,7 +1498,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label39; - + /// /// Label40 控件。 /// @@ -1505,7 +1507,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label40; - + /// /// Label41 控件。 /// @@ -1514,7 +1516,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label41; - + /// /// Label42 控件。 /// @@ -1523,7 +1525,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label42; - + /// /// Label43 控件。 /// @@ -1532,7 +1534,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label43; - + /// /// Label49 控件。 /// @@ -1541,7 +1543,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label49; - + /// /// tab2_txtSocialCreditCode1 控件。 /// @@ -1550,7 +1552,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSocialCreditCode1; - + /// /// tab2_txtSocialCreditCode2 控件。 /// @@ -1559,7 +1561,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtSocialCreditCode2; - + /// /// tab2_txtAddress1 控件。 /// @@ -1568,7 +1570,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAddress1; - + /// /// tab2_txtAddress2 控件。 /// @@ -1577,7 +1579,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAddress2; - + /// /// tab2_txtZipCode1 控件。 /// @@ -1586,7 +1588,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtZipCode1; - + /// /// tab2_txtZipCode2 控件。 /// @@ -1595,7 +1597,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtZipCode2; - + /// /// tab2_txtLegalRepresentative1 控件。 /// @@ -1604,7 +1606,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLegalRepresentative1; - + /// /// tab2_txtLegalRepresentative2 控件。 /// @@ -1613,7 +1615,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtLegalRepresentative2; - + /// /// tab2_txtEntrustedAgent1 控件。 /// @@ -1622,7 +1624,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEntrustedAgent1; - + /// /// tab2_txtEntrustedAgent2 控件。 /// @@ -1631,7 +1633,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEntrustedAgent2; - + /// /// tab2_txtTelephone1 控件。 /// @@ -1640,7 +1642,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtTelephone1; - + /// /// tab2_txtTelephone2 控件。 /// @@ -1649,7 +1651,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtTelephone2; - + /// /// tab2_txtFax1 控件。 /// @@ -1658,7 +1660,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtFax1; - + /// /// tab2_txtFax2 控件。 /// @@ -1667,7 +1669,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtFax2; - + /// /// tab2_txtEmail1 控件。 /// @@ -1676,7 +1678,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEmail1; - + /// /// tab2_txtEmail2 控件。 /// @@ -1685,7 +1687,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtEmail2; - + /// /// tab2_txtBank1 控件。 /// @@ -1694,7 +1696,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtBank1; - + /// /// tab2_txtBank2 控件。 /// @@ -1703,7 +1705,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtBank2; - + /// /// tab2_txtAccount1 控件。 /// @@ -1712,7 +1714,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAccount1; - + /// /// tab2_txtAccount2 控件。 /// @@ -1721,7 +1723,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox tab2_txtAccount2; - + /// /// Tab3 控件。 /// @@ -1730,7 +1732,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab3; - + /// /// Form3 控件。 /// @@ -1739,7 +1741,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form3; - + /// /// Label50 控件。 /// @@ -1748,7 +1750,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label50; - + /// /// Panel14 控件。 /// @@ -1757,7 +1759,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel14; - + /// /// ContentPanel1 控件。 /// @@ -1766,7 +1768,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ContentPanel ContentPanel1; - + /// /// Toolbar2 控件。 /// @@ -1775,7 +1777,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar2; - + /// /// Tab4 控件。 /// @@ -1784,7 +1786,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Tab Tab4; - + /// /// Form_Tab4 控件。 /// @@ -1793,7 +1795,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Form Form_Tab4; - + /// /// Label51 控件。 /// @@ -1802,7 +1804,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label51; - + /// /// Labe00 控件。 /// @@ -1811,7 +1813,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Labe00; - + /// /// lable 控件。 /// @@ -1820,7 +1822,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label lable; - + /// /// TotalPackageContract 控件。 /// @@ -1829,7 +1831,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalPackageContract; - + /// /// OtherSubDocuments 控件。 /// @@ -1838,7 +1840,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherSubDocuments; - + /// /// OtherPlaces 控件。 /// @@ -1847,7 +1849,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherPlaces; - + /// /// NormativeDocument 控件。 /// @@ -1856,7 +1858,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox NormativeDocument; - + /// /// Label56 控件。 /// @@ -1865,7 +1867,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label56; - + /// /// StandardSpecification 控件。 /// @@ -1874,7 +1876,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox StandardSpecification; - + /// /// Label58 控件。 /// @@ -1883,7 +1885,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label58; - + /// /// DrawingPeriod 控件。 /// @@ -1892,7 +1894,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DrawingPeriod; - + /// /// DrawingCount 控件。 /// @@ -1901,7 +1903,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DrawingCount; - + /// /// DrawingContents 控件。 /// @@ -1910,7 +1912,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DrawingContents; - + /// /// Label62 控件。 /// @@ -1919,7 +1921,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label62; - + /// /// DeepeningDesign 控件。 /// @@ -1928,7 +1930,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DeepeningDesign; - + /// /// Label64 控件。 /// @@ -1937,7 +1939,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label64; - + /// /// ConstructionSubFileCount 控件。 /// @@ -1946,7 +1948,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ConstructionSubFileCount; - + /// /// ConstructionSubFileForm 控件。 /// @@ -1955,7 +1957,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ConstructionSubFileForm; - + /// /// Label67 控件。 /// @@ -1964,7 +1966,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label67; - + /// /// GeneralContractorAddress 控件。 /// @@ -1973,7 +1975,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GeneralContractorAddress; - + /// /// GeneralContractorMan 控件。 /// @@ -1982,7 +1984,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GeneralContractorMan; - + /// /// SubAddress 控件。 /// @@ -1991,7 +1993,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubAddress; - + /// /// SubMan 控件。 /// @@ -2000,7 +2002,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubMan; - + /// /// Label72 控件。 /// @@ -2009,7 +2011,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label72; - + /// /// Label73 控件。 /// @@ -2018,7 +2020,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label73; - + /// /// FacilitiesConditions 控件。 /// @@ -2027,7 +2029,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox FacilitiesConditions; - + /// /// Label75 控件。 /// @@ -2036,7 +2038,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label75; - + /// /// ProjectManagerName 控件。 /// @@ -2045,7 +2047,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerName; - + /// /// ProjectManagerTitle 控件。 /// @@ -2054,7 +2056,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerTitle; - + /// /// BuilderQualificationLevel 控件。 /// @@ -2063,7 +2065,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox BuilderQualificationLevel; - + /// /// BuilderRegistrationCertificate 控件。 /// @@ -2072,7 +2074,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox BuilderRegistrationCertificate; - + /// /// ProjectManagerTel 控件。 /// @@ -2081,7 +2083,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerTel; - + /// /// ProjectManagerEmail 控件。 /// @@ -2090,7 +2092,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerEmail; - + /// /// ProjectManagerAddress 控件。 /// @@ -2099,7 +2101,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProjectManagerAddress; - + /// /// ScopeAuthorization 控件。 /// @@ -2108,7 +2110,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ScopeAuthorization; - + /// /// Label83 控件。 /// @@ -2117,7 +2119,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label83; - + /// /// Label84 控件。 /// @@ -2126,7 +2128,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label84; - + /// /// PermitsApprovals 控件。 /// @@ -2135,7 +2137,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PermitsApprovals; - + /// /// Label86 控件。 /// @@ -2144,7 +2146,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label86; - + /// /// Label87 控件。 /// @@ -2153,7 +2155,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label87; - + /// /// SubProjectManagerName 控件。 /// @@ -2162,7 +2164,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerName; - + /// /// SubProjectManagerTitle 控件。 /// @@ -2171,7 +2173,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerTitle; - + /// /// SubBuilderQualificationLevel 控件。 /// @@ -2180,7 +2182,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubBuilderQualificationLevel; - + /// /// SubBuilderRegistrationCertificate 控件。 /// @@ -2189,7 +2191,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubBuilderRegistrationCertificate; - + /// /// SubProjectManagerTel 控件。 /// @@ -2198,7 +2200,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerTel; - + /// /// SubProjectManagerEmail 控件。 /// @@ -2207,7 +2209,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerEmail; - + /// /// SubProjectManagerAddress 控件。 /// @@ -2216,7 +2218,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubProjectManagerAddress; - + /// /// SubScopeAuthorization 控件。 /// @@ -2225,7 +2227,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SubScopeAuthorization; - + /// /// AttachmentName 控件。 /// @@ -2234,7 +2236,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AttachmentName; - + /// /// DaysNum 控件。 /// @@ -2243,7 +2245,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DaysNum; - + /// /// Label97 控件。 /// @@ -2252,7 +2254,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label97; - + /// /// DefaultResponsibility 控件。 /// @@ -2261,7 +2263,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea DefaultResponsibility; - + /// /// LeaveSiteResponsibility 控件。 /// @@ -2270,7 +2272,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea LeaveSiteResponsibility; - + /// /// ChangeManagerResponsibility 控件。 /// @@ -2279,7 +2281,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ChangeManagerResponsibility; - + /// /// RefusedChangeResponsibility 控件。 /// @@ -2288,7 +2290,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea RefusedChangeResponsibility; - + /// /// Label99 控件。 /// @@ -2297,7 +2299,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label99; - + /// /// WithoutCardMountGuard 控件。 /// @@ -2306,7 +2308,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea WithoutCardMountGuard; - + /// /// Label100 控件。 /// @@ -2315,7 +2317,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label100; - + /// /// SubcontractWorks 控件。 /// @@ -2324,7 +2326,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SubcontractWorks; - + /// /// IllegalSubcontracting 控件。 /// @@ -2333,7 +2335,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea IllegalSubcontracting; - + /// /// Label101 控件。 /// @@ -2342,7 +2344,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label101; - + /// /// PerformanceWay 控件。 /// @@ -2351,7 +2353,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PerformanceWay; - + /// /// PerformanceMoney 控件。 /// @@ -2360,7 +2362,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PerformanceMoney; - + /// /// PerformanceTimelimit 控件。 /// @@ -2369,7 +2371,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PerformanceTimelimit; - + /// /// Label105 控件。 /// @@ -2378,7 +2380,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label105; - + /// /// AssociationAgreementAttachUrl 控件。 /// @@ -2387,7 +2389,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AssociationAgreementAttachUrl; - + /// /// Label107 控件。 /// @@ -2396,7 +2398,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label107; - + /// /// Label108 控件。 /// @@ -2405,7 +2407,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label108; - + /// /// SpecialStandards 控件。 /// @@ -2414,7 +2416,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SpecialStandards; - + /// /// Label109 控件。 /// @@ -2423,7 +2425,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label109; - + /// /// Label110 控件。 /// @@ -2432,7 +2434,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label110; - + /// /// Label111 控件。 /// @@ -2441,7 +2443,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label111; - + /// /// ConstructionMeasures 控件。 /// @@ -2450,7 +2452,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ConstructionMeasures; - + /// /// SubMeasures 控件。 /// @@ -2459,7 +2461,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea SubMeasures; - + /// /// Label112 控件。 /// @@ -2468,7 +2470,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label112; - + /// /// LabourCost 控件。 /// @@ -2477,7 +2479,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea LabourCost; - + /// /// Label113 控件。 /// @@ -2486,7 +2488,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label113; - + /// /// LaborSupervisorName 控件。 /// @@ -2495,7 +2497,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorName; - + /// /// LaborSupervisorTitle 控件。 /// @@ -2504,7 +2506,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorTitle; - + /// /// LaborSupervisorTel 控件。 /// @@ -2513,7 +2515,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorTel; - + /// /// LaborSupervisorEmail 控件。 /// @@ -2522,7 +2524,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorEmail; - + /// /// LaborSupervisorAddress 控件。 /// @@ -2531,7 +2533,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LaborSupervisorAddress; - + /// /// Label119 控件。 /// @@ -2540,7 +2542,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label119; - + /// /// Label120 控件。 /// @@ -2549,7 +2551,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label120; - + /// /// Label121 控件。 /// @@ -2558,7 +2560,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label121; - + /// /// Label122 控件。 /// @@ -2567,7 +2569,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label122; - + /// /// OrganizationalDesign 控件。 /// @@ -2576,7 +2578,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea OrganizationalDesign; - + /// /// Amendments 控件。 /// @@ -2585,7 +2587,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea Amendments; - + /// /// Label123 控件。 /// @@ -2594,7 +2596,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label123; - + /// /// Labour 控件。 /// @@ -2603,7 +2605,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea Labour; - + /// /// Label124 控件。 /// @@ -2612,7 +2614,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label124; - + /// /// Label125 控件。 /// @@ -2621,7 +2623,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label125; - + /// /// WithinTimeLimit 控件。 /// @@ -2630,7 +2632,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea WithinTimeLimit; - + /// /// Label126 控件。 /// @@ -2639,7 +2641,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label126; - + /// /// AdverseMaterialConditions 控件。 /// @@ -2648,7 +2650,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdverseMaterialConditions; - + /// /// Label128 控件。 /// @@ -2657,7 +2659,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label128; - + /// /// BadWeatherInclude 控件。 /// @@ -2666,7 +2668,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox BadWeatherInclude; - + /// /// Label130 控件。 /// @@ -2675,7 +2677,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label130; - + /// /// MaterialEquipmentSupplyRange 控件。 /// @@ -2684,7 +2686,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox MaterialEquipmentSupplyRange; - + /// /// Label52 控件。 /// @@ -2693,7 +2695,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label52; - + /// /// UnloadingRateStandard 控件。 /// @@ -2702,7 +2704,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox UnloadingRateStandard; - + /// /// SecondaryHandlingCharges 控件。 /// @@ -2711,7 +2713,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SecondaryHandlingCharges; - + /// /// Label135 控件。 /// @@ -2720,7 +2722,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label135; - + /// /// Label136 控件。 /// @@ -2729,7 +2731,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label136; - + /// /// SampleRequirements 控件。 /// @@ -2738,7 +2740,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SampleRequirements; - + /// /// Label137 控件。 /// @@ -2747,7 +2749,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label137; - + /// /// AlternativeAgreed 控件。 /// @@ -2756,7 +2758,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AlternativeAgreed; - + /// /// Label139 控件。 /// @@ -2765,7 +2767,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label139; - + /// /// Equipment 控件。 /// @@ -2774,7 +2776,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox Equipment; - + /// /// Label141 控件。 /// @@ -2783,7 +2785,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label141; - + /// /// Label142 控件。 /// @@ -2792,7 +2794,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label142; - + /// /// OtherCircumstances 控件。 /// @@ -2801,7 +2803,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherCircumstances; - + /// /// Label144 控件。 /// @@ -2810,7 +2812,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label144; - + /// /// Label145 控件。 /// @@ -2819,7 +2821,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label145; - + /// /// ChangeValuation 控件。 /// @@ -2828,7 +2830,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ChangeValuation; - + /// /// Label147 控件。 /// @@ -2837,7 +2839,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label147; - + /// /// Reward 控件。 /// @@ -2846,7 +2848,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox Reward; - + /// /// Label149 控件。 /// @@ -2855,7 +2857,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label149; - + /// /// IncreaseDecreasePeriod 控件。 /// @@ -2864,7 +2866,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox IncreaseDecreasePeriod; - + /// /// Label151 控件。 /// @@ -2873,7 +2875,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label151; - + /// /// Label152 控件。 /// @@ -2882,7 +2884,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label152; - + /// /// RiskRange 控件。 /// @@ -2891,7 +2893,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox RiskRange; - + /// /// Label154 控件。 /// @@ -2900,7 +2902,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label154; - + /// /// AdjustmentMethodA 控件。 /// @@ -2909,7 +2911,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdjustmentMethodA; - + /// /// AdjustmentMethodB 控件。 /// @@ -2918,7 +2920,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdjustmentMethodB; - + /// /// Label157 控件。 /// @@ -2927,7 +2929,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label157; - + /// /// TotalPriceRiskRange 控件。 /// @@ -2936,7 +2938,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalPriceRiskRange; - + /// /// Label159 控件。 /// @@ -2945,7 +2947,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label159; - + /// /// TotalAdjustmentMethodA 控件。 /// @@ -2954,7 +2956,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalAdjustmentMethodA; - + /// /// TotalAdjustmentMethodB 控件。 /// @@ -2963,7 +2965,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TotalAdjustmentMethodB; - + /// /// OtherPriceForms 控件。 /// @@ -2972,7 +2974,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox OtherPriceForms; - + /// /// Label163 控件。 /// @@ -2981,7 +2983,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label163; - + /// /// Label164 控件。 /// @@ -2990,7 +2992,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label164; - + /// /// MarketPriceRange 控件。 /// @@ -2999,7 +3001,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox MarketPriceRange; - + /// /// DifferenceRange 控件。 /// @@ -3008,7 +3010,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DifferenceRange; - + /// /// PricingWay 控件。 /// @@ -3017,7 +3019,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PricingWay; - + /// /// Label168 控件。 /// @@ -3026,7 +3028,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label168; - + /// /// Label169 控件。 /// @@ -3035,7 +3037,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label169; - + /// /// QuantityCalculationRules 控件。 /// @@ -3044,7 +3046,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox QuantityCalculationRules; - + /// /// Label171 控件。 /// @@ -3053,7 +3055,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label171; - + /// /// Label172 控件。 /// @@ -3062,7 +3064,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label172; - + /// /// AdvancePayment 控件。 /// @@ -3071,7 +3073,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdvancePayment; - + /// /// AdvancePaymentPeriod 控件。 /// @@ -3080,7 +3082,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AdvancePaymentPeriod; - + /// /// LatePaymentAdvance 控件。 /// @@ -3089,7 +3091,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LatePaymentAdvance; - + /// /// PaymentAgreement 控件。 /// @@ -3098,7 +3100,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PaymentAgreement; - + /// /// Label177 控件。 /// @@ -3107,7 +3109,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label177; - + /// /// ProgressPaymentContents 控件。 /// @@ -3116,7 +3118,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ProgressPaymentContents; - + /// /// Label53 控件。 /// @@ -3125,7 +3127,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label53; - + /// /// ProgressPaymentConvention 控件。 /// @@ -3134,7 +3136,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea ProgressPaymentConvention; - + /// /// Label180 控件。 /// @@ -3143,7 +3145,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label180; - + /// /// Label54 控件。 /// @@ -3152,7 +3154,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label54; - + /// /// GuaranteedScopeWork 控件。 /// @@ -3161,7 +3163,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GuaranteedScopeWork; - + /// /// Label183 控件。 /// @@ -3170,7 +3172,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label183; - + /// /// Label184 控件。 /// @@ -3179,7 +3181,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label184; - + /// /// GuaranteedCostStandard 控件。 /// @@ -3188,7 +3190,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox GuaranteedCostStandard; - + /// /// Label185 控件。 /// @@ -3197,7 +3199,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label185; - + /// /// Label186 控件。 /// @@ -3206,7 +3208,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label186; - + /// /// AcceptanceCondition 控件。 /// @@ -3215,7 +3217,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox AcceptanceCondition; - + /// /// Label188 控件。 /// @@ -3224,7 +3226,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label188; - + /// /// UnqualifiedResponsibility 控件。 /// @@ -3233,7 +3235,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea UnqualifiedResponsibility; - + /// /// Label189 控件。 /// @@ -3242,7 +3244,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label189; - + /// /// CleanExitTimeLimit 控件。 /// @@ -3251,7 +3253,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox CleanExitTimeLimit; - + /// /// Label191 控件。 /// @@ -3260,7 +3262,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label191; - + /// /// Label192 控件。 /// @@ -3269,7 +3271,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label192; - + /// /// DataTransferTimeLimit 控件。 /// @@ -3278,7 +3280,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DataTransferTimeLimit; - + /// /// DataNumContents 控件。 /// @@ -3287,7 +3289,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DataNumContents; - + /// /// Label195 控件。 /// @@ -3296,7 +3298,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label195; - + /// /// Label196 控件。 /// @@ -3305,7 +3307,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label196; - + /// /// DataListing 控件。 /// @@ -3314,7 +3316,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea DataListing; - + /// /// Label197 控件。 /// @@ -3323,7 +3325,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label197; - + /// /// FinalSettlementNum 控件。 /// @@ -3332,7 +3334,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox FinalSettlementNum; - + /// /// Label199 控件。 /// @@ -3341,7 +3343,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label199; - + /// /// Label200 控件。 /// @@ -3350,7 +3352,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label200; - + /// /// DefectLiabilityDate 控件。 /// @@ -3359,7 +3361,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DefectLiabilityDate; - + /// /// DefectLiabilityPeriod 控件。 /// @@ -3368,7 +3370,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DefectLiabilityPeriod; - + /// /// Label203 控件。 /// @@ -3377,7 +3379,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label203; - + /// /// WarrantyPeriodDate 控件。 /// @@ -3386,7 +3388,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox WarrantyPeriodDate; - + /// /// WarrantyPeriodPeriod 控件。 /// @@ -3395,7 +3397,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox WarrantyPeriodPeriod; - + /// /// Label206 控件。 /// @@ -3404,7 +3406,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label206; - + /// /// MarginDetainWay 控件。 /// @@ -3413,7 +3415,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox MarginDetainWay; - + /// /// Label208 控件。 /// @@ -3422,7 +3424,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label208; - + /// /// Label209 控件。 /// @@ -3431,7 +3433,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label209; - + /// /// DefaultMethod 控件。 /// @@ -3440,7 +3442,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox DefaultMethod; - + /// /// Label211 控件。 /// @@ -3449,7 +3451,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label211; - + /// /// TerminationContract 控件。 /// @@ -3458,7 +3460,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox TerminationContract; - + /// /// Label213 控件。 /// @@ -3467,7 +3469,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label213; - + /// /// Label214 控件。 /// @@ -3476,7 +3478,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label214; - + /// /// DefaultLiability 控件。 /// @@ -3485,7 +3487,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextArea DefaultLiability; - + /// /// Label215 控件。 /// @@ -3494,7 +3496,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label215; - + /// /// SubDefaultCancelContract 控件。 /// @@ -3503,7 +3505,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox SubDefaultCancelContract; - + /// /// Label217 控件。 /// @@ -3512,7 +3514,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label217; - + /// /// Label218 控件。 /// @@ -3521,7 +3523,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label218; - + /// /// ForceMajeure 控件。 /// @@ -3530,7 +3532,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ForceMajeure; - + /// /// Label220 控件。 /// @@ -3539,7 +3541,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label220; - + /// /// NotConsideredForceMajeure 控件。 /// @@ -3548,7 +3550,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox NotConsideredForceMajeure; - + /// /// Label1 控件。 /// @@ -3557,7 +3559,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label1; - + /// /// Label223 控件。 /// @@ -3566,7 +3568,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label223; - + /// /// Label224 控件。 /// @@ -3575,7 +3577,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label224; - + /// /// Label225 控件。 /// @@ -3584,7 +3586,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label225; - + /// /// Label226 控件。 /// @@ -3593,7 +3595,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label226; - + /// /// LimitIndemnity 控件。 /// @@ -3602,7 +3604,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox LimitIndemnity; - + /// /// InsuredAmount 控件。 /// @@ -3611,7 +3613,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox InsuredAmount; - + /// /// Label229 控件。 /// @@ -3620,7 +3622,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label229; - + /// /// CertificateInsurance 控件。 /// @@ -3629,7 +3631,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox CertificateInsurance; - + /// /// Label231 控件。 /// @@ -3638,7 +3640,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label231; - + /// /// Label232 控件。 /// @@ -3647,7 +3649,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label232; - + /// /// Label233 控件。 /// @@ -3656,7 +3658,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label233; - + /// /// Label57 控件。 /// @@ -3665,7 +3667,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label57; - + /// /// ArbitrationCommission 控件。 /// @@ -3674,7 +3676,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox ArbitrationCommission; - + /// /// Label235 控件。 /// @@ -3683,7 +3685,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label235; - + /// /// Label55 控件。 /// @@ -3692,7 +3694,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label55; - + /// /// PeopleCourt 控件。 /// @@ -3701,7 +3703,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox PeopleCourt; - + /// /// Label237 控件。 /// @@ -3710,7 +3712,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Label Label237; - + /// /// Grid1 控件。 /// @@ -3719,7 +3721,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid1; - + /// /// lblPageIndex 控件。 /// @@ -3728,7 +3730,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.Label lblPageIndex; - + /// /// Toolbar4 控件。 /// @@ -3737,7 +3739,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar4; - + /// /// btnSave_Tab4 控件。 /// @@ -3746,7 +3748,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnSave_Tab4; - + /// /// Window1 控件。 /// @@ -3755,7 +3757,7 @@ namespace FineUIPro.Web.PHTGL.ContractCompile { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window1; - + /// /// WindowAtt 控件。 /// diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractFile.aspx b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractFile.aspx index d4811688..30211bfa 100644 --- a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractFile.aspx +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractFile.aspx @@ -29,7 +29,6 @@ LabelAlign="right"> - - - + + 合同基本信息
-
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.cs b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.cs index be456a27..9da3b692 100644 --- a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.cs +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.cs @@ -1,5 +1,9 @@ -using System; +using BLL; +using FineUIPro.Web.PHTGL.ContractCompile; +using System; using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; using System.Linq; using System.Web; using System.Web.UI; @@ -7,11 +11,354 @@ using System.Web.UI.WebControls; namespace FineUIPro.Web.PHTGL.Filing { - public partial class ContractStandingBook : System.Web.UI.Page + public partial class ContractStandingBook : PageBase { + #region 加载 + /// + /// 加载页面 + /// + /// + /// protected void Page_Load(object sender, EventArgs e) { + if (!IsPostBack) + { + GetButtonPower(); + ddlPageSize.SelectedValue = Grid1.PageSize.ToString(); + BLL.DepartService.InitDepartDropDownList(this.drpDepartId, true); + btnNew.OnClientClick = Window1.GetShowReference("ContractStandingBookEdit.aspx", "基本信息") + "return false;"; + + BindGrid(); + } + } + + /// + /// 数据绑定 + /// + private void BindGrid() + { + var model = new Model.PHTGL_ContractStandingBook(); + if (drpDepartId.SelectedValue!=Const._Null) + { + model.DepartId = drpDepartId.SelectedValue; + } + if (!string.IsNullOrEmpty(txtContractName.Text.Trim())) + { + model.ContractName = txtContractName.Text.Trim(); + } + if (dropState.SelectedValue != Const._Null) + { + model.States = Funs.GetNewInt(dropState.SelectedValue); + } + var list= BLL.ContractStandingBookService.GetPHTGL_ContractStandingBookByModle( model); + //var list= BLL.ContractStandingBookService.getListData( model, Grid1); + + Grid1.RecordCount = list.Count; + var table = this.GetPagedDataTable(Grid1, list); + Grid1.DataSource = table; + Grid1.DataBind(); + } + #endregion + + #region 分页 排序 + /// + /// 改变索引事件 + /// + /// + /// + protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) + { + BindGrid(); + } + + /// + /// 分页下拉选择事件 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + BindGrid(); + } + + /// + /// 排序 + /// + /// + /// + protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e) + { + BindGrid(); + } + #endregion + #region 关闭弹出窗体 + /// + /// 关闭弹出窗体 + /// + /// + /// + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + BindGrid(); + } + #endregion + + #region 获取按钮权限 + /// + /// 获取按钮权限 + /// + /// + /// + private void GetButtonPower() + { + if (Request.Params["value"] == "0") + { + return; + } + var buttonList = CommonService.GetAllButtonList(CurrUser.LoginProjectId, CurrUser.PersonId, Const.ContractStandingBookMenuId); + if (buttonList.Count() > 0) + { + if (buttonList.Contains(Const.BtnAdd)) + { + btnNew.Hidden = false; + } + if (buttonList.Contains(Const.BtnModify)) + { + btnEdit.Hidden = false; + } + if (buttonList.Contains(Const.BtnDelete)) + { + btnDelete.Hidden = false; + } + if (buttonList.Contains(Const.BtnIn)) + { + btnImport.Hidden = false; + } + } + } + #endregion + #region 查询 + /// + /// 查询按钮 + /// + /// + /// + protected void btnSearch_Click(object sender, EventArgs e) + { + BindGrid(); + } + #endregion + protected void btnReset_Click(object sender, EventArgs e) + { + txtContractName.Text = string.Empty; + drpDepartId.SelectedValue = Const._Null; + dropState.SelectedValue = Const._Null; + //txtSubConstruction.Text = string.Empty; + } + + public string ConvertState(object State) + { + string StateName = string.Empty; + if (State != null && !string.IsNullOrEmpty(State.ToString())) + { + switch (State.ToString()) + { + case "0": + StateName = "未提交"; + break; + case "1": + StateName = "已提交"; + break; + default: + StateName = "未提交"; + break; + } + + } + else + { + StateName = "未提交"; + } + return StateName; + } + #region 编辑 + /// + /// 双击事件 + /// + /// + /// + protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e) + { + this.EditData(); + } + protected void btnImport_Click(object sender, EventArgs e) + { + PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("ContractStandingBookIn.aspx?", "导入 - "))); + } + /// + /// 右键编辑事件 + /// + /// + /// + protected void btnMenuEdit_Click(object sender, EventArgs e) + { + this.EditData(); + } + + /// + /// 编辑数据方法 + /// + private void EditData() + { + if (Grid1.SelectedRowIndexArray.Length == 0) + { + Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning); + return; + } + string id = Grid1.SelectedRowID; + var model = BLL.ContractStandingBookService.GetContractById(id); + { + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ContractStandingBookEdit.aspx?ContractId={0}", id, "编辑 - "))); + + } + } + protected void btnEdit_Click(object sender, EventArgs e) + { + EditData(); + } + #endregion + + #region 删除 + + protected void btnDelete_Click(object sender, EventArgs e) + { + if (Grid1.SelectedRowIndexArray.Length > 0) + { + bool isShow = false; + if (Grid1.SelectedRowIndexArray.Length == 1) + { + isShow = true; + } + foreach (int rowIndex in Grid1.SelectedRowIndexArray) + { + string rowID = Grid1.DataKeys[rowIndex][0].ToString(); + if (this.judgementDelete(rowID, isShow)) + { + var p = BLL.ContractStandingBookService.GetContractById(rowID); + if (p != null) + { + if (p.States == 1) + { + ShowNotify(message: "已提交,删除失败!", MessageBoxIcon.Error); + return; + + } + // BLL.LogService.AddSys_Log(this.CurrUser, p.ContractName, p.ContractId, BLL.Const.ContractMenuId, BLL.Const.BtnDelete); + BLL.ContractStandingBookService.DeleteContractById(rowID); + AttachFileService.DeleteAttachFile(Funs.RootPath, rowID , Const.ContractStandingBookMenuId); + // AttachFileService.DeleteAttachFile(Funs.RootPath, rowID + "-BidNotice", Const.ProjectBidDocumentsStandingBookMenuId); + // AttachFileService.DeleteAttachFile(Funs.RootPath, rowID + "-ActionPlan", Const.ProjectBidDocumentsStandingBookMenuId); + // AttachFileService.DeleteAttachFile(Funs.RootPath, rowID + "-BidDocuments", Const.ProjectBidDocumentsStandingBookMenuId); + // AttachFileService.DeleteAttachFile(Funs.RootPath, rowID + "-ApprovePersonForm", Const.ProjectBidDocumentsStandingBookMenuId); + // AttachFileService.DeleteAttachFile(Funs.RootPath, rowID + "-SetSubReview", Const.ProjectBidDocumentsStandingBookMenuId); + // AttachFileService.DeleteAttachFile(Funs.RootPath, rowID + "-ShortListApproval", Const.ProjectBidDocumentsStandingBookMenuId); + } + } + } + BindGrid(); + ShowNotify("删除数据成功!", MessageBoxIcon.Success); + } + } + + /// + /// 判断是否可以删除 + /// + /// + private bool judgementDelete(string id, bool isShow) + { + string content = string.Empty; + + if (string.IsNullOrEmpty(content)) + { + return true; + } + else + { + if (isShow) + { + Alert.ShowInTop(content); + } + return false; + } + } + #endregion + + + #region 导出按钮 + /// 导出按钮 + /// + /// + /// + protected void btnOut_Click(object sender, EventArgs e) + { + Response.ClearContent(); + string filename = Funs.GetNewFileName(); + Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("施工分包合同管理台账" + filename, System.Text.Encoding.UTF8) + ".xls"); + Response.ContentType = "application/excel"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + //this.Grid1.PageSize = this.; + BindGrid(); + Response.Write(GetGridTableHtml(Grid1)); + Response.End(); + } + + //#pragma warning disable CS0108 // “PersonList.GetGridTableHtml(Grid)”隐藏继承的成员“PageBase.GetGridTableHtml(Grid)”。如果是有意隐藏,请使用关键字 new。 + // /// + // /// 导出方法 + // /// + // /// + // /// + // private string GetGridTableHtml(Grid grid) + //#pragma warning restore CS0108 // “PersonList.GetGridTableHtml(Grid)”隐藏继承的成员“PageBase.GetGridTableHtml(Grid)”。如果是有意隐藏,请使用关键字 new。 + // { + // StringBuilder sb = new StringBuilder(); + // sb.Append(""); + // sb.Append(""); + // sb.Append(""); + // foreach (GridColumn column in grid.Columns) + // { + // sb.AppendFormat("", column.HeaderText); + // } + // sb.Append(""); + // foreach (GridRow row in grid.Rows) + // { + // sb.Append(""); + // foreach (GridColumn column in grid.Columns) + // { + // string html = row.Values[column.ColumnIndex].ToString(); + // if (column.ColumnID == "tfNumber") + // { + // html = (row.FindControl("labNumber") as AspNet.Label).Text; + // } + // if (column.ColumnID == "tfI") + // { + // html = (row.FindControl("lbI") as AspNet.Label).Text; + // } + // //sb.AppendFormat("", html); + // sb.AppendFormat("", html); + // } + + // sb.Append(""); + // } + + // sb.Append("
{0}
{0}{0}
"); + + // return sb.ToString(); + // } + #endregion + } } \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.designer.cs b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.designer.cs index 18ce8e56..7b398e73 100644 --- a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBook.aspx.designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ -// -// 此代码是由工具生成的。 +// <自动生成> +// 此代码由工具生成。 // -// 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将会丢失。 -// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// //------------------------------------------------------------------------------ namespace FineUIPro.Web.PHTGL.Filing @@ -22,5 +22,203 @@ namespace FineUIPro.Web.PHTGL.Filing /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Panel1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel1; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// drpDepartId 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList drpDepartId; + + /// + /// dropState 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList dropState; + + /// + /// txtContractName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractName; + + /// + /// btnSearch 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSearch; + + /// + /// btnReset 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnReset; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// Toolbar1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar1; + + /// + /// btnNew 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnNew; + + /// + /// btnEdit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnEdit; + + /// + /// btnOut 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnOut; + + /// + /// btnDelete 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDelete; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + + /// + /// lbImageUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lbImageUrl; + + /// + /// ToolbarSeparator1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + + /// + /// Window1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window1; + + /// + /// Window2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window2; } } diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx new file mode 100644 index 00000000..7faf67a6 --- /dev/null +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx @@ -0,0 +1,254 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ContractStandingBookEdit.aspx.cs" Inherits="FineUIPro.Web.PHTGL.Filing.ContractStandingBookEdit" %> + + + + + 系统环境设置 + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%-- + + + + --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx.cs b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx.cs new file mode 100644 index 00000000..141ae567 --- /dev/null +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx.cs @@ -0,0 +1,295 @@ +using BLL; +using Model; +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using System.Data; +using System.Linq; +using System.Reflection; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using FineUIPro.Web.PHTGL.ContractCompile; + +namespace FineUIPro.Web.PHTGL.Filing +{ + public partial class ContractStandingBookEdit : PageBase + { + #region 定义属性 + // public Dictionary myDictionary = new Dictionary(); + + public Dictionary myDictionary + { + get + { + return (Dictionary)ViewState["myDictionary"]; + } + set + { + ViewState["myDictionary"] = value; + } + } + /// + /// 合同基本信息主键 + /// + public string ContractId + { + get + { + return (string)ViewState["ContractId"]; + } + set + { + ViewState["ContractId"] = value; + } + } + + + + public bool IsCreate + { + get + { + return (bool)ViewState["IsCreate"]; + } + set + { + ViewState["IsCreate"] = value; + } + } + #endregion + + #region 加载 + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.btnClose.OnClientClick = ActiveWindow.GetHideReference(); + ContractId = Request.Params["ContractId"]; + IsCreate = true; + if (!string.IsNullOrEmpty(Request.Params["ContractId"])) + { + IsCreate = false; + } + this.GetButtonPower(); + + BindingTab1(); + + + + } + } + + #endregion + + + #region 基本信息 + + void BindingTab1() + { + + string contractId = Request.Params["ContractId"]; + if (!string.IsNullOrEmpty(contractId)) + { + Model.PHTGL_ContractStandingBook contract = BLL.ContractStandingBookService.GetContractById(contractId); + if (contract != null) + { + + txtEPCCode.Text = contract.EPCCode; + txtContractAttribute.Text = contract.ContractAttribute; + this.txtContractName.Text = contract.ContractName; + this.txtContractNum.Text = contract.ContractNum; + this.txtProjectName.Text = contract.ProjectName; + this.txtProjectCode.Text = contract.ProjectCode; + this.txtParties.Text = contract.Parties; + this.txtBuildUnit.Text = contract.BuildUnit; + this.txtCurrency.Text= contract.Currency; + txtOpeningBank_TT.Text = contract.OpeningBank_TT; + txtOpeningBank_Electrophore.Text = contract.OpeningBank_Electrophore; + txtBankAccount_TT.Text = contract.BankAccount_TT; + txtBankAccount_Electrophore.Text = contract.BankAccount_Electrophore; + txtLineNumber_Electrophore.Text = contract.LineNumber_Electrophore; + txtRetentionmoney.Text = contract.Retentionmoney; + txtContactUnitOfPartyA.Text = contract.ContactUnitOfPartyA; + txtContactPersonOfPartyA.Text = contract.ContactPersonOfPartyA; + txtContactPersonOfPartyB.Text = contract.ContactPersonOfPartyB; + txtContactPersonPhoneOfPartyB.Text = contract.ContactPersonPhoneOfPartyB; + txtContactPersonEmailOfPartyB.Text = contract.ContactPersonEmailOfPartyB; + txtContractAmountExcludingTax.Text = contract.ContractAmountExcludingTax.ToString(); + txtPriceMethod.Text = contract.PriceMethod; + txtSignedOnDate.Text = contract.SignedOnDate.ToString(); + txtContractStartDate.Text = contract.ContractStartDate.ToString(); + txtContractEndDate.Text = contract.ContractEndDate.ToString(); + txtPricingBasis.Text = contract.PricingBasis; + txtStatus.Text = contract.Status; + txtSubcontractingMethod.Text = contract.SubcontractingMethod; + txtIsItACentralizedPurchaseSupplier.Text = contract.IsItACentralizedPurchaseSupplier.ToString(); + this.txtAgent.Text = contract.Agent; + this.txtContractType.Text = contract.ContractType; + this.txtConfirmWay.Text= contract.ConfirmWay; + this.txtDepart.Text=BLL.DepartService.getDepartNameById(contract.DepartId); + this.txtContractAmount.Text = contract.ContractAmount.ToString(); + + } + else + { + this.txtAgent.Text = this.CurrUser.PersonName; + this.txtDepart.Text = BLL.DepartService.getDepartNameById(CurrUser.DepartId); + } + } + } + + #region 附件上传 + /// + /// 上传附件 + /// + /// + /// + protected void btnAttachUrl_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(ContractId)) + { + ContractId = Guid.NewGuid().ToString(); + } + PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/ContractStandingBook&menuId={1}", this.ContractId, BLL.Const.ContractStandingBookMenuId))); + } + + #endregion + + protected void btnSave_Click(object sender, EventArgs e) + { + Save(Const.BtnSave); + + // PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference()); + } + + void Save(string Type) + { + Model.PHTGL_ContractStandingBook contract = new Model.PHTGL_ContractStandingBook(); + + contract.EPCCode = this.txtEPCCode.Text; + contract.ContractAttribute = this.txtContractAttribute.Text; + contract.ContractName = this.txtContractName.Text; + contract.ContractNum = this.txtContractNum.Text; + contract.ProjectName = this.txtProjectName.Text; + contract.ProjectCode = this.txtProjectCode.Text; + contract.Parties = this.txtParties.Text; + contract.BuildUnit = this.txtBuildUnit.Text; + contract.Currency = this.txtCurrency.Text; + contract.OpeningBank_TT = this.txtOpeningBank_TT.Text; + contract.OpeningBank_Electrophore = this.txtOpeningBank_Electrophore.Text; + contract.BankAccount_TT = this.txtBankAccount_TT.Text; + contract.BankAccount_Electrophore = this.txtBankAccount_Electrophore.Text; + contract.LineNumber_Electrophore = this.txtLineNumber_Electrophore.Text; + contract.Retentionmoney = this.txtRetentionmoney.Text; + contract.ContactUnitOfPartyA = this.txtContactUnitOfPartyA.Text; + contract.ContactPersonOfPartyA = this.txtContactPersonOfPartyA.Text; + contract.ContactPersonOfPartyB = this.txtContactPersonOfPartyB.Text; + contract.ContactPersonPhoneOfPartyB = this.txtContactPersonPhoneOfPartyB.Text; + contract.ContactPersonEmailOfPartyB = this.txtContactPersonEmailOfPartyB.Text; + contract.ContractAmountExcludingTax = this.txtContractAmountExcludingTax.Text; + contract.PriceMethod = this.txtPriceMethod.Text; + contract.SignedOnDate = this.txtSignedOnDate.Text; + contract.ContractStartDate = this.txtContractStartDate.Text; + contract.ContractEndDate = this.txtContractEndDate.Text; + contract.PricingBasis = this.txtPricingBasis.Text; + contract.Status = this.txtStatus.Text; + contract.SubcontractingMethod = this.txtSubcontractingMethod.Text; + contract.IsItACentralizedPurchaseSupplier = this.txtIsItACentralizedPurchaseSupplier.Text; + contract.Agent = this.txtAgent.Text; + contract.ContractType = this.txtContractType.Text; + contract.ConfirmWay = this.txtConfirmWay.Text; + contract.DepartId = this.CurrUser.DepartId; + contract.ContractAmount = this.txtContractAmount.Text; + if (Type==Const.BtnSubmit) + { + contract.States = 1; + + } + else if (Type == Const.BtnSave) + { + contract.States = 0; + + } + contract.CreateDate = DateTime.Now.ToString(); + + contract.CreatUser = this.CurrUser.PersonId; + + if (!string.IsNullOrEmpty(ContractId)) + { + var con = ContractStandingBookService.GetContractById(ContractId); + if (con != null) + { + contract.ContractId = ContractId; + contract.ApproveState = con.ApproveState; + contract.CreatUser = this.CurrUser.PersonId; + contract.CreateDate = DateTime.Now.ToString(); + BLL.ContractStandingBookService.UpdateContract(contract); + ShowNotify("修改成功!", MessageBoxIcon.Success); + } + else + { + contract.ContractId = ContractId; + contract.ApproveState = Const.ContractCreating; + contract.CreatUser = this.CurrUser.PersonId; + ContractId = contract.ContractId; + contract.CreateDate = DateTime.Now.ToString(); + BLL.ContractStandingBookService.AddContract(contract); + ShowNotify("保存成功!", MessageBoxIcon.Success); + } + + } + else + { + contract.ContractId = SQLHelper.GetNewID(typeof(Model.PHTGL_ContractStandingBook)); + contract.ApproveState = Const.ContractCreating; + contract.CreatUser = this.CurrUser.PersonId; + contract.CreateDate = DateTime.Now.ToString(); + ContractId = contract.ContractId; + BLL.ContractStandingBookService.AddContract(contract); + ShowNotify("保存成功!", MessageBoxIcon.Success); + } + } + protected void btnSubmit_Click(object sender, EventArgs e) + { + if (!BLL.AttachFileService.Getfile(ContractId , BLL.Const.ContractStandingBookMenuId)) + { + ShowNotify("未上传合同文件,无法提交!", MessageBoxIcon.Warning); + return; + } + Save(Const.BtnSubmit); + PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference()); + } + + #endregion + + #region 获取按钮权限 + /// + /// 获取按钮权限 + /// + /// + /// + private void GetButtonPower() + { + if (!string.IsNullOrEmpty(ContractId)) + { + var q = BLL.ContractStandingBookService.GetContractById(ContractId); + if (q != null && q.States == 1) + { + btnSave.Hidden = true; + btnSubmit.Hidden = true; + } + } + } + #endregion + + + + protected void Window1_Close(object sender, WindowCloseEventArgs e) + { + // ShowNotify("窗体被关闭了。参数:" + (String.IsNullOrEmpty(e.CloseArgument) ? "无" : e.CloseArgument)); + } + + + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx.designer.cs new file mode 100644 index 00000000..32e81017 --- /dev/null +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookEdit.aspx.designer.cs @@ -0,0 +1,476 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.PHTGL.Filing +{ + + + public partial class ContractStandingBookEdit + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// Form4 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form Form4; + + /// + /// Panel2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel2; + + /// + /// TabStrip1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TabStrip TabStrip1; + + /// + /// Tab1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Tab Tab1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// txtEPCCode 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtEPCCode; + + /// + /// txtProjectName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtProjectName; + + /// + /// txtProjectCode 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtProjectCode; + + /// + /// txtContractName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractName; + + /// + /// txtContractNum 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractNum; + + /// + /// txtContractAttribute 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractAttribute; + + /// + /// txtContractType 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractType; + + /// + /// txtStatus 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtStatus; + + /// + /// txtParties 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtParties; + + /// + /// txtBuildUnit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtBuildUnit; + + /// + /// txtCurrency 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtCurrency; + + /// + /// txtContractAmount 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractAmount; + + /// + /// txtContractAmountExcludingTax 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractAmountExcludingTax; + + /// + /// txtSignedOnDate 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtSignedOnDate; + + /// + /// txtIsItACentralizedPurchaseSupplier 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtIsItACentralizedPurchaseSupplier; + + /// + /// txtContractStartDate 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractStartDate; + + /// + /// txtContractEndDate 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContractEndDate; + + /// + /// txtConfirmWay 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtConfirmWay; + + /// + /// txtSubcontractingMethod 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtSubcontractingMethod; + + /// + /// txtPriceMethod 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtPriceMethod; + + /// + /// txtPricingBasis 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtPricingBasis; + + /// + /// txtDepart 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtDepart; + + /// + /// txtAgent 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtAgent; + + /// + /// txtContactUnitOfPartyA 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContactUnitOfPartyA; + + /// + /// txtContactPersonOfPartyA 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContactPersonOfPartyA; + + /// + /// txtContactPersonOfPartyB 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContactPersonOfPartyB; + + /// + /// txtContactPersonPhoneOfPartyB 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContactPersonPhoneOfPartyB; + + /// + /// txtContactPersonEmailOfPartyB 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtContactPersonEmailOfPartyB; + + /// + /// txtOpeningBank_TT 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtOpeningBank_TT; + + /// + /// txtOpeningBank_Electrophore 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtOpeningBank_Electrophore; + + /// + /// txtBankAccount_TT 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtBankAccount_TT; + + /// + /// txtBankAccount_Electrophore 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtBankAccount_Electrophore; + + /// + /// txtRetentionmoney 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtRetentionmoney; + + /// + /// txtLineNumber_Electrophore 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.TextBox txtLineNumber_Electrophore; + + /// + /// Panel17 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Panel Panel17; + + /// + /// Label 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label; + + /// + /// btnAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAttachUrl; + + /// + /// Toolbar5 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar5; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// btnSave 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSave; + + /// + /// btnSubmit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSubmit; + + /// + /// btnClose 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnClose; + + /// + /// Window1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window Window1; + + /// + /// WindowAtt 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Window WindowAtt; + } +} diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx new file mode 100644 index 00000000..55e70033 --- /dev/null +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx @@ -0,0 +1,178 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ContractStandingBookIn.aspx.cs" Inherits="FineUIPro.Web.PHTGL.Filing.ContractStandingBookIn" %> + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%-- + + + --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx.cs b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx.cs new file mode 100644 index 00000000..32712cda --- /dev/null +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx.cs @@ -0,0 +1,405 @@ +using BLL; +using MiniExcelLibs; +using Model; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace FineUIPro.Web.PHTGL.Filing +{ + public partial class ContractStandingBookIn : PageBase + { + #region 定义变量 + /// + /// 上传预设的虚拟路径 + /// + private string initPath = Const.ExcelUrl; + + /// + /// 安装组件集合 + /// + public static List ContractStandingBookList = new List(); + + /// + /// 错误集合 + /// + public static string errorInfos = string.Empty; + public string Type + { + get + { + return (string)ViewState["Type"]; + } + set + { + ViewState["Type"] = value; + } + } + #endregion + + #region 加载 + /// + /// 加载页面 + /// + /// + /// + protected void Page_Load(object sender, EventArgs e) + { + if (!IsPostBack) + { + this.hdFileName.Text = string.Empty; + if (ContractStandingBookList != null) + { + ContractStandingBookList.Clear(); + } + errorInfos = string.Empty; + Type = Request.Params["Type"]; + + } + } + #endregion + + #region 审核 + /// + /// 审核 + /// + /// + /// + protected void btnAudit_Click(object sender, EventArgs e) + { + try + { + Grid1.DataSource = null; + Grid1.DataBind(); + if (this.fuAttachUrl.HasFile == false) + { + ShowNotify("请您选择Excel文件!", MessageBoxIcon.Warning); + return; + } + string IsXls = Path.GetExtension(this.fuAttachUrl.FileName).ToString().Trim().ToLower(); + if (IsXls != ".xlsx") + { + ShowNotify("只可以选择Excel文件!", MessageBoxIcon.Warning); + return; + } + if (ContractStandingBookList != null) + { + ContractStandingBookList.Clear(); + } + if (!string.IsNullOrEmpty(errorInfos)) + { + errorInfos = string.Empty; + } + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + initPath; + if (!Directory.Exists(initFullPath)) + { + Directory.CreateDirectory(initFullPath); + } + + this.hdFileName.Text = BLL.Funs.GetNewFileName() + IsXls; + string filePath = initFullPath + this.hdFileName.Text; + this.fuAttachUrl.PostedFile.SaveAs(filePath); + ImportXlsToData(rootPath + initPath + this.hdFileName.Text); + + if (string.IsNullOrEmpty(errorInfos)) + { + if (!string.IsNullOrEmpty(this.hdFileName.Text)) + { + if (ContractStandingBookList.Count > 0) + { + this.Grid1.Hidden = false; + this.Grid1.DataIDField = "ContractId"; + this.Grid1.DataSource = ContractStandingBookList; + this.Grid1.DataBind(); + Grid1.RecordCount = ContractStandingBookList.Count; + } + + } + else + { + ShowNotify("请先审核要导入的文件!", MessageBoxIcon.Warning); + } + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + catch (Exception ex) + { + Alert alert = new Alert + { + Message = "'" + ex.Message + "'", + Target = Target.Self + }; + alert.Show(); + //ShowNotify("'" + ex.Message + "'", MessageBoxIcon.Warning); + } + } + + #region 读Excel提取数据 + /// + /// 从Excel提取数据--》Dataset + /// + /// Excel文件路径名 + private void ImportXlsToData(string fileName) + { + // var rows =Funs.LINQToDataTable(MiniExcel.Query(fileName).ToList()) ; + var ds = MiniExcel.Query(fileName).ToList(); + var columns = MiniExcel.GetColumns(fileName); + var rows = MiniExcel.Query(fileName).ToList(); + var cnt = columns.Count; + var reposedata = AddDatasetToSQL(rows, cnt); + if (reposedata.code == 1) + { + ShowNotify("审核完成,请点击导入!", MessageBoxIcon.Success); + } + else + { + Alert alert = new Alert + { + Message = reposedata.message, + Target = Target.Self + }; + alert.Show(); + //ShowNotify(responeData.message, MessageBoxIcon.Success); + + } + } + #endregion + + #region 将Dataset的数据导入数据库 + /// + /// 将Dataset的数据导入数据库 + /// + /// 数据集 + /// 数据集行数 + /// + private Model.ResponeData AddDatasetToSQL(List pds, int count) + { + Model.ResponeData responeData = new Model.ResponeData(); + // string result = string.Empty; + List result = new List(); + //pds = BLL.Funs.FilterBlankLines(pds); + if (count < 30) + { + responeData.code = 0; + responeData.message = "导入Excel格式错误!Excel只有" + count.ToString().Trim() + "列"; + return responeData; + } + if (pds.Count > 0 && pds != null) + { + foreach (var item in pds) + { + Model.PHTGL_ContractStandingBook _ContractStandingBook = new PHTGL_ContractStandingBook(); + _ContractStandingBook.ContractId = SQLHelper.GetNewID(); + _ContractStandingBook.States = 0; + _ContractStandingBook.DepartId = this.CurrUser.DepartId; + _ContractStandingBook.Agent = this.CurrUser.PersonName; + _ContractStandingBook.CreatUser = this.CurrUser.PersonId; + _ContractStandingBook.CreateDate = DateTime.Now.ToString() ; + if (Type == "1") + { + _ContractStandingBook.ProjectId = this.CurrUser.LoginProjectId; + } + _ContractStandingBook.ContractName = item.ContractName; + _ContractStandingBook.ContractNum= item.ContractNum; + _ContractStandingBook.ProjectName= item.ProjectName; + _ContractStandingBook.ProjectCode= item.ProjectCode; + _ContractStandingBook.Parties= item.Parties; + _ContractStandingBook.Currency= item.Currency; + _ContractStandingBook.ContractAmount= item.ContractAmount; + _ContractStandingBook.ContractType= item.ContractType; + _ContractStandingBook.EPCCode= item.EPCCode; + _ContractStandingBook.ContractAttribute= item.ContractAttribute; + _ContractStandingBook.OpeningBank_TT = item.OpeningBankTT; + _ContractStandingBook.OpeningBank_Electrophore = item.OpeningBankelectrophore; + _ContractStandingBook.BankAccount_TT = item.BankAccountTT; + _ContractStandingBook.BankAccount_Electrophore = item.BankAccountelectrophore; + _ContractStandingBook.LineNumber_Electrophore = item.LineNumberelectrophore; + _ContractStandingBook.Retentionmoney= item.Retentionmoney; + _ContractStandingBook.Status= item.Status; + _ContractStandingBook.ContactUnitOfPartyA= item.ContactUnitOfPartyA; + _ContractStandingBook.ContactPersonOfPartyA= item.ContactPersonOfPartyA; + _ContractStandingBook.ContactPersonOfPartyB= item.ContactPersonOfPartyB; + _ContractStandingBook.ContactPersonPhoneOfPartyB= item.ContactPersonPhoneOfPartyB; + _ContractStandingBook.ContactPersonEmailOfPartyB= item.ContactPersonEmailOfPartyB; + _ContractStandingBook.ContractAmountExcludingTax= item.ContractAmountExcludingTax; + _ContractStandingBook.PriceMethod= item.PriceMethod; + _ContractStandingBook.SignedOnDate= item.SignedOnDate; + _ContractStandingBook.ContractStartDate= item.ContractStartDate; + _ContractStandingBook.ContractEndDate= item.ContractEndDate; + _ContractStandingBook.PricingBasis= item.PricingBasis; + _ContractStandingBook.SubcontractingMethod= item.SubcontractingMethod; + _ContractStandingBook.IsItACentralizedPurchaseSupplier = item.IsItACentralizedPurchaseSupplier; + ContractStandingBookList.Add(_ContractStandingBook); + + } + + if (result.Count > 0) + { + ContractStandingBookList.Clear(); + // result = result.Substring(0, result.LastIndexOf("|")); + errorInfos = string.Join("|", result.Distinct()); + //Alert alert = new Alert(); + //alert.Message = result; + //alert.Target = Target.Self; + //alert.Show(); + responeData.code = 0; + responeData.message = errorInfos; + } + else + { + errorInfos = string.Empty; + + + } + + } + else + { + responeData.code = 0; + responeData.message = "导入数据为空!"; + } + + + return responeData; + } + + + #endregion + #endregion + + #region 导入 + /// + /// 导入 + /// + /// + /// + protected void btnImport_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(errorInfos)) + { + if (!string.IsNullOrEmpty(this.hdFileName.Text)) + { + if (ContractStandingBookList.Count > 0) + { + this.Grid1.Hidden = false; + this.Grid1.DataIDField = "ContractId"; + this.Grid1.DataSource = ContractStandingBookList; + this.Grid1.DataBind(); + Grid1.RecordCount = ContractStandingBookList.Count; + } + + } + else + { + ShowNotify("请先审核要导入的文件!", MessageBoxIcon.Warning); + } + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + + #endregion + + #region 提交 + /// + /// 提交 + /// + /// + /// + protected void btnSave_Click(object sender, EventArgs e) + { + if (string.IsNullOrEmpty(errorInfos)) + { + if (ContractStandingBookList.Count > 0) + { + ContractStandingBookService.AddBulkPHTGL_ContractStandingBook(ContractStandingBookList); + } + int a = ContractStandingBookList.Count(); + string rootPath = Server.MapPath("~/"); + string initFullPath = rootPath + initPath; + string filePath = initFullPath + this.hdFileName.Text; + if (filePath != string.Empty && System.IO.File.Exists(filePath)) + { + System.IO.File.Delete(filePath);//删除上传的XLS文件 + } + ShowNotify("导入成功!", MessageBoxIcon.Success); + PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); + } + else + { + ShowNotify("请先将错误数据修正,再重新导入提交!", MessageBoxIcon.Warning); + } + } + #endregion + + #region 获取名称 + public string ConvertPipelineId(object PipelineId) + { + string StateName = string.Empty; + if (!string.IsNullOrEmpty(PipelineId.ToString())) + { + + if (PipelineId != null) + { + string txt = PipelineService.GetPipelineByPipelineId(PipelineId.ToString()).PipelineCode; + + return txt; + } + return ""; + } + return StateName; + } + + #endregion + + #region 下载模板 + /// + /// 下载模板按钮 + /// + /// + /// + protected void btnDownLoad_Click(object sender, EventArgs e) + { + string rootPath = Server.MapPath("~/"); + string uploadfilepath = rootPath + Const.ContractStandingBookIn; + string filePath = Const.ContractStandingBookIn; + string fileName = Path.GetFileName(filePath); + FileInfo info = new FileInfo(uploadfilepath); + long fileSize = info.Length; + Response.ClearContent(); + Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)); + Response.ContentType = "excel/plain"; + Response.ContentEncoding = System.Text.Encoding.UTF8; + Response.AddHeader("Content-Length", fileSize.ToString().Trim()); + Response.TransmitFile(uploadfilepath, 0, fileSize); + Response.End(); + } + #endregion + + #region 分页选择下拉改变事件 + /// + /// 分页选择下拉改变事件 + /// + /// + /// + protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) + { + Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); + this.Grid1.DataSource = ContractStandingBookList; + this.Grid1.DataBind(); + Grid1.RecordCount = ContractStandingBookList.Count; + } + + #endregion + } +} \ No newline at end of file diff --git a/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx.designer.cs b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx.designer.cs new file mode 100644 index 00000000..4459172e --- /dev/null +++ b/SGGL/FineUIPro.Web/PHTGL/Filing/ContractStandingBookIn.aspx.designer.cs @@ -0,0 +1,152 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace FineUIPro.Web.PHTGL.Filing +{ + + + public partial class ContractStandingBookIn + { + + /// + /// form1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// PageManager1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.PageManager PageManager1; + + /// + /// SimpleForm1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Form SimpleForm1; + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// hdFileName 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.HiddenField hdFileName; + + /// + /// btnDownLoad 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnDownLoad; + + /// + /// btnAudit 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnAudit; + + /// + /// btnImport 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnImport; + + /// + /// btnSave 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Button btnSave; + + /// + /// fuAttachUrl 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.FileUpload fuAttachUrl; + + /// + /// Grid1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Grid Grid1; + + /// + /// lblPageIndex 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.WebControls.Label lblPageIndex; + + /// + /// ToolbarSeparator1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; + + /// + /// ToolbarText1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.ToolbarText ToolbarText1; + + /// + /// ddlPageSize 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList ddlPageSize; + } +} diff --git a/SGGL/FineUIPro.Web/common/Menu_HTGL.xml b/SGGL/FineUIPro.Web/common/Menu_HTGL.xml index 6e95f066..2ad048d2 100644 --- a/SGGL/FineUIPro.Web/common/Menu_HTGL.xml +++ b/SGGL/FineUIPro.Web/common/Menu_HTGL.xml @@ -8,4 +8,5 @@ + \ No newline at end of file diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 8314f9a1..1cea3fb2 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -1079,6 +1079,9 @@ namespace Model partial void InsertPHTGL_ContractReview(PHTGL_ContractReview instance); partial void UpdatePHTGL_ContractReview(PHTGL_ContractReview instance); partial void DeletePHTGL_ContractReview(PHTGL_ContractReview instance); + partial void InsertPHTGL_ContractStandingBook(PHTGL_ContractStandingBook instance); + partial void UpdatePHTGL_ContractStandingBook(PHTGL_ContractStandingBook instance); + partial void DeletePHTGL_ContractStandingBook(PHTGL_ContractStandingBook instance); partial void InsertPHTGL_SetSubReview(PHTGL_SetSubReview instance); partial void UpdatePHTGL_SetSubReview(PHTGL_SetSubReview instance); partial void DeletePHTGL_SetSubReview(PHTGL_SetSubReview instance); @@ -4485,6 +4488,14 @@ namespace Model } } + public System.Data.Linq.Table PHTGL_ContractStandingBook + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table PHTGL_SetSubReview { get @@ -20424,6 +20435,8 @@ namespace Model private EntitySet _PHTGL_Contract; + private EntitySet _PHTGL_ContractStandingBook; + private EntitySet _InApproveManager_EquipmentIn; private EntitySet _InApproveManager_EquipmentOut; @@ -20761,6 +20774,7 @@ namespace Model this._HJGL_WeldJoint = new EntitySet(new Action(this.attach_HJGL_WeldJoint), new Action(this.detach_HJGL_WeldJoint)); this._HJGL_HotProess_Trust = new EntitySet(new Action(this.attach_HJGL_HotProess_Trust), new Action(this.detach_HJGL_HotProess_Trust)); this._PHTGL_Contract = new EntitySet(new Action(this.attach_PHTGL_Contract), new Action(this.detach_PHTGL_Contract)); + this._PHTGL_ContractStandingBook = new EntitySet(new Action(this.attach_PHTGL_ContractStandingBook), new Action(this.detach_PHTGL_ContractStandingBook)); this._InApproveManager_EquipmentIn = new EntitySet(new Action(this.attach_InApproveManager_EquipmentIn), new Action(this.detach_InApproveManager_EquipmentIn)); this._InApproveManager_EquipmentOut = new EntitySet(new Action(this.attach_InApproveManager_EquipmentOut), new Action(this.detach_InApproveManager_EquipmentOut)); this._InApproveManager_EquipmentQualityIn = new EntitySet(new Action(this.attach_InApproveManager_EquipmentQualityIn), new Action(this.detach_InApproveManager_EquipmentQualityIn)); @@ -22298,6 +22312,19 @@ namespace Model } } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HTGL_ContractStandingBook_Base_Project", Storage="_PHTGL_ContractStandingBook", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")] + public EntitySet PHTGL_ContractStandingBook + { + get + { + return this._PHTGL_ContractStandingBook; + } + set + { + this._PHTGL_ContractStandingBook.Assign(value); + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_InApproveManager_EquipmentIn_Base_Project", Storage="_InApproveManager_EquipmentIn", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")] public EntitySet InApproveManager_EquipmentIn { @@ -24415,6 +24442,18 @@ namespace Model entity.Base_Project = null; } + private void attach_PHTGL_ContractStandingBook(PHTGL_ContractStandingBook entity) + { + this.SendPropertyChanging(); + entity.Base_Project = this; + } + + private void detach_PHTGL_ContractStandingBook(PHTGL_ContractStandingBook entity) + { + this.SendPropertyChanging(); + entity.Base_Project = null; + } + private void attach_InApproveManager_EquipmentIn(InApproveManager_EquipmentIn entity) { this.SendPropertyChanging(); @@ -173112,6 +173151,1357 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.PHTGL_ContractStandingBook")] + public partial class PHTGL_ContractStandingBook : INotifyPropertyChanging, INotifyPropertyChanged + { + + private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty); + + private string _ContractId; + + private string _ProjectId; + + private string _ProjectName; + + private string _ProjectCode; + + private string _ContractName; + + private string _ContractNum; + + private string _Parties; + + private string _Currency; + + private string _ContractAmount; + + private string _DepartId; + + private string _Agent; + + private string _ContractType; + + private string _Remarks; + + private System.Nullable _ApproveState; + + private string _CreatUser; + + private string _ContractCode; + + private string _IsPassBid; + + private string _PassBidCode; + + private string _BuildUnit; + + private System.Nullable _IsUseStandardtxt; + + private string _NoUseStandardtxtRemark; + + private string _EPCCode; + + private string _ProjectShortName; + + private string _ContractAttribute; + + private string _ContractAttributeRemark; + + private string _ConfirmWay; + + private string _SetSubReviewCode; + + private string _ActionPlanCode; + + private string _SituationRemark; + + private string _OpeningBank_TT; + + private string _OpeningBank_Electrophore; + + private string _BankAccount_TT; + + private string _BankAccount_Electrophore; + + private string _LineNumber_Electrophore; + + private string _Retentionmoney; + + private string _CreateDate; + + private string _Status; + + private System.Nullable _States; + + private string _ContactUnitOfPartyA; + + private string _ContactPersonOfPartyA; + + private string _ContactPersonOfPartyB; + + private string _ContactPersonPhoneOfPartyB; + + private string _ContactPersonEmailOfPartyB; + + private string _ContractAmountExcludingTax; + + private string _PriceMethod; + + private string _SignedOnDate; + + private string _ContractStartDate; + + private string _ContractEndDate; + + private string _PricingBasis; + + private string _SubcontractingMethod; + + private string _IsItACentralizedPurchaseSupplier; + + private string _Clause; + + private string _MainContent; + + private EntityRef _Base_Project; + + #region 可扩展性方法定义 + partial void OnLoaded(); + partial void OnValidate(System.Data.Linq.ChangeAction action); + partial void OnCreated(); + partial void OnContractIdChanging(string value); + partial void OnContractIdChanged(); + partial void OnProjectIdChanging(string value); + partial void OnProjectIdChanged(); + partial void OnProjectNameChanging(string value); + partial void OnProjectNameChanged(); + partial void OnProjectCodeChanging(string value); + partial void OnProjectCodeChanged(); + partial void OnContractNameChanging(string value); + partial void OnContractNameChanged(); + partial void OnContractNumChanging(string value); + partial void OnContractNumChanged(); + partial void OnPartiesChanging(string value); + partial void OnPartiesChanged(); + partial void OnCurrencyChanging(string value); + partial void OnCurrencyChanged(); + partial void OnContractAmountChanging(string value); + partial void OnContractAmountChanged(); + partial void OnDepartIdChanging(string value); + partial void OnDepartIdChanged(); + partial void OnAgentChanging(string value); + partial void OnAgentChanged(); + partial void OnContractTypeChanging(string value); + partial void OnContractTypeChanged(); + partial void OnRemarksChanging(string value); + partial void OnRemarksChanged(); + partial void OnApproveStateChanging(System.Nullable value); + partial void OnApproveStateChanged(); + partial void OnCreatUserChanging(string value); + partial void OnCreatUserChanged(); + partial void OnContractCodeChanging(string value); + partial void OnContractCodeChanged(); + partial void OnIsPassBidChanging(string value); + partial void OnIsPassBidChanged(); + partial void OnPassBidCodeChanging(string value); + partial void OnPassBidCodeChanged(); + partial void OnBuildUnitChanging(string value); + partial void OnBuildUnitChanged(); + partial void OnIsUseStandardtxtChanging(System.Nullable value); + partial void OnIsUseStandardtxtChanged(); + partial void OnNoUseStandardtxtRemarkChanging(string value); + partial void OnNoUseStandardtxtRemarkChanged(); + partial void OnEPCCodeChanging(string value); + partial void OnEPCCodeChanged(); + partial void OnProjectShortNameChanging(string value); + partial void OnProjectShortNameChanged(); + partial void OnContractAttributeChanging(string value); + partial void OnContractAttributeChanged(); + partial void OnContractAttributeRemarkChanging(string value); + partial void OnContractAttributeRemarkChanged(); + partial void OnConfirmWayChanging(string value); + partial void OnConfirmWayChanged(); + partial void OnSetSubReviewCodeChanging(string value); + partial void OnSetSubReviewCodeChanged(); + partial void OnActionPlanCodeChanging(string value); + partial void OnActionPlanCodeChanged(); + partial void OnSituationRemarkChanging(string value); + partial void OnSituationRemarkChanged(); + partial void OnOpeningBank_TTChanging(string value); + partial void OnOpeningBank_TTChanged(); + partial void OnOpeningBank_ElectrophoreChanging(string value); + partial void OnOpeningBank_ElectrophoreChanged(); + partial void OnBankAccount_TTChanging(string value); + partial void OnBankAccount_TTChanged(); + partial void OnBankAccount_ElectrophoreChanging(string value); + partial void OnBankAccount_ElectrophoreChanged(); + partial void OnLineNumber_ElectrophoreChanging(string value); + partial void OnLineNumber_ElectrophoreChanged(); + partial void OnRetentionmoneyChanging(string value); + partial void OnRetentionmoneyChanged(); + partial void OnCreateDateChanging(string value); + partial void OnCreateDateChanged(); + partial void OnStatusChanging(string value); + partial void OnStatusChanged(); + partial void OnStatesChanging(System.Nullable value); + partial void OnStatesChanged(); + partial void OnContactUnitOfPartyAChanging(string value); + partial void OnContactUnitOfPartyAChanged(); + partial void OnContactPersonOfPartyAChanging(string value); + partial void OnContactPersonOfPartyAChanged(); + partial void OnContactPersonOfPartyBChanging(string value); + partial void OnContactPersonOfPartyBChanged(); + partial void OnContactPersonPhoneOfPartyBChanging(string value); + partial void OnContactPersonPhoneOfPartyBChanged(); + partial void OnContactPersonEmailOfPartyBChanging(string value); + partial void OnContactPersonEmailOfPartyBChanged(); + partial void OnContractAmountExcludingTaxChanging(string value); + partial void OnContractAmountExcludingTaxChanged(); + partial void OnPriceMethodChanging(string value); + partial void OnPriceMethodChanged(); + partial void OnSignedOnDateChanging(string value); + partial void OnSignedOnDateChanged(); + partial void OnContractStartDateChanging(string value); + partial void OnContractStartDateChanged(); + partial void OnContractEndDateChanging(string value); + partial void OnContractEndDateChanged(); + partial void OnPricingBasisChanging(string value); + partial void OnPricingBasisChanged(); + partial void OnSubcontractingMethodChanging(string value); + partial void OnSubcontractingMethodChanged(); + partial void OnIsItACentralizedPurchaseSupplierChanging(string value); + partial void OnIsItACentralizedPurchaseSupplierChanged(); + partial void OnClauseChanging(string value); + partial void OnClauseChanged(); + partial void OnMainContentChanging(string value); + partial void OnMainContentChanged(); + #endregion + + public PHTGL_ContractStandingBook() + { + this._Base_Project = default(EntityRef); + OnCreated(); + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)] + public string ContractId + { + get + { + return this._ContractId; + } + set + { + if ((this._ContractId != value)) + { + this.OnContractIdChanging(value); + this.SendPropertyChanging(); + this._ContractId = value; + this.SendPropertyChanged("ContractId"); + this.OnContractIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")] + public string ProjectId + { + get + { + return this._ProjectId; + } + set + { + if ((this._ProjectId != value)) + { + if (this._Base_Project.HasLoadedOrAssignedValue) + { + throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException(); + } + this.OnProjectIdChanging(value); + this.SendPropertyChanging(); + this._ProjectId = value; + this.SendPropertyChanged("ProjectId"); + this.OnProjectIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectName", DbType="NVarChar(50)")] + public string ProjectName + { + get + { + return this._ProjectName; + } + set + { + if ((this._ProjectName != value)) + { + this.OnProjectNameChanging(value); + this.SendPropertyChanging(); + this._ProjectName = value; + this.SendPropertyChanged("ProjectName"); + this.OnProjectNameChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectCode", DbType="NVarChar(50)")] + public string ProjectCode + { + get + { + return this._ProjectCode; + } + set + { + if ((this._ProjectCode != value)) + { + this.OnProjectCodeChanging(value); + this.SendPropertyChanging(); + this._ProjectCode = value; + this.SendPropertyChanged("ProjectCode"); + this.OnProjectCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractName", DbType="NVarChar(200)")] + public string ContractName + { + get + { + return this._ContractName; + } + set + { + if ((this._ContractName != value)) + { + this.OnContractNameChanging(value); + this.SendPropertyChanging(); + this._ContractName = value; + this.SendPropertyChanged("ContractName"); + this.OnContractNameChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractNum", DbType="NVarChar(50)")] + public string ContractNum + { + get + { + return this._ContractNum; + } + set + { + if ((this._ContractNum != value)) + { + this.OnContractNumChanging(value); + this.SendPropertyChanging(); + this._ContractNum = value; + this.SendPropertyChanged("ContractNum"); + this.OnContractNumChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Parties", DbType="NVarChar(100)")] + public string Parties + { + get + { + return this._Parties; + } + set + { + if ((this._Parties != value)) + { + this.OnPartiesChanging(value); + this.SendPropertyChanging(); + this._Parties = value; + this.SendPropertyChanged("Parties"); + this.OnPartiesChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Currency", DbType="NVarChar(50)")] + public string Currency + { + get + { + return this._Currency; + } + set + { + if ((this._Currency != value)) + { + this.OnCurrencyChanging(value); + this.SendPropertyChanging(); + this._Currency = value; + this.SendPropertyChanged("Currency"); + this.OnCurrencyChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractAmount", DbType="NVarChar(50)")] + public string ContractAmount + { + get + { + return this._ContractAmount; + } + set + { + if ((this._ContractAmount != value)) + { + this.OnContractAmountChanging(value); + this.SendPropertyChanging(); + this._ContractAmount = value; + this.SendPropertyChanged("ContractAmount"); + this.OnContractAmountChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartId", DbType="NVarChar(50)")] + public string DepartId + { + get + { + return this._DepartId; + } + set + { + if ((this._DepartId != value)) + { + this.OnDepartIdChanging(value); + this.SendPropertyChanging(); + this._DepartId = value; + this.SendPropertyChanged("DepartId"); + this.OnDepartIdChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Agent", DbType="NVarChar(50)")] + public string Agent + { + get + { + return this._Agent; + } + set + { + if ((this._Agent != value)) + { + this.OnAgentChanging(value); + this.SendPropertyChanging(); + this._Agent = value; + this.SendPropertyChanged("Agent"); + this.OnAgentChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractType", DbType="NVarChar(50)")] + public string ContractType + { + get + { + return this._ContractType; + } + set + { + if ((this._ContractType != value)) + { + this.OnContractTypeChanging(value); + this.SendPropertyChanging(); + this._ContractType = value; + this.SendPropertyChanged("ContractType"); + this.OnContractTypeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(2000)")] + public string Remarks + { + get + { + return this._Remarks; + } + set + { + if ((this._Remarks != value)) + { + this.OnRemarksChanging(value); + this.SendPropertyChanging(); + this._Remarks = value; + this.SendPropertyChanged("Remarks"); + this.OnRemarksChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveState", DbType="Int")] + public System.Nullable ApproveState + { + get + { + return this._ApproveState; + } + set + { + if ((this._ApproveState != value)) + { + this.OnApproveStateChanging(value); + this.SendPropertyChanging(); + this._ApproveState = value; + this.SendPropertyChanged("ApproveState"); + this.OnApproveStateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatUser", DbType="NVarChar(50)")] + public string CreatUser + { + get + { + return this._CreatUser; + } + set + { + if ((this._CreatUser != value)) + { + this.OnCreatUserChanging(value); + this.SendPropertyChanging(); + this._CreatUser = value; + this.SendPropertyChanged("CreatUser"); + this.OnCreatUserChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractCode", DbType="VarChar(50)")] + public string ContractCode + { + get + { + return this._ContractCode; + } + set + { + if ((this._ContractCode != value)) + { + this.OnContractCodeChanging(value); + this.SendPropertyChanging(); + this._ContractCode = value; + this.SendPropertyChanged("ContractCode"); + this.OnContractCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsPassBid", DbType="NVarChar(50)")] + public string IsPassBid + { + get + { + return this._IsPassBid; + } + set + { + if ((this._IsPassBid != value)) + { + this.OnIsPassBidChanging(value); + this.SendPropertyChanging(); + this._IsPassBid = value; + this.SendPropertyChanged("IsPassBid"); + this.OnIsPassBidChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PassBidCode", DbType="NVarChar(50)")] + public string PassBidCode + { + get + { + return this._PassBidCode; + } + set + { + if ((this._PassBidCode != value)) + { + this.OnPassBidCodeChanging(value); + this.SendPropertyChanging(); + this._PassBidCode = value; + this.SendPropertyChanged("PassBidCode"); + this.OnPassBidCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BuildUnit", DbType="NVarChar(200)")] + public string BuildUnit + { + get + { + return this._BuildUnit; + } + set + { + if ((this._BuildUnit != value)) + { + this.OnBuildUnitChanging(value); + this.SendPropertyChanging(); + this._BuildUnit = value; + this.SendPropertyChanged("BuildUnit"); + this.OnBuildUnitChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUseStandardtxt", DbType="Int")] + public System.Nullable IsUseStandardtxt + { + get + { + return this._IsUseStandardtxt; + } + set + { + if ((this._IsUseStandardtxt != value)) + { + this.OnIsUseStandardtxtChanging(value); + this.SendPropertyChanging(); + this._IsUseStandardtxt = value; + this.SendPropertyChanged("IsUseStandardtxt"); + this.OnIsUseStandardtxtChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NoUseStandardtxtRemark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string NoUseStandardtxtRemark + { + get + { + return this._NoUseStandardtxtRemark; + } + set + { + if ((this._NoUseStandardtxtRemark != value)) + { + this.OnNoUseStandardtxtRemarkChanging(value); + this.SendPropertyChanging(); + this._NoUseStandardtxtRemark = value; + this.SendPropertyChanged("NoUseStandardtxtRemark"); + this.OnNoUseStandardtxtRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EPCCode", DbType="NVarChar(200)")] + public string EPCCode + { + get + { + return this._EPCCode; + } + set + { + if ((this._EPCCode != value)) + { + this.OnEPCCodeChanging(value); + this.SendPropertyChanging(); + this._EPCCode = value; + this.SendPropertyChanged("EPCCode"); + this.OnEPCCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectShortName", DbType="NVarChar(200)")] + public string ProjectShortName + { + get + { + return this._ProjectShortName; + } + set + { + if ((this._ProjectShortName != value)) + { + this.OnProjectShortNameChanging(value); + this.SendPropertyChanging(); + this._ProjectShortName = value; + this.SendPropertyChanged("ProjectShortName"); + this.OnProjectShortNameChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractAttribute", DbType="NVarChar(50)")] + public string ContractAttribute + { + get + { + return this._ContractAttribute; + } + set + { + if ((this._ContractAttribute != value)) + { + this.OnContractAttributeChanging(value); + this.SendPropertyChanging(); + this._ContractAttribute = value; + this.SendPropertyChanged("ContractAttribute"); + this.OnContractAttributeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractAttributeRemark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string ContractAttributeRemark + { + get + { + return this._ContractAttributeRemark; + } + set + { + if ((this._ContractAttributeRemark != value)) + { + this.OnContractAttributeRemarkChanging(value); + this.SendPropertyChanging(); + this._ContractAttributeRemark = value; + this.SendPropertyChanged("ContractAttributeRemark"); + this.OnContractAttributeRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ConfirmWay", DbType="NVarChar(50)")] + public string ConfirmWay + { + get + { + return this._ConfirmWay; + } + set + { + if ((this._ConfirmWay != value)) + { + this.OnConfirmWayChanging(value); + this.SendPropertyChanging(); + this._ConfirmWay = value; + this.SendPropertyChanged("ConfirmWay"); + this.OnConfirmWayChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SetSubReviewCode", DbType="NVarChar(50)")] + public string SetSubReviewCode + { + get + { + return this._SetSubReviewCode; + } + set + { + if ((this._SetSubReviewCode != value)) + { + this.OnSetSubReviewCodeChanging(value); + this.SendPropertyChanging(); + this._SetSubReviewCode = value; + this.SendPropertyChanged("SetSubReviewCode"); + this.OnSetSubReviewCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ActionPlanCode", DbType="NVarChar(50)")] + public string ActionPlanCode + { + get + { + return this._ActionPlanCode; + } + set + { + if ((this._ActionPlanCode != value)) + { + this.OnActionPlanCodeChanging(value); + this.SendPropertyChanging(); + this._ActionPlanCode = value; + this.SendPropertyChanged("ActionPlanCode"); + this.OnActionPlanCodeChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SituationRemark", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)] + public string SituationRemark + { + get + { + return this._SituationRemark; + } + set + { + if ((this._SituationRemark != value)) + { + this.OnSituationRemarkChanging(value); + this.SendPropertyChanging(); + this._SituationRemark = value; + this.SendPropertyChanged("SituationRemark"); + this.OnSituationRemarkChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="OpeningBank-TT", Storage="_OpeningBank_TT", DbType="NVarChar(100)")] + public string OpeningBank_TT + { + get + { + return this._OpeningBank_TT; + } + set + { + if ((this._OpeningBank_TT != value)) + { + this.OnOpeningBank_TTChanging(value); + this.SendPropertyChanging(); + this._OpeningBank_TT = value; + this.SendPropertyChanged("OpeningBank_TT"); + this.OnOpeningBank_TTChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="OpeningBank-electrophore", Storage="_OpeningBank_Electrophore", DbType="VarChar(100)")] + public string OpeningBank_Electrophore + { + get + { + return this._OpeningBank_Electrophore; + } + set + { + if ((this._OpeningBank_Electrophore != value)) + { + this.OnOpeningBank_ElectrophoreChanging(value); + this.SendPropertyChanging(); + this._OpeningBank_Electrophore = value; + this.SendPropertyChanged("OpeningBank_Electrophore"); + this.OnOpeningBank_ElectrophoreChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="BankAccount-TT", Storage="_BankAccount_TT", DbType="VarChar(100)")] + public string BankAccount_TT + { + get + { + return this._BankAccount_TT; + } + set + { + if ((this._BankAccount_TT != value)) + { + this.OnBankAccount_TTChanging(value); + this.SendPropertyChanging(); + this._BankAccount_TT = value; + this.SendPropertyChanged("BankAccount_TT"); + this.OnBankAccount_TTChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="BankAccount-electrophore", Storage="_BankAccount_Electrophore", DbType="VarChar(100)")] + public string BankAccount_Electrophore + { + get + { + return this._BankAccount_Electrophore; + } + set + { + if ((this._BankAccount_Electrophore != value)) + { + this.OnBankAccount_ElectrophoreChanging(value); + this.SendPropertyChanging(); + this._BankAccount_Electrophore = value; + this.SendPropertyChanged("BankAccount_Electrophore"); + this.OnBankAccount_ElectrophoreChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="LineNumber-electrophore", Storage="_LineNumber_Electrophore", DbType="VarChar(100)")] + public string LineNumber_Electrophore + { + get + { + return this._LineNumber_Electrophore; + } + set + { + if ((this._LineNumber_Electrophore != value)) + { + this.OnLineNumber_ElectrophoreChanging(value); + this.SendPropertyChanging(); + this._LineNumber_Electrophore = value; + this.SendPropertyChanged("LineNumber_Electrophore"); + this.OnLineNumber_ElectrophoreChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Retentionmoney", DbType="VarChar(100)")] + public string Retentionmoney + { + get + { + return this._Retentionmoney; + } + set + { + if ((this._Retentionmoney != value)) + { + this.OnRetentionmoneyChanging(value); + this.SendPropertyChanging(); + this._Retentionmoney = value; + this.SendPropertyChanged("Retentionmoney"); + this.OnRetentionmoneyChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDate", DbType="NVarChar(50)")] + public string CreateDate + { + get + { + return this._CreateDate; + } + set + { + if ((this._CreateDate != value)) + { + this.OnCreateDateChanging(value); + this.SendPropertyChanging(); + this._CreateDate = value; + this.SendPropertyChanged("CreateDate"); + this.OnCreateDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="NVarChar(50)")] + public string Status + { + get + { + return this._Status; + } + set + { + if ((this._Status != value)) + { + this.OnStatusChanging(value); + this.SendPropertyChanging(); + this._Status = value; + this.SendPropertyChanged("Status"); + this.OnStatusChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Int")] + public System.Nullable States + { + get + { + return this._States; + } + set + { + if ((this._States != value)) + { + this.OnStatesChanging(value); + this.SendPropertyChanging(); + this._States = value; + this.SendPropertyChanged("States"); + this.OnStatesChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContactUnitOfPartyA", DbType="VarChar(50)")] + public string ContactUnitOfPartyA + { + get + { + return this._ContactUnitOfPartyA; + } + set + { + if ((this._ContactUnitOfPartyA != value)) + { + this.OnContactUnitOfPartyAChanging(value); + this.SendPropertyChanging(); + this._ContactUnitOfPartyA = value; + this.SendPropertyChanged("ContactUnitOfPartyA"); + this.OnContactUnitOfPartyAChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContactPersonOfPartyA", DbType="VarChar(50)")] + public string ContactPersonOfPartyA + { + get + { + return this._ContactPersonOfPartyA; + } + set + { + if ((this._ContactPersonOfPartyA != value)) + { + this.OnContactPersonOfPartyAChanging(value); + this.SendPropertyChanging(); + this._ContactPersonOfPartyA = value; + this.SendPropertyChanged("ContactPersonOfPartyA"); + this.OnContactPersonOfPartyAChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContactPersonOfPartyB", DbType="VarChar(50)")] + public string ContactPersonOfPartyB + { + get + { + return this._ContactPersonOfPartyB; + } + set + { + if ((this._ContactPersonOfPartyB != value)) + { + this.OnContactPersonOfPartyBChanging(value); + this.SendPropertyChanging(); + this._ContactPersonOfPartyB = value; + this.SendPropertyChanged("ContactPersonOfPartyB"); + this.OnContactPersonOfPartyBChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContactPersonPhoneOfPartyB", DbType="VarChar(50)")] + public string ContactPersonPhoneOfPartyB + { + get + { + return this._ContactPersonPhoneOfPartyB; + } + set + { + if ((this._ContactPersonPhoneOfPartyB != value)) + { + this.OnContactPersonPhoneOfPartyBChanging(value); + this.SendPropertyChanging(); + this._ContactPersonPhoneOfPartyB = value; + this.SendPropertyChanged("ContactPersonPhoneOfPartyB"); + this.OnContactPersonPhoneOfPartyBChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContactPersonEmailOfPartyB", DbType="VarChar(50)")] + public string ContactPersonEmailOfPartyB + { + get + { + return this._ContactPersonEmailOfPartyB; + } + set + { + if ((this._ContactPersonEmailOfPartyB != value)) + { + this.OnContactPersonEmailOfPartyBChanging(value); + this.SendPropertyChanging(); + this._ContactPersonEmailOfPartyB = value; + this.SendPropertyChanged("ContactPersonEmailOfPartyB"); + this.OnContactPersonEmailOfPartyBChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractAmountExcludingTax", DbType="NVarChar(50)")] + public string ContractAmountExcludingTax + { + get + { + return this._ContractAmountExcludingTax; + } + set + { + if ((this._ContractAmountExcludingTax != value)) + { + this.OnContractAmountExcludingTaxChanging(value); + this.SendPropertyChanging(); + this._ContractAmountExcludingTax = value; + this.SendPropertyChanged("ContractAmountExcludingTax"); + this.OnContractAmountExcludingTaxChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PriceMethod", DbType="VarChar(50)")] + public string PriceMethod + { + get + { + return this._PriceMethod; + } + set + { + if ((this._PriceMethod != value)) + { + this.OnPriceMethodChanging(value); + this.SendPropertyChanging(); + this._PriceMethod = value; + this.SendPropertyChanged("PriceMethod"); + this.OnPriceMethodChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SignedOnDate", DbType="NVarChar(50)")] + public string SignedOnDate + { + get + { + return this._SignedOnDate; + } + set + { + if ((this._SignedOnDate != value)) + { + this.OnSignedOnDateChanging(value); + this.SendPropertyChanging(); + this._SignedOnDate = value; + this.SendPropertyChanged("SignedOnDate"); + this.OnSignedOnDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractStartDate", DbType="NVarChar(50)")] + public string ContractStartDate + { + get + { + return this._ContractStartDate; + } + set + { + if ((this._ContractStartDate != value)) + { + this.OnContractStartDateChanging(value); + this.SendPropertyChanging(); + this._ContractStartDate = value; + this.SendPropertyChanged("ContractStartDate"); + this.OnContractStartDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractEndDate", DbType="NVarChar(50)")] + public string ContractEndDate + { + get + { + return this._ContractEndDate; + } + set + { + if ((this._ContractEndDate != value)) + { + this.OnContractEndDateChanging(value); + this.SendPropertyChanging(); + this._ContractEndDate = value; + this.SendPropertyChanged("ContractEndDate"); + this.OnContractEndDateChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PricingBasis", DbType="NVarChar(200)")] + public string PricingBasis + { + get + { + return this._PricingBasis; + } + set + { + if ((this._PricingBasis != value)) + { + this.OnPricingBasisChanging(value); + this.SendPropertyChanging(); + this._PricingBasis = value; + this.SendPropertyChanged("PricingBasis"); + this.OnPricingBasisChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractingMethod", DbType="NVarChar(50)")] + public string SubcontractingMethod + { + get + { + return this._SubcontractingMethod; + } + set + { + if ((this._SubcontractingMethod != value)) + { + this.OnSubcontractingMethodChanging(value); + this.SendPropertyChanging(); + this._SubcontractingMethod = value; + this.SendPropertyChanged("SubcontractingMethod"); + this.OnSubcontractingMethodChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsItACentralizedPurchaseSupplier", DbType="NVarChar(50)")] + public string IsItACentralizedPurchaseSupplier + { + get + { + return this._IsItACentralizedPurchaseSupplier; + } + set + { + if ((this._IsItACentralizedPurchaseSupplier != value)) + { + this.OnIsItACentralizedPurchaseSupplierChanging(value); + this.SendPropertyChanging(); + this._IsItACentralizedPurchaseSupplier = value; + this.SendPropertyChanged("IsItACentralizedPurchaseSupplier"); + this.OnIsItACentralizedPurchaseSupplierChanged(); + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Clause", DbType="NVarChar(2000)")] + 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_ContractStandingBook_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)] + public Base_Project Base_Project + { + get + { + return this._Base_Project.Entity; + } + set + { + Base_Project previousValue = this._Base_Project.Entity; + if (((previousValue != value) + || (this._Base_Project.HasLoadedOrAssignedValue == false))) + { + this.SendPropertyChanging(); + if ((previousValue != null)) + { + this._Base_Project.Entity = null; + previousValue.PHTGL_ContractStandingBook.Remove(this); + } + this._Base_Project.Entity = value; + if ((value != null)) + { + value.PHTGL_ContractStandingBook.Add(this); + this._ProjectId = value.ProjectId; + } + else + { + this._ProjectId = default(string); + } + this.SendPropertyChanged("Base_Project"); + } + } + } + + 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.PHTGL_SetSubReview")] public partial class PHTGL_SetSubReview : INotifyPropertyChanging, INotifyPropertyChanged {