From 69e0c84288138799772e9ced7eec5444c2d47752 Mon Sep 17 00:00:00 2001 From: zlysdm Date: Tue, 24 Sep 2024 19:51:39 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E5=88=86=E6=A3=80=E6=80=BB=E6=A3=80?= =?UTF-8?q?=E5=8A=A0=E5=85=A5=E6=89=93=E5=8D=B0=E6=8A=A5=E5=91=8A=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=EF=BC=8C2=E3=80=81=E5=9B=A2=E4=BD=93=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E5=A4=8D=E5=88=B6=E4=BA=BA=E5=91=98=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PEIS/Model/Enrollment/EnrollmentOrgModel.cs | 33 + PEIS/Presenter/EnrollmentOrgPresenter.cs | 6 +- .../Enrollment/EnrollmentOrgForm.Designer.cs | 6404 +++++++++-------- PEIS/View/Enrollment/EnrollmentOrgForm.cs | 168 +- PEIS/View/Enrollment/IEnrollmentOrgView.cs | 4 +- PEIS/View/Exam/PartForm.Designer.cs | 21 + PEIS/View/Exam/PartForm.cs | 58 + PEIS/View/Exam/PartForm.resx | 20 +- PEIS/View/Exam/TotalForm.Designer.cs | 21 + PEIS/View/Exam/TotalForm.cs | 58 + PEIS/View/Exam/TotalForm.resx | 29 +- 11 files changed, 3571 insertions(+), 3251 deletions(-) diff --git a/PEIS/Model/Enrollment/EnrollmentOrgModel.cs b/PEIS/Model/Enrollment/EnrollmentOrgModel.cs index d4a134a..cc846df 100644 --- a/PEIS/Model/Enrollment/EnrollmentOrgModel.cs +++ b/PEIS/Model/Enrollment/EnrollmentOrgModel.cs @@ -121,5 +121,38 @@ namespace PEIS.Model.Enrollment a.OEID = {oeID} AND d.DeleteTime IS NULL ORDER BY a.SignTime"); } + + public List GetCopyList(String name, Int64 oeID) + { + if(string.IsNullOrEmpty(name)) return new List(); + + return DAOHelp.GetDataBySQL($@"SELECT + ID, + Sex, + Age, + Name, + Tel1, + AgeClass, + SignTime, + Address1, + Contactor1, + CreateTime, + CASE + WHEN FinishTime IS NOT NULL THEN '3' + WHEN SignTime IS NOT NULL THEN '2' + WHEN SignTime IS NULL THEN '1' + END AS Signer, + FinishTime, + SpellCode + FROM + Enrollment_Patient + WHERE + ( Name like '%{name}%' or id like '%{name}%' or SpellCode like '{name}%') + AND OEID = {oeID} + AND PID IS NOT NULL + AND WeChatStatus IN ( 0, 1 ) + ORDER BY + CreateTime DESC"); + } } } \ No newline at end of file diff --git a/PEIS/Presenter/EnrollmentOrgPresenter.cs b/PEIS/Presenter/EnrollmentOrgPresenter.cs index bb099bd..128eecb 100644 --- a/PEIS/Presenter/EnrollmentOrgPresenter.cs +++ b/PEIS/Presenter/EnrollmentOrgPresenter.cs @@ -79,7 +79,7 @@ namespace PEIS.Presenter }; View.GetEnrollmentFeeItem += (send, args) => { - View.ShowEnrollmentFeeItem(new EnrollmentFeeItemModel().GetItemsByEnrollmentID(args.EnrollmentID)); + View.ShowEnrollmentFeeItem(new EnrollmentFeeItemModel().GetItemsByEnrollmentID(args.EnrollmentID), args.Code); }; View.GetCheckCost += (send, args) => { @@ -163,6 +163,10 @@ namespace PEIS.Presenter { View.ShowExcelList(new EnrollmentOrgModel().GetExcelList(args.EnrollmentOID)); }; + View.GetCopyRegItems += (send, args) => + { + View.ShowCopyRegItems(new EnrollmentOrgModel().GetCopyList(args.Name, args.EnrollmentOID)); + }; } } } \ No newline at end of file diff --git a/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs b/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs index b40eefe..cbb41a5 100644 --- a/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs +++ b/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs @@ -29,12 +29,12 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); - DevExpress.XtraEditors.Repository.RepositoryItemImageEdit repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EnrollmentOrgForm)); DevExpress.XtraGrid.GridFormatRule gridFormatRule1 = new DevExpress.XtraGrid.GridFormatRule(); DevExpress.XtraEditors.FormatConditionRuleExpression formatConditionRuleExpression1 = new DevExpress.XtraEditors.FormatConditionRuleExpression(); DevExpress.XtraGrid.GridFormatRule gridFormatRule2 = new DevExpress.XtraGrid.GridFormatRule(); DevExpress.XtraEditors.FormatConditionRuleExpression formatConditionRuleExpression2 = new DevExpress.XtraEditors.FormatConditionRuleExpression(); + this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit(); this.gridColumn99 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn102 = new DevExpress.XtraGrid.Columns.GridColumn(); this.repositoryItemMemoEdit21 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit(); @@ -138,6 +138,47 @@ this.panel3 = new System.Windows.Forms.Panel(); this.OpsGroup = new PEIS.View.UControl.OpMenuSimple(); this.TpGroupFeeItem = new DevExpress.XtraTab.XtraTabPage(); + this.splitter8 = new System.Windows.Forms.Splitter(); + this.panel5 = new System.Windows.Forms.Panel(); + this.DgcGroupFeeItem = new DevExpress.XtraGrid.GridControl(); + this.DgvGroupFeeItem = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit(); + this.gridColumn74 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn76 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn77 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn79 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn78 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn80 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn81 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.splitter4 = new System.Windows.Forms.Splitter(); + this.panel9 = new System.Windows.Forms.Panel(); + this.tabControl1 = new System.Windows.Forms.TabControl(); + this.TpPack = new System.Windows.Forms.TabPage(); + this.DgcPack = new DevExpress.XtraGrid.GridControl(); + this.DgvPack = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.gridColumn82 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn83 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn84 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn85 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn86 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn87 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn88 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.TpFeeItem = new System.Windows.Forms.TabPage(); + this.DgcFeeItem = new DevExpress.XtraGrid.GridControl(); + this.DgvFeeItem = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.gridColumn72 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn70 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.GcSettlePrice = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn68 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn73 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit(); + this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.FeeItemSearch = new System.Windows.Forms.TextBox(); this.DgcGroup2 = new DevExpress.XtraGrid.GridControl(); this.DgvGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn(); @@ -260,6 +301,25 @@ this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit(); this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.FeeItemSearch2 = new System.Windows.Forms.TextBox(); + this.CopyItemTab = new System.Windows.Forms.TabPage(); + this.DgcCopyItem = new DevExpress.XtraGrid.GridControl(); + this.DgvCopyItem = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.gridColumn106 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn107 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn162 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn165 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn166 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn167 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn168 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn169 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.panel14 = new System.Windows.Forms.Panel(); + this.NameSearch2 = new System.Windows.Forms.TextBox(); + this.DgcRegItem2 = new DevExpress.XtraGrid.GridControl(); + this.DgvRegItem2 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.gridColumn170 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.gridColumn171 = new DevExpress.XtraGrid.Columns.GridColumn(); + this.CopyMenu = new System.Windows.Forms.MenuStrip(); + this.TsmiCopyFeeItem = new System.Windows.Forms.ToolStripMenuItem(); this.panel7 = new System.Windows.Forms.Panel(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.TsmiCheckOrg = new System.Windows.Forms.ToolStripMenuItem(); @@ -338,67 +398,8 @@ this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.panel9 = new System.Windows.Forms.Panel(); - this.tabControl1 = new System.Windows.Forms.TabControl(); - this.TpFeeItem = new System.Windows.Forms.TabPage(); - this.FeeItemSearch = new System.Windows.Forms.TextBox(); - this.DgcFeeItem = new DevExpress.XtraGrid.GridControl(); - this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit(); - this.DgvFeeItem = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.gridColumn72 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn70 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.GcSettlePrice = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn68 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn73 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.TpPack = new System.Windows.Forms.TabPage(); - this.DgcPack = new DevExpress.XtraGrid.GridControl(); - this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.DgvPack = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.gridColumn82 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn83 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn84 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn85 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn86 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn87 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn88 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.splitter4 = new System.Windows.Forms.Splitter(); - this.DgcGroupFeeItem = new DevExpress.XtraGrid.GridControl(); this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.DgvGroupFeeItem = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn74 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn76 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn77 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn79 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn78 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn80 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn81 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.panel5 = new System.Windows.Forms.Panel(); - this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit(); - this.splitter8 = new System.Windows.Forms.Splitter(); - this.CopyItemTab = new System.Windows.Forms.TabPage(); - this.DgcCopyItem = new DevExpress.XtraGrid.GridControl(); - this.DgvCopyItem = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.gridColumn106 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn107 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn162 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn165 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn166 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn167 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn168 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn169 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.panel14 = new System.Windows.Forms.Panel(); - this.NameSearch2 = new System.Windows.Forms.TextBox(); - this.DgcRegItem2 = new DevExpress.XtraGrid.GridControl(); - this.DgvRegItem2 = new DevExpress.XtraGrid.Views.Grid.GridView(); - this.gridColumn170 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.gridColumn171 = new DevExpress.XtraGrid.Columns.GridColumn(); - this.CopyMenu = new System.Windows.Forms.MenuStrip(); - this.TsmiCopyFeeItem = new System.Windows.Forms.ToolStripMenuItem(); + ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit21)).BeginInit(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.DgcOrg)).BeginInit(); @@ -415,7 +416,6 @@ ((System.ComponentModel.ISupportInitialize)(this.DgcGroupPatient)).BeginInit(); this.contextMenuStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.DgvGroupPatient)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(repositoryItemImageEdit2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit(); this.xtraTabControl2.SuspendLayout(); this.xtraTabPage3.SuspendLayout(); @@ -430,6 +430,21 @@ ((System.ComponentModel.ISupportInitialize)(this.RiCmbExamType)).BeginInit(); this.panel3.SuspendLayout(); this.TpGroupFeeItem.SuspendLayout(); + this.panel5.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcGroupFeeItem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvGroupFeeItem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit(); + this.panel9.SuspendLayout(); + this.tabControl1.SuspendLayout(); + this.TpPack.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcPack)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvPack)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit(); + this.TpFeeItem.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcFeeItem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvFeeItem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DgcGroup2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DgvGroup2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit(); @@ -468,6 +483,13 @@ ((System.ComponentModel.ISupportInitialize)(this.DgvFeeItem2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit(); + this.CopyItemTab.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcCopyItem)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvCopyItem)).BeginInit(); + this.panel14.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcRegItem2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvRegItem2)).BeginInit(); + this.CopyMenu.SuspendLayout(); this.panel7.SuspendLayout(); this.menuStrip1.SuspendLayout(); this.panel11.SuspendLayout(); @@ -479,31 +501,16 @@ ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit(); - this.panel9.SuspendLayout(); - this.tabControl1.SuspendLayout(); - this.TpFeeItem.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcFeeItem)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvFeeItem)).BeginInit(); - this.TpPack.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcPack)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvPack)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgcGroupFeeItem)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvGroupFeeItem)).BeginInit(); - this.panel5.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit(); - this.CopyItemTab.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcCopyItem)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvCopyItem)).BeginInit(); - this.panel14.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcRegItem2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvRegItem2)).BeginInit(); - this.CopyMenu.SuspendLayout(); this.SuspendLayout(); // + // repositoryItemImageEdit2 + // + this.repositoryItemImageEdit2.AutoHeight = false; + this.repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); + this.repositoryItemImageEdit2.Name = "repositoryItemImageEdit2"; + // // gridColumn99 // this.gridColumn99.Caption = "退费时间"; @@ -1247,11 +1254,7 @@ this.gridColumn52.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); this.gridColumn52.AppearanceCell.Options.UseFont = true; this.gridColumn52.Caption = "身份证照片"; - repositoryItemImageEdit2.AutoHeight = false; - repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); - repositoryItemImageEdit2.Name = "repositoryItemImageEdit2"; - this.gridColumn52.ColumnEdit = repositoryItemImageEdit2; + this.gridColumn52.ColumnEdit = this.repositoryItemImageEdit2; this.gridColumn52.FieldName = "Photo"; this.gridColumn52.Name = "gridColumn52"; this.gridColumn52.Visible = true; @@ -1936,3592 +1939,3594 @@ this.TpGroupFeeItem.Size = new System.Drawing.Size(1196, 736); this.TpGroupFeeItem.Text = "分组项目"; // - // DgcGroup2 + // splitter8 // - this.DgcGroup2.Dock = System.Windows.Forms.DockStyle.Top; - this.DgcGroup2.Location = new System.Drawing.Point(0, 44); - this.DgcGroup2.MainView = this.DgvGroup2; - this.DgcGroup2.Name = "DgcGroup2"; - this.DgcGroup2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { - this.repositoryItemComboBox1, - this.repositoryItemComboBox2, - this.repositoryItemComboBox3}); - this.DgcGroup2.Size = new System.Drawing.Size(1196, 167); - this.DgcGroup2.TabIndex = 142; - this.DgcGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvGroup2}); + this.splitter8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); + this.splitter8.Dock = System.Windows.Forms.DockStyle.Top; + this.splitter8.Location = new System.Drawing.Point(0, 211); + this.splitter8.Name = "splitter8"; + this.splitter8.Padding = new System.Windows.Forms.Padding(3); + this.splitter8.Size = new System.Drawing.Size(1196, 5); + this.splitter8.TabIndex = 143; + this.splitter8.TabStop = false; // - // DgvGroup2 + // panel5 // - this.DgvGroup2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvGroup2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; - this.DgvGroup2.Appearance.FooterPanel.Options.UseFont = true; - this.DgvGroup2.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvGroup2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvGroup2.Appearance.GroupRow.Options.UseFont = true; - this.DgvGroup2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvGroup2.Appearance.Row.Options.UseFont = true; - this.DgvGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn57, - this.gridColumn58, - this.gridColumn59, - this.gridColumn60, - this.gridColumn61, - this.gridColumn62, - this.gridColumn63, - this.gridColumn64, - this.gridColumn65, - this.gridColumn66}); - this.DgvGroup2.FixedLineWidth = 1; - this.DgvGroup2.GridControl = this.DgcGroup2; - this.DgvGroup2.IndicatorWidth = 30; - this.DgvGroup2.Name = "DgvGroup2"; - this.DgvGroup2.OptionsSelection.MultiSelect = true; - this.DgvGroup2.OptionsView.ColumnAutoWidth = false; - this.DgvGroup2.OptionsView.ShowGroupPanel = false; - this.DgvGroup2.RowHeight = 40; + this.panel5.Controls.Add(this.DgcGroupFeeItem); + this.panel5.Controls.Add(this.splitter4); + this.panel5.Controls.Add(this.panel9); + this.panel5.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel5.Location = new System.Drawing.Point(0, 211); + this.panel5.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel5.Name = "panel5"; + this.panel5.Padding = new System.Windows.Forms.Padding(3); + this.panel5.Size = new System.Drawing.Size(1196, 525); + this.panel5.TabIndex = 139; // - // gridColumn57 + // DgcGroupFeeItem // - this.gridColumn57.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn57.AppearanceCell.Options.UseFont = true; - this.gridColumn57.Caption = "分组"; - this.gridColumn57.FieldName = "Name"; - this.gridColumn57.Name = "gridColumn57"; - this.gridColumn57.OptionsColumn.AllowEdit = false; - this.gridColumn57.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn57.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn57.OptionsColumn.ReadOnly = true; - this.gridColumn57.Visible = true; - this.gridColumn57.VisibleIndex = 0; - this.gridColumn57.Width = 120; + this.DgcGroupFeeItem.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcGroupFeeItem.Location = new System.Drawing.Point(3, 3); + this.DgcGroupFeeItem.MainView = this.DgvGroupFeeItem; + this.DgcGroupFeeItem.Name = "DgcGroupFeeItem"; + this.DgcGroupFeeItem.Size = new System.Drawing.Size(701, 519); + this.DgcGroupFeeItem.TabIndex = 137; + this.DgcGroupFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvGroupFeeItem, + this.gridView9}); // - // gridColumn58 + // DgvGroupFeeItem // - this.gridColumn58.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn58.AppearanceCell.Options.UseFont = true; - this.gridColumn58.Caption = "性别"; - this.gridColumn58.ColumnEdit = this.repositoryItemComboBox1; - this.gridColumn58.FieldName = "Sex"; - this.gridColumn58.Name = "gridColumn58"; - this.gridColumn58.OptionsColumn.AllowEdit = false; - this.gridColumn58.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn58.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn58.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn58.OptionsColumn.ReadOnly = true; - this.gridColumn58.OptionsFilter.AllowFilter = false; - this.gridColumn58.Visible = true; - this.gridColumn58.VisibleIndex = 1; + this.DgvGroupFeeItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.DgvGroupFeeItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(117)))), ((int)(((byte)(230))))); + this.DgvGroupFeeItem.Appearance.FooterPanel.Options.UseFont = true; + this.DgvGroupFeeItem.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvGroupFeeItem.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvGroupFeeItem.Appearance.GroupRow.Options.UseFont = true; + this.DgvGroupFeeItem.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvGroupFeeItem.Appearance.Row.Options.UseFont = true; + this.DgvGroupFeeItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn75, + this.gridColumn74, + this.gridColumn76, + this.gridColumn77, + this.gridColumn79, + this.gridColumn78, + this.gridColumn80, + this.gridColumn81}); + this.DgvGroupFeeItem.FixedLineWidth = 1; + this.DgvGroupFeeItem.GridControl = this.DgcGroupFeeItem; + this.DgvGroupFeeItem.IndicatorWidth = 30; + this.DgvGroupFeeItem.Name = "DgvGroupFeeItem"; + this.DgvGroupFeeItem.OptionsView.AllowCellMerge = true; + this.DgvGroupFeeItem.OptionsView.ColumnAutoWidth = false; + this.DgvGroupFeeItem.OptionsView.ShowFooter = true; + this.DgvGroupFeeItem.OptionsView.ShowGroupPanel = false; + this.DgvGroupFeeItem.RowHeight = 40; // - // repositoryItemComboBox1 + // gridColumn75 // - this.repositoryItemComboBox1.AutoHeight = false; - this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); - this.repositoryItemComboBox1.Name = "repositoryItemComboBox1"; + this.gridColumn75.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn75.AppearanceCell.Options.UseFont = true; + this.gridColumn75.AppearanceCell.Options.UseTextOptions = true; + this.gridColumn75.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn75.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center; + this.gridColumn75.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; + this.gridColumn75.Caption = "套餐"; + this.gridColumn75.ColumnEdit = this.repositoryItemMemoEdit1; + this.gridColumn75.FieldName = "PackName"; + this.gridColumn75.Name = "gridColumn75"; + this.gridColumn75.OptionsColumn.AllowEdit = false; + this.gridColumn75.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn75.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn75.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn75.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn75.OptionsColumn.ReadOnly = true; + this.gridColumn75.OptionsFilter.AllowFilter = false; + this.gridColumn75.Visible = true; + this.gridColumn75.VisibleIndex = 0; + this.gridColumn75.Width = 80; // - // gridColumn59 + // repositoryItemMemoEdit1 // - this.gridColumn59.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn59.AppearanceCell.Options.UseFont = true; - this.gridColumn59.Caption = "婚况"; - this.gridColumn59.ColumnEdit = this.repositoryItemComboBox2; - this.gridColumn59.FieldName = "Marriage"; - this.gridColumn59.Name = "gridColumn59"; - this.gridColumn59.OptionsColumn.AllowEdit = false; - this.gridColumn59.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn59.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn59.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn59.OptionsColumn.ReadOnly = true; - this.gridColumn59.OptionsFilter.AllowFilter = false; - this.gridColumn59.Visible = true; - this.gridColumn59.VisibleIndex = 2; + this.repositoryItemMemoEdit1.Appearance.Options.UseTextOptions = true; + this.repositoryItemMemoEdit1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.repositoryItemMemoEdit1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; + this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1"; // - // repositoryItemComboBox2 + // gridColumn74 // - this.repositoryItemComboBox2.AutoHeight = false; - this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); - this.repositoryItemComboBox2.Name = "repositoryItemComboBox2"; + this.gridColumn74.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn74.AppearanceCell.Options.UseFont = true; + this.gridColumn74.Caption = "项目类别"; + this.gridColumn74.FieldName = "ItemClass"; + this.gridColumn74.Name = "gridColumn74"; + this.gridColumn74.OptionsColumn.AllowEdit = false; + this.gridColumn74.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn74.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn74.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn74.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn74.OptionsColumn.ReadOnly = true; + this.gridColumn74.OptionsFilter.AllowFilter = false; + this.gridColumn74.Visible = true; + this.gridColumn74.VisibleIndex = 1; + this.gridColumn74.Width = 70; // - // gridColumn60 + // gridColumn76 // - this.gridColumn60.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn60.AppearanceCell.Options.UseFont = true; - this.gridColumn60.Caption = "最小年龄"; - this.gridColumn60.FieldName = "AgeMin"; - this.gridColumn60.Name = "gridColumn60"; - this.gridColumn60.OptionsColumn.AllowEdit = false; - this.gridColumn60.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn60.OptionsColumn.AllowMove = false; - this.gridColumn60.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn60.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn60.OptionsColumn.ReadOnly = true; - this.gridColumn60.OptionsFilter.AllowFilter = false; - this.gridColumn60.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); - this.gridColumn60.Visible = true; - this.gridColumn60.VisibleIndex = 3; - this.gridColumn60.Width = 60; + this.gridColumn76.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn76.AppearanceCell.Options.UseFont = true; + this.gridColumn76.Caption = "费用代码"; + this.gridColumn76.FieldName = "FeeItemCode"; + this.gridColumn76.Name = "gridColumn76"; + this.gridColumn76.OptionsColumn.AllowEdit = false; + this.gridColumn76.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn76.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn76.OptionsColumn.AllowMove = false; + this.gridColumn76.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn76.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn76.OptionsColumn.ReadOnly = true; + this.gridColumn76.OptionsFilter.AllowFilter = false; + this.gridColumn76.Visible = true; + this.gridColumn76.VisibleIndex = 2; + this.gridColumn76.Width = 70; // - // gridColumn61 + // gridColumn77 // - this.gridColumn61.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn61.AppearanceCell.Options.UseFont = true; - this.gridColumn61.Caption = "最大年龄"; - this.gridColumn61.FieldName = "AgeMax"; - this.gridColumn61.Name = "gridColumn61"; - this.gridColumn61.OptionsColumn.AllowEdit = false; - this.gridColumn61.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn61.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn61.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn61.OptionsColumn.ReadOnly = true; - this.gridColumn61.OptionsFilter.AllowFilter = false; - this.gridColumn61.Visible = true; - this.gridColumn61.VisibleIndex = 4; - this.gridColumn61.Width = 60; + this.gridColumn77.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn77.AppearanceCell.Options.UseFont = true; + this.gridColumn77.Caption = "项目名称"; + this.gridColumn77.FieldName = "FeeItemName"; + this.gridColumn77.Name = "gridColumn77"; + this.gridColumn77.OptionsColumn.AllowEdit = false; + this.gridColumn77.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn77.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn77.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn77.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn77.OptionsColumn.ReadOnly = true; + this.gridColumn77.OptionsFilter.AllowFilter = false; + this.gridColumn77.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); + this.gridColumn77.Visible = true; + this.gridColumn77.VisibleIndex = 3; + this.gridColumn77.Width = 200; // - // gridColumn62 + // gridColumn79 // - this.gridColumn62.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn62.AppearanceCell.Options.UseFont = true; - this.gridColumn62.Caption = "体检类型"; - this.gridColumn62.ColumnEdit = this.repositoryItemComboBox3; - this.gridColumn62.FieldName = "Type"; - this.gridColumn62.Name = "gridColumn62"; - this.gridColumn62.OptionsColumn.AllowEdit = false; - this.gridColumn62.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn62.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn62.OptionsColumn.ReadOnly = true; - this.gridColumn62.Visible = true; - this.gridColumn62.VisibleIndex = 5; - this.gridColumn62.Width = 100; + this.gridColumn79.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn79.AppearanceCell.Options.UseFont = true; + this.gridColumn79.Caption = "收费价格"; + this.gridColumn79.DisplayFormat.FormatString = "c"; + this.gridColumn79.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn79.FieldName = "Price"; + this.gridColumn79.GroupFormat.FormatString = "c"; + this.gridColumn79.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn79.Name = "gridColumn79"; + this.gridColumn79.OptionsColumn.AllowEdit = false; + this.gridColumn79.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn79.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn79.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn79.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn79.OptionsColumn.ReadOnly = true; + this.gridColumn79.OptionsFilter.AllowFilter = false; + this.gridColumn79.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Price", "¥{0:0.##}")}); + this.gridColumn79.Visible = true; + this.gridColumn79.VisibleIndex = 4; + this.gridColumn79.Width = 63; // - // repositoryItemComboBox3 + // gridColumn78 // - this.repositoryItemComboBox3.AutoHeight = false; - this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { - new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); - this.repositoryItemComboBox3.Name = "repositoryItemComboBox3"; + this.gridColumn78.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn78.AppearanceCell.Options.UseFont = true; + this.gridColumn78.Caption = "核算价格"; + this.gridColumn78.FieldName = "SettlePrice"; + this.gridColumn78.Name = "gridColumn78"; + this.gridColumn78.OptionsColumn.AllowEdit = false; + this.gridColumn78.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn78.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn78.OptionsColumn.ReadOnly = true; + this.gridColumn78.OptionsFilter.AllowFilter = false; + this.gridColumn78.Visible = true; + this.gridColumn78.VisibleIndex = 5; + this.gridColumn78.Width = 63; // - // gridColumn63 + // gridColumn80 // - this.gridColumn63.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn63.AppearanceCell.Options.UseFont = true; - this.gridColumn63.Caption = "模板同步时间"; - this.gridColumn63.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn63.FieldName = "CheckTime"; - this.gridColumn63.Name = "gridColumn63"; - this.gridColumn63.OptionsColumn.AllowEdit = false; - this.gridColumn63.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn63.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn63.OptionsColumn.ReadOnly = true; - this.gridColumn63.Visible = true; - this.gridColumn63.VisibleIndex = 6; - this.gridColumn63.Width = 130; + this.gridColumn80.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn80.AppearanceCell.Options.UseFont = true; + this.gridColumn80.Caption = "执行科室"; + this.gridColumn80.FieldName = "DeptName"; + this.gridColumn80.Name = "gridColumn80"; + this.gridColumn80.OptionsColumn.AllowEdit = false; + this.gridColumn80.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn80.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn80.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn80.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn80.OptionsColumn.ReadOnly = true; + this.gridColumn80.OptionsFilter.AllowFilter = false; + this.gridColumn80.Visible = true; + this.gridColumn80.VisibleIndex = 6; + this.gridColumn80.Width = 70; // - // gridColumn64 - // - this.gridColumn64.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn64.AppearanceCell.Options.UseFont = true; - this.gridColumn64.Caption = "同步人"; - this.gridColumn64.FieldName = "Checker"; - this.gridColumn64.Name = "gridColumn64"; - this.gridColumn64.OptionsColumn.AllowEdit = false; - this.gridColumn64.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn64.OptionsColumn.AllowMove = false; - this.gridColumn64.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn64.OptionsColumn.ReadOnly = true; - this.gridColumn64.Visible = true; - this.gridColumn64.VisibleIndex = 7; - this.gridColumn64.Width = 60; + // gridColumn81 // - // gridColumn65 + this.gridColumn81.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn81.AppearanceCell.Options.UseFont = true; + this.gridColumn81.Caption = "ID"; + this.gridColumn81.FieldName = "ID"; + this.gridColumn81.Name = "gridColumn81"; + this.gridColumn81.OptionsColumn.AllowEdit = false; + this.gridColumn81.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn81.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn81.OptionsColumn.ReadOnly = true; + this.gridColumn81.Visible = true; + this.gridColumn81.VisibleIndex = 7; + this.gridColumn81.Width = 40; // - this.gridColumn65.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn65.AppearanceCell.Options.UseFont = true; - this.gridColumn65.Caption = "OID"; - this.gridColumn65.FieldName = "OID"; - this.gridColumn65.Name = "gridColumn65"; - this.gridColumn65.OptionsColumn.AllowEdit = false; - this.gridColumn65.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn65.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn65.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn65.OptionsColumn.ReadOnly = true; - this.gridColumn65.OptionsFilter.AllowFilter = false; - this.gridColumn65.Visible = true; - this.gridColumn65.VisibleIndex = 8; - this.gridColumn65.Width = 40; + // splitter4 // - // gridColumn66 + this.splitter4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); + this.splitter4.Dock = System.Windows.Forms.DockStyle.Right; + this.splitter4.Location = new System.Drawing.Point(704, 3); + this.splitter4.Name = "splitter4"; + this.splitter4.Size = new System.Drawing.Size(4, 519); + this.splitter4.TabIndex = 142; + this.splitter4.TabStop = false; // - this.gridColumn66.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn66.AppearanceCell.Options.UseFont = true; - this.gridColumn66.Caption = "ID"; - this.gridColumn66.FieldName = "ID"; - this.gridColumn66.Name = "gridColumn66"; - this.gridColumn66.OptionsColumn.AllowEdit = false; - this.gridColumn66.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn66.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn66.OptionsColumn.ReadOnly = true; - this.gridColumn66.Visible = true; - this.gridColumn66.VisibleIndex = 9; - this.gridColumn66.Width = 40; + // panel9 // - // panel4 + this.panel9.Controls.Add(this.tabControl1); + this.panel9.Dock = System.Windows.Forms.DockStyle.Right; + this.panel9.Location = new System.Drawing.Point(708, 3); + this.panel9.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel9.Name = "panel9"; + this.panel9.Size = new System.Drawing.Size(485, 519); + this.panel9.TabIndex = 141; // - this.panel4.Controls.Add(this.BtnApplyGroupFeeItem); - this.panel4.Dock = System.Windows.Forms.DockStyle.Top; - this.panel4.Location = new System.Drawing.Point(0, 0); - this.panel4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel4.Name = "panel4"; - this.panel4.Size = new System.Drawing.Size(1196, 44); - this.panel4.TabIndex = 141; + // tabControl1 // - // BtnApplyGroupFeeItem + this.tabControl1.Controls.Add(this.TpPack); + this.tabControl1.Controls.Add(this.TpFeeItem); + this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControl1.Location = new System.Drawing.Point(0, 0); + this.tabControl1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.tabControl1.Name = "tabControl1"; + this.tabControl1.SelectedIndex = 0; + this.tabControl1.Size = new System.Drawing.Size(485, 519); + this.tabControl1.TabIndex = 139; // - this.BtnApplyGroupFeeItem.BackColor = System.Drawing.Color.White; - this.BtnApplyGroupFeeItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; - this.BtnApplyGroupFeeItem.Dock = System.Windows.Forms.DockStyle.Right; - this.BtnApplyGroupFeeItem.FlatAppearance.BorderSize = 0; - this.BtnApplyGroupFeeItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.BtnApplyGroupFeeItem.Image = global::PEIS.Properties.Resources.添加; - this.BtnApplyGroupFeeItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.BtnApplyGroupFeeItem.Location = new System.Drawing.Point(1013, 0); - this.BtnApplyGroupFeeItem.Name = "BtnApplyGroupFeeItem"; - this.BtnApplyGroupFeeItem.Size = new System.Drawing.Size(183, 44); - this.BtnApplyGroupFeeItem.TabIndex = 34; - this.BtnApplyGroupFeeItem.Text = "应用收费模板到团体成员"; - this.BtnApplyGroupFeeItem.TextAlign = System.Drawing.ContentAlignment.MiddleRight; - this.BtnApplyGroupFeeItem.UseVisualStyleBackColor = true; + // TpPack // - // TpPerson + this.TpPack.Controls.Add(this.DgcPack); + this.TpPack.Location = new System.Drawing.Point(4, 23); + this.TpPack.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.TpPack.Name = "TpPack"; + this.TpPack.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.TpPack.Size = new System.Drawing.Size(477, 492); + this.TpPack.TabIndex = 1; + this.TpPack.Text = "套餐"; + this.TpPack.UseVisualStyleBackColor = true; // - this.TpPerson.Controls.Add(this.panel6); - this.TpPerson.Controls.Add(this.panel7); - this.TpPerson.Controls.Add(this.splitterControl1); - this.TpPerson.Controls.Add(this.panel11); - this.TpPerson.Image = global::PEIS.Properties.Resources.个人信息__1_; - this.TpPerson.Name = "TpPerson"; - this.TpPerson.Size = new System.Drawing.Size(1196, 736); - this.TpPerson.Text = "团体成员收费"; + // DgcPack // - // panel6 + this.DgcPack.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcPack.Location = new System.Drawing.Point(2, 3); + this.DgcPack.MainView = this.DgvPack; + this.DgcPack.Name = "DgcPack"; + this.DgcPack.Size = new System.Drawing.Size(473, 486); + this.DgcPack.TabIndex = 122; + this.DgcPack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvPack, + this.gridView2}); // - this.panel6.Controls.Add(this.panel13); - this.panel6.Controls.Add(this.splitter6); - this.panel6.Controls.Add(this.panel12); - this.panel6.Controls.Add(this.splitter5); - this.panel6.Controls.Add(this.panel8); - this.panel6.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel6.Location = new System.Drawing.Point(285, 42); - this.panel6.Name = "panel6"; - this.panel6.Size = new System.Drawing.Size(911, 694); - this.panel6.TabIndex = 147; + // DgvPack // - // panel13 + this.DgvPack.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvPack.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; + this.DgvPack.Appearance.FooterPanel.Options.UseFont = true; + this.DgvPack.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvPack.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvPack.Appearance.GroupRow.Options.UseFont = true; + this.DgvPack.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvPack.Appearance.Row.Options.UseFont = true; + this.DgvPack.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn82, + this.gridColumn83, + this.gridColumn84, + this.gridColumn85, + this.gridColumn86, + this.gridColumn87, + this.gridColumn88}); + this.DgvPack.FixedLineWidth = 1; + this.DgvPack.GridControl = this.DgcPack; + this.DgvPack.IndicatorWidth = 30; + this.DgvPack.Name = "DgvPack"; + this.DgvPack.OptionsSelection.MultiSelect = true; + this.DgvPack.OptionsView.ColumnAutoWidth = false; + this.DgvPack.OptionsView.ShowGroupPanel = false; + this.DgvPack.RowHeight = 40; // - this.panel13.Controls.Add(this.xtraTabControl4); - this.panel13.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel13.Location = new System.Drawing.Point(555, 394); - this.panel13.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel13.Name = "panel13"; - this.panel13.Size = new System.Drawing.Size(356, 300); - this.panel13.TabIndex = 155; + // gridColumn82 // - // xtraTabControl4 + this.gridColumn82.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn82.AppearanceCell.Options.UseFont = true; + this.gridColumn82.Caption = "套餐名称"; + this.gridColumn82.FieldName = "Name"; + this.gridColumn82.Name = "gridColumn82"; + this.gridColumn82.OptionsColumn.AllowEdit = false; + this.gridColumn82.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn82.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn82.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn82.OptionsColumn.ReadOnly = true; + this.gridColumn82.OptionsFilter.AllowFilter = false; + this.gridColumn82.Visible = true; + this.gridColumn82.VisibleIndex = 0; + this.gridColumn82.Width = 161; // - this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill; - this.xtraTabControl4.Location = new System.Drawing.Point(0, 0); - this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.xtraTabControl4.Name = "xtraTabControl4"; - this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4; - this.xtraTabControl4.Size = new System.Drawing.Size(356, 300); - this.xtraTabControl4.TabIndex = 1; - this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { - this.xtraTabPage4}); + // gridColumn83 // - // xtraTabPage4 + this.gridColumn83.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn83.AppearanceCell.Options.UseFont = true; + this.gridColumn83.Caption = "适用性别"; + this.gridColumn83.FieldName = "Sex"; + this.gridColumn83.Name = "gridColumn83"; + this.gridColumn83.OptionsColumn.AllowEdit = false; + this.gridColumn83.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn83.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn83.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn83.OptionsColumn.ReadOnly = true; + this.gridColumn83.OptionsFilter.AllowFilter = false; + this.gridColumn83.Visible = true; + this.gridColumn83.VisibleIndex = 1; + this.gridColumn83.Width = 101; // - this.xtraTabPage4.Controls.Add(this.DgcCheckCost2); - this.xtraTabPage4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.xtraTabPage4.Name = "xtraTabPage4"; - this.xtraTabPage4.Size = new System.Drawing.Size(350, 271); - this.xtraTabPage4.Text = "个人订单"; + // gridColumn84 // - // DgcCheckCost2 + this.gridColumn84.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn84.AppearanceCell.Options.UseFont = true; + this.gridColumn84.Caption = "适用婚态"; + this.gridColumn84.FieldName = "Marriage"; + this.gridColumn84.Name = "gridColumn84"; + this.gridColumn84.OptionsColumn.AllowEdit = false; + this.gridColumn84.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn84.OptionsColumn.AllowMove = false; + this.gridColumn84.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn84.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn84.OptionsColumn.ReadOnly = true; + this.gridColumn84.OptionsFilter.AllowFilter = false; + this.gridColumn84.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); + this.gridColumn84.Visible = true; + this.gridColumn84.VisibleIndex = 2; + this.gridColumn84.Width = 110; // - this.DgcCheckCost2.ContextMenuStrip = this.PersonCostFastMenu; - this.DgcCheckCost2.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcCheckCost2.Location = new System.Drawing.Point(0, 0); - this.DgcCheckCost2.MainView = this.DgvCheckCost2; - this.DgcCheckCost2.Name = "DgcCheckCost2"; - this.DgcCheckCost2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { - this.repositoryItemMemoEdit2}); - this.DgcCheckCost2.Size = new System.Drawing.Size(350, 271); - this.DgcCheckCost2.TabIndex = 148; - this.DgcCheckCost2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvCheckCost2}); + // gridColumn85 // - // PersonCostFastMenu - // - this.PersonCostFastMenu.ImageScalingSize = new System.Drawing.Size(20, 20); - this.PersonCostFastMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.PFastCharge, - this.PFastAllCharge, - this.PFastDeleteCost, - this.PFastCancelCharge, - this.PFastChangeCost, - this.toolStripMenuItem14, - this.toolStripMenuItem15, - this.PFastRefreshCost}); - this.PersonCostFastMenu.Name = "CostFastMenu"; - this.PersonCostFastMenu.Size = new System.Drawing.Size(161, 276); + this.gridColumn85.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn85.AppearanceCell.Options.UseFont = true; + this.gridColumn85.Caption = "序号"; + this.gridColumn85.FieldName = "Seq"; + this.gridColumn85.Name = "gridColumn85"; + this.gridColumn85.OptionsColumn.AllowEdit = false; + this.gridColumn85.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn85.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn85.OptionsColumn.ReadOnly = true; + this.gridColumn85.OptionsFilter.AllowFilter = false; + this.gridColumn85.Visible = true; + this.gridColumn85.VisibleIndex = 3; + this.gridColumn85.Width = 50; // - // PFastCharge + // gridColumn86 // - this.PFastCharge.Image = ((System.Drawing.Image)(resources.GetObject("PFastCharge.Image"))); - this.PFastCharge.Name = "PFastCharge"; - this.PFastCharge.Size = new System.Drawing.Size(160, 34); - this.PFastCharge.Text = "记账"; + this.gridColumn86.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn86.AppearanceCell.Options.UseFont = true; + this.gridColumn86.Caption = "创建人"; + this.gridColumn86.FieldName = "Creator"; + this.gridColumn86.Name = "gridColumn86"; + this.gridColumn86.OptionsColumn.AllowEdit = false; + this.gridColumn86.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn86.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn86.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn86.OptionsColumn.ReadOnly = true; + this.gridColumn86.OptionsFilter.AllowFilter = false; + this.gridColumn86.Visible = true; + this.gridColumn86.VisibleIndex = 4; + this.gridColumn86.Width = 80; // - // PFastAllCharge + // gridColumn87 // - this.PFastAllCharge.Image = ((System.Drawing.Image)(resources.GetObject("PFastAllCharge.Image"))); - this.PFastAllCharge.Name = "PFastAllCharge"; - this.PFastAllCharge.Size = new System.Drawing.Size(160, 34); - this.PFastAllCharge.Text = "全部记账"; + this.gridColumn87.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn87.AppearanceCell.Options.UseFont = true; + this.gridColumn87.Caption = "创建时间"; + this.gridColumn87.FieldName = "CreateTime"; + this.gridColumn87.Name = "gridColumn87"; + this.gridColumn87.OptionsColumn.AllowEdit = false; + this.gridColumn87.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn87.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn87.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn87.OptionsColumn.ReadOnly = true; + this.gridColumn87.OptionsFilter.AllowFilter = false; + this.gridColumn87.Visible = true; + this.gridColumn87.VisibleIndex = 5; + this.gridColumn87.Width = 130; // - // PFastDeleteCost + // gridColumn88 // - this.PFastDeleteCost.Image = ((System.Drawing.Image)(resources.GetObject("PFastDeleteCost.Image"))); - this.PFastDeleteCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PFastDeleteCost.Name = "PFastDeleteCost"; - this.PFastDeleteCost.Size = new System.Drawing.Size(160, 34); - this.PFastDeleteCost.Text = "删除订单"; + this.gridColumn88.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn88.AppearanceCell.Options.UseFont = true; + this.gridColumn88.Caption = "ID"; + this.gridColumn88.FieldName = "ID"; + this.gridColumn88.Name = "gridColumn88"; + this.gridColumn88.OptionsColumn.AllowEdit = false; + this.gridColumn88.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn88.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn88.OptionsColumn.ReadOnly = true; + this.gridColumn88.Visible = true; + this.gridColumn88.VisibleIndex = 6; + this.gridColumn88.Width = 40; // - // PFastCancelCharge + // gridView2 // - this.PFastCancelCharge.Image = ((System.Drawing.Image)(resources.GetObject("PFastCancelCharge.Image"))); - this.PFastCancelCharge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PFastCancelCharge.Name = "PFastCancelCharge"; - this.PFastCancelCharge.Size = new System.Drawing.Size(160, 34); - this.PFastCancelCharge.Text = "取消记账"; + this.gridView2.GridControl = this.DgcPack; + this.gridView2.Name = "gridView2"; // - // PFastChangeCost + // TpFeeItem // - this.PFastChangeCost.Image = global::PEIS.Properties.Resources.刷新; - this.PFastChangeCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PFastChangeCost.Name = "PFastChangeCost"; - this.PFastChangeCost.Size = new System.Drawing.Size(160, 34); - this.PFastChangeCost.Text = "订单转换"; + this.TpFeeItem.Controls.Add(this.DgcFeeItem); + this.TpFeeItem.Controls.Add(this.FeeItemSearch); + this.TpFeeItem.Location = new System.Drawing.Point(4, 23); + this.TpFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.TpFeeItem.Name = "TpFeeItem"; + this.TpFeeItem.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.TpFeeItem.Size = new System.Drawing.Size(477, 493); + this.TpFeeItem.TabIndex = 0; + this.TpFeeItem.Text = "收费项目"; + this.TpFeeItem.UseVisualStyleBackColor = true; // - // toolStripMenuItem14 + // DgcFeeItem // - this.toolStripMenuItem14.Name = "toolStripMenuItem14"; - this.toolStripMenuItem14.Size = new System.Drawing.Size(160, 34); - this.toolStripMenuItem14.Text = "全部删除订单"; - this.toolStripMenuItem14.Visible = false; + this.DgcFeeItem.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcFeeItem.Location = new System.Drawing.Point(2, 25); + this.DgcFeeItem.MainView = this.DgvFeeItem; + this.DgcFeeItem.Name = "DgcFeeItem"; + this.DgcFeeItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { + this.repositoryItemCheckEdit1}); + this.DgcFeeItem.Size = new System.Drawing.Size(473, 465); + this.DgcFeeItem.TabIndex = 137; + this.DgcFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvFeeItem, + this.gridView1}); // - // toolStripMenuItem15 + // DgvFeeItem // - this.toolStripMenuItem15.Name = "toolStripMenuItem15"; - this.toolStripMenuItem15.Size = new System.Drawing.Size(160, 34); - this.toolStripMenuItem15.Text = "全部取消记账"; - this.toolStripMenuItem15.Visible = false; + this.DgvFeeItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold); + this.DgvFeeItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; + this.DgvFeeItem.Appearance.FooterPanel.Options.UseFont = true; + this.DgvFeeItem.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvFeeItem.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); + this.DgvFeeItem.Appearance.GroupRow.Options.UseFont = true; + this.DgvFeeItem.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); + this.DgvFeeItem.Appearance.Row.Options.UseFont = true; + this.DgvFeeItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn72, + this.gridColumn70, + this.gridColumn69, + this.gridColumn71, + this.GcSettlePrice, + this.gridColumn67, + this.gridColumn68, + this.gridColumn73}); + this.DgvFeeItem.FixedLineWidth = 1; + this.DgvFeeItem.GridControl = this.DgcFeeItem; + this.DgvFeeItem.IndicatorWidth = 30; + this.DgvFeeItem.Name = "DgvFeeItem"; + this.DgvFeeItem.OptionsSelection.MultiSelect = true; + this.DgvFeeItem.OptionsView.ColumnAutoWidth = false; + this.DgvFeeItem.OptionsView.ShowGroupPanel = false; + this.DgvFeeItem.RowHeight = 40; // - // PFastRefreshCost + // gridColumn72 // - this.PFastRefreshCost.Image = global::PEIS.Properties.Resources.刷新; - this.PFastRefreshCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PFastRefreshCost.Name = "PFastRefreshCost"; - this.PFastRefreshCost.Size = new System.Drawing.Size(160, 34); - this.PFastRefreshCost.Text = "刷新订单"; - this.PFastRefreshCost.Visible = false; + this.gridColumn72.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn72.AppearanceCell.Options.UseFont = true; + this.gridColumn72.Caption = "执行科室"; + this.gridColumn72.FieldName = "DeptName"; + this.gridColumn72.Name = "gridColumn72"; + this.gridColumn72.OptionsColumn.AllowEdit = false; + this.gridColumn72.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn72.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn72.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn72.OptionsColumn.ReadOnly = true; + this.gridColumn72.OptionsFilter.AllowFilter = false; + this.gridColumn72.Visible = true; + this.gridColumn72.VisibleIndex = 0; + this.gridColumn72.Width = 105; // - // DgvCheckCost2 + // gridColumn70 // - this.DgvCheckCost2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); - this.DgvCheckCost2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); - this.DgvCheckCost2.Appearance.FooterPanel.Options.UseFont = true; - this.DgvCheckCost2.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvCheckCost2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); - this.DgvCheckCost2.Appearance.GroupRow.Options.UseFont = true; - this.DgvCheckCost2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); - this.DgvCheckCost2.Appearance.Row.Options.UseFont = true; - this.DgvCheckCost2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn143, - this.gridColumn144, - this.gridColumn145, - this.gridColumn146, - this.gridColumn147, - this.gridColumn148, - this.gridColumn149, - this.gridColumn150, - this.gridColumn151, - this.gridColumn152, - this.gridColumn157, - this.gridColumn158, - this.gridColumn159, - this.gridColumn160, - this.gridColumn100, - this.gridColumn99}); - this.DgvCheckCost2.FixedLineWidth = 1; - gridFormatRule1.ApplyToRow = true; - gridFormatRule1.Column = this.gridColumn99; - gridFormatRule1.Name = "Format0"; - formatConditionRuleExpression1.Appearance.ForeColor = System.Drawing.Color.Gray; - formatConditionRuleExpression1.Appearance.Options.UseForeColor = true; - formatConditionRuleExpression1.Expression = "[CancelTime] Is Not Null"; - formatConditionRuleExpression1.PredefinedName = "Strikeout Text"; - gridFormatRule1.Rule = formatConditionRuleExpression1; - this.DgvCheckCost2.FormatRules.Add(gridFormatRule1); - this.DgvCheckCost2.GridControl = this.DgcCheckCost2; - this.DgvCheckCost2.GroupFormat = "{0}"; - this.DgvCheckCost2.IndicatorWidth = 40; - this.DgvCheckCost2.Name = "DgvCheckCost2"; - this.DgvCheckCost2.OptionsCustomization.AllowFilter = false; - this.DgvCheckCost2.OptionsMenu.EnableColumnMenu = false; - this.DgvCheckCost2.OptionsSelection.MultiSelect = true; - this.DgvCheckCost2.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect; - this.DgvCheckCost2.OptionsView.ColumnAutoWidth = false; - this.DgvCheckCost2.OptionsView.ShowFooter = true; - this.DgvCheckCost2.OptionsView.ShowGroupPanel = false; - this.DgvCheckCost2.OptionsView.ShowIndicator = false; - this.DgvCheckCost2.RowHeight = 40; + this.gridColumn70.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn70.AppearanceCell.Options.UseFont = true; + this.gridColumn70.AppearanceCell.Options.UseForeColor = true; + this.gridColumn70.Caption = "项目名称"; + this.gridColumn70.FieldName = "FeeItemName"; + this.gridColumn70.Name = "gridColumn70"; + this.gridColumn70.OptionsColumn.AllowEdit = false; + this.gridColumn70.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn70.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn70.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn70.OptionsColumn.ReadOnly = true; + this.gridColumn70.OptionsFilter.AllowFilter = false; + this.gridColumn70.Visible = true; + this.gridColumn70.VisibleIndex = 1; + this.gridColumn70.Width = 200; // - // gridColumn143 + // gridColumn69 // - this.gridColumn143.Caption = "订单号"; - this.gridColumn143.FieldName = "ID"; - this.gridColumn143.Name = "gridColumn143"; - this.gridColumn143.OptionsColumn.AllowEdit = false; - this.gridColumn143.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn143.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn143.OptionsColumn.AllowMove = false; - this.gridColumn143.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn143.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn143.OptionsColumn.ReadOnly = true; - this.gridColumn143.OptionsFilter.AllowFilter = false; - this.gridColumn143.Visible = true; - this.gridColumn143.VisibleIndex = 0; - this.gridColumn143.Width = 63; - // - // gridColumn144 - // - this.gridColumn144.Caption = "体检号"; - this.gridColumn144.FieldName = "EID"; - this.gridColumn144.Name = "gridColumn144"; - this.gridColumn144.OptionsColumn.AllowEdit = false; - this.gridColumn144.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn144.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn144.OptionsColumn.AllowMove = false; - this.gridColumn144.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn144.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn144.OptionsColumn.ReadOnly = true; - this.gridColumn144.OptionsFilter.AllowFilter = false; - this.gridColumn144.Visible = true; - this.gridColumn144.VisibleIndex = 1; + this.gridColumn69.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn69.AppearanceCell.Options.UseFont = true; + this.gridColumn69.Caption = "费用代码"; + this.gridColumn69.FieldName = "FeeItemCode"; + this.gridColumn69.Name = "gridColumn69"; + this.gridColumn69.OptionsColumn.AllowEdit = false; + this.gridColumn69.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn69.OptionsColumn.AllowMove = false; + this.gridColumn69.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn69.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn69.OptionsColumn.ReadOnly = true; + this.gridColumn69.OptionsFilter.AllowFilter = false; + this.gridColumn69.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); + this.gridColumn69.Visible = true; + this.gridColumn69.VisibleIndex = 2; + this.gridColumn69.Width = 80; // - // gridColumn145 + // gridColumn71 // - this.gridColumn145.Caption = "姓名"; - this.gridColumn145.FieldName = "Name"; - this.gridColumn145.Name = "gridColumn145"; - this.gridColumn145.OptionsColumn.AllowEdit = false; - this.gridColumn145.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn145.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn145.OptionsColumn.AllowMove = false; - this.gridColumn145.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn145.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn145.OptionsColumn.ReadOnly = true; - this.gridColumn145.OptionsFilter.AllowFilter = false; - this.gridColumn145.Visible = true; - this.gridColumn145.VisibleIndex = 2; + this.gridColumn71.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn71.AppearanceCell.Options.UseFont = true; + this.gridColumn71.Caption = "收费价格"; + this.gridColumn71.FieldName = "Price"; + this.gridColumn71.Name = "gridColumn71"; + this.gridColumn71.OptionsColumn.AllowEdit = false; + this.gridColumn71.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn71.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn71.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn71.OptionsColumn.ReadOnly = true; + this.gridColumn71.OptionsFilter.AllowFilter = false; + this.gridColumn71.Visible = true; + this.gridColumn71.VisibleIndex = 3; + this.gridColumn71.Width = 60; // - // gridColumn146 + // GcSettlePrice // - this.gridColumn146.Caption = "费用合计"; - this.gridColumn146.DisplayFormat.FormatString = "c"; - this.gridColumn146.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn146.FieldName = "Sum"; - this.gridColumn146.Name = "gridColumn146"; - this.gridColumn146.OptionsColumn.AllowEdit = false; - this.gridColumn146.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn146.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn146.OptionsColumn.AllowMove = false; - this.gridColumn146.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn146.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn146.OptionsColumn.ReadOnly = true; - this.gridColumn146.OptionsFilter.AllowFilter = false; - this.gridColumn146.Visible = true; - this.gridColumn146.VisibleIndex = 3; - this.gridColumn146.Width = 101; + this.GcSettlePrice.Caption = "核算价格"; + this.GcSettlePrice.FieldName = "SettlePrice"; + this.GcSettlePrice.Name = "GcSettlePrice"; + this.GcSettlePrice.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.GcSettlePrice.OptionsFilter.AllowFilter = false; + this.GcSettlePrice.Visible = true; + this.GcSettlePrice.VisibleIndex = 4; // - // gridColumn147 + // gridColumn67 // - this.gridColumn147.Caption = "折扣"; - this.gridColumn147.FieldName = "Discount"; - this.gridColumn147.Name = "gridColumn147"; - this.gridColumn147.OptionsColumn.AllowEdit = false; - this.gridColumn147.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn147.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn147.OptionsColumn.AllowMove = false; - this.gridColumn147.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn147.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn147.OptionsColumn.ReadOnly = true; - this.gridColumn147.OptionsFilter.AllowFilter = false; - this.gridColumn147.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); - this.gridColumn147.Visible = true; - this.gridColumn147.VisibleIndex = 4; - this.gridColumn147.Width = 73; + this.gridColumn67.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn67.AppearanceCell.Options.UseFont = true; + this.gridColumn67.Caption = "项目类别"; + this.gridColumn67.FieldName = "ItemClass"; + this.gridColumn67.Name = "gridColumn67"; + this.gridColumn67.OptionsColumn.AllowEdit = false; + this.gridColumn67.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn67.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn67.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn67.OptionsColumn.ReadOnly = true; + this.gridColumn67.OptionsFilter.AllowFilter = false; + this.gridColumn67.Visible = true; + this.gridColumn67.VisibleIndex = 5; + this.gridColumn67.Width = 76; // - // gridColumn148 + // gridColumn68 // - this.gridColumn148.Caption = "实收费用"; - this.gridColumn148.DisplayFormat.FormatString = "c"; - this.gridColumn148.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn148.FieldName = "Fee"; - this.gridColumn148.GroupFormat.FormatString = "c"; - this.gridColumn148.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn148.Name = "gridColumn148"; - this.gridColumn148.OptionsColumn.AllowEdit = false; - this.gridColumn148.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn148.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn148.OptionsColumn.AllowMove = false; - this.gridColumn148.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn148.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn148.OptionsColumn.ReadOnly = true; - this.gridColumn148.OptionsFilter.AllowFilter = false; - this.gridColumn148.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Fee", "¥{0:0.##}")}); - this.gridColumn148.Visible = true; - this.gridColumn148.VisibleIndex = 5; - this.gridColumn148.Width = 120; + this.gridColumn68.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn68.AppearanceCell.Options.UseFont = true; + this.gridColumn68.Caption = "类型"; + this.gridColumn68.FieldName = "UnitName"; + this.gridColumn68.Name = "gridColumn68"; + this.gridColumn68.OptionsColumn.AllowEdit = false; + this.gridColumn68.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn68.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn68.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn68.OptionsColumn.ReadOnly = true; + this.gridColumn68.OptionsFilter.AllowFilter = false; + this.gridColumn68.Visible = true; + this.gridColumn68.VisibleIndex = 6; + this.gridColumn68.Width = 50; // - // gridColumn149 + // gridColumn73 // - this.gridColumn149.Caption = "创建人"; - this.gridColumn149.FieldName = "Creator"; - this.gridColumn149.Name = "gridColumn149"; - this.gridColumn149.OptionsColumn.AllowEdit = false; - this.gridColumn149.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn149.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn149.OptionsColumn.AllowMove = false; - this.gridColumn149.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn149.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn149.OptionsColumn.ReadOnly = true; - this.gridColumn149.OptionsFilter.AllowFilter = false; - this.gridColumn149.Visible = true; - this.gridColumn149.VisibleIndex = 6; - this.gridColumn149.Width = 70; + this.gridColumn73.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn73.AppearanceCell.Options.UseFont = true; + this.gridColumn73.Caption = "ID"; + this.gridColumn73.FieldName = "ID"; + this.gridColumn73.Name = "gridColumn73"; + this.gridColumn73.Visible = true; + this.gridColumn73.VisibleIndex = 7; + this.gridColumn73.Width = 40; // - // gridColumn150 + // repositoryItemCheckEdit1 // - this.gridColumn150.Caption = "创建时间"; - this.gridColumn150.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn150.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn150.FieldName = "CreateTime"; - this.gridColumn150.Name = "gridColumn150"; - this.gridColumn150.OptionsColumn.AllowEdit = false; - this.gridColumn150.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn150.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn150.OptionsColumn.AllowMove = false; - this.gridColumn150.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn150.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn150.OptionsColumn.ReadOnly = true; - this.gridColumn150.OptionsFilter.AllowFilter = false; - this.gridColumn150.Visible = true; - this.gridColumn150.VisibleIndex = 7; - this.gridColumn150.Width = 130; + this.repositoryItemCheckEdit1.AutoHeight = false; + this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1"; // - // gridColumn151 + // gridView1 // - this.gridColumn151.Caption = "记账人"; - this.gridColumn151.FieldName = "Charger"; - this.gridColumn151.Name = "gridColumn151"; - this.gridColumn151.OptionsColumn.AllowEdit = false; - this.gridColumn151.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn151.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn151.OptionsColumn.AllowMove = false; - this.gridColumn151.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn151.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn151.OptionsColumn.ReadOnly = true; - this.gridColumn151.OptionsFilter.AllowFilter = false; - this.gridColumn151.Visible = true; - this.gridColumn151.VisibleIndex = 8; + this.gridView1.GridControl = this.DgcFeeItem; + this.gridView1.Name = "gridView1"; // - // gridColumn152 + // FeeItemSearch // - this.gridColumn152.Caption = "记账时间"; - this.gridColumn152.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn152.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn152.FieldName = "ChargeTime"; - this.gridColumn152.Name = "gridColumn152"; - this.gridColumn152.OptionsColumn.AllowEdit = false; - this.gridColumn152.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn152.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn152.OptionsColumn.AllowMove = false; - this.gridColumn152.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn152.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn152.OptionsColumn.ReadOnly = true; - this.gridColumn152.OptionsFilter.AllowFilter = false; - this.gridColumn152.Visible = true; - this.gridColumn152.VisibleIndex = 9; - this.gridColumn152.Width = 130; + this.FeeItemSearch.Dock = System.Windows.Forms.DockStyle.Top; + this.FeeItemSearch.Location = new System.Drawing.Point(2, 3); + this.FeeItemSearch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.FeeItemSearch.Name = "FeeItemSearch"; + this.FeeItemSearch.Size = new System.Drawing.Size(473, 22); + this.FeeItemSearch.TabIndex = 136; // - // gridColumn157 + // DgcGroup2 // - this.gridColumn157.Caption = "发送人"; - this.gridColumn157.FieldName = "Sender"; - this.gridColumn157.Name = "gridColumn157"; - this.gridColumn157.OptionsColumn.AllowEdit = false; - this.gridColumn157.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn157.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn157.OptionsColumn.AllowMove = false; - this.gridColumn157.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn157.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn157.OptionsColumn.ReadOnly = true; - this.gridColumn157.OptionsFilter.AllowFilter = false; - this.gridColumn157.Visible = true; - this.gridColumn157.VisibleIndex = 10; + this.DgcGroup2.Dock = System.Windows.Forms.DockStyle.Top; + this.DgcGroup2.Location = new System.Drawing.Point(0, 44); + this.DgcGroup2.MainView = this.DgvGroup2; + this.DgcGroup2.Name = "DgcGroup2"; + this.DgcGroup2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { + this.repositoryItemComboBox1, + this.repositoryItemComboBox2, + this.repositoryItemComboBox3}); + this.DgcGroup2.Size = new System.Drawing.Size(1196, 167); + this.DgcGroup2.TabIndex = 142; + this.DgcGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvGroup2}); // - // gridColumn158 + // DgvGroup2 // - this.gridColumn158.Caption = "发送时间"; - this.gridColumn158.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn158.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn158.FieldName = "SendTime"; - this.gridColumn158.Name = "gridColumn158"; - this.gridColumn158.OptionsColumn.AllowEdit = false; - this.gridColumn158.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn158.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn158.OptionsColumn.AllowMove = false; - this.gridColumn158.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn158.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn158.OptionsColumn.ReadOnly = true; - this.gridColumn158.OptionsFilter.AllowFilter = false; - this.gridColumn158.Visible = true; - this.gridColumn158.VisibleIndex = 11; - this.gridColumn158.Width = 130; + this.DgvGroup2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvGroup2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; + this.DgvGroup2.Appearance.FooterPanel.Options.UseFont = true; + this.DgvGroup2.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvGroup2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvGroup2.Appearance.GroupRow.Options.UseFont = true; + this.DgvGroup2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvGroup2.Appearance.Row.Options.UseFont = true; + this.DgvGroup2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn57, + this.gridColumn58, + this.gridColumn59, + this.gridColumn60, + this.gridColumn61, + this.gridColumn62, + this.gridColumn63, + this.gridColumn64, + this.gridColumn65, + this.gridColumn66}); + this.DgvGroup2.FixedLineWidth = 1; + this.DgvGroup2.GridControl = this.DgcGroup2; + this.DgvGroup2.IndicatorWidth = 30; + this.DgvGroup2.Name = "DgvGroup2"; + this.DgvGroup2.OptionsSelection.MultiSelect = true; + this.DgvGroup2.OptionsView.ColumnAutoWidth = false; + this.DgvGroup2.OptionsView.ShowGroupPanel = false; + this.DgvGroup2.RowHeight = 40; // - // gridColumn159 + // gridColumn57 // - this.gridColumn159.Caption = "收费人"; - this.gridColumn159.FieldName = "Coster"; - this.gridColumn159.Name = "gridColumn159"; - this.gridColumn159.OptionsColumn.AllowEdit = false; - this.gridColumn159.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn159.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn159.OptionsColumn.AllowMove = false; - this.gridColumn159.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn159.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn159.OptionsColumn.ReadOnly = true; - this.gridColumn159.OptionsFilter.AllowFilter = false; - this.gridColumn159.Visible = true; - this.gridColumn159.VisibleIndex = 12; + this.gridColumn57.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn57.AppearanceCell.Options.UseFont = true; + this.gridColumn57.Caption = "分组"; + this.gridColumn57.FieldName = "Name"; + this.gridColumn57.Name = "gridColumn57"; + this.gridColumn57.OptionsColumn.AllowEdit = false; + this.gridColumn57.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn57.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn57.OptionsColumn.ReadOnly = true; + this.gridColumn57.Visible = true; + this.gridColumn57.VisibleIndex = 0; + this.gridColumn57.Width = 120; // - // gridColumn160 + // gridColumn58 // - this.gridColumn160.Caption = "收费时间"; - this.gridColumn160.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn160.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn160.FieldName = "CostTime"; - this.gridColumn160.Name = "gridColumn160"; - this.gridColumn160.OptionsColumn.AllowEdit = false; - this.gridColumn160.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn160.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn160.OptionsColumn.AllowMove = false; - this.gridColumn160.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn160.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn160.OptionsColumn.ReadOnly = true; - this.gridColumn160.OptionsFilter.AllowFilter = false; - this.gridColumn160.Visible = true; - this.gridColumn160.VisibleIndex = 13; - this.gridColumn160.Width = 130; + this.gridColumn58.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn58.AppearanceCell.Options.UseFont = true; + this.gridColumn58.Caption = "性别"; + this.gridColumn58.ColumnEdit = this.repositoryItemComboBox1; + this.gridColumn58.FieldName = "Sex"; + this.gridColumn58.Name = "gridColumn58"; + this.gridColumn58.OptionsColumn.AllowEdit = false; + this.gridColumn58.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn58.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn58.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn58.OptionsColumn.ReadOnly = true; + this.gridColumn58.OptionsFilter.AllowFilter = false; + this.gridColumn58.Visible = true; + this.gridColumn58.VisibleIndex = 1; // - // gridColumn100 + // repositoryItemComboBox1 // - this.gridColumn100.Caption = "退费人"; - this.gridColumn100.FieldName = "Cancer"; - this.gridColumn100.Name = "gridColumn100"; - this.gridColumn100.OptionsColumn.AllowEdit = false; - this.gridColumn100.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn100.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn100.OptionsColumn.AllowMove = false; - this.gridColumn100.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn100.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn100.OptionsColumn.ReadOnly = true; - this.gridColumn100.OptionsFilter.AllowFilter = false; - this.gridColumn100.Visible = true; - this.gridColumn100.VisibleIndex = 14; + this.repositoryItemComboBox1.AutoHeight = false; + this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); + this.repositoryItemComboBox1.Name = "repositoryItemComboBox1"; // - // repositoryItemMemoEdit2 + // gridColumn59 // - this.repositoryItemMemoEdit2.Appearance.Options.UseTextOptions = true; - this.repositoryItemMemoEdit2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.repositoryItemMemoEdit2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; - this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2"; + this.gridColumn59.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn59.AppearanceCell.Options.UseFont = true; + this.gridColumn59.Caption = "婚况"; + this.gridColumn59.ColumnEdit = this.repositoryItemComboBox2; + this.gridColumn59.FieldName = "Marriage"; + this.gridColumn59.Name = "gridColumn59"; + this.gridColumn59.OptionsColumn.AllowEdit = false; + this.gridColumn59.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn59.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn59.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn59.OptionsColumn.ReadOnly = true; + this.gridColumn59.OptionsFilter.AllowFilter = false; + this.gridColumn59.Visible = true; + this.gridColumn59.VisibleIndex = 2; // - // splitter6 + // repositoryItemComboBox2 // - this.splitter6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); - this.splitter6.Location = new System.Drawing.Point(550, 394); - this.splitter6.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.splitter6.Name = "splitter6"; - this.splitter6.Size = new System.Drawing.Size(5, 300); - this.splitter6.TabIndex = 154; - this.splitter6.TabStop = false; + this.repositoryItemComboBox2.AutoHeight = false; + this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); + this.repositoryItemComboBox2.Name = "repositoryItemComboBox2"; // - // panel12 + // gridColumn60 // - this.panel12.Controls.Add(this.xtraTabControl3); - this.panel12.Dock = System.Windows.Forms.DockStyle.Left; - this.panel12.Location = new System.Drawing.Point(0, 394); - this.panel12.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel12.Name = "panel12"; - this.panel12.Size = new System.Drawing.Size(550, 300); - this.panel12.TabIndex = 153; + this.gridColumn60.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn60.AppearanceCell.Options.UseFont = true; + this.gridColumn60.Caption = "最小年龄"; + this.gridColumn60.FieldName = "AgeMin"; + this.gridColumn60.Name = "gridColumn60"; + this.gridColumn60.OptionsColumn.AllowEdit = false; + this.gridColumn60.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn60.OptionsColumn.AllowMove = false; + this.gridColumn60.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn60.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn60.OptionsColumn.ReadOnly = true; + this.gridColumn60.OptionsFilter.AllowFilter = false; + this.gridColumn60.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); + this.gridColumn60.Visible = true; + this.gridColumn60.VisibleIndex = 3; + this.gridColumn60.Width = 60; // - // xtraTabControl3 + // gridColumn61 // - this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill; - this.xtraTabControl3.Location = new System.Drawing.Point(0, 0); - this.xtraTabControl3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.xtraTabControl3.Name = "xtraTabControl3"; - this.xtraTabControl3.SelectedTabPage = this.xtraTabPage2; - this.xtraTabControl3.Size = new System.Drawing.Size(550, 300); - this.xtraTabControl3.TabIndex = 0; - this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { - this.xtraTabPage2}); + this.gridColumn61.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn61.AppearanceCell.Options.UseFont = true; + this.gridColumn61.Caption = "最大年龄"; + this.gridColumn61.FieldName = "AgeMax"; + this.gridColumn61.Name = "gridColumn61"; + this.gridColumn61.OptionsColumn.AllowEdit = false; + this.gridColumn61.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn61.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn61.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn61.OptionsColumn.ReadOnly = true; + this.gridColumn61.OptionsFilter.AllowFilter = false; + this.gridColumn61.Visible = true; + this.gridColumn61.VisibleIndex = 4; + this.gridColumn61.Width = 60; // - // xtraTabPage2 + // gridColumn62 // - this.xtraTabPage2.Controls.Add(this.DgcCheckCost); - this.xtraTabPage2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.xtraTabPage2.Name = "xtraTabPage2"; - this.xtraTabPage2.Size = new System.Drawing.Size(544, 271); - this.xtraTabPage2.Text = "团体订单"; + this.gridColumn62.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn62.AppearanceCell.Options.UseFont = true; + this.gridColumn62.Caption = "体检类型"; + this.gridColumn62.ColumnEdit = this.repositoryItemComboBox3; + this.gridColumn62.FieldName = "Type"; + this.gridColumn62.Name = "gridColumn62"; + this.gridColumn62.OptionsColumn.AllowEdit = false; + this.gridColumn62.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn62.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn62.OptionsColumn.ReadOnly = true; + this.gridColumn62.Visible = true; + this.gridColumn62.VisibleIndex = 5; + this.gridColumn62.Width = 100; // - // DgcCheckCost + // repositoryItemComboBox3 // - this.DgcCheckCost.ContextMenuStrip = this.TeamCostFastMenu; - this.DgcCheckCost.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcCheckCost.Location = new System.Drawing.Point(0, 0); - this.DgcCheckCost.MainView = this.DgvCheckCost; - this.DgcCheckCost.Name = "DgcCheckCost"; - this.DgcCheckCost.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { - this.repositoryItemMemoEdit3}); - this.DgcCheckCost.Size = new System.Drawing.Size(544, 271); - this.DgcCheckCost.TabIndex = 147; - this.DgcCheckCost.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvCheckCost}); - // - // TeamCostFastMenu - // - this.TeamCostFastMenu.ImageScalingSize = new System.Drawing.Size(20, 20); - this.TeamCostFastMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.TFastCharge, - this.TFastAllCharge, - this.TFastDeleteCost, - this.TFastCancelCharge, - this.TFastChangeCost, - this.TFastAllDeleteCost, - this.TFastAllCancelCharge}); - this.TeamCostFastMenu.Name = "CostFastMenu"; - this.TeamCostFastMenu.Size = new System.Drawing.Size(161, 242); + this.repositoryItemComboBox3.AutoHeight = false; + this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { + new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); + this.repositoryItemComboBox3.Name = "repositoryItemComboBox3"; // - // TFastCharge + // gridColumn63 // - this.TFastCharge.Image = ((System.Drawing.Image)(resources.GetObject("TFastCharge.Image"))); - this.TFastCharge.Name = "TFastCharge"; - this.TFastCharge.Size = new System.Drawing.Size(160, 34); - this.TFastCharge.Text = "记账"; + this.gridColumn63.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn63.AppearanceCell.Options.UseFont = true; + this.gridColumn63.Caption = "模板同步时间"; + this.gridColumn63.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn63.FieldName = "CheckTime"; + this.gridColumn63.Name = "gridColumn63"; + this.gridColumn63.OptionsColumn.AllowEdit = false; + this.gridColumn63.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn63.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn63.OptionsColumn.ReadOnly = true; + this.gridColumn63.Visible = true; + this.gridColumn63.VisibleIndex = 6; + this.gridColumn63.Width = 130; // - // TFastAllCharge + // gridColumn64 // - this.TFastAllCharge.Image = ((System.Drawing.Image)(resources.GetObject("TFastAllCharge.Image"))); - this.TFastAllCharge.Name = "TFastAllCharge"; - this.TFastAllCharge.Size = new System.Drawing.Size(160, 34); - this.TFastAllCharge.Text = "全部记账"; + this.gridColumn64.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn64.AppearanceCell.Options.UseFont = true; + this.gridColumn64.Caption = "同步人"; + this.gridColumn64.FieldName = "Checker"; + this.gridColumn64.Name = "gridColumn64"; + this.gridColumn64.OptionsColumn.AllowEdit = false; + this.gridColumn64.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn64.OptionsColumn.AllowMove = false; + this.gridColumn64.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn64.OptionsColumn.ReadOnly = true; + this.gridColumn64.Visible = true; + this.gridColumn64.VisibleIndex = 7; + this.gridColumn64.Width = 60; // - // TFastDeleteCost + // gridColumn65 // - this.TFastDeleteCost.Image = ((System.Drawing.Image)(resources.GetObject("TFastDeleteCost.Image"))); - this.TFastDeleteCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TFastDeleteCost.Name = "TFastDeleteCost"; - this.TFastDeleteCost.Size = new System.Drawing.Size(160, 34); - this.TFastDeleteCost.Text = "删除订单"; + this.gridColumn65.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn65.AppearanceCell.Options.UseFont = true; + this.gridColumn65.Caption = "OID"; + this.gridColumn65.FieldName = "OID"; + this.gridColumn65.Name = "gridColumn65"; + this.gridColumn65.OptionsColumn.AllowEdit = false; + this.gridColumn65.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn65.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn65.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn65.OptionsColumn.ReadOnly = true; + this.gridColumn65.OptionsFilter.AllowFilter = false; + this.gridColumn65.Visible = true; + this.gridColumn65.VisibleIndex = 8; + this.gridColumn65.Width = 40; // - // TFastCancelCharge + // gridColumn66 // - this.TFastCancelCharge.Image = ((System.Drawing.Image)(resources.GetObject("TFastCancelCharge.Image"))); - this.TFastCancelCharge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TFastCancelCharge.Name = "TFastCancelCharge"; - this.TFastCancelCharge.Size = new System.Drawing.Size(160, 34); - this.TFastCancelCharge.Text = "取消记账"; + this.gridColumn66.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn66.AppearanceCell.Options.UseFont = true; + this.gridColumn66.Caption = "ID"; + this.gridColumn66.FieldName = "ID"; + this.gridColumn66.Name = "gridColumn66"; + this.gridColumn66.OptionsColumn.AllowEdit = false; + this.gridColumn66.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn66.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn66.OptionsColumn.ReadOnly = true; + this.gridColumn66.Visible = true; + this.gridColumn66.VisibleIndex = 9; + this.gridColumn66.Width = 40; // - // TFastChangeCost + // panel4 // - this.TFastChangeCost.Image = global::PEIS.Properties.Resources.刷新; - this.TFastChangeCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TFastChangeCost.Name = "TFastChangeCost"; - this.TFastChangeCost.Size = new System.Drawing.Size(160, 34); - this.TFastChangeCost.Text = "订单转换"; + this.panel4.Controls.Add(this.BtnApplyGroupFeeItem); + this.panel4.Dock = System.Windows.Forms.DockStyle.Top; + this.panel4.Location = new System.Drawing.Point(0, 0); + this.panel4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel4.Name = "panel4"; + this.panel4.Size = new System.Drawing.Size(1196, 44); + this.panel4.TabIndex = 141; // - // TFastAllDeleteCost + // BtnApplyGroupFeeItem // - this.TFastAllDeleteCost.Name = "TFastAllDeleteCost"; - this.TFastAllDeleteCost.Size = new System.Drawing.Size(160, 34); - this.TFastAllDeleteCost.Text = "全部删除订单"; - this.TFastAllDeleteCost.Visible = false; + this.BtnApplyGroupFeeItem.BackColor = System.Drawing.Color.White; + this.BtnApplyGroupFeeItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; + this.BtnApplyGroupFeeItem.Dock = System.Windows.Forms.DockStyle.Right; + this.BtnApplyGroupFeeItem.FlatAppearance.BorderSize = 0; + this.BtnApplyGroupFeeItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.BtnApplyGroupFeeItem.Image = global::PEIS.Properties.Resources.添加; + this.BtnApplyGroupFeeItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.BtnApplyGroupFeeItem.Location = new System.Drawing.Point(1013, 0); + this.BtnApplyGroupFeeItem.Name = "BtnApplyGroupFeeItem"; + this.BtnApplyGroupFeeItem.Size = new System.Drawing.Size(183, 44); + this.BtnApplyGroupFeeItem.TabIndex = 34; + this.BtnApplyGroupFeeItem.Text = "应用收费模板到团体成员"; + this.BtnApplyGroupFeeItem.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + this.BtnApplyGroupFeeItem.UseVisualStyleBackColor = true; // - // TFastAllCancelCharge + // TpPerson // - this.TFastAllCancelCharge.Name = "TFastAllCancelCharge"; - this.TFastAllCancelCharge.Size = new System.Drawing.Size(160, 34); - this.TFastAllCancelCharge.Text = "全部取消记账"; - this.TFastAllCancelCharge.Visible = false; + this.TpPerson.Controls.Add(this.panel6); + this.TpPerson.Controls.Add(this.panel7); + this.TpPerson.Controls.Add(this.splitterControl1); + this.TpPerson.Controls.Add(this.panel11); + this.TpPerson.Image = global::PEIS.Properties.Resources.个人信息__1_; + this.TpPerson.Name = "TpPerson"; + this.TpPerson.Size = new System.Drawing.Size(1196, 736); + this.TpPerson.Text = "团体成员收费"; // - // DgvCheckCost + // panel6 // - this.DgvCheckCost.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); - this.DgvCheckCost.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); - this.DgvCheckCost.Appearance.FooterPanel.Options.UseFont = true; - this.DgvCheckCost.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvCheckCost.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); - this.DgvCheckCost.Appearance.GroupRow.Options.UseFont = true; - this.DgvCheckCost.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); - this.DgvCheckCost.Appearance.Row.Options.UseFont = true; - this.DgvCheckCost.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn98, - this.gridColumn118, - this.gridColumn123, - this.gridColumn142, - this.gridColumn119, - this.gridColumn121, - this.gridColumn122, - this.gridColumn124, - this.gridColumn141, - this.gridColumn120, - this.gridColumn125, - this.gridColumn153, - this.gridColumn154, - this.gridColumn155, - this.gridColumn156, - this.gridColumn101, - this.gridColumn102}); - this.DgvCheckCost.FixedLineWidth = 1; - gridFormatRule2.ApplyToRow = true; - gridFormatRule2.Column = this.gridColumn102; - gridFormatRule2.Name = "Format0"; - formatConditionRuleExpression2.Appearance.ForeColor = System.Drawing.Color.Gray; - formatConditionRuleExpression2.Appearance.Options.UseForeColor = true; - formatConditionRuleExpression2.Expression = "[CancelTime] Is Not Null"; - formatConditionRuleExpression2.PredefinedName = "Strikeout Text"; - gridFormatRule2.Rule = formatConditionRuleExpression2; - this.DgvCheckCost.FormatRules.Add(gridFormatRule2); - this.DgvCheckCost.GridControl = this.DgcCheckCost; - this.DgvCheckCost.GroupCount = 1; - this.DgvCheckCost.GroupFormat = ""; - this.DgvCheckCost.IndicatorWidth = 40; - this.DgvCheckCost.Name = "DgvCheckCost"; - this.DgvCheckCost.OptionsSelection.MultiSelect = true; - this.DgvCheckCost.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect; - this.DgvCheckCost.OptionsView.ColumnAutoWidth = false; - this.DgvCheckCost.OptionsView.ShowFooter = true; - this.DgvCheckCost.OptionsView.ShowGroupPanel = false; - this.DgvCheckCost.OptionsView.ShowIndicator = false; - this.DgvCheckCost.RowHeight = 40; - this.DgvCheckCost.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { - new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn98, DevExpress.Data.ColumnSortOrder.Ascending)}); + this.panel6.Controls.Add(this.panel13); + this.panel6.Controls.Add(this.splitter6); + this.panel6.Controls.Add(this.panel12); + this.panel6.Controls.Add(this.splitter5); + this.panel6.Controls.Add(this.panel8); + this.panel6.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel6.Location = new System.Drawing.Point(285, 42); + this.panel6.Name = "panel6"; + this.panel6.Size = new System.Drawing.Size(911, 694); + this.panel6.TabIndex = 147; // - // gridColumn98 + // panel13 // - this.gridColumn98.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn98.AppearanceCell.Options.UseFont = true; - this.gridColumn98.Caption = " "; - this.gridColumn98.FieldName = "GroupTag"; - this.gridColumn98.Name = "gridColumn98"; - this.gridColumn98.OptionsColumn.AllowEdit = false; - this.gridColumn98.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn98.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn98.OptionsColumn.AllowMove = false; - this.gridColumn98.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn98.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn98.OptionsColumn.ReadOnly = true; - this.gridColumn98.OptionsFilter.AllowFilter = false; + this.panel13.Controls.Add(this.xtraTabControl4); + this.panel13.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel13.Location = new System.Drawing.Point(555, 394); + this.panel13.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel13.Name = "panel13"; + this.panel13.Size = new System.Drawing.Size(356, 300); + this.panel13.TabIndex = 155; // - // gridColumn118 + // xtraTabControl4 // - this.gridColumn118.Caption = "订单号"; - this.gridColumn118.FieldName = "ID"; - this.gridColumn118.Name = "gridColumn118"; - this.gridColumn118.OptionsColumn.AllowEdit = false; - this.gridColumn118.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn118.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn118.OptionsColumn.AllowMove = false; - this.gridColumn118.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn118.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn118.OptionsColumn.ReadOnly = true; - this.gridColumn118.OptionsFilter.AllowFilter = false; - this.gridColumn118.Visible = true; - this.gridColumn118.VisibleIndex = 0; - this.gridColumn118.Width = 63; + this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill; + this.xtraTabControl4.Location = new System.Drawing.Point(0, 0); + this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.xtraTabControl4.Name = "xtraTabControl4"; + this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4; + this.xtraTabControl4.Size = new System.Drawing.Size(356, 300); + this.xtraTabControl4.TabIndex = 1; + this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { + this.xtraTabPage4}); // - // gridColumn123 + // xtraTabPage4 // - this.gridColumn123.Caption = "体检号"; - this.gridColumn123.FieldName = "EID"; - this.gridColumn123.Name = "gridColumn123"; - this.gridColumn123.OptionsColumn.AllowEdit = false; - this.gridColumn123.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn123.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn123.OptionsColumn.AllowMove = false; - this.gridColumn123.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn123.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn123.OptionsColumn.ReadOnly = true; - this.gridColumn123.OptionsFilter.AllowFilter = false; - this.gridColumn123.Visible = true; - this.gridColumn123.VisibleIndex = 1; + this.xtraTabPage4.Controls.Add(this.DgcCheckCost2); + this.xtraTabPage4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.xtraTabPage4.Name = "xtraTabPage4"; + this.xtraTabPage4.Size = new System.Drawing.Size(350, 271); + this.xtraTabPage4.Text = "个人订单"; // - // gridColumn142 + // DgcCheckCost2 // - this.gridColumn142.Caption = "姓名"; - this.gridColumn142.FieldName = "Name"; - this.gridColumn142.Name = "gridColumn142"; - this.gridColumn142.OptionsColumn.AllowEdit = false; - this.gridColumn142.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn142.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn142.OptionsColumn.AllowMove = false; - this.gridColumn142.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn142.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn142.OptionsColumn.ReadOnly = true; - this.gridColumn142.OptionsFilter.AllowFilter = false; - this.gridColumn142.Visible = true; - this.gridColumn142.VisibleIndex = 2; + this.DgcCheckCost2.ContextMenuStrip = this.PersonCostFastMenu; + this.DgcCheckCost2.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcCheckCost2.Location = new System.Drawing.Point(0, 0); + this.DgcCheckCost2.MainView = this.DgvCheckCost2; + this.DgcCheckCost2.Name = "DgcCheckCost2"; + this.DgcCheckCost2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { + this.repositoryItemMemoEdit2}); + this.DgcCheckCost2.Size = new System.Drawing.Size(350, 271); + this.DgcCheckCost2.TabIndex = 148; + this.DgcCheckCost2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvCheckCost2}); // - // gridColumn119 + // PersonCostFastMenu // - this.gridColumn119.Caption = "费用合计"; - this.gridColumn119.DisplayFormat.FormatString = "c"; - this.gridColumn119.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn119.FieldName = "Sum"; - this.gridColumn119.Name = "gridColumn119"; - this.gridColumn119.OptionsColumn.AllowEdit = false; - this.gridColumn119.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn119.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn119.OptionsColumn.AllowMove = false; - this.gridColumn119.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn119.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn119.OptionsColumn.ReadOnly = true; - this.gridColumn119.OptionsFilter.AllowFilter = false; - this.gridColumn119.Visible = true; - this.gridColumn119.VisibleIndex = 3; - this.gridColumn119.Width = 101; + this.PersonCostFastMenu.ImageScalingSize = new System.Drawing.Size(20, 20); + this.PersonCostFastMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.PFastCharge, + this.PFastAllCharge, + this.PFastDeleteCost, + this.PFastCancelCharge, + this.PFastChangeCost, + this.toolStripMenuItem14, + this.toolStripMenuItem15, + this.PFastRefreshCost}); + this.PersonCostFastMenu.Name = "CostFastMenu"; + this.PersonCostFastMenu.Size = new System.Drawing.Size(161, 276); // - // gridColumn121 + // PFastCharge // - this.gridColumn121.Caption = "折扣"; - this.gridColumn121.FieldName = "Discount"; - this.gridColumn121.Name = "gridColumn121"; - this.gridColumn121.OptionsColumn.AllowEdit = false; - this.gridColumn121.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn121.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn121.OptionsColumn.AllowMove = false; - this.gridColumn121.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn121.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn121.OptionsColumn.ReadOnly = true; - this.gridColumn121.OptionsFilter.AllowFilter = false; - this.gridColumn121.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); - this.gridColumn121.Visible = true; - this.gridColumn121.VisibleIndex = 4; - this.gridColumn121.Width = 73; + this.PFastCharge.Image = ((System.Drawing.Image)(resources.GetObject("PFastCharge.Image"))); + this.PFastCharge.Name = "PFastCharge"; + this.PFastCharge.Size = new System.Drawing.Size(160, 34); + this.PFastCharge.Text = "记账"; // - // gridColumn122 + // PFastAllCharge // - this.gridColumn122.Caption = "实收费用"; - this.gridColumn122.DisplayFormat.FormatString = "c"; - this.gridColumn122.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn122.FieldName = "Fee"; - this.gridColumn122.GroupFormat.FormatString = "c"; - this.gridColumn122.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn122.Name = "gridColumn122"; - this.gridColumn122.OptionsColumn.AllowEdit = false; - this.gridColumn122.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn122.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn122.OptionsColumn.AllowMove = false; - this.gridColumn122.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn122.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn122.OptionsColumn.ReadOnly = true; - this.gridColumn122.OptionsFilter.AllowFilter = false; - this.gridColumn122.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Fee", "¥{0:0.##}")}); - this.gridColumn122.Visible = true; - this.gridColumn122.VisibleIndex = 5; - this.gridColumn122.Width = 120; + this.PFastAllCharge.Image = ((System.Drawing.Image)(resources.GetObject("PFastAllCharge.Image"))); + this.PFastAllCharge.Name = "PFastAllCharge"; + this.PFastAllCharge.Size = new System.Drawing.Size(160, 34); + this.PFastAllCharge.Text = "全部记账"; // - // gridColumn124 + // PFastDeleteCost // - this.gridColumn124.Caption = "创建人"; - this.gridColumn124.FieldName = "Creator"; - this.gridColumn124.Name = "gridColumn124"; - this.gridColumn124.OptionsColumn.AllowEdit = false; - this.gridColumn124.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn124.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn124.OptionsColumn.AllowMove = false; - this.gridColumn124.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn124.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn124.OptionsColumn.ReadOnly = true; - this.gridColumn124.OptionsFilter.AllowFilter = false; - this.gridColumn124.Visible = true; - this.gridColumn124.VisibleIndex = 6; - this.gridColumn124.Width = 70; + this.PFastDeleteCost.Image = ((System.Drawing.Image)(resources.GetObject("PFastDeleteCost.Image"))); + this.PFastDeleteCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PFastDeleteCost.Name = "PFastDeleteCost"; + this.PFastDeleteCost.Size = new System.Drawing.Size(160, 34); + this.PFastDeleteCost.Text = "删除订单"; // - // gridColumn141 + // PFastCancelCharge // - this.gridColumn141.Caption = "创建时间"; - this.gridColumn141.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn141.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn141.FieldName = "CreateTime"; - this.gridColumn141.Name = "gridColumn141"; - this.gridColumn141.OptionsColumn.AllowEdit = false; - this.gridColumn141.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn141.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn141.OptionsColumn.AllowMove = false; - this.gridColumn141.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn141.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn141.OptionsColumn.ReadOnly = true; - this.gridColumn141.OptionsFilter.AllowFilter = false; - this.gridColumn141.Visible = true; - this.gridColumn141.VisibleIndex = 7; - this.gridColumn141.Width = 130; + this.PFastCancelCharge.Image = ((System.Drawing.Image)(resources.GetObject("PFastCancelCharge.Image"))); + this.PFastCancelCharge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PFastCancelCharge.Name = "PFastCancelCharge"; + this.PFastCancelCharge.Size = new System.Drawing.Size(160, 34); + this.PFastCancelCharge.Text = "取消记账"; // - // gridColumn120 + // PFastChangeCost // - this.gridColumn120.Caption = "记账人"; - this.gridColumn120.FieldName = "Charger"; - this.gridColumn120.Name = "gridColumn120"; - this.gridColumn120.OptionsColumn.AllowEdit = false; - this.gridColumn120.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn120.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn120.OptionsColumn.AllowMove = false; - this.gridColumn120.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn120.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn120.OptionsColumn.ReadOnly = true; - this.gridColumn120.OptionsFilter.AllowFilter = false; - this.gridColumn120.Visible = true; - this.gridColumn120.VisibleIndex = 8; + this.PFastChangeCost.Image = global::PEIS.Properties.Resources.刷新; + this.PFastChangeCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PFastChangeCost.Name = "PFastChangeCost"; + this.PFastChangeCost.Size = new System.Drawing.Size(160, 34); + this.PFastChangeCost.Text = "订单转换"; // - // gridColumn125 + // toolStripMenuItem14 // - this.gridColumn125.Caption = "记账时间"; - this.gridColumn125.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn125.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn125.FieldName = "ChargeTime"; - this.gridColumn125.Name = "gridColumn125"; - this.gridColumn125.OptionsColumn.AllowEdit = false; - this.gridColumn125.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn125.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn125.OptionsColumn.AllowMove = false; - this.gridColumn125.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn125.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn125.OptionsColumn.ReadOnly = true; - this.gridColumn125.OptionsFilter.AllowFilter = false; - this.gridColumn125.Visible = true; - this.gridColumn125.VisibleIndex = 9; - this.gridColumn125.Width = 130; + this.toolStripMenuItem14.Name = "toolStripMenuItem14"; + this.toolStripMenuItem14.Size = new System.Drawing.Size(160, 34); + this.toolStripMenuItem14.Text = "全部删除订单"; + this.toolStripMenuItem14.Visible = false; // - // gridColumn153 + // toolStripMenuItem15 // - this.gridColumn153.Caption = "发送人"; - this.gridColumn153.FieldName = "Sender"; - this.gridColumn153.Name = "gridColumn153"; - this.gridColumn153.OptionsColumn.AllowEdit = false; - this.gridColumn153.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn153.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn153.OptionsColumn.AllowMove = false; - this.gridColumn153.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn153.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn153.OptionsColumn.ReadOnly = true; - this.gridColumn153.OptionsFilter.AllowFilter = false; - this.gridColumn153.Visible = true; - this.gridColumn153.VisibleIndex = 10; + this.toolStripMenuItem15.Name = "toolStripMenuItem15"; + this.toolStripMenuItem15.Size = new System.Drawing.Size(160, 34); + this.toolStripMenuItem15.Text = "全部取消记账"; + this.toolStripMenuItem15.Visible = false; // - // gridColumn154 + // PFastRefreshCost // - this.gridColumn154.Caption = "发送时间"; - this.gridColumn154.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn154.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn154.FieldName = "SendTime"; - this.gridColumn154.Name = "gridColumn154"; - this.gridColumn154.OptionsColumn.AllowEdit = false; - this.gridColumn154.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn154.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn154.OptionsColumn.AllowMove = false; - this.gridColumn154.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn154.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn154.OptionsColumn.ReadOnly = true; - this.gridColumn154.OptionsFilter.AllowFilter = false; - this.gridColumn154.Visible = true; - this.gridColumn154.VisibleIndex = 11; - this.gridColumn154.Width = 130; + this.PFastRefreshCost.Image = global::PEIS.Properties.Resources.刷新; + this.PFastRefreshCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PFastRefreshCost.Name = "PFastRefreshCost"; + this.PFastRefreshCost.Size = new System.Drawing.Size(160, 34); + this.PFastRefreshCost.Text = "刷新订单"; + this.PFastRefreshCost.Visible = false; // - // gridColumn155 + // DgvCheckCost2 // - this.gridColumn155.Caption = "收费人"; - this.gridColumn155.FieldName = "Coster"; - this.gridColumn155.Name = "gridColumn155"; - this.gridColumn155.OptionsColumn.AllowEdit = false; - this.gridColumn155.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn155.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn155.OptionsColumn.AllowMove = false; - this.gridColumn155.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn155.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn155.OptionsColumn.ReadOnly = true; - this.gridColumn155.OptionsFilter.AllowFilter = false; - this.gridColumn155.Visible = true; - this.gridColumn155.VisibleIndex = 12; - // - // gridColumn156 - // - this.gridColumn156.Caption = "收费时间"; - this.gridColumn156.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn156.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn156.FieldName = "CostTime"; - this.gridColumn156.Name = "gridColumn156"; - this.gridColumn156.OptionsColumn.AllowEdit = false; - this.gridColumn156.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn156.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn156.OptionsColumn.AllowMove = false; - this.gridColumn156.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn156.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn156.OptionsColumn.ReadOnly = true; - this.gridColumn156.OptionsFilter.AllowFilter = false; - this.gridColumn156.Visible = true; - this.gridColumn156.VisibleIndex = 13; - this.gridColumn156.Width = 130; - // - // gridColumn101 - // - this.gridColumn101.Caption = "退费人"; - this.gridColumn101.FieldName = "Cancer"; - this.gridColumn101.Name = "gridColumn101"; - this.gridColumn101.OptionsColumn.AllowEdit = false; - this.gridColumn101.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn101.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn101.OptionsColumn.AllowMove = false; - this.gridColumn101.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn101.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn101.OptionsColumn.ReadOnly = true; - this.gridColumn101.OptionsFilter.AllowFilter = false; - this.gridColumn101.Visible = true; - this.gridColumn101.VisibleIndex = 14; - // - // repositoryItemMemoEdit3 - // - this.repositoryItemMemoEdit3.Appearance.Options.UseTextOptions = true; - this.repositoryItemMemoEdit3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.repositoryItemMemoEdit3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; - this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3"; - // - // splitter5 - // - this.splitter5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); - this.splitter5.Dock = System.Windows.Forms.DockStyle.Top; - this.splitter5.Location = new System.Drawing.Point(0, 389); - this.splitter5.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.splitter5.Name = "splitter5"; - this.splitter5.Size = new System.Drawing.Size(911, 5); - this.splitter5.TabIndex = 152; - this.splitter5.TabStop = false; - // - // panel8 - // - this.panel8.Controls.Add(this.DgcEnrollmentFeeItem); - this.panel8.Controls.Add(this.splitter7); - this.panel8.Controls.Add(this.PnlFeeItem); - this.panel8.Dock = System.Windows.Forms.DockStyle.Top; - this.panel8.Location = new System.Drawing.Point(0, 0); - this.panel8.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel8.Name = "panel8"; - this.panel8.Size = new System.Drawing.Size(911, 389); - this.panel8.TabIndex = 151; + this.DgvCheckCost2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); + this.DgvCheckCost2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); + this.DgvCheckCost2.Appearance.FooterPanel.Options.UseFont = true; + this.DgvCheckCost2.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvCheckCost2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); + this.DgvCheckCost2.Appearance.GroupRow.Options.UseFont = true; + this.DgvCheckCost2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); + this.DgvCheckCost2.Appearance.Row.Options.UseFont = true; + this.DgvCheckCost2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn143, + this.gridColumn144, + this.gridColumn145, + this.gridColumn146, + this.gridColumn147, + this.gridColumn148, + this.gridColumn149, + this.gridColumn150, + this.gridColumn151, + this.gridColumn152, + this.gridColumn157, + this.gridColumn158, + this.gridColumn159, + this.gridColumn160, + this.gridColumn100, + this.gridColumn99}); + this.DgvCheckCost2.FixedLineWidth = 1; + gridFormatRule1.ApplyToRow = true; + gridFormatRule1.Column = this.gridColumn99; + gridFormatRule1.Name = "Format0"; + formatConditionRuleExpression1.Appearance.ForeColor = System.Drawing.Color.Gray; + formatConditionRuleExpression1.Appearance.Options.UseForeColor = true; + formatConditionRuleExpression1.Expression = "[CancelTime] Is Not Null"; + formatConditionRuleExpression1.PredefinedName = "Strikeout Text"; + gridFormatRule1.Rule = formatConditionRuleExpression1; + this.DgvCheckCost2.FormatRules.Add(gridFormatRule1); + this.DgvCheckCost2.GridControl = this.DgcCheckCost2; + this.DgvCheckCost2.GroupFormat = "{0}"; + this.DgvCheckCost2.IndicatorWidth = 40; + this.DgvCheckCost2.Name = "DgvCheckCost2"; + this.DgvCheckCost2.OptionsCustomization.AllowFilter = false; + this.DgvCheckCost2.OptionsMenu.EnableColumnMenu = false; + this.DgvCheckCost2.OptionsSelection.MultiSelect = true; + this.DgvCheckCost2.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect; + this.DgvCheckCost2.OptionsView.ColumnAutoWidth = false; + this.DgvCheckCost2.OptionsView.ShowFooter = true; + this.DgvCheckCost2.OptionsView.ShowGroupPanel = false; + this.DgvCheckCost2.OptionsView.ShowIndicator = false; + this.DgvCheckCost2.RowHeight = 40; // - // DgcEnrollmentFeeItem + // gridColumn143 // - this.DgcEnrollmentFeeItem.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcEnrollmentFeeItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.DgcEnrollmentFeeItem.Location = new System.Drawing.Point(0, 0); - this.DgcEnrollmentFeeItem.MainView = this.DgvEnrollmentFeeItem; - this.DgcEnrollmentFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.DgcEnrollmentFeeItem.Name = "DgcEnrollmentFeeItem"; - this.DgcEnrollmentFeeItem.Size = new System.Drawing.Size(526, 389); - this.DgcEnrollmentFeeItem.TabIndex = 150; - this.DgcEnrollmentFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvEnrollmentFeeItem}); + this.gridColumn143.Caption = "订单号"; + this.gridColumn143.FieldName = "ID"; + this.gridColumn143.Name = "gridColumn143"; + this.gridColumn143.OptionsColumn.AllowEdit = false; + this.gridColumn143.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn143.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn143.OptionsColumn.AllowMove = false; + this.gridColumn143.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn143.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn143.OptionsColumn.ReadOnly = true; + this.gridColumn143.OptionsFilter.AllowFilter = false; + this.gridColumn143.Visible = true; + this.gridColumn143.VisibleIndex = 0; + this.gridColumn143.Width = 63; // - // DgvEnrollmentFeeItem + // gridColumn144 // - this.DgvEnrollmentFeeItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); - this.DgvEnrollmentFeeItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); - this.DgvEnrollmentFeeItem.Appearance.FooterPanel.Options.UseFont = true; - this.DgvEnrollmentFeeItem.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvEnrollmentFeeItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn110, - this.gridColumn111, - this.gridColumn112, - this.gridColumn113, - this.gridColumn114, - this.gridColumn115, - this.gridColumn116, - this.gridColumn117, - this.gridColumn161, - this.gridColumn163}); - this.DgvEnrollmentFeeItem.GridControl = this.DgcEnrollmentFeeItem; - this.DgvEnrollmentFeeItem.GroupCount = 1; - this.DgvEnrollmentFeeItem.GroupFormat = ""; - this.DgvEnrollmentFeeItem.Name = "DgvEnrollmentFeeItem"; - this.DgvEnrollmentFeeItem.OptionsBehavior.Editable = false; - this.DgvEnrollmentFeeItem.OptionsMenu.EnableColumnMenu = false; - this.DgvEnrollmentFeeItem.OptionsView.AllowCellMerge = true; - this.DgvEnrollmentFeeItem.OptionsView.ColumnAutoWidth = false; - this.DgvEnrollmentFeeItem.OptionsView.ShowFooter = true; - this.DgvEnrollmentFeeItem.OptionsView.ShowGroupPanel = false; - this.DgvEnrollmentFeeItem.OptionsView.ShowIndicator = false; - this.DgvEnrollmentFeeItem.RowHeight = 40; - this.DgvEnrollmentFeeItem.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { - new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn163, DevExpress.Data.ColumnSortOrder.Ascending)}); + this.gridColumn144.Caption = "体检号"; + this.gridColumn144.FieldName = "EID"; + this.gridColumn144.Name = "gridColumn144"; + this.gridColumn144.OptionsColumn.AllowEdit = false; + this.gridColumn144.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn144.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn144.OptionsColumn.AllowMove = false; + this.gridColumn144.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn144.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn144.OptionsColumn.ReadOnly = true; + this.gridColumn144.OptionsFilter.AllowFilter = false; + this.gridColumn144.Visible = true; + this.gridColumn144.VisibleIndex = 1; // - // gridColumn110 + // gridColumn145 // - this.gridColumn110.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn110.AppearanceCell.Options.UseFont = true; - this.gridColumn110.Caption = "订单号"; - this.gridColumn110.FieldName = "OrderNo"; - this.gridColumn110.Name = "gridColumn110"; - this.gridColumn110.OptionsColumn.AllowEdit = false; - this.gridColumn110.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn110.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn110.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn110.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn110.OptionsColumn.ReadOnly = true; - this.gridColumn110.OptionsFilter.AllowFilter = false; - this.gridColumn110.Visible = true; - this.gridColumn110.VisibleIndex = 0; - this.gridColumn110.Width = 60; + this.gridColumn145.Caption = "姓名"; + this.gridColumn145.FieldName = "Name"; + this.gridColumn145.Name = "gridColumn145"; + this.gridColumn145.OptionsColumn.AllowEdit = false; + this.gridColumn145.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn145.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn145.OptionsColumn.AllowMove = false; + this.gridColumn145.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn145.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn145.OptionsColumn.ReadOnly = true; + this.gridColumn145.OptionsFilter.AllowFilter = false; + this.gridColumn145.Visible = true; + this.gridColumn145.VisibleIndex = 2; // - // gridColumn111 + // gridColumn146 // - this.gridColumn111.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn111.AppearanceCell.Options.UseFont = true; - this.gridColumn111.Caption = "套餐"; - this.gridColumn111.FieldName = "PackName"; - this.gridColumn111.Name = "gridColumn111"; - this.gridColumn111.OptionsColumn.AllowEdit = false; - this.gridColumn111.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn111.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn111.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn111.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn111.OptionsColumn.ReadOnly = true; - this.gridColumn111.OptionsFilter.AllowFilter = false; - this.gridColumn111.Visible = true; - this.gridColumn111.VisibleIndex = 1; - this.gridColumn111.Width = 147; + this.gridColumn146.Caption = "费用合计"; + this.gridColumn146.DisplayFormat.FormatString = "c"; + this.gridColumn146.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn146.FieldName = "Sum"; + this.gridColumn146.Name = "gridColumn146"; + this.gridColumn146.OptionsColumn.AllowEdit = false; + this.gridColumn146.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn146.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn146.OptionsColumn.AllowMove = false; + this.gridColumn146.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn146.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn146.OptionsColumn.ReadOnly = true; + this.gridColumn146.OptionsFilter.AllowFilter = false; + this.gridColumn146.Visible = true; + this.gridColumn146.VisibleIndex = 3; + this.gridColumn146.Width = 101; // - // gridColumn112 + // gridColumn147 // - this.gridColumn112.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn112.AppearanceCell.Options.UseFont = true; - this.gridColumn112.Caption = "收费项目"; - this.gridColumn112.FieldName = "FeeItemName"; - this.gridColumn112.Name = "gridColumn112"; - this.gridColumn112.OptionsColumn.AllowEdit = false; - this.gridColumn112.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn112.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn112.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn112.OptionsColumn.ReadOnly = true; - this.gridColumn112.OptionsFilter.AllowFilter = false; - this.gridColumn112.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + this.gridColumn147.Caption = "折扣"; + this.gridColumn147.FieldName = "Discount"; + this.gridColumn147.Name = "gridColumn147"; + this.gridColumn147.OptionsColumn.AllowEdit = false; + this.gridColumn147.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn147.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn147.OptionsColumn.AllowMove = false; + this.gridColumn147.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn147.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn147.OptionsColumn.ReadOnly = true; + this.gridColumn147.OptionsFilter.AllowFilter = false; + this.gridColumn147.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); - this.gridColumn112.Visible = true; - this.gridColumn112.VisibleIndex = 2; - // - // gridColumn113 - // - this.gridColumn113.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn113.AppearanceCell.Options.UseFont = true; - this.gridColumn113.Caption = "收费价格"; - this.gridColumn113.FieldName = "Price"; - this.gridColumn113.Name = "gridColumn113"; - this.gridColumn113.OptionsColumn.AllowEdit = false; - this.gridColumn113.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn113.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn113.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn113.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn113.OptionsColumn.ReadOnly = true; - this.gridColumn113.OptionsFilter.AllowFilter = false; - this.gridColumn113.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Price", "¥{0:0.##}")}); - this.gridColumn113.Visible = true; - this.gridColumn113.VisibleIndex = 3; - // - // gridColumn114 - // - this.gridColumn114.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn114.AppearanceCell.Options.UseFont = true; - this.gridColumn114.Caption = "核算价格"; - this.gridColumn114.FieldName = "SettlePrice"; - this.gridColumn114.Name = "gridColumn114"; - this.gridColumn114.OptionsColumn.AllowEdit = false; - this.gridColumn114.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn114.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn114.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn114.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn114.OptionsColumn.ReadOnly = true; - this.gridColumn114.OptionsFilter.AllowFilter = false; - this.gridColumn114.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "SettlePrice", "¥{0:0.##}")}); - this.gridColumn114.Visible = true; - this.gridColumn114.VisibleIndex = 4; + this.gridColumn147.Visible = true; + this.gridColumn147.VisibleIndex = 4; + this.gridColumn147.Width = 73; // - // gridColumn115 + // gridColumn148 // - this.gridColumn115.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn115.AppearanceCell.Options.UseFont = true; - this.gridColumn115.Caption = "执行科室"; - this.gridColumn115.FieldName = "DeptName"; - this.gridColumn115.Name = "gridColumn115"; - this.gridColumn115.OptionsColumn.AllowEdit = false; - this.gridColumn115.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn115.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn115.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn115.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn115.OptionsColumn.ReadOnly = true; - this.gridColumn115.OptionsFilter.AllowFilter = false; - this.gridColumn115.Visible = true; - this.gridColumn115.VisibleIndex = 5; + this.gridColumn148.Caption = "实收费用"; + this.gridColumn148.DisplayFormat.FormatString = "c"; + this.gridColumn148.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn148.FieldName = "Fee"; + this.gridColumn148.GroupFormat.FormatString = "c"; + this.gridColumn148.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn148.Name = "gridColumn148"; + this.gridColumn148.OptionsColumn.AllowEdit = false; + this.gridColumn148.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn148.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn148.OptionsColumn.AllowMove = false; + this.gridColumn148.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn148.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn148.OptionsColumn.ReadOnly = true; + this.gridColumn148.OptionsFilter.AllowFilter = false; + this.gridColumn148.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Fee", "¥{0:0.##}")}); + this.gridColumn148.Visible = true; + this.gridColumn148.VisibleIndex = 5; + this.gridColumn148.Width = 120; // - // gridColumn116 + // gridColumn149 // - this.gridColumn116.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn116.AppearanceCell.Options.UseFont = true; - this.gridColumn116.Caption = "数量"; - this.gridColumn116.FieldName = "Quantity"; - this.gridColumn116.Name = "gridColumn116"; - this.gridColumn116.OptionsColumn.AllowEdit = false; - this.gridColumn116.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn116.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn116.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn116.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn116.OptionsColumn.ReadOnly = true; - this.gridColumn116.OptionsFilter.AllowFilter = false; - this.gridColumn116.Visible = true; - this.gridColumn116.VisibleIndex = 6; - this.gridColumn116.Width = 59; + this.gridColumn149.Caption = "创建人"; + this.gridColumn149.FieldName = "Creator"; + this.gridColumn149.Name = "gridColumn149"; + this.gridColumn149.OptionsColumn.AllowEdit = false; + this.gridColumn149.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn149.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn149.OptionsColumn.AllowMove = false; + this.gridColumn149.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn149.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn149.OptionsColumn.ReadOnly = true; + this.gridColumn149.OptionsFilter.AllowFilter = false; + this.gridColumn149.Visible = true; + this.gridColumn149.VisibleIndex = 6; + this.gridColumn149.Width = 70; // - // gridColumn117 + // gridColumn150 // - this.gridColumn117.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn117.AppearanceCell.Options.UseFont = true; - this.gridColumn117.Caption = "单位"; - this.gridColumn117.FieldName = "Unit"; - this.gridColumn117.Name = "gridColumn117"; - this.gridColumn117.OptionsColumn.AllowEdit = false; - this.gridColumn117.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn117.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn117.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn117.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn117.OptionsColumn.ReadOnly = true; - this.gridColumn117.OptionsFilter.AllowFilter = false; - this.gridColumn117.Visible = true; - this.gridColumn117.VisibleIndex = 7; - this.gridColumn117.Width = 48; + this.gridColumn150.Caption = "创建时间"; + this.gridColumn150.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn150.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn150.FieldName = "CreateTime"; + this.gridColumn150.Name = "gridColumn150"; + this.gridColumn150.OptionsColumn.AllowEdit = false; + this.gridColumn150.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn150.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn150.OptionsColumn.AllowMove = false; + this.gridColumn150.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn150.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn150.OptionsColumn.ReadOnly = true; + this.gridColumn150.OptionsFilter.AllowFilter = false; + this.gridColumn150.Visible = true; + this.gridColumn150.VisibleIndex = 7; + this.gridColumn150.Width = 130; // - // gridColumn161 + // gridColumn151 // - this.gridColumn161.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn161.AppearanceCell.Options.UseFont = true; - this.gridColumn161.Caption = "检查类别"; - this.gridColumn161.FieldName = "ItemClass"; - this.gridColumn161.Name = "gridColumn161"; - this.gridColumn161.OptionsColumn.AllowEdit = false; - this.gridColumn161.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn161.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn161.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn161.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn161.OptionsColumn.ReadOnly = true; - this.gridColumn161.OptionsFilter.AllowFilter = false; - this.gridColumn161.Visible = true; - this.gridColumn161.VisibleIndex = 8; + this.gridColumn151.Caption = "记账人"; + this.gridColumn151.FieldName = "Charger"; + this.gridColumn151.Name = "gridColumn151"; + this.gridColumn151.OptionsColumn.AllowEdit = false; + this.gridColumn151.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn151.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn151.OptionsColumn.AllowMove = false; + this.gridColumn151.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn151.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn151.OptionsColumn.ReadOnly = true; + this.gridColumn151.OptionsFilter.AllowFilter = false; + this.gridColumn151.Visible = true; + this.gridColumn151.VisibleIndex = 8; // - // gridColumn163 + // gridColumn152 // - this.gridColumn163.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn163.AppearanceCell.Options.UseFont = true; - this.gridColumn163.Caption = "gridColumn163"; - this.gridColumn163.FieldName = "OEID"; - this.gridColumn163.Name = "gridColumn163"; - this.gridColumn163.OptionsColumn.AllowEdit = false; - this.gridColumn163.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn163.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn163.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn163.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn163.OptionsColumn.ReadOnly = true; - this.gridColumn163.OptionsFilter.AllowFilter = false; + this.gridColumn152.Caption = "记账时间"; + this.gridColumn152.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn152.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn152.FieldName = "ChargeTime"; + this.gridColumn152.Name = "gridColumn152"; + this.gridColumn152.OptionsColumn.AllowEdit = false; + this.gridColumn152.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn152.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn152.OptionsColumn.AllowMove = false; + this.gridColumn152.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn152.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn152.OptionsColumn.ReadOnly = true; + this.gridColumn152.OptionsFilter.AllowFilter = false; + this.gridColumn152.Visible = true; + this.gridColumn152.VisibleIndex = 9; + this.gridColumn152.Width = 130; // - // splitter7 + // gridColumn157 // - this.splitter7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); - this.splitter7.Dock = System.Windows.Forms.DockStyle.Right; - this.splitter7.Location = new System.Drawing.Point(526, 0); - this.splitter7.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.splitter7.Name = "splitter7"; - this.splitter7.Size = new System.Drawing.Size(5, 389); - this.splitter7.TabIndex = 149; - this.splitter7.TabStop = false; - this.splitter7.Visible = false; + this.gridColumn157.Caption = "发送人"; + this.gridColumn157.FieldName = "Sender"; + this.gridColumn157.Name = "gridColumn157"; + this.gridColumn157.OptionsColumn.AllowEdit = false; + this.gridColumn157.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn157.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn157.OptionsColumn.AllowMove = false; + this.gridColumn157.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn157.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn157.OptionsColumn.ReadOnly = true; + this.gridColumn157.OptionsFilter.AllowFilter = false; + this.gridColumn157.Visible = true; + this.gridColumn157.VisibleIndex = 10; // - // PnlFeeItem + // gridColumn158 // - this.PnlFeeItem.Controls.Add(this.tabControl2); - this.PnlFeeItem.Dock = System.Windows.Forms.DockStyle.Right; - this.PnlFeeItem.Location = new System.Drawing.Point(531, 0); - this.PnlFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.PnlFeeItem.Name = "PnlFeeItem"; - this.PnlFeeItem.Size = new System.Drawing.Size(380, 389); - this.PnlFeeItem.TabIndex = 147; - this.PnlFeeItem.Visible = false; + this.gridColumn158.Caption = "发送时间"; + this.gridColumn158.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn158.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn158.FieldName = "SendTime"; + this.gridColumn158.Name = "gridColumn158"; + this.gridColumn158.OptionsColumn.AllowEdit = false; + this.gridColumn158.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn158.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn158.OptionsColumn.AllowMove = false; + this.gridColumn158.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn158.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn158.OptionsColumn.ReadOnly = true; + this.gridColumn158.OptionsFilter.AllowFilter = false; + this.gridColumn158.Visible = true; + this.gridColumn158.VisibleIndex = 11; + this.gridColumn158.Width = 130; // - // tabControl2 + // gridColumn159 // - this.tabControl2.Controls.Add(this.tabPage1); - this.tabControl2.Controls.Add(this.tabPage2); - this.tabControl2.Controls.Add(this.CopyItemTab); - this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControl2.Location = new System.Drawing.Point(0, 0); - this.tabControl2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.tabControl2.Name = "tabControl2"; - this.tabControl2.SelectedIndex = 0; - this.tabControl2.Size = new System.Drawing.Size(380, 389); - this.tabControl2.TabIndex = 139; + this.gridColumn159.Caption = "收费人"; + this.gridColumn159.FieldName = "Coster"; + this.gridColumn159.Name = "gridColumn159"; + this.gridColumn159.OptionsColumn.AllowEdit = false; + this.gridColumn159.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn159.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn159.OptionsColumn.AllowMove = false; + this.gridColumn159.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn159.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn159.OptionsColumn.ReadOnly = true; + this.gridColumn159.OptionsFilter.AllowFilter = false; + this.gridColumn159.Visible = true; + this.gridColumn159.VisibleIndex = 12; // - // tabPage1 + // gridColumn160 // - this.tabPage1.Controls.Add(this.DgcPack2); - this.tabPage1.Location = new System.Drawing.Point(4, 23); - this.tabPage1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.tabPage1.Name = "tabPage1"; - this.tabPage1.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.tabPage1.Size = new System.Drawing.Size(372, 362); - this.tabPage1.TabIndex = 1; - this.tabPage1.Text = "套餐"; - this.tabPage1.UseVisualStyleBackColor = true; + this.gridColumn160.Caption = "收费时间"; + this.gridColumn160.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn160.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn160.FieldName = "CostTime"; + this.gridColumn160.Name = "gridColumn160"; + this.gridColumn160.OptionsColumn.AllowEdit = false; + this.gridColumn160.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn160.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn160.OptionsColumn.AllowMove = false; + this.gridColumn160.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn160.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn160.OptionsColumn.ReadOnly = true; + this.gridColumn160.OptionsFilter.AllowFilter = false; + this.gridColumn160.Visible = true; + this.gridColumn160.VisibleIndex = 13; + this.gridColumn160.Width = 130; // - // DgcPack2 + // gridColumn100 // - this.DgcPack2.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcPack2.Location = new System.Drawing.Point(2, 3); - this.DgcPack2.MainView = this.DgvPack2; - this.DgcPack2.Name = "DgcPack2"; - this.DgcPack2.Size = new System.Drawing.Size(368, 356); - this.DgcPack2.TabIndex = 122; - this.DgcPack2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvPack2, - this.gridView4}); + this.gridColumn100.Caption = "退费人"; + this.gridColumn100.FieldName = "Cancer"; + this.gridColumn100.Name = "gridColumn100"; + this.gridColumn100.OptionsColumn.AllowEdit = false; + this.gridColumn100.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn100.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn100.OptionsColumn.AllowMove = false; + this.gridColumn100.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn100.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn100.OptionsColumn.ReadOnly = true; + this.gridColumn100.OptionsFilter.AllowFilter = false; + this.gridColumn100.Visible = true; + this.gridColumn100.VisibleIndex = 14; // - // DgvPack2 + // repositoryItemMemoEdit2 // - this.DgvPack2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvPack2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; - this.DgvPack2.Appearance.FooterPanel.Options.UseFont = true; - this.DgvPack2.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvPack2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvPack2.Appearance.GroupRow.Options.UseFont = true; - this.DgvPack2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvPack2.Appearance.Row.Options.UseFont = true; - this.DgvPack2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn126, - this.gridColumn127, - this.gridColumn128, - this.gridColumn129, - this.gridColumn130, - this.gridColumn131, - this.gridColumn132}); - this.DgvPack2.FixedLineWidth = 1; - this.DgvPack2.GridControl = this.DgcPack2; - this.DgvPack2.IndicatorWidth = 40; - this.DgvPack2.Name = "DgvPack2"; - this.DgvPack2.OptionsMenu.EnableColumnMenu = false; - this.DgvPack2.OptionsSelection.MultiSelect = true; - this.DgvPack2.OptionsView.ColumnAutoWidth = false; - this.DgvPack2.OptionsView.ShowGroupPanel = false; - this.DgvPack2.RowHeight = 40; + this.repositoryItemMemoEdit2.Appearance.Options.UseTextOptions = true; + this.repositoryItemMemoEdit2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.repositoryItemMemoEdit2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; + this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2"; // - // gridColumn126 + // splitter6 // - this.gridColumn126.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn126.AppearanceCell.Options.UseFont = true; - this.gridColumn126.Caption = "套餐名称"; - this.gridColumn126.FieldName = "Name"; - this.gridColumn126.Name = "gridColumn126"; - this.gridColumn126.OptionsColumn.AllowEdit = false; - this.gridColumn126.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn126.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn126.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn126.OptionsColumn.ReadOnly = true; - this.gridColumn126.OptionsFilter.AllowFilter = false; - this.gridColumn126.Visible = true; - this.gridColumn126.VisibleIndex = 0; - this.gridColumn126.Width = 200; + this.splitter6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); + this.splitter6.Location = new System.Drawing.Point(550, 394); + this.splitter6.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.splitter6.Name = "splitter6"; + this.splitter6.Size = new System.Drawing.Size(5, 300); + this.splitter6.TabIndex = 154; + this.splitter6.TabStop = false; // - // gridColumn127 + // panel12 // - this.gridColumn127.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn127.AppearanceCell.Options.UseFont = true; - this.gridColumn127.Caption = "适用性别"; - this.gridColumn127.FieldName = "Sex"; - this.gridColumn127.Name = "gridColumn127"; - this.gridColumn127.OptionsColumn.AllowEdit = false; - this.gridColumn127.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn127.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn127.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn127.OptionsColumn.ReadOnly = true; - this.gridColumn127.OptionsFilter.AllowFilter = false; - this.gridColumn127.Visible = true; - this.gridColumn127.VisibleIndex = 1; - this.gridColumn127.Width = 60; + this.panel12.Controls.Add(this.xtraTabControl3); + this.panel12.Dock = System.Windows.Forms.DockStyle.Left; + this.panel12.Location = new System.Drawing.Point(0, 394); + this.panel12.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel12.Name = "panel12"; + this.panel12.Size = new System.Drawing.Size(550, 300); + this.panel12.TabIndex = 153; // - // gridColumn128 + // xtraTabControl3 // - this.gridColumn128.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn128.AppearanceCell.Options.UseFont = true; - this.gridColumn128.Caption = "适用婚态"; - this.gridColumn128.FieldName = "Marriage"; - this.gridColumn128.Name = "gridColumn128"; - this.gridColumn128.OptionsColumn.AllowEdit = false; - this.gridColumn128.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn128.OptionsColumn.AllowMove = false; - this.gridColumn128.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn128.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn128.OptionsColumn.ReadOnly = true; - this.gridColumn128.OptionsFilter.AllowFilter = false; - this.gridColumn128.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); - this.gridColumn128.Visible = true; - this.gridColumn128.VisibleIndex = 2; - this.gridColumn128.Width = 60; + this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill; + this.xtraTabControl3.Location = new System.Drawing.Point(0, 0); + this.xtraTabControl3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.xtraTabControl3.Name = "xtraTabControl3"; + this.xtraTabControl3.SelectedTabPage = this.xtraTabPage2; + this.xtraTabControl3.Size = new System.Drawing.Size(550, 300); + this.xtraTabControl3.TabIndex = 0; + this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { + this.xtraTabPage2}); // - // gridColumn129 + // xtraTabPage2 // - this.gridColumn129.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn129.AppearanceCell.Options.UseFont = true; - this.gridColumn129.Caption = "序号"; - this.gridColumn129.FieldName = "Seq"; - this.gridColumn129.Name = "gridColumn129"; - this.gridColumn129.OptionsColumn.AllowEdit = false; - this.gridColumn129.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn129.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn129.OptionsColumn.ReadOnly = true; - this.gridColumn129.OptionsFilter.AllowFilter = false; - this.gridColumn129.Visible = true; - this.gridColumn129.VisibleIndex = 3; - this.gridColumn129.Width = 50; + this.xtraTabPage2.Controls.Add(this.DgcCheckCost); + this.xtraTabPage2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.xtraTabPage2.Name = "xtraTabPage2"; + this.xtraTabPage2.Size = new System.Drawing.Size(544, 271); + this.xtraTabPage2.Text = "团体订单"; + // + // DgcCheckCost + // + this.DgcCheckCost.ContextMenuStrip = this.TeamCostFastMenu; + this.DgcCheckCost.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcCheckCost.Location = new System.Drawing.Point(0, 0); + this.DgcCheckCost.MainView = this.DgvCheckCost; + this.DgcCheckCost.Name = "DgcCheckCost"; + this.DgcCheckCost.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { + this.repositoryItemMemoEdit3}); + this.DgcCheckCost.Size = new System.Drawing.Size(544, 271); + this.DgcCheckCost.TabIndex = 147; + this.DgcCheckCost.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvCheckCost}); // - // gridColumn130 + // TeamCostFastMenu // - this.gridColumn130.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn130.AppearanceCell.Options.UseFont = true; - this.gridColumn130.Caption = "创建人"; - this.gridColumn130.FieldName = "Creator"; - this.gridColumn130.Name = "gridColumn130"; - this.gridColumn130.OptionsColumn.AllowEdit = false; - this.gridColumn130.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn130.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn130.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn130.OptionsColumn.ReadOnly = true; - this.gridColumn130.OptionsFilter.AllowFilter = false; - this.gridColumn130.Visible = true; - this.gridColumn130.VisibleIndex = 4; - this.gridColumn130.Width = 80; + this.TeamCostFastMenu.ImageScalingSize = new System.Drawing.Size(20, 20); + this.TeamCostFastMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TFastCharge, + this.TFastAllCharge, + this.TFastDeleteCost, + this.TFastCancelCharge, + this.TFastChangeCost, + this.TFastAllDeleteCost, + this.TFastAllCancelCharge}); + this.TeamCostFastMenu.Name = "CostFastMenu"; + this.TeamCostFastMenu.Size = new System.Drawing.Size(161, 242); // - // gridColumn131 + // TFastCharge // - this.gridColumn131.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn131.AppearanceCell.Options.UseFont = true; - this.gridColumn131.Caption = "创建时间"; - this.gridColumn131.FieldName = "CreateTime"; - this.gridColumn131.Name = "gridColumn131"; - this.gridColumn131.OptionsColumn.AllowEdit = false; - this.gridColumn131.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn131.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn131.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn131.OptionsColumn.ReadOnly = true; - this.gridColumn131.OptionsFilter.AllowFilter = false; - this.gridColumn131.Visible = true; - this.gridColumn131.VisibleIndex = 5; - this.gridColumn131.Width = 130; + this.TFastCharge.Image = ((System.Drawing.Image)(resources.GetObject("TFastCharge.Image"))); + this.TFastCharge.Name = "TFastCharge"; + this.TFastCharge.Size = new System.Drawing.Size(160, 34); + this.TFastCharge.Text = "记账"; // - // gridColumn132 + // TFastAllCharge // - this.gridColumn132.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn132.AppearanceCell.Options.UseFont = true; - this.gridColumn132.Caption = "ID"; - this.gridColumn132.FieldName = "ID"; - this.gridColumn132.Name = "gridColumn132"; - this.gridColumn132.OptionsColumn.AllowEdit = false; - this.gridColumn132.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn132.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn132.OptionsColumn.ReadOnly = true; - this.gridColumn132.Visible = true; - this.gridColumn132.VisibleIndex = 6; - this.gridColumn132.Width = 40; + this.TFastAllCharge.Image = ((System.Drawing.Image)(resources.GetObject("TFastAllCharge.Image"))); + this.TFastAllCharge.Name = "TFastAllCharge"; + this.TFastAllCharge.Size = new System.Drawing.Size(160, 34); + this.TFastAllCharge.Text = "全部记账"; // - // gridView4 + // TFastDeleteCost // - this.gridView4.GridControl = this.DgcPack2; - this.gridView4.Name = "gridView4"; + this.TFastDeleteCost.Image = ((System.Drawing.Image)(resources.GetObject("TFastDeleteCost.Image"))); + this.TFastDeleteCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TFastDeleteCost.Name = "TFastDeleteCost"; + this.TFastDeleteCost.Size = new System.Drawing.Size(160, 34); + this.TFastDeleteCost.Text = "删除订单"; // - // tabPage2 + // TFastCancelCharge // - this.tabPage2.Controls.Add(this.DgcFeeItem2); - this.tabPage2.Controls.Add(this.FeeItemSearch2); - this.tabPage2.Location = new System.Drawing.Point(4, 23); - this.tabPage2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.tabPage2.Name = "tabPage2"; - this.tabPage2.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.tabPage2.Size = new System.Drawing.Size(372, 362); - this.tabPage2.TabIndex = 0; - this.tabPage2.Text = "收费项目"; - this.tabPage2.UseVisualStyleBackColor = true; + this.TFastCancelCharge.Image = ((System.Drawing.Image)(resources.GetObject("TFastCancelCharge.Image"))); + this.TFastCancelCharge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TFastCancelCharge.Name = "TFastCancelCharge"; + this.TFastCancelCharge.Size = new System.Drawing.Size(160, 34); + this.TFastCancelCharge.Text = "取消记账"; // - // DgcFeeItem2 + // TFastChangeCost // - this.DgcFeeItem2.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcFeeItem2.Location = new System.Drawing.Point(2, 25); - this.DgcFeeItem2.MainView = this.DgvFeeItem2; - this.DgcFeeItem2.Name = "DgcFeeItem2"; - this.DgcFeeItem2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { - this.repositoryItemCheckEdit2}); - this.DgcFeeItem2.Size = new System.Drawing.Size(368, 334); - this.DgcFeeItem2.TabIndex = 138; - this.DgcFeeItem2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvFeeItem2, - this.gridView6}); + this.TFastChangeCost.Image = global::PEIS.Properties.Resources.刷新; + this.TFastChangeCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TFastChangeCost.Name = "TFastChangeCost"; + this.TFastChangeCost.Size = new System.Drawing.Size(160, 34); + this.TFastChangeCost.Text = "订单转换"; // - // DgvFeeItem2 + // TFastAllDeleteCost // - this.DgvFeeItem2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold); - this.DgvFeeItem2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; - this.DgvFeeItem2.Appearance.FooterPanel.Options.UseFont = true; - this.DgvFeeItem2.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvFeeItem2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); - this.DgvFeeItem2.Appearance.GroupRow.Options.UseFont = true; - this.DgvFeeItem2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); - this.DgvFeeItem2.Appearance.Row.Options.UseFont = true; - this.DgvFeeItem2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn139, - this.gridColumn136, - this.gridColumn138, - this.gridColumn137, - this.gridColumn133, - this.gridColumn134, - this.gridColumn135, - this.gridColumn140}); - this.DgvFeeItem2.FixedLineWidth = 1; - this.DgvFeeItem2.GridControl = this.DgcFeeItem2; - this.DgvFeeItem2.IndicatorWidth = 40; - this.DgvFeeItem2.Name = "DgvFeeItem2"; - this.DgvFeeItem2.OptionsMenu.EnableColumnMenu = false; - this.DgvFeeItem2.OptionsSelection.MultiSelect = true; - this.DgvFeeItem2.OptionsView.ColumnAutoWidth = false; - this.DgvFeeItem2.OptionsView.ShowGroupPanel = false; - this.DgvFeeItem2.RowHeight = 40; + this.TFastAllDeleteCost.Name = "TFastAllDeleteCost"; + this.TFastAllDeleteCost.Size = new System.Drawing.Size(160, 34); + this.TFastAllDeleteCost.Text = "全部删除订单"; + this.TFastAllDeleteCost.Visible = false; // - // gridColumn139 + // TFastAllCancelCharge // - this.gridColumn139.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn139.AppearanceCell.Options.UseFont = true; - this.gridColumn139.Caption = "执行科室"; - this.gridColumn139.FieldName = "DeptName"; - this.gridColumn139.Name = "gridColumn139"; - this.gridColumn139.OptionsColumn.AllowEdit = false; - this.gridColumn139.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn139.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn139.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn139.OptionsColumn.ReadOnly = true; - this.gridColumn139.OptionsFilter.AllowFilter = false; - this.gridColumn139.Visible = true; - this.gridColumn139.VisibleIndex = 0; - this.gridColumn139.Width = 91; + this.TFastAllCancelCharge.Name = "TFastAllCancelCharge"; + this.TFastAllCancelCharge.Size = new System.Drawing.Size(160, 34); + this.TFastAllCancelCharge.Text = "全部取消记账"; + this.TFastAllCancelCharge.Visible = false; // - // gridColumn136 + // DgvCheckCost // - this.gridColumn136.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn136.AppearanceCell.ForeColor = System.Drawing.Color.SeaGreen; - this.gridColumn136.AppearanceCell.Options.UseFont = true; - this.gridColumn136.AppearanceCell.Options.UseForeColor = true; - this.gridColumn136.Caption = "项目名称"; - this.gridColumn136.FieldName = "FeeItemName"; - this.gridColumn136.Name = "gridColumn136"; - this.gridColumn136.OptionsColumn.AllowEdit = false; - this.gridColumn136.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn136.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn136.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn136.OptionsColumn.ReadOnly = true; - this.gridColumn136.OptionsFilter.AllowFilter = false; - this.gridColumn136.Visible = true; - this.gridColumn136.VisibleIndex = 1; - this.gridColumn136.Width = 200; + this.DgvCheckCost.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); + this.DgvCheckCost.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); + this.DgvCheckCost.Appearance.FooterPanel.Options.UseFont = true; + this.DgvCheckCost.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvCheckCost.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); + this.DgvCheckCost.Appearance.GroupRow.Options.UseFont = true; + this.DgvCheckCost.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); + this.DgvCheckCost.Appearance.Row.Options.UseFont = true; + this.DgvCheckCost.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn98, + this.gridColumn118, + this.gridColumn123, + this.gridColumn142, + this.gridColumn119, + this.gridColumn121, + this.gridColumn122, + this.gridColumn124, + this.gridColumn141, + this.gridColumn120, + this.gridColumn125, + this.gridColumn153, + this.gridColumn154, + this.gridColumn155, + this.gridColumn156, + this.gridColumn101, + this.gridColumn102}); + this.DgvCheckCost.FixedLineWidth = 1; + gridFormatRule2.ApplyToRow = true; + gridFormatRule2.Column = this.gridColumn102; + gridFormatRule2.Name = "Format0"; + formatConditionRuleExpression2.Appearance.ForeColor = System.Drawing.Color.Gray; + formatConditionRuleExpression2.Appearance.Options.UseForeColor = true; + formatConditionRuleExpression2.Expression = "[CancelTime] Is Not Null"; + formatConditionRuleExpression2.PredefinedName = "Strikeout Text"; + gridFormatRule2.Rule = formatConditionRuleExpression2; + this.DgvCheckCost.FormatRules.Add(gridFormatRule2); + this.DgvCheckCost.GridControl = this.DgcCheckCost; + this.DgvCheckCost.GroupCount = 1; + this.DgvCheckCost.GroupFormat = ""; + this.DgvCheckCost.IndicatorWidth = 40; + this.DgvCheckCost.Name = "DgvCheckCost"; + this.DgvCheckCost.OptionsSelection.MultiSelect = true; + this.DgvCheckCost.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect; + this.DgvCheckCost.OptionsView.ColumnAutoWidth = false; + this.DgvCheckCost.OptionsView.ShowFooter = true; + this.DgvCheckCost.OptionsView.ShowGroupPanel = false; + this.DgvCheckCost.OptionsView.ShowIndicator = false; + this.DgvCheckCost.RowHeight = 40; + this.DgvCheckCost.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { + new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn98, DevExpress.Data.ColumnSortOrder.Ascending)}); // - // gridColumn138 + // gridColumn98 // - this.gridColumn138.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn138.AppearanceCell.Options.UseFont = true; - this.gridColumn138.Caption = "收费价格"; - this.gridColumn138.FieldName = "Price"; - this.gridColumn138.Name = "gridColumn138"; - this.gridColumn138.OptionsColumn.AllowEdit = false; - this.gridColumn138.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn138.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn138.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn138.OptionsColumn.ReadOnly = true; - this.gridColumn138.OptionsFilter.AllowFilter = false; - this.gridColumn138.Visible = true; - this.gridColumn138.VisibleIndex = 2; - this.gridColumn138.Width = 60; + this.gridColumn98.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn98.AppearanceCell.Options.UseFont = true; + this.gridColumn98.Caption = " "; + this.gridColumn98.FieldName = "GroupTag"; + this.gridColumn98.Name = "gridColumn98"; + this.gridColumn98.OptionsColumn.AllowEdit = false; + this.gridColumn98.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn98.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn98.OptionsColumn.AllowMove = false; + this.gridColumn98.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn98.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn98.OptionsColumn.ReadOnly = true; + this.gridColumn98.OptionsFilter.AllowFilter = false; // - // gridColumn137 + // gridColumn118 // - this.gridColumn137.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn137.AppearanceCell.Options.UseFont = true; - this.gridColumn137.Caption = "核算价格"; - this.gridColumn137.FieldName = "SettlePrice"; - this.gridColumn137.Name = "gridColumn137"; - this.gridColumn137.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn137.OptionsFilter.AllowFilter = false; - this.gridColumn137.Visible = true; - this.gridColumn137.VisibleIndex = 3; + this.gridColumn118.Caption = "订单号"; + this.gridColumn118.FieldName = "ID"; + this.gridColumn118.Name = "gridColumn118"; + this.gridColumn118.OptionsColumn.AllowEdit = false; + this.gridColumn118.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn118.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn118.OptionsColumn.AllowMove = false; + this.gridColumn118.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn118.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn118.OptionsColumn.ReadOnly = true; + this.gridColumn118.OptionsFilter.AllowFilter = false; + this.gridColumn118.Visible = true; + this.gridColumn118.VisibleIndex = 0; + this.gridColumn118.Width = 63; // - // gridColumn133 + // gridColumn123 // - this.gridColumn133.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn133.AppearanceCell.Options.UseFont = true; - this.gridColumn133.Caption = "项目类别"; - this.gridColumn133.FieldName = "ItemClass"; - this.gridColumn133.Name = "gridColumn133"; - this.gridColumn133.OptionsColumn.AllowEdit = false; - this.gridColumn133.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn133.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn133.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn133.OptionsColumn.ReadOnly = true; - this.gridColumn133.OptionsFilter.AllowFilter = false; - this.gridColumn133.Visible = true; - this.gridColumn133.VisibleIndex = 4; - this.gridColumn133.Width = 76; + this.gridColumn123.Caption = "体检号"; + this.gridColumn123.FieldName = "EID"; + this.gridColumn123.Name = "gridColumn123"; + this.gridColumn123.OptionsColumn.AllowEdit = false; + this.gridColumn123.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn123.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn123.OptionsColumn.AllowMove = false; + this.gridColumn123.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn123.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn123.OptionsColumn.ReadOnly = true; + this.gridColumn123.OptionsFilter.AllowFilter = false; + this.gridColumn123.Visible = true; + this.gridColumn123.VisibleIndex = 1; // - // gridColumn134 + // gridColumn142 // - this.gridColumn134.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn134.AppearanceCell.Options.UseFont = true; - this.gridColumn134.Caption = "类型"; - this.gridColumn134.FieldName = "UnitName"; - this.gridColumn134.Name = "gridColumn134"; - this.gridColumn134.OptionsColumn.AllowEdit = false; - this.gridColumn134.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn134.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn134.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn134.OptionsColumn.ReadOnly = true; - this.gridColumn134.OptionsFilter.AllowFilter = false; - this.gridColumn134.Visible = true; - this.gridColumn134.VisibleIndex = 5; - this.gridColumn134.Width = 50; + this.gridColumn142.Caption = "姓名"; + this.gridColumn142.FieldName = "Name"; + this.gridColumn142.Name = "gridColumn142"; + this.gridColumn142.OptionsColumn.AllowEdit = false; + this.gridColumn142.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn142.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn142.OptionsColumn.AllowMove = false; + this.gridColumn142.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn142.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn142.OptionsColumn.ReadOnly = true; + this.gridColumn142.OptionsFilter.AllowFilter = false; + this.gridColumn142.Visible = true; + this.gridColumn142.VisibleIndex = 2; // - // gridColumn135 + // gridColumn119 // - this.gridColumn135.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn135.AppearanceCell.Options.UseFont = true; - this.gridColumn135.Caption = "费用代码"; - this.gridColumn135.FieldName = "FeeItemCode"; - this.gridColumn135.Name = "gridColumn135"; - this.gridColumn135.OptionsColumn.AllowEdit = false; - this.gridColumn135.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn135.OptionsColumn.AllowMove = false; - this.gridColumn135.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn135.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn135.OptionsColumn.ReadOnly = true; - this.gridColumn135.OptionsFilter.AllowFilter = false; - this.gridColumn135.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); - this.gridColumn135.Visible = true; - this.gridColumn135.VisibleIndex = 6; - this.gridColumn135.Width = 80; + this.gridColumn119.Caption = "费用合计"; + this.gridColumn119.DisplayFormat.FormatString = "c"; + this.gridColumn119.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn119.FieldName = "Sum"; + this.gridColumn119.Name = "gridColumn119"; + this.gridColumn119.OptionsColumn.AllowEdit = false; + this.gridColumn119.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn119.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn119.OptionsColumn.AllowMove = false; + this.gridColumn119.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn119.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn119.OptionsColumn.ReadOnly = true; + this.gridColumn119.OptionsFilter.AllowFilter = false; + this.gridColumn119.Visible = true; + this.gridColumn119.VisibleIndex = 3; + this.gridColumn119.Width = 101; // - // gridColumn140 + // gridColumn121 // - this.gridColumn140.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn140.AppearanceCell.Options.UseFont = true; - this.gridColumn140.Caption = "ID"; - this.gridColumn140.FieldName = "ID"; - this.gridColumn140.Name = "gridColumn140"; - this.gridColumn140.Visible = true; - this.gridColumn140.VisibleIndex = 7; - this.gridColumn140.Width = 40; + this.gridColumn121.Caption = "折扣"; + this.gridColumn121.FieldName = "Discount"; + this.gridColumn121.Name = "gridColumn121"; + this.gridColumn121.OptionsColumn.AllowEdit = false; + this.gridColumn121.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn121.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn121.OptionsColumn.AllowMove = false; + this.gridColumn121.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn121.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn121.OptionsColumn.ReadOnly = true; + this.gridColumn121.OptionsFilter.AllowFilter = false; + this.gridColumn121.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); + this.gridColumn121.Visible = true; + this.gridColumn121.VisibleIndex = 4; + this.gridColumn121.Width = 73; // - // repositoryItemCheckEdit2 + // gridColumn122 // - this.repositoryItemCheckEdit2.AutoHeight = false; - this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2"; + this.gridColumn122.Caption = "实收费用"; + this.gridColumn122.DisplayFormat.FormatString = "c"; + this.gridColumn122.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn122.FieldName = "Fee"; + this.gridColumn122.GroupFormat.FormatString = "c"; + this.gridColumn122.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; + this.gridColumn122.Name = "gridColumn122"; + this.gridColumn122.OptionsColumn.AllowEdit = false; + this.gridColumn122.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn122.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn122.OptionsColumn.AllowMove = false; + this.gridColumn122.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn122.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn122.OptionsColumn.ReadOnly = true; + this.gridColumn122.OptionsFilter.AllowFilter = false; + this.gridColumn122.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Fee", "¥{0:0.##}")}); + this.gridColumn122.Visible = true; + this.gridColumn122.VisibleIndex = 5; + this.gridColumn122.Width = 120; // - // gridView6 + // gridColumn124 // - this.gridView6.GridControl = this.DgcFeeItem2; - this.gridView6.Name = "gridView6"; + this.gridColumn124.Caption = "创建人"; + this.gridColumn124.FieldName = "Creator"; + this.gridColumn124.Name = "gridColumn124"; + this.gridColumn124.OptionsColumn.AllowEdit = false; + this.gridColumn124.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn124.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn124.OptionsColumn.AllowMove = false; + this.gridColumn124.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn124.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn124.OptionsColumn.ReadOnly = true; + this.gridColumn124.OptionsFilter.AllowFilter = false; + this.gridColumn124.Visible = true; + this.gridColumn124.VisibleIndex = 6; + this.gridColumn124.Width = 70; // - // FeeItemSearch2 + // gridColumn141 // - this.FeeItemSearch2.Dock = System.Windows.Forms.DockStyle.Top; - this.FeeItemSearch2.Location = new System.Drawing.Point(2, 3); - this.FeeItemSearch2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.FeeItemSearch2.Name = "FeeItemSearch2"; - this.FeeItemSearch2.Size = new System.Drawing.Size(368, 22); - this.FeeItemSearch2.TabIndex = 137; + this.gridColumn141.Caption = "创建时间"; + this.gridColumn141.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn141.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn141.FieldName = "CreateTime"; + this.gridColumn141.Name = "gridColumn141"; + this.gridColumn141.OptionsColumn.AllowEdit = false; + this.gridColumn141.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn141.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn141.OptionsColumn.AllowMove = false; + this.gridColumn141.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn141.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn141.OptionsColumn.ReadOnly = true; + this.gridColumn141.OptionsFilter.AllowFilter = false; + this.gridColumn141.Visible = true; + this.gridColumn141.VisibleIndex = 7; + this.gridColumn141.Width = 130; // - // panel7 + // gridColumn120 // - this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.panel7.Controls.Add(this.menuStrip1); - this.panel7.Dock = System.Windows.Forms.DockStyle.Top; - this.panel7.Location = new System.Drawing.Point(285, 0); - this.panel7.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel7.Name = "panel7"; - this.panel7.Size = new System.Drawing.Size(911, 42); - this.panel7.TabIndex = 146; + this.gridColumn120.Caption = "记账人"; + this.gridColumn120.FieldName = "Charger"; + this.gridColumn120.Name = "gridColumn120"; + this.gridColumn120.OptionsColumn.AllowEdit = false; + this.gridColumn120.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn120.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn120.OptionsColumn.AllowMove = false; + this.gridColumn120.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn120.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn120.OptionsColumn.ReadOnly = true; + this.gridColumn120.OptionsFilter.AllowFilter = false; + this.gridColumn120.Visible = true; + this.gridColumn120.VisibleIndex = 8; + // + // gridColumn125 + // + this.gridColumn125.Caption = "记账时间"; + this.gridColumn125.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn125.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn125.FieldName = "ChargeTime"; + this.gridColumn125.Name = "gridColumn125"; + this.gridColumn125.OptionsColumn.AllowEdit = false; + this.gridColumn125.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn125.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn125.OptionsColumn.AllowMove = false; + this.gridColumn125.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn125.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn125.OptionsColumn.ReadOnly = true; + this.gridColumn125.OptionsFilter.AllowFilter = false; + this.gridColumn125.Visible = true; + this.gridColumn125.VisibleIndex = 9; + this.gridColumn125.Width = 130; // - // menuStrip1 + // gridColumn153 // - this.menuStrip1.BackColor = System.Drawing.Color.White; - this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None; - this.menuStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; - this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); - this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.TsmiCheckOrg, - this.toolStripMenuItem1, - this.TsmiCheckPerson, - this.toolStripMenuItem7, - this.TsmiPrintCost, - this.toolStripMenuItem3, - this.TsmiFee, - this.toolStripMenuItem2, - this.TsmiSend, - this.toolStripMenuItem4, - this.TsmiPrintGuide, - this.toolStripMenuItem5, - this.TsmiOpenFeeItem, - this.toolStripMenuItem6, - this.TsmiBatchCtrl}); - this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; - this.menuStrip1.Location = new System.Drawing.Point(0, 0); - this.menuStrip1.Name = "menuStrip1"; - this.menuStrip1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2); - this.menuStrip1.Size = new System.Drawing.Size(893, 44); - this.menuStrip1.TabIndex = 129; - this.menuStrip1.Text = "menuStrip1"; + this.gridColumn153.Caption = "发送人"; + this.gridColumn153.FieldName = "Sender"; + this.gridColumn153.Name = "gridColumn153"; + this.gridColumn153.OptionsColumn.AllowEdit = false; + this.gridColumn153.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn153.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn153.OptionsColumn.AllowMove = false; + this.gridColumn153.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn153.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn153.OptionsColumn.ReadOnly = true; + this.gridColumn153.OptionsFilter.AllowFilter = false; + this.gridColumn153.Visible = true; + this.gridColumn153.VisibleIndex = 10; // - // TsmiCheckOrg + // gridColumn154 // - this.TsmiCheckOrg.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCheckOrg.Image"))); - this.TsmiCheckOrg.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiCheckOrg.Name = "TsmiCheckOrg"; - this.TsmiCheckOrg.Size = new System.Drawing.Size(120, 40); - this.TsmiCheckOrg.Text = "生成团体订单"; + this.gridColumn154.Caption = "发送时间"; + this.gridColumn154.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn154.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn154.FieldName = "SendTime"; + this.gridColumn154.Name = "gridColumn154"; + this.gridColumn154.OptionsColumn.AllowEdit = false; + this.gridColumn154.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn154.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn154.OptionsColumn.AllowMove = false; + this.gridColumn154.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn154.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn154.OptionsColumn.ReadOnly = true; + this.gridColumn154.OptionsFilter.AllowFilter = false; + this.gridColumn154.Visible = true; + this.gridColumn154.VisibleIndex = 11; + this.gridColumn154.Width = 130; // - // toolStripMenuItem1 + // gridColumn155 // - this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - this.toolStripMenuItem1.Size = new System.Drawing.Size(12, 40); + this.gridColumn155.Caption = "收费人"; + this.gridColumn155.FieldName = "Coster"; + this.gridColumn155.Name = "gridColumn155"; + this.gridColumn155.OptionsColumn.AllowEdit = false; + this.gridColumn155.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn155.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn155.OptionsColumn.AllowMove = false; + this.gridColumn155.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn155.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn155.OptionsColumn.ReadOnly = true; + this.gridColumn155.OptionsFilter.AllowFilter = false; + this.gridColumn155.Visible = true; + this.gridColumn155.VisibleIndex = 12; // - // TsmiCheckPerson + // gridColumn156 // - this.TsmiCheckPerson.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCheckPerson.Image"))); - this.TsmiCheckPerson.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiCheckPerson.Name = "TsmiCheckPerson"; - this.TsmiCheckPerson.Size = new System.Drawing.Size(122, 40); - this.TsmiCheckPerson.Text = "生成个人订单"; + this.gridColumn156.Caption = "收费时间"; + this.gridColumn156.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn156.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn156.FieldName = "CostTime"; + this.gridColumn156.Name = "gridColumn156"; + this.gridColumn156.OptionsColumn.AllowEdit = false; + this.gridColumn156.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn156.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn156.OptionsColumn.AllowMove = false; + this.gridColumn156.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn156.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn156.OptionsColumn.ReadOnly = true; + this.gridColumn156.OptionsFilter.AllowFilter = false; + this.gridColumn156.Visible = true; + this.gridColumn156.VisibleIndex = 13; + this.gridColumn156.Width = 130; // - // toolStripMenuItem7 + // gridColumn101 // - this.toolStripMenuItem7.Name = "toolStripMenuItem7"; - this.toolStripMenuItem7.Size = new System.Drawing.Size(12, 40); + this.gridColumn101.Caption = "退费人"; + this.gridColumn101.FieldName = "Cancer"; + this.gridColumn101.Name = "gridColumn101"; + this.gridColumn101.OptionsColumn.AllowEdit = false; + this.gridColumn101.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn101.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn101.OptionsColumn.AllowMove = false; + this.gridColumn101.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn101.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn101.OptionsColumn.ReadOnly = true; + this.gridColumn101.OptionsFilter.AllowFilter = false; + this.gridColumn101.Visible = true; + this.gridColumn101.VisibleIndex = 14; // - // TsmiPrintCost + // repositoryItemMemoEdit3 // - this.TsmiPrintCost.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.TsmiPrintPerson, - this.TsmiPrintTeam, - this.TsmiPrintGroup}); - this.TsmiPrintCost.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintCost.Image"))); - this.TsmiPrintCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiPrintCost.Name = "TsmiPrintCost"; - this.TsmiPrintCost.Size = new System.Drawing.Size(116, 40); - this.TsmiPrintCost.Text = "打印收费单"; + this.repositoryItemMemoEdit3.Appearance.Options.UseTextOptions = true; + this.repositoryItemMemoEdit3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.repositoryItemMemoEdit3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; + this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3"; // - // TsmiPrintPerson + // splitter5 // - this.TsmiPrintPerson.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintPerson.Image"))); - this.TsmiPrintPerson.Name = "TsmiPrintPerson"; - this.TsmiPrintPerson.Size = new System.Drawing.Size(188, 26); - this.TsmiPrintPerson.Text = "打印个人收费单"; + this.splitter5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); + this.splitter5.Dock = System.Windows.Forms.DockStyle.Top; + this.splitter5.Location = new System.Drawing.Point(0, 389); + this.splitter5.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.splitter5.Name = "splitter5"; + this.splitter5.Size = new System.Drawing.Size(911, 5); + this.splitter5.TabIndex = 152; + this.splitter5.TabStop = false; // - // TsmiPrintTeam + // panel8 // - this.TsmiPrintTeam.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintTeam.Image"))); - this.TsmiPrintTeam.Name = "TsmiPrintTeam"; - this.TsmiPrintTeam.Size = new System.Drawing.Size(188, 26); - this.TsmiPrintTeam.Text = "打印团体收费单"; + this.panel8.Controls.Add(this.DgcEnrollmentFeeItem); + this.panel8.Controls.Add(this.splitter7); + this.panel8.Controls.Add(this.PnlFeeItem); + this.panel8.Dock = System.Windows.Forms.DockStyle.Top; + this.panel8.Location = new System.Drawing.Point(0, 0); + this.panel8.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel8.Name = "panel8"; + this.panel8.Size = new System.Drawing.Size(911, 389); + this.panel8.TabIndex = 151; // - // TsmiPrintGroup + // DgcEnrollmentFeeItem // - this.TsmiPrintGroup.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintGroup.Image"))); - this.TsmiPrintGroup.Name = "TsmiPrintGroup"; - this.TsmiPrintGroup.Size = new System.Drawing.Size(188, 26); - this.TsmiPrintGroup.Text = "打印团体分组收费单"; + this.DgcEnrollmentFeeItem.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcEnrollmentFeeItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.DgcEnrollmentFeeItem.Location = new System.Drawing.Point(0, 0); + this.DgcEnrollmentFeeItem.MainView = this.DgvEnrollmentFeeItem; + this.DgcEnrollmentFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.DgcEnrollmentFeeItem.Name = "DgcEnrollmentFeeItem"; + this.DgcEnrollmentFeeItem.Size = new System.Drawing.Size(414, 389); + this.DgcEnrollmentFeeItem.TabIndex = 150; + this.DgcEnrollmentFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvEnrollmentFeeItem}); // - // toolStripMenuItem3 + // DgvEnrollmentFeeItem // - this.toolStripMenuItem3.Name = "toolStripMenuItem3"; - this.toolStripMenuItem3.Size = new System.Drawing.Size(12, 40); - this.toolStripMenuItem3.Visible = false; + this.DgvEnrollmentFeeItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); + this.DgvEnrollmentFeeItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); + this.DgvEnrollmentFeeItem.Appearance.FooterPanel.Options.UseFont = true; + this.DgvEnrollmentFeeItem.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvEnrollmentFeeItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn110, + this.gridColumn111, + this.gridColumn112, + this.gridColumn113, + this.gridColumn114, + this.gridColumn115, + this.gridColumn116, + this.gridColumn117, + this.gridColumn161, + this.gridColumn163}); + this.DgvEnrollmentFeeItem.GridControl = this.DgcEnrollmentFeeItem; + this.DgvEnrollmentFeeItem.GroupCount = 1; + this.DgvEnrollmentFeeItem.GroupFormat = ""; + this.DgvEnrollmentFeeItem.Name = "DgvEnrollmentFeeItem"; + this.DgvEnrollmentFeeItem.OptionsBehavior.Editable = false; + this.DgvEnrollmentFeeItem.OptionsMenu.EnableColumnMenu = false; + this.DgvEnrollmentFeeItem.OptionsView.AllowCellMerge = true; + this.DgvEnrollmentFeeItem.OptionsView.ColumnAutoWidth = false; + this.DgvEnrollmentFeeItem.OptionsView.ShowFooter = true; + this.DgvEnrollmentFeeItem.OptionsView.ShowGroupPanel = false; + this.DgvEnrollmentFeeItem.OptionsView.ShowIndicator = false; + this.DgvEnrollmentFeeItem.RowHeight = 40; + this.DgvEnrollmentFeeItem.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { + new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn163, DevExpress.Data.ColumnSortOrder.Ascending)}); // - // TsmiFee + // gridColumn110 // - this.TsmiFee.Image = ((System.Drawing.Image)(resources.GetObject("TsmiFee.Image"))); - this.TsmiFee.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiFee.Name = "TsmiFee"; - this.TsmiFee.Size = new System.Drawing.Size(80, 40); - this.TsmiFee.Text = "记账"; - this.TsmiFee.Visible = false; + this.gridColumn110.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn110.AppearanceCell.Options.UseFont = true; + this.gridColumn110.Caption = "订单号"; + this.gridColumn110.FieldName = "OrderNo"; + this.gridColumn110.Name = "gridColumn110"; + this.gridColumn110.OptionsColumn.AllowEdit = false; + this.gridColumn110.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn110.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn110.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn110.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn110.OptionsColumn.ReadOnly = true; + this.gridColumn110.OptionsFilter.AllowFilter = false; + this.gridColumn110.Visible = true; + this.gridColumn110.VisibleIndex = 0; + this.gridColumn110.Width = 60; + // + // gridColumn111 + // + this.gridColumn111.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn111.AppearanceCell.Options.UseFont = true; + this.gridColumn111.Caption = "套餐"; + this.gridColumn111.FieldName = "PackName"; + this.gridColumn111.Name = "gridColumn111"; + this.gridColumn111.OptionsColumn.AllowEdit = false; + this.gridColumn111.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn111.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn111.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn111.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn111.OptionsColumn.ReadOnly = true; + this.gridColumn111.OptionsFilter.AllowFilter = false; + this.gridColumn111.Visible = true; + this.gridColumn111.VisibleIndex = 1; + this.gridColumn111.Width = 147; // - // toolStripMenuItem2 + // gridColumn112 // - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; - this.toolStripMenuItem2.Size = new System.Drawing.Size(12, 40); + this.gridColumn112.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn112.AppearanceCell.Options.UseFont = true; + this.gridColumn112.Caption = "收费项目"; + this.gridColumn112.FieldName = "FeeItemName"; + this.gridColumn112.Name = "gridColumn112"; + this.gridColumn112.OptionsColumn.AllowEdit = false; + this.gridColumn112.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn112.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn112.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn112.OptionsColumn.ReadOnly = true; + this.gridColumn112.OptionsFilter.AllowFilter = false; + this.gridColumn112.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); + this.gridColumn112.Visible = true; + this.gridColumn112.VisibleIndex = 2; // - // TsmiSend + // gridColumn113 // - this.TsmiSend.Image = ((System.Drawing.Image)(resources.GetObject("TsmiSend.Image"))); - this.TsmiSend.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiSend.Name = "TsmiSend"; - this.TsmiSend.Size = new System.Drawing.Size(112, 40); - this.TsmiSend.Text = "发送到科室"; + this.gridColumn113.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn113.AppearanceCell.Options.UseFont = true; + this.gridColumn113.Caption = "收费价格"; + this.gridColumn113.FieldName = "Price"; + this.gridColumn113.Name = "gridColumn113"; + this.gridColumn113.OptionsColumn.AllowEdit = false; + this.gridColumn113.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn113.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn113.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn113.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn113.OptionsColumn.ReadOnly = true; + this.gridColumn113.OptionsFilter.AllowFilter = false; + this.gridColumn113.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Price", "¥{0:0.##}")}); + this.gridColumn113.Visible = true; + this.gridColumn113.VisibleIndex = 3; // - // toolStripMenuItem4 + // gridColumn114 // - this.toolStripMenuItem4.Name = "toolStripMenuItem4"; - this.toolStripMenuItem4.Size = new System.Drawing.Size(12, 40); + this.gridColumn114.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn114.AppearanceCell.Options.UseFont = true; + this.gridColumn114.Caption = "核算价格"; + this.gridColumn114.FieldName = "SettlePrice"; + this.gridColumn114.Name = "gridColumn114"; + this.gridColumn114.OptionsColumn.AllowEdit = false; + this.gridColumn114.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn114.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn114.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn114.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn114.OptionsColumn.ReadOnly = true; + this.gridColumn114.OptionsFilter.AllowFilter = false; + this.gridColumn114.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "SettlePrice", "¥{0:0.##}")}); + this.gridColumn114.Visible = true; + this.gridColumn114.VisibleIndex = 4; // - // TsmiPrintGuide + // gridColumn115 // - this.TsmiPrintGuide.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintGuide.Image"))); - this.TsmiPrintGuide.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiPrintGuide.Name = "TsmiPrintGuide"; - this.TsmiPrintGuide.Size = new System.Drawing.Size(116, 40); - this.TsmiPrintGuide.Text = "打印导检单"; + this.gridColumn115.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn115.AppearanceCell.Options.UseFont = true; + this.gridColumn115.Caption = "执行科室"; + this.gridColumn115.FieldName = "DeptName"; + this.gridColumn115.Name = "gridColumn115"; + this.gridColumn115.OptionsColumn.AllowEdit = false; + this.gridColumn115.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn115.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn115.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn115.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn115.OptionsColumn.ReadOnly = true; + this.gridColumn115.OptionsFilter.AllowFilter = false; + this.gridColumn115.Visible = true; + this.gridColumn115.VisibleIndex = 5; // - // toolStripMenuItem5 + // gridColumn116 // - this.toolStripMenuItem5.Name = "toolStripMenuItem5"; - this.toolStripMenuItem5.Size = new System.Drawing.Size(12, 40); + this.gridColumn116.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn116.AppearanceCell.Options.UseFont = true; + this.gridColumn116.Caption = "数量"; + this.gridColumn116.FieldName = "Quantity"; + this.gridColumn116.Name = "gridColumn116"; + this.gridColumn116.OptionsColumn.AllowEdit = false; + this.gridColumn116.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn116.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn116.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn116.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn116.OptionsColumn.ReadOnly = true; + this.gridColumn116.OptionsFilter.AllowFilter = false; + this.gridColumn116.Visible = true; + this.gridColumn116.VisibleIndex = 6; + this.gridColumn116.Width = 59; // - // TsmiOpenFeeItem + // gridColumn117 // - this.TsmiOpenFeeItem.Image = ((System.Drawing.Image)(resources.GetObject("TsmiOpenFeeItem.Image"))); - this.TsmiOpenFeeItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiOpenFeeItem.Name = "TsmiOpenFeeItem"; - this.TsmiOpenFeeItem.Size = new System.Drawing.Size(120, 40); - this.TsmiOpenFeeItem.Text = "打开收费项目"; + this.gridColumn117.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn117.AppearanceCell.Options.UseFont = true; + this.gridColumn117.Caption = "单位"; + this.gridColumn117.FieldName = "Unit"; + this.gridColumn117.Name = "gridColumn117"; + this.gridColumn117.OptionsColumn.AllowEdit = false; + this.gridColumn117.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn117.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn117.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn117.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn117.OptionsColumn.ReadOnly = true; + this.gridColumn117.OptionsFilter.AllowFilter = false; + this.gridColumn117.Visible = true; + this.gridColumn117.VisibleIndex = 7; + this.gridColumn117.Width = 48; // - // toolStripMenuItem6 + // gridColumn161 // - this.toolStripMenuItem6.Name = "toolStripMenuItem6"; - this.toolStripMenuItem6.Size = new System.Drawing.Size(12, 40); + this.gridColumn161.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn161.AppearanceCell.Options.UseFont = true; + this.gridColumn161.Caption = "检查类别"; + this.gridColumn161.FieldName = "ItemClass"; + this.gridColumn161.Name = "gridColumn161"; + this.gridColumn161.OptionsColumn.AllowEdit = false; + this.gridColumn161.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn161.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn161.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn161.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn161.OptionsColumn.ReadOnly = true; + this.gridColumn161.OptionsFilter.AllowFilter = false; + this.gridColumn161.Visible = true; + this.gridColumn161.VisibleIndex = 8; // - // TsmiBatchCtrl + // gridColumn163 // - this.TsmiBatchCtrl.Image = ((System.Drawing.Image)(resources.GetObject("TsmiBatchCtrl.Image"))); - this.TsmiBatchCtrl.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TsmiBatchCtrl.Name = "TsmiBatchCtrl"; - this.TsmiBatchCtrl.Size = new System.Drawing.Size(104, 40); - this.TsmiBatchCtrl.Text = "批量操作"; + this.gridColumn163.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn163.AppearanceCell.Options.UseFont = true; + this.gridColumn163.Caption = "gridColumn163"; + this.gridColumn163.FieldName = "OEID"; + this.gridColumn163.Name = "gridColumn163"; + this.gridColumn163.OptionsColumn.AllowEdit = false; + this.gridColumn163.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn163.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn163.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn163.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn163.OptionsColumn.ReadOnly = true; + this.gridColumn163.OptionsFilter.AllowFilter = false; // - // splitterControl1 + // splitter7 // - this.splitterControl1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); - this.splitterControl1.Appearance.Options.UseBackColor = true; - this.splitterControl1.Location = new System.Drawing.Point(280, 0); - this.splitterControl1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.splitterControl1.Name = "splitterControl1"; - this.splitterControl1.Size = new System.Drawing.Size(5, 736); - this.splitterControl1.TabIndex = 145; - this.splitterControl1.TabStop = false; + this.splitter7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); + this.splitter7.Dock = System.Windows.Forms.DockStyle.Right; + this.splitter7.Location = new System.Drawing.Point(414, 0); + this.splitter7.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.splitter7.Name = "splitter7"; + this.splitter7.Size = new System.Drawing.Size(5, 389); + this.splitter7.TabIndex = 149; + this.splitter7.TabStop = false; + this.splitter7.Visible = false; // - // panel11 + // PnlFeeItem // - this.panel11.Controls.Add(this.DgcEnrollment); - this.panel11.Controls.Add(this.PatientSearch); - this.panel11.Dock = System.Windows.Forms.DockStyle.Left; - this.panel11.Location = new System.Drawing.Point(0, 0); - this.panel11.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel11.Name = "panel11"; - this.panel11.Size = new System.Drawing.Size(280, 736); - this.panel11.TabIndex = 144; + this.PnlFeeItem.Controls.Add(this.tabControl2); + this.PnlFeeItem.Dock = System.Windows.Forms.DockStyle.Right; + this.PnlFeeItem.Location = new System.Drawing.Point(419, 0); + this.PnlFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.PnlFeeItem.Name = "PnlFeeItem"; + this.PnlFeeItem.Size = new System.Drawing.Size(492, 389); + this.PnlFeeItem.TabIndex = 147; + this.PnlFeeItem.Visible = false; // - // DgcEnrollment + // tabControl2 // - this.DgcEnrollment.ContextMenuStrip = this.InfoFastMenu; - this.DgcEnrollment.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcEnrollment.Location = new System.Drawing.Point(0, 23); - this.DgcEnrollment.MainView = this.DgvEnrollment; - this.DgcEnrollment.Name = "DgcEnrollment"; - this.DgcEnrollment.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { - this.repositoryItemCheckEdit3}); - this.DgcEnrollment.Size = new System.Drawing.Size(280, 713); - this.DgcEnrollment.TabIndex = 133; - this.DgcEnrollment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvEnrollment}); + this.tabControl2.Controls.Add(this.tabPage1); + this.tabControl2.Controls.Add(this.tabPage2); + this.tabControl2.Controls.Add(this.CopyItemTab); + this.tabControl2.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControl2.Location = new System.Drawing.Point(0, 0); + this.tabControl2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.tabControl2.Name = "tabControl2"; + this.tabControl2.SelectedIndex = 0; + this.tabControl2.Size = new System.Drawing.Size(492, 389); + this.tabControl2.TabIndex = 139; // - // InfoFastMenu + // tabPage1 // - this.InfoFastMenu.ImageScalingSize = new System.Drawing.Size(20, 20); - this.InfoFastMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.FastCamera, - this.FastDelete, - this.FastExport, - this.FastExportTime, - this.FastRecall, - this.FastGroup, - this.FastCancelGroup}); - this.InfoFastMenu.Name = "CostFastMenu"; - this.InfoFastMenu.Size = new System.Drawing.Size(205, 214); + this.tabPage1.Controls.Add(this.DgcPack2); + this.tabPage1.Location = new System.Drawing.Point(4, 23); + this.tabPage1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.tabPage1.Size = new System.Drawing.Size(484, 362); + this.tabPage1.TabIndex = 1; + this.tabPage1.Text = "套餐"; + this.tabPage1.UseVisualStyleBackColor = true; // - // FastCamera + // DgcPack2 // - this.FastCamera.Image = ((System.Drawing.Image)(resources.GetObject("FastCamera.Image"))); - this.FastCamera.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.FastCamera.Name = "FastCamera"; - this.FastCamera.Size = new System.Drawing.Size(204, 30); - this.FastCamera.Text = "拍照"; + this.DgcPack2.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcPack2.Location = new System.Drawing.Point(2, 3); + this.DgcPack2.MainView = this.DgvPack2; + this.DgcPack2.Name = "DgcPack2"; + this.DgcPack2.Size = new System.Drawing.Size(480, 356); + this.DgcPack2.TabIndex = 122; + this.DgcPack2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvPack2, + this.gridView4}); // - // FastDelete + // DgvPack2 // - this.FastDelete.Image = ((System.Drawing.Image)(resources.GetObject("FastDelete.Image"))); - this.FastDelete.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.FastDelete.Name = "FastDelete"; - this.FastDelete.Size = new System.Drawing.Size(204, 30); - this.FastDelete.Text = "删除成员"; + this.DgvPack2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvPack2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; + this.DgvPack2.Appearance.FooterPanel.Options.UseFont = true; + this.DgvPack2.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvPack2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvPack2.Appearance.GroupRow.Options.UseFont = true; + this.DgvPack2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.DgvPack2.Appearance.Row.Options.UseFont = true; + this.DgvPack2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn126, + this.gridColumn127, + this.gridColumn128, + this.gridColumn129, + this.gridColumn130, + this.gridColumn131, + this.gridColumn132}); + this.DgvPack2.FixedLineWidth = 1; + this.DgvPack2.GridControl = this.DgcPack2; + this.DgvPack2.IndicatorWidth = 40; + this.DgvPack2.Name = "DgvPack2"; + this.DgvPack2.OptionsMenu.EnableColumnMenu = false; + this.DgvPack2.OptionsSelection.MultiSelect = true; + this.DgvPack2.OptionsView.ColumnAutoWidth = false; + this.DgvPack2.OptionsView.ShowGroupPanel = false; + this.DgvPack2.RowHeight = 40; // - // FastExport + // gridColumn126 // - this.FastExport.Image = global::PEIS.Properties.Resources.Excel; - this.FastExport.Name = "FastExport"; - this.FastExport.Size = new System.Drawing.Size(204, 30); - this.FastExport.Text = "导出所有成员"; + this.gridColumn126.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn126.AppearanceCell.Options.UseFont = true; + this.gridColumn126.Caption = "套餐名称"; + this.gridColumn126.FieldName = "Name"; + this.gridColumn126.Name = "gridColumn126"; + this.gridColumn126.OptionsColumn.AllowEdit = false; + this.gridColumn126.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn126.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn126.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn126.OptionsColumn.ReadOnly = true; + this.gridColumn126.OptionsFilter.AllowFilter = false; + this.gridColumn126.Visible = true; + this.gridColumn126.VisibleIndex = 0; + this.gridColumn126.Width = 200; // - // FastExportTime + // gridColumn127 // - this.FastExportTime.Image = global::PEIS.Properties.Resources.Excel; - this.FastExportTime.Name = "FastExportTime"; - this.FastExportTime.Size = new System.Drawing.Size(204, 30); - this.FastExportTime.Text = "导出指定时间范围成员"; + this.gridColumn127.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn127.AppearanceCell.Options.UseFont = true; + this.gridColumn127.Caption = "适用性别"; + this.gridColumn127.FieldName = "Sex"; + this.gridColumn127.Name = "gridColumn127"; + this.gridColumn127.OptionsColumn.AllowEdit = false; + this.gridColumn127.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn127.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn127.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn127.OptionsColumn.ReadOnly = true; + this.gridColumn127.OptionsFilter.AllowFilter = false; + this.gridColumn127.Visible = true; + this.gridColumn127.VisibleIndex = 1; + this.gridColumn127.Width = 60; // - // FastRecall + // gridColumn128 // - this.FastRecall.Image = global::PEIS.Properties.Resources.取消弃检; - this.FastRecall.Name = "FastRecall"; - this.FastRecall.Size = new System.Drawing.Size(204, 30); - this.FastRecall.Text = "撤回发送"; + this.gridColumn128.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn128.AppearanceCell.Options.UseFont = true; + this.gridColumn128.Caption = "适用婚态"; + this.gridColumn128.FieldName = "Marriage"; + this.gridColumn128.Name = "gridColumn128"; + this.gridColumn128.OptionsColumn.AllowEdit = false; + this.gridColumn128.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn128.OptionsColumn.AllowMove = false; + this.gridColumn128.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn128.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn128.OptionsColumn.ReadOnly = true; + this.gridColumn128.OptionsFilter.AllowFilter = false; + this.gridColumn128.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); + this.gridColumn128.Visible = true; + this.gridColumn128.VisibleIndex = 2; + this.gridColumn128.Width = 60; // - // FastGroup + // gridColumn129 // - this.FastGroup.Name = "FastGroup"; - this.FastGroup.Size = new System.Drawing.Size(204, 30); - this.FastGroup.Text = "组合缴费"; - this.FastGroup.Visible = false; + this.gridColumn129.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn129.AppearanceCell.Options.UseFont = true; + this.gridColumn129.Caption = "序号"; + this.gridColumn129.FieldName = "Seq"; + this.gridColumn129.Name = "gridColumn129"; + this.gridColumn129.OptionsColumn.AllowEdit = false; + this.gridColumn129.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn129.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn129.OptionsColumn.ReadOnly = true; + this.gridColumn129.OptionsFilter.AllowFilter = false; + this.gridColumn129.Visible = true; + this.gridColumn129.VisibleIndex = 3; + this.gridColumn129.Width = 50; // - // FastCancelGroup + // gridColumn130 // - this.FastCancelGroup.Name = "FastCancelGroup"; - this.FastCancelGroup.Size = new System.Drawing.Size(204, 30); - this.FastCancelGroup.Text = "取消组合缴费"; - this.FastCancelGroup.Visible = false; + this.gridColumn130.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn130.AppearanceCell.Options.UseFont = true; + this.gridColumn130.Caption = "创建人"; + this.gridColumn130.FieldName = "Creator"; + this.gridColumn130.Name = "gridColumn130"; + this.gridColumn130.OptionsColumn.AllowEdit = false; + this.gridColumn130.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn130.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn130.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn130.OptionsColumn.ReadOnly = true; + this.gridColumn130.OptionsFilter.AllowFilter = false; + this.gridColumn130.Visible = true; + this.gridColumn130.VisibleIndex = 4; + this.gridColumn130.Width = 80; // - // DgvEnrollment + // gridColumn131 // - this.DgvEnrollment.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold); - this.DgvEnrollment.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; - this.DgvEnrollment.Appearance.FooterPanel.Options.UseFont = true; - this.DgvEnrollment.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvEnrollment.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); - this.DgvEnrollment.Appearance.GroupRow.Options.UseFont = true; - this.DgvEnrollment.Appearance.HeaderPanel.Font = new System.Drawing.Font("微软雅黑", 12F); - this.DgvEnrollment.Appearance.HeaderPanel.Options.UseFont = true; - this.DgvEnrollment.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); - this.DgvEnrollment.Appearance.Row.Options.UseFont = true; - this.DgvEnrollment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn97, - this.gridColumn164, - this.gridColumn103, - this.gridColumn89, - this.gridColumn90, - this.gridColumn108, - this.gridColumn91, - this.gridColumn93, - this.gridColumn94, - this.gridColumn95, - this.gridColumn96, - this.gridColumn105, - this.gridColumn104, - this.gridColumn92}); - this.DgvEnrollment.GridControl = this.DgcEnrollment; - this.DgvEnrollment.GroupCount = 1; - this.DgvEnrollment.GroupFormat = ""; - this.DgvEnrollment.IndicatorWidth = 55; - this.DgvEnrollment.Name = "DgvEnrollment"; - this.DgvEnrollment.OptionsFilter.AllowFilterEditor = false; - this.DgvEnrollment.OptionsMenu.EnableColumnMenu = false; - this.DgvEnrollment.OptionsSelection.MultiSelect = true; - this.DgvEnrollment.OptionsView.ColumnAutoWidth = false; - this.DgvEnrollment.OptionsView.ShowGroupPanel = false; - this.DgvEnrollment.RowHeight = 40; - this.DgvEnrollment.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { - new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn164, DevExpress.Data.ColumnSortOrder.Ascending)}); + this.gridColumn131.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn131.AppearanceCell.Options.UseFont = true; + this.gridColumn131.Caption = "创建时间"; + this.gridColumn131.FieldName = "CreateTime"; + this.gridColumn131.Name = "gridColumn131"; + this.gridColumn131.OptionsColumn.AllowEdit = false; + this.gridColumn131.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn131.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn131.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn131.OptionsColumn.ReadOnly = true; + this.gridColumn131.OptionsFilter.AllowFilter = false; + this.gridColumn131.Visible = true; + this.gridColumn131.VisibleIndex = 5; + this.gridColumn131.Width = 130; // - // gridColumn97 + // gridColumn132 // - this.gridColumn97.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn97.AppearanceCell.Options.UseFont = true; - this.gridColumn97.Caption = " "; - this.gridColumn97.ColumnEdit = this.repositoryItemCheckEdit3; - this.gridColumn97.FieldName = "IsSelected"; - this.gridColumn97.Name = "gridColumn97"; - this.gridColumn97.OptionsColumn.AllowEdit = false; - this.gridColumn97.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn97.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn97.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn97.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn97.OptionsColumn.ReadOnly = true; - this.gridColumn97.OptionsFilter.AllowFilter = false; + this.gridColumn132.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn132.AppearanceCell.Options.UseFont = true; + this.gridColumn132.Caption = "ID"; + this.gridColumn132.FieldName = "ID"; + this.gridColumn132.Name = "gridColumn132"; + this.gridColumn132.OptionsColumn.AllowEdit = false; + this.gridColumn132.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn132.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn132.OptionsColumn.ReadOnly = true; + this.gridColumn132.Visible = true; + this.gridColumn132.VisibleIndex = 6; + this.gridColumn132.Width = 40; // - // repositoryItemCheckEdit3 + // gridView4 // - this.repositoryItemCheckEdit3.AutoHeight = false; - this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3"; - this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked; - this.repositoryItemCheckEdit3.ValueChecked = ((short)(1)); - this.repositoryItemCheckEdit3.ValueUnchecked = ((short)(0)); + this.gridView4.GridControl = this.DgcPack2; + this.gridView4.Name = "gridView4"; // - // gridColumn164 + // tabPage2 // - this.gridColumn164.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn164.AppearanceCell.Options.UseFont = true; - this.gridColumn164.Caption = "状态"; - this.gridColumn164.FieldName = "Signer"; - this.gridColumn164.Name = "gridColumn164"; - this.gridColumn164.OptionsColumn.AllowEdit = false; - this.gridColumn164.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn164.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn164.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn164.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn164.OptionsColumn.ReadOnly = true; - this.gridColumn164.OptionsFilter.AllowFilter = false; - this.gridColumn164.Width = 52; + this.tabPage2.Controls.Add(this.DgcFeeItem2); + this.tabPage2.Controls.Add(this.FeeItemSearch2); + this.tabPage2.Location = new System.Drawing.Point(4, 23); + this.tabPage2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.tabPage2.Name = "tabPage2"; + this.tabPage2.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.tabPage2.Size = new System.Drawing.Size(372, 362); + this.tabPage2.TabIndex = 0; + this.tabPage2.Text = "收费项目"; + this.tabPage2.UseVisualStyleBackColor = true; + // + // DgcFeeItem2 + // + this.DgcFeeItem2.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcFeeItem2.Location = new System.Drawing.Point(2, 25); + this.DgcFeeItem2.MainView = this.DgvFeeItem2; + this.DgcFeeItem2.Name = "DgcFeeItem2"; + this.DgcFeeItem2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { + this.repositoryItemCheckEdit2}); + this.DgcFeeItem2.Size = new System.Drawing.Size(368, 334); + this.DgcFeeItem2.TabIndex = 138; + this.DgcFeeItem2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvFeeItem2, + this.gridView6}); // - // gridColumn103 + // DgvFeeItem2 // - this.gridColumn103.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn103.AppearanceCell.Options.UseFont = true; - this.gridColumn103.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn103.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn103.Caption = "体检号"; - this.gridColumn103.FieldName = "ID"; - this.gridColumn103.Name = "gridColumn103"; - this.gridColumn103.OptionsColumn.AllowEdit = false; - this.gridColumn103.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn103.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn103.OptionsColumn.AllowMove = false; - this.gridColumn103.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn103.OptionsColumn.ReadOnly = true; - this.gridColumn103.OptionsFilter.AllowFilter = false; - this.gridColumn103.Visible = true; - this.gridColumn103.VisibleIndex = 0; - this.gridColumn103.Width = 82; + this.DgvFeeItem2.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold); + this.DgvFeeItem2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; + this.DgvFeeItem2.Appearance.FooterPanel.Options.UseFont = true; + this.DgvFeeItem2.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvFeeItem2.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); + this.DgvFeeItem2.Appearance.GroupRow.Options.UseFont = true; + this.DgvFeeItem2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); + this.DgvFeeItem2.Appearance.Row.Options.UseFont = true; + this.DgvFeeItem2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn139, + this.gridColumn136, + this.gridColumn138, + this.gridColumn137, + this.gridColumn133, + this.gridColumn134, + this.gridColumn135, + this.gridColumn140}); + this.DgvFeeItem2.FixedLineWidth = 1; + this.DgvFeeItem2.GridControl = this.DgcFeeItem2; + this.DgvFeeItem2.IndicatorWidth = 40; + this.DgvFeeItem2.Name = "DgvFeeItem2"; + this.DgvFeeItem2.OptionsMenu.EnableColumnMenu = false; + this.DgvFeeItem2.OptionsSelection.MultiSelect = true; + this.DgvFeeItem2.OptionsView.ColumnAutoWidth = false; + this.DgvFeeItem2.OptionsView.ShowGroupPanel = false; + this.DgvFeeItem2.RowHeight = 40; // - // gridColumn89 + // gridColumn139 // - this.gridColumn89.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn89.AppearanceCell.Options.UseFont = true; - this.gridColumn89.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn89.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn89.Caption = "姓名"; - this.gridColumn89.FieldName = "Name"; - this.gridColumn89.Name = "gridColumn89"; - this.gridColumn89.OptionsColumn.AllowEdit = false; - this.gridColumn89.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn89.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn89.OptionsColumn.AllowMove = false; - this.gridColumn89.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn89.OptionsColumn.ReadOnly = true; - this.gridColumn89.OptionsFilter.AllowFilter = false; - this.gridColumn89.Visible = true; - this.gridColumn89.VisibleIndex = 1; - this.gridColumn89.Width = 60; + this.gridColumn139.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn139.AppearanceCell.Options.UseFont = true; + this.gridColumn139.Caption = "执行科室"; + this.gridColumn139.FieldName = "DeptName"; + this.gridColumn139.Name = "gridColumn139"; + this.gridColumn139.OptionsColumn.AllowEdit = false; + this.gridColumn139.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn139.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn139.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn139.OptionsColumn.ReadOnly = true; + this.gridColumn139.OptionsFilter.AllowFilter = false; + this.gridColumn139.Visible = true; + this.gridColumn139.VisibleIndex = 0; + this.gridColumn139.Width = 91; // - // gridColumn90 + // gridColumn136 // - this.gridColumn90.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn90.AppearanceCell.Options.UseFont = true; - this.gridColumn90.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn90.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn90.Caption = "性别"; - this.gridColumn90.FieldName = "Sex"; - this.gridColumn90.Name = "gridColumn90"; - this.gridColumn90.OptionsColumn.AllowEdit = false; - this.gridColumn90.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn90.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn90.OptionsColumn.AllowMove = false; - this.gridColumn90.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn90.OptionsColumn.ReadOnly = true; - this.gridColumn90.OptionsFilter.AllowFilter = false; - this.gridColumn90.Visible = true; - this.gridColumn90.VisibleIndex = 2; - this.gridColumn90.Width = 40; + this.gridColumn136.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn136.AppearanceCell.ForeColor = System.Drawing.Color.SeaGreen; + this.gridColumn136.AppearanceCell.Options.UseFont = true; + this.gridColumn136.AppearanceCell.Options.UseForeColor = true; + this.gridColumn136.Caption = "项目名称"; + this.gridColumn136.FieldName = "FeeItemName"; + this.gridColumn136.Name = "gridColumn136"; + this.gridColumn136.OptionsColumn.AllowEdit = false; + this.gridColumn136.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn136.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn136.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn136.OptionsColumn.ReadOnly = true; + this.gridColumn136.OptionsFilter.AllowFilter = false; + this.gridColumn136.Visible = true; + this.gridColumn136.VisibleIndex = 1; + this.gridColumn136.Width = 200; // - // gridColumn108 + // gridColumn138 // - this.gridColumn108.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn108.AppearanceCell.Options.UseFont = true; - this.gridColumn108.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn108.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn108.Caption = "年龄"; - this.gridColumn108.FieldName = "AgeClass"; - this.gridColumn108.Name = "gridColumn108"; - this.gridColumn108.OptionsColumn.AllowEdit = false; - this.gridColumn108.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn108.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn108.OptionsColumn.AllowMove = false; - this.gridColumn108.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn108.OptionsColumn.ReadOnly = true; - this.gridColumn108.OptionsFilter.AllowFilter = false; - this.gridColumn108.Visible = true; - this.gridColumn108.VisibleIndex = 3; - this.gridColumn108.Width = 30; + this.gridColumn138.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn138.AppearanceCell.Options.UseFont = true; + this.gridColumn138.Caption = "收费价格"; + this.gridColumn138.FieldName = "Price"; + this.gridColumn138.Name = "gridColumn138"; + this.gridColumn138.OptionsColumn.AllowEdit = false; + this.gridColumn138.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn138.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn138.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn138.OptionsColumn.ReadOnly = true; + this.gridColumn138.OptionsFilter.AllowFilter = false; + this.gridColumn138.Visible = true; + this.gridColumn138.VisibleIndex = 2; + this.gridColumn138.Width = 60; // - // gridColumn91 + // gridColumn137 // - this.gridColumn91.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn91.AppearanceCell.Options.UseFont = true; - this.gridColumn91.Caption = "部门"; - this.gridColumn91.FieldName = "GroupName"; - this.gridColumn91.Name = "gridColumn91"; - this.gridColumn91.OptionsColumn.AllowEdit = false; - this.gridColumn91.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn91.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn91.OptionsColumn.AllowMove = false; - this.gridColumn91.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn91.OptionsColumn.ReadOnly = true; - this.gridColumn91.Visible = true; - this.gridColumn91.VisibleIndex = 4; + this.gridColumn137.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn137.AppearanceCell.Options.UseFont = true; + this.gridColumn137.Caption = "核算价格"; + this.gridColumn137.FieldName = "SettlePrice"; + this.gridColumn137.Name = "gridColumn137"; + this.gridColumn137.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn137.OptionsFilter.AllowFilter = false; + this.gridColumn137.Visible = true; + this.gridColumn137.VisibleIndex = 3; // - // gridColumn93 + // gridColumn133 // - this.gridColumn93.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn93.AppearanceCell.Options.UseFont = true; - this.gridColumn93.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn93.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn93.Caption = "婚况"; - this.gridColumn93.FieldName = "Marriage"; - this.gridColumn93.Name = "gridColumn93"; - this.gridColumn93.OptionsColumn.AllowEdit = false; - this.gridColumn93.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn93.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn93.OptionsColumn.AllowMove = false; - this.gridColumn93.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn93.OptionsColumn.ReadOnly = true; - this.gridColumn93.OptionsFilter.AllowFilter = false; - this.gridColumn93.Visible = true; - this.gridColumn93.VisibleIndex = 5; - this.gridColumn93.Width = 60; + this.gridColumn133.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn133.AppearanceCell.Options.UseFont = true; + this.gridColumn133.Caption = "项目类别"; + this.gridColumn133.FieldName = "ItemClass"; + this.gridColumn133.Name = "gridColumn133"; + this.gridColumn133.OptionsColumn.AllowEdit = false; + this.gridColumn133.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn133.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn133.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn133.OptionsColumn.ReadOnly = true; + this.gridColumn133.OptionsFilter.AllowFilter = false; + this.gridColumn133.Visible = true; + this.gridColumn133.VisibleIndex = 4; + this.gridColumn133.Width = 76; // - // gridColumn94 + // gridColumn134 // - this.gridColumn94.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn94.AppearanceCell.Options.UseFont = true; - this.gridColumn94.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn94.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn94.Caption = "出生年月"; - this.gridColumn94.FieldName = "Birthday"; - this.gridColumn94.Name = "gridColumn94"; - this.gridColumn94.OptionsColumn.AllowEdit = false; - this.gridColumn94.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn94.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn94.OptionsColumn.AllowMove = false; - this.gridColumn94.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn94.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn94.OptionsColumn.ReadOnly = true; - this.gridColumn94.OptionsFilter.AllowFilter = false; - this.gridColumn94.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + this.gridColumn134.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn134.AppearanceCell.Options.UseFont = true; + this.gridColumn134.Caption = "类型"; + this.gridColumn134.FieldName = "UnitName"; + this.gridColumn134.Name = "gridColumn134"; + this.gridColumn134.OptionsColumn.AllowEdit = false; + this.gridColumn134.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn134.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn134.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn134.OptionsColumn.ReadOnly = true; + this.gridColumn134.OptionsFilter.AllowFilter = false; + this.gridColumn134.Visible = true; + this.gridColumn134.VisibleIndex = 5; + this.gridColumn134.Width = 50; + // + // gridColumn135 + // + this.gridColumn135.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn135.AppearanceCell.Options.UseFont = true; + this.gridColumn135.Caption = "费用代码"; + this.gridColumn135.FieldName = "FeeItemCode"; + this.gridColumn135.Name = "gridColumn135"; + this.gridColumn135.OptionsColumn.AllowEdit = false; + this.gridColumn135.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn135.OptionsColumn.AllowMove = false; + this.gridColumn135.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn135.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn135.OptionsColumn.ReadOnly = true; + this.gridColumn135.OptionsFilter.AllowFilter = false; + this.gridColumn135.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); - this.gridColumn94.Visible = true; - this.gridColumn94.VisibleIndex = 6; - this.gridColumn94.Width = 100; + this.gridColumn135.Visible = true; + this.gridColumn135.VisibleIndex = 6; + this.gridColumn135.Width = 80; // - // gridColumn95 + // gridColumn140 // - this.gridColumn95.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn95.AppearanceCell.Options.UseFont = true; - this.gridColumn95.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn95.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn95.Caption = "证件类型"; - this.gridColumn95.FieldName = "CardType"; - this.gridColumn95.Name = "gridColumn95"; - this.gridColumn95.OptionsColumn.AllowEdit = false; - this.gridColumn95.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn95.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn95.OptionsColumn.AllowMove = false; - this.gridColumn95.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn95.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn95.OptionsColumn.ReadOnly = true; - this.gridColumn95.OptionsFilter.AllowFilter = false; - this.gridColumn95.Visible = true; - this.gridColumn95.VisibleIndex = 7; - this.gridColumn95.Width = 80; + this.gridColumn140.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn140.AppearanceCell.Options.UseFont = true; + this.gridColumn140.Caption = "ID"; + this.gridColumn140.FieldName = "ID"; + this.gridColumn140.Name = "gridColumn140"; + this.gridColumn140.Visible = true; + this.gridColumn140.VisibleIndex = 7; + this.gridColumn140.Width = 40; // - // gridColumn96 + // repositoryItemCheckEdit2 // - this.gridColumn96.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn96.AppearanceCell.Options.UseFont = true; - this.gridColumn96.AppearanceHeader.Options.UseTextOptions = true; - this.gridColumn96.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn96.Caption = "证件号码"; - this.gridColumn96.FieldName = "CardNo"; - this.gridColumn96.Name = "gridColumn96"; - this.gridColumn96.OptionsColumn.AllowEdit = false; - this.gridColumn96.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn96.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn96.OptionsColumn.AllowMove = false; - this.gridColumn96.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn96.OptionsColumn.ReadOnly = true; - this.gridColumn96.OptionsFilter.AllowFilter = false; - this.gridColumn96.Visible = true; - this.gridColumn96.VisibleIndex = 8; - this.gridColumn96.Width = 160; + this.repositoryItemCheckEdit2.AutoHeight = false; + this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2"; // - // gridColumn105 + // gridView6 // - this.gridColumn105.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn105.AppearanceCell.Options.UseFont = true; - this.gridColumn105.Caption = "联系方式"; - this.gridColumn105.FieldName = "Tel1"; - this.gridColumn105.Name = "gridColumn105"; - this.gridColumn105.OptionsColumn.AllowEdit = false; - this.gridColumn105.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn105.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn105.OptionsColumn.AllowMove = false; - this.gridColumn105.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn105.OptionsColumn.ReadOnly = true; - this.gridColumn105.OptionsFilter.AllowFilter = false; - this.gridColumn105.Visible = true; - this.gridColumn105.VisibleIndex = 10; + this.gridView6.GridControl = this.DgcFeeItem2; + this.gridView6.Name = "gridView6"; // - // gridColumn104 + // FeeItemSearch2 // - this.gridColumn104.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn104.AppearanceCell.Options.UseFont = true; - this.gridColumn104.Caption = "签到时间"; - this.gridColumn104.FieldName = "SignTime"; - this.gridColumn104.GroupFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; - this.gridColumn104.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime; - this.gridColumn104.Name = "gridColumn104"; - this.gridColumn104.OptionsColumn.AllowEdit = false; - this.gridColumn104.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn104.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn104.OptionsColumn.AllowMove = false; - this.gridColumn104.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn104.OptionsColumn.ReadOnly = true; - this.gridColumn104.OptionsFilter.AllowFilter = false; - this.gridColumn104.Visible = true; - this.gridColumn104.VisibleIndex = 11; + this.FeeItemSearch2.Dock = System.Windows.Forms.DockStyle.Top; + this.FeeItemSearch2.Location = new System.Drawing.Point(2, 3); + this.FeeItemSearch2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.FeeItemSearch2.Name = "FeeItemSearch2"; + this.FeeItemSearch2.Size = new System.Drawing.Size(368, 22); + this.FeeItemSearch2.TabIndex = 137; // - // gridColumn92 + // CopyItemTab // - this.gridColumn92.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn92.AppearanceCell.Options.UseFont = true; - this.gridColumn92.Caption = "状态"; - this.gridColumn92.FieldName = "Signer"; - this.gridColumn92.Name = "gridColumn92"; - this.gridColumn92.OptionsColumn.AllowEdit = false; - this.gridColumn92.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn92.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn92.OptionsColumn.AllowMove = false; - this.gridColumn92.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn92.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn92.OptionsColumn.ReadOnly = true; - this.gridColumn92.OptionsFilter.AllowFilter = false; - this.gridColumn92.Visible = true; - this.gridColumn92.VisibleIndex = 9; + this.CopyItemTab.Controls.Add(this.DgcCopyItem); + this.CopyItemTab.Controls.Add(this.panel14); + this.CopyItemTab.Controls.Add(this.CopyMenu); + this.CopyItemTab.Location = new System.Drawing.Point(4, 23); + this.CopyItemTab.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.CopyItemTab.Name = "CopyItemTab"; + this.CopyItemTab.Size = new System.Drawing.Size(372, 362); + this.CopyItemTab.TabIndex = 3; + this.CopyItemTab.Text = "从体检者复制项目"; + this.CopyItemTab.UseVisualStyleBackColor = true; // - // PatientSearch + // DgcCopyItem // - this.PatientSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.PatientSearch.Dock = System.Windows.Forms.DockStyle.Top; - this.PatientSearch.Font = new System.Drawing.Font("微软雅黑", 9F); - this.PatientSearch.Location = new System.Drawing.Point(0, 0); - this.PatientSearch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.PatientSearch.Name = "PatientSearch"; - this.PatientSearch.Size = new System.Drawing.Size(280, 23); - this.PatientSearch.TabIndex = 134; + this.DgcCopyItem.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcCopyItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.DgcCopyItem.Location = new System.Drawing.Point(140, 28); + this.DgcCopyItem.MainView = this.DgvCopyItem; + this.DgcCopyItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.DgcCopyItem.Name = "DgcCopyItem"; + this.DgcCopyItem.Size = new System.Drawing.Size(232, 334); + this.DgcCopyItem.TabIndex = 32; + this.DgcCopyItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvCopyItem}); // - // gridColumn109 + // DgvCopyItem // - this.gridColumn109.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn109.AppearanceCell.Options.UseFont = true; - this.gridColumn109.AppearanceCell.Options.UseTextOptions = true; - this.gridColumn109.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn109.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center; - this.gridColumn109.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; - this.gridColumn109.Caption = "套餐"; - this.gridColumn109.ColumnEdit = this.repositoryItemMemoEdit21; - this.gridColumn109.FieldName = "PackName"; - this.gridColumn109.Name = "gridColumn109"; - this.gridColumn109.OptionsColumn.AllowEdit = false; - this.gridColumn109.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn109.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn109.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn109.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn109.OptionsColumn.ReadOnly = true; - this.gridColumn109.OptionsFilter.AllowFilter = false; - this.gridColumn109.Visible = true; - this.gridColumn109.VisibleIndex = 1; - this.gridColumn109.Width = 80; + this.DgvCopyItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); + this.DgvCopyItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); + this.DgvCopyItem.Appearance.FooterPanel.Options.UseFont = true; + this.DgvCopyItem.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvCopyItem.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 10F); + this.DgvCopyItem.Appearance.Row.Options.UseFont = true; + this.DgvCopyItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn106, + this.gridColumn107, + this.gridColumn162, + this.gridColumn165, + this.gridColumn166, + this.gridColumn167, + this.gridColumn168, + this.gridColumn169}); + this.DgvCopyItem.GridControl = this.DgcCopyItem; + this.DgvCopyItem.Name = "DgvCopyItem"; + this.DgvCopyItem.OptionsBehavior.Editable = false; + this.DgvCopyItem.OptionsMenu.EnableColumnMenu = false; + this.DgvCopyItem.OptionsView.AllowCellMerge = true; + this.DgvCopyItem.OptionsView.ColumnAutoWidth = false; + this.DgvCopyItem.OptionsView.ShowGroupPanel = false; + this.DgvCopyItem.OptionsView.ShowIndicator = false; + this.DgvCopyItem.RowHeight = 35; // - // 新建NToolStripMenuItem + // gridColumn106 // - this.新建NToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("新建NToolStripMenuItem.Image"))); - this.新建NToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.新建NToolStripMenuItem.Name = "新建NToolStripMenuItem"; - this.新建NToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); - this.新建NToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.新建NToolStripMenuItem.Text = "新建(&N)"; + this.gridColumn106.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn106.AppearanceCell.Options.UseFont = true; + this.gridColumn106.Caption = "套餐"; + this.gridColumn106.FieldName = "PackName"; + this.gridColumn106.Name = "gridColumn106"; + this.gridColumn106.OptionsColumn.AllowEdit = false; + this.gridColumn106.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn106.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn106.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn106.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn106.OptionsColumn.ReadOnly = true; + this.gridColumn106.OptionsFilter.AllowFilter = false; + this.gridColumn106.Visible = true; + this.gridColumn106.VisibleIndex = 0; + this.gridColumn106.Width = 147; // - // 打开OToolStripMenuItem + // gridColumn107 // - this.打开OToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripMenuItem.Image"))); - this.打开OToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.打开OToolStripMenuItem.Name = "打开OToolStripMenuItem"; - this.打开OToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); - this.打开OToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.打开OToolStripMenuItem.Text = "打开(&O)"; + this.gridColumn107.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn107.AppearanceCell.Options.UseFont = true; + this.gridColumn107.Caption = "收费项目"; + this.gridColumn107.FieldName = "FeeItemName"; + this.gridColumn107.Name = "gridColumn107"; + this.gridColumn107.OptionsColumn.AllowEdit = false; + this.gridColumn107.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn107.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn107.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn107.OptionsColumn.ReadOnly = true; + this.gridColumn107.OptionsFilter.AllowFilter = false; + this.gridColumn107.Visible = true; + this.gridColumn107.VisibleIndex = 1; // - // toolStripSeparator + // gridColumn162 // - this.toolStripSeparator.Name = "toolStripSeparator"; - this.toolStripSeparator.Size = new System.Drawing.Size(6, 6); + this.gridColumn162.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn162.AppearanceCell.Options.UseFont = true; + this.gridColumn162.Caption = "收费价格"; + this.gridColumn162.FieldName = "Price"; + this.gridColumn162.Name = "gridColumn162"; + this.gridColumn162.OptionsColumn.AllowEdit = false; + this.gridColumn162.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn162.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn162.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn162.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn162.OptionsColumn.ReadOnly = true; + this.gridColumn162.OptionsFilter.AllowFilter = false; + this.gridColumn162.Visible = true; + this.gridColumn162.VisibleIndex = 2; // - // 保存SToolStripMenuItem + // gridColumn165 // - this.保存SToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripMenuItem.Image"))); - this.保存SToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.保存SToolStripMenuItem.Name = "保存SToolStripMenuItem"; - this.保存SToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); - this.保存SToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.保存SToolStripMenuItem.Text = "保存(&S)"; + this.gridColumn165.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn165.AppearanceCell.Options.UseFont = true; + this.gridColumn165.Caption = "核算价格"; + this.gridColumn165.FieldName = "SettlePrice"; + this.gridColumn165.Name = "gridColumn165"; + this.gridColumn165.OptionsColumn.AllowEdit = false; + this.gridColumn165.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn165.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn165.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn165.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn165.OptionsColumn.ReadOnly = true; + this.gridColumn165.OptionsFilter.AllowFilter = false; + this.gridColumn165.Visible = true; + this.gridColumn165.VisibleIndex = 3; // - // 另存为AToolStripMenuItem + // gridColumn166 // - this.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem"; - this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.另存为AToolStripMenuItem.Text = "另存为(&A)"; + this.gridColumn166.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn166.AppearanceCell.Options.UseFont = true; + this.gridColumn166.Caption = "执行科室"; + this.gridColumn166.FieldName = "DeptName"; + this.gridColumn166.Name = "gridColumn166"; + this.gridColumn166.OptionsColumn.AllowEdit = false; + this.gridColumn166.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn166.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn166.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn166.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn166.OptionsColumn.ReadOnly = true; + this.gridColumn166.OptionsFilter.AllowFilter = false; + this.gridColumn166.Visible = true; + this.gridColumn166.VisibleIndex = 4; // - // toolStripSeparator1 + // gridColumn167 // - this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(6, 6); + this.gridColumn167.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn167.AppearanceCell.Options.UseFont = true; + this.gridColumn167.Caption = "数量"; + this.gridColumn167.FieldName = "Quantity"; + this.gridColumn167.Name = "gridColumn167"; + this.gridColumn167.OptionsColumn.AllowEdit = false; + this.gridColumn167.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn167.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn167.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn167.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn167.OptionsColumn.ReadOnly = true; + this.gridColumn167.OptionsFilter.AllowFilter = false; + this.gridColumn167.Visible = true; + this.gridColumn167.VisibleIndex = 5; + this.gridColumn167.Width = 59; // - // 打印PToolStripMenuItem + // gridColumn168 // - this.打印PToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印PToolStripMenuItem.Image"))); - this.打印PToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.打印PToolStripMenuItem.Name = "打印PToolStripMenuItem"; - this.打印PToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P))); - this.打印PToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.打印PToolStripMenuItem.Text = "打印(&P)"; + this.gridColumn168.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn168.AppearanceCell.Options.UseFont = true; + this.gridColumn168.Caption = "单位"; + this.gridColumn168.FieldName = "Unit"; + this.gridColumn168.Name = "gridColumn168"; + this.gridColumn168.OptionsColumn.AllowEdit = false; + this.gridColumn168.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn168.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn168.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn168.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn168.OptionsColumn.ReadOnly = true; + this.gridColumn168.OptionsFilter.AllowFilter = false; + this.gridColumn168.Visible = true; + this.gridColumn168.VisibleIndex = 6; + this.gridColumn168.Width = 48; // - // 打印预览VToolStripMenuItem + // gridColumn169 // - this.打印预览VToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印预览VToolStripMenuItem.Image"))); - this.打印预览VToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.打印预览VToolStripMenuItem.Name = "打印预览VToolStripMenuItem"; - this.打印预览VToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.打印预览VToolStripMenuItem.Text = "打印预览(&V)"; + this.gridColumn169.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn169.AppearanceCell.Options.UseFont = true; + this.gridColumn169.Caption = "检查类别"; + this.gridColumn169.FieldName = "ItemClass"; + this.gridColumn169.Name = "gridColumn169"; + this.gridColumn169.OptionsColumn.AllowEdit = false; + this.gridColumn169.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn169.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn169.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn169.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn169.OptionsColumn.ReadOnly = true; + this.gridColumn169.OptionsFilter.AllowFilter = false; + this.gridColumn169.Visible = true; + this.gridColumn169.VisibleIndex = 7; // - // toolStripSeparator2 + // panel14 // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(6, 6); + this.panel14.Controls.Add(this.NameSearch2); + this.panel14.Controls.Add(this.DgcRegItem2); + this.panel14.Dock = System.Windows.Forms.DockStyle.Left; + this.panel14.Location = new System.Drawing.Point(0, 28); + this.panel14.Name = "panel14"; + this.panel14.Size = new System.Drawing.Size(140, 334); + this.panel14.TabIndex = 31; // - // 退出XToolStripMenuItem + // NameSearch2 // - this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem"; - this.退出XToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.退出XToolStripMenuItem.Text = "退出(&X)"; + this.NameSearch2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.NameSearch2.Dock = System.Windows.Forms.DockStyle.Top; + this.NameSearch2.Font = new System.Drawing.Font("微软雅黑", 9F); + this.NameSearch2.Location = new System.Drawing.Point(0, 0); + this.NameSearch2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.NameSearch2.Name = "NameSearch2"; + this.NameSearch2.Size = new System.Drawing.Size(140, 23); + this.NameSearch2.TabIndex = 30; // - // 撤消UToolStripMenuItem + // DgcRegItem2 // - this.撤消UToolStripMenuItem.Name = "撤消UToolStripMenuItem"; - this.撤消UToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z))); - this.撤消UToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.撤消UToolStripMenuItem.Text = "撤消(&U)"; + this.DgcRegItem2.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcRegItem2.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.DgcRegItem2.Location = new System.Drawing.Point(0, 0); + this.DgcRegItem2.MainView = this.DgvRegItem2; + this.DgcRegItem2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.DgcRegItem2.Name = "DgcRegItem2"; + this.DgcRegItem2.Size = new System.Drawing.Size(140, 334); + this.DgcRegItem2.TabIndex = 29; + this.DgcRegItem2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvRegItem2}); // - // 重复RToolStripMenuItem + // DgvRegItem2 // - this.重复RToolStripMenuItem.Name = "重复RToolStripMenuItem"; - this.重复RToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y))); - this.重复RToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.重复RToolStripMenuItem.Text = "重复(&R)"; + this.DgvRegItem2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 10F); + this.DgvRegItem2.Appearance.Row.Options.UseFont = true; + this.DgvRegItem2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn170, + this.gridColumn171}); + this.DgvRegItem2.GridControl = this.DgcRegItem2; + this.DgvRegItem2.Name = "DgvRegItem2"; + this.DgvRegItem2.OptionsMenu.EnableColumnMenu = false; + this.DgvRegItem2.OptionsSelection.MultiSelect = true; + this.DgvRegItem2.OptionsView.ColumnAutoWidth = false; + this.DgvRegItem2.OptionsView.ShowGroupPanel = false; + this.DgvRegItem2.OptionsView.ShowIndicator = false; + this.DgvRegItem2.RowHeight = 35; // - // toolStripSeparator3 + // gridColumn170 // - this.toolStripSeparator3.Name = "toolStripSeparator3"; - this.toolStripSeparator3.Size = new System.Drawing.Size(6, 6); + this.gridColumn170.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn170.AppearanceCell.Options.UseFont = true; + this.gridColumn170.Caption = "体检号"; + this.gridColumn170.FieldName = "ID"; + this.gridColumn170.Name = "gridColumn170"; + this.gridColumn170.OptionsColumn.AllowEdit = false; + this.gridColumn170.OptionsColumn.ReadOnly = true; + this.gridColumn170.OptionsFilter.AllowFilter = false; + this.gridColumn170.Visible = true; + this.gridColumn170.VisibleIndex = 0; + this.gridColumn170.Width = 55; // - // 剪切TToolStripMenuItem + // gridColumn171 // - this.剪切TToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("剪切TToolStripMenuItem.Image"))); - this.剪切TToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.剪切TToolStripMenuItem.Name = "剪切TToolStripMenuItem"; - this.剪切TToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); - this.剪切TToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.剪切TToolStripMenuItem.Text = "剪切(&T)"; + this.gridColumn171.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn171.AppearanceCell.Options.UseFont = true; + this.gridColumn171.Caption = "姓名"; + this.gridColumn171.FieldName = "Name"; + this.gridColumn171.Name = "gridColumn171"; + this.gridColumn171.OptionsColumn.AllowEdit = false; + this.gridColumn171.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn171.OptionsColumn.AllowMove = false; + this.gridColumn171.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn171.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn171.OptionsColumn.ReadOnly = true; + this.gridColumn171.OptionsFilter.AllowFilter = false; + this.gridColumn171.Visible = true; + this.gridColumn171.VisibleIndex = 1; + this.gridColumn171.Width = 52; // - // 复制CToolStripMenuItem + // CopyMenu // - this.复制CToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("复制CToolStripMenuItem.Image"))); - this.复制CToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.复制CToolStripMenuItem.Name = "复制CToolStripMenuItem"; - this.复制CToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); - this.复制CToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.复制CToolStripMenuItem.Text = "复制(&C)"; + this.CopyMenu.BackColor = System.Drawing.Color.White; + this.CopyMenu.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.CopyMenu.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; + this.CopyMenu.ImageScalingSize = new System.Drawing.Size(20, 20); + this.CopyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TsmiCopyFeeItem}); + this.CopyMenu.Location = new System.Drawing.Point(0, 0); + this.CopyMenu.Name = "CopyMenu"; + this.CopyMenu.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2); + this.CopyMenu.Size = new System.Drawing.Size(372, 28); + this.CopyMenu.TabIndex = 24; + this.CopyMenu.Text = "menuStrip1"; // - // 粘贴PToolStripMenuItem + // TsmiCopyFeeItem // - this.粘贴PToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("粘贴PToolStripMenuItem.Image"))); - this.粘贴PToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; - this.粘贴PToolStripMenuItem.Name = "粘贴PToolStripMenuItem"; - this.粘贴PToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); - this.粘贴PToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.粘贴PToolStripMenuItem.Text = "粘贴(&P)"; + this.TsmiCopyFeeItem.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCopyFeeItem.Image"))); + this.TsmiCopyFeeItem.Name = "TsmiCopyFeeItem"; + this.TsmiCopyFeeItem.Size = new System.Drawing.Size(64, 24); + this.TsmiCopyFeeItem.Text = "复制"; // - // toolStripSeparator4 + // panel7 // - this.toolStripSeparator4.Name = "toolStripSeparator4"; - this.toolStripSeparator4.Size = new System.Drawing.Size(6, 6); + this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel7.Controls.Add(this.menuStrip1); + this.panel7.Dock = System.Windows.Forms.DockStyle.Top; + this.panel7.Location = new System.Drawing.Point(285, 0); + this.panel7.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel7.Name = "panel7"; + this.panel7.Size = new System.Drawing.Size(911, 42); + this.panel7.TabIndex = 146; // - // 全选AToolStripMenuItem + // menuStrip1 // - this.全选AToolStripMenuItem.Name = "全选AToolStripMenuItem"; - this.全选AToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.全选AToolStripMenuItem.Text = "全选(&A)"; + this.menuStrip1.BackColor = System.Drawing.Color.White; + this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None; + this.menuStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; + this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); + this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TsmiCheckOrg, + this.toolStripMenuItem1, + this.TsmiCheckPerson, + this.toolStripMenuItem7, + this.TsmiPrintCost, + this.toolStripMenuItem3, + this.TsmiFee, + this.toolStripMenuItem2, + this.TsmiSend, + this.toolStripMenuItem4, + this.TsmiPrintGuide, + this.toolStripMenuItem5, + this.TsmiOpenFeeItem, + this.toolStripMenuItem6, + this.TsmiBatchCtrl}); + this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; + this.menuStrip1.Location = new System.Drawing.Point(0, 0); + this.menuStrip1.Name = "menuStrip1"; + this.menuStrip1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2); + this.menuStrip1.Size = new System.Drawing.Size(789, 44); + this.menuStrip1.TabIndex = 129; + this.menuStrip1.Text = "menuStrip1"; // - // 自定义CToolStripMenuItem + // TsmiCheckOrg // - this.自定义CToolStripMenuItem.Name = "自定义CToolStripMenuItem"; - this.自定义CToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.自定义CToolStripMenuItem.Text = "自定义(&C)"; + this.TsmiCheckOrg.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCheckOrg.Image"))); + this.TsmiCheckOrg.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiCheckOrg.Name = "TsmiCheckOrg"; + this.TsmiCheckOrg.Size = new System.Drawing.Size(120, 40); + this.TsmiCheckOrg.Text = "生成团体订单"; // - // 选项OToolStripMenuItem + // toolStripMenuItem1 // - this.选项OToolStripMenuItem.Name = "选项OToolStripMenuItem"; - this.选项OToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.选项OToolStripMenuItem.Text = "选项(&O)"; + this.toolStripMenuItem1.Name = "toolStripMenuItem1"; + this.toolStripMenuItem1.Size = new System.Drawing.Size(12, 40); // - // 内容CToolStripMenuItem + // TsmiCheckPerson // - this.内容CToolStripMenuItem.Name = "内容CToolStripMenuItem"; - this.内容CToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.内容CToolStripMenuItem.Text = "内容(&C)"; + this.TsmiCheckPerson.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCheckPerson.Image"))); + this.TsmiCheckPerson.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiCheckPerson.Name = "TsmiCheckPerson"; + this.TsmiCheckPerson.Size = new System.Drawing.Size(122, 40); + this.TsmiCheckPerson.Text = "生成个人订单"; // - // 索引IToolStripMenuItem + // toolStripMenuItem7 // - this.索引IToolStripMenuItem.Name = "索引IToolStripMenuItem"; - this.索引IToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.索引IToolStripMenuItem.Text = "索引(&I)"; + this.toolStripMenuItem7.Name = "toolStripMenuItem7"; + this.toolStripMenuItem7.Size = new System.Drawing.Size(12, 40); // - // 搜索SToolStripMenuItem + // TsmiPrintCost // - this.搜索SToolStripMenuItem.Name = "搜索SToolStripMenuItem"; - this.搜索SToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.搜索SToolStripMenuItem.Text = "搜索(&S)"; + this.TsmiPrintCost.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.TsmiPrintPerson, + this.TsmiPrintTeam, + this.TsmiPrintGroup}); + this.TsmiPrintCost.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintCost.Image"))); + this.TsmiPrintCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiPrintCost.Name = "TsmiPrintCost"; + this.TsmiPrintCost.Size = new System.Drawing.Size(116, 40); + this.TsmiPrintCost.Text = "打印收费单"; // - // toolStripSeparator5 + // TsmiPrintPerson // - this.toolStripSeparator5.Name = "toolStripSeparator5"; - this.toolStripSeparator5.Size = new System.Drawing.Size(6, 6); + this.TsmiPrintPerson.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintPerson.Image"))); + this.TsmiPrintPerson.Name = "TsmiPrintPerson"; + this.TsmiPrintPerson.Size = new System.Drawing.Size(188, 26); + this.TsmiPrintPerson.Text = "打印个人收费单"; // - // 关于AToolStripMenuItem + // TsmiPrintTeam // - this.关于AToolStripMenuItem.Name = "关于AToolStripMenuItem"; - this.关于AToolStripMenuItem.Size = new System.Drawing.Size(32, 19); - this.关于AToolStripMenuItem.Text = "关于(&A)..."; + this.TsmiPrintTeam.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintTeam.Image"))); + this.TsmiPrintTeam.Name = "TsmiPrintTeam"; + this.TsmiPrintTeam.Size = new System.Drawing.Size(188, 26); + this.TsmiPrintTeam.Text = "打印团体收费单"; // - // gridView3 + // TsmiPrintGroup // - this.gridView3.Name = "gridView3"; + this.TsmiPrintGroup.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintGroup.Image"))); + this.TsmiPrintGroup.Name = "TsmiPrintGroup"; + this.TsmiPrintGroup.Size = new System.Drawing.Size(188, 26); + this.TsmiPrintGroup.Text = "打印团体分组收费单"; // - // gridView5 + // toolStripMenuItem3 // - this.gridView5.Name = "gridView5"; + this.toolStripMenuItem3.Name = "toolStripMenuItem3"; + this.toolStripMenuItem3.Size = new System.Drawing.Size(12, 40); + this.toolStripMenuItem3.Visible = false; // - // gridView7 + // TsmiFee // - this.gridView7.Name = "gridView7"; + this.TsmiFee.Image = ((System.Drawing.Image)(resources.GetObject("TsmiFee.Image"))); + this.TsmiFee.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiFee.Name = "TsmiFee"; + this.TsmiFee.Size = new System.Drawing.Size(80, 40); + this.TsmiFee.Text = "记账"; + this.TsmiFee.Visible = false; // - // gridView8 + // toolStripMenuItem2 // - this.gridView8.Name = "gridView8"; + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; + this.toolStripMenuItem2.Size = new System.Drawing.Size(12, 40); // - // panel9 + // TsmiSend // - this.panel9.Controls.Add(this.tabControl1); - this.panel9.Dock = System.Windows.Forms.DockStyle.Right; - this.panel9.Location = new System.Drawing.Point(708, 3); - this.panel9.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel9.Name = "panel9"; - this.panel9.Size = new System.Drawing.Size(485, 519); - this.panel9.TabIndex = 141; + this.TsmiSend.Image = ((System.Drawing.Image)(resources.GetObject("TsmiSend.Image"))); + this.TsmiSend.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiSend.Name = "TsmiSend"; + this.TsmiSend.Size = new System.Drawing.Size(112, 40); + this.TsmiSend.Text = "发送到科室"; // - // tabControl1 + // toolStripMenuItem4 // - this.tabControl1.Controls.Add(this.TpPack); - this.tabControl1.Controls.Add(this.TpFeeItem); - this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControl1.Location = new System.Drawing.Point(0, 0); - this.tabControl1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.tabControl1.Name = "tabControl1"; - this.tabControl1.SelectedIndex = 0; - this.tabControl1.Size = new System.Drawing.Size(485, 519); - this.tabControl1.TabIndex = 139; + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; + this.toolStripMenuItem4.Size = new System.Drawing.Size(12, 40); // - // TpFeeItem + // TsmiPrintGuide // - this.TpFeeItem.Controls.Add(this.DgcFeeItem); - this.TpFeeItem.Controls.Add(this.FeeItemSearch); - this.TpFeeItem.Location = new System.Drawing.Point(4, 23); - this.TpFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.TpFeeItem.Name = "TpFeeItem"; - this.TpFeeItem.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.TpFeeItem.Size = new System.Drawing.Size(477, 493); - this.TpFeeItem.TabIndex = 0; - this.TpFeeItem.Text = "收费项目"; - this.TpFeeItem.UseVisualStyleBackColor = true; + this.TsmiPrintGuide.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPrintGuide.Image"))); + this.TsmiPrintGuide.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiPrintGuide.Name = "TsmiPrintGuide"; + this.TsmiPrintGuide.Size = new System.Drawing.Size(116, 40); + this.TsmiPrintGuide.Text = "打印导检单"; // - // FeeItemSearch + // toolStripMenuItem5 // - this.FeeItemSearch.Dock = System.Windows.Forms.DockStyle.Top; - this.FeeItemSearch.Location = new System.Drawing.Point(2, 3); - this.FeeItemSearch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.FeeItemSearch.Name = "FeeItemSearch"; - this.FeeItemSearch.Size = new System.Drawing.Size(473, 22); - this.FeeItemSearch.TabIndex = 136; + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; + this.toolStripMenuItem5.Size = new System.Drawing.Size(12, 40); // - // DgcFeeItem + // TsmiOpenFeeItem // - this.DgcFeeItem.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcFeeItem.Location = new System.Drawing.Point(2, 25); - this.DgcFeeItem.MainView = this.DgvFeeItem; - this.DgcFeeItem.Name = "DgcFeeItem"; - this.DgcFeeItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { - this.repositoryItemCheckEdit1}); - this.DgcFeeItem.Size = new System.Drawing.Size(473, 465); - this.DgcFeeItem.TabIndex = 137; - this.DgcFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvFeeItem, - this.gridView1}); + this.TsmiOpenFeeItem.Image = ((System.Drawing.Image)(resources.GetObject("TsmiOpenFeeItem.Image"))); + this.TsmiOpenFeeItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiOpenFeeItem.Name = "TsmiOpenFeeItem"; + this.TsmiOpenFeeItem.Size = new System.Drawing.Size(120, 40); + this.TsmiOpenFeeItem.Text = "打开收费项目"; // - // gridView1 + // toolStripMenuItem6 // - this.gridView1.GridControl = this.DgcFeeItem; - this.gridView1.Name = "gridView1"; + this.toolStripMenuItem6.Name = "toolStripMenuItem6"; + this.toolStripMenuItem6.Size = new System.Drawing.Size(12, 40); // - // repositoryItemCheckEdit1 + // TsmiBatchCtrl // - this.repositoryItemCheckEdit1.AutoHeight = false; - this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1"; + this.TsmiBatchCtrl.Image = ((System.Drawing.Image)(resources.GetObject("TsmiBatchCtrl.Image"))); + this.TsmiBatchCtrl.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TsmiBatchCtrl.Name = "TsmiBatchCtrl"; + this.TsmiBatchCtrl.Size = new System.Drawing.Size(104, 40); + this.TsmiBatchCtrl.Text = "批量操作"; + this.TsmiBatchCtrl.Visible = false; // - // DgvFeeItem + // splitterControl1 // - this.DgvFeeItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold); - this.DgvFeeItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; - this.DgvFeeItem.Appearance.FooterPanel.Options.UseFont = true; - this.DgvFeeItem.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvFeeItem.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); - this.DgvFeeItem.Appearance.GroupRow.Options.UseFont = true; - this.DgvFeeItem.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); - this.DgvFeeItem.Appearance.Row.Options.UseFont = true; - this.DgvFeeItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn72, - this.gridColumn70, - this.gridColumn69, - this.gridColumn71, - this.GcSettlePrice, - this.gridColumn67, - this.gridColumn68, - this.gridColumn73}); - this.DgvFeeItem.FixedLineWidth = 1; - this.DgvFeeItem.GridControl = this.DgcFeeItem; - this.DgvFeeItem.IndicatorWidth = 30; - this.DgvFeeItem.Name = "DgvFeeItem"; - this.DgvFeeItem.OptionsSelection.MultiSelect = true; - this.DgvFeeItem.OptionsView.ColumnAutoWidth = false; - this.DgvFeeItem.OptionsView.ShowGroupPanel = false; - this.DgvFeeItem.RowHeight = 40; + this.splitterControl1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); + this.splitterControl1.Appearance.Options.UseBackColor = true; + this.splitterControl1.Location = new System.Drawing.Point(280, 0); + this.splitterControl1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.splitterControl1.Name = "splitterControl1"; + this.splitterControl1.Size = new System.Drawing.Size(5, 736); + this.splitterControl1.TabIndex = 145; + this.splitterControl1.TabStop = false; // - // gridColumn72 + // panel11 // - this.gridColumn72.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn72.AppearanceCell.Options.UseFont = true; - this.gridColumn72.Caption = "执行科室"; - this.gridColumn72.FieldName = "DeptName"; - this.gridColumn72.Name = "gridColumn72"; - this.gridColumn72.OptionsColumn.AllowEdit = false; - this.gridColumn72.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn72.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn72.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn72.OptionsColumn.ReadOnly = true; - this.gridColumn72.OptionsFilter.AllowFilter = false; - this.gridColumn72.Visible = true; - this.gridColumn72.VisibleIndex = 0; - this.gridColumn72.Width = 105; + this.panel11.Controls.Add(this.DgcEnrollment); + this.panel11.Controls.Add(this.PatientSearch); + this.panel11.Dock = System.Windows.Forms.DockStyle.Left; + this.panel11.Location = new System.Drawing.Point(0, 0); + this.panel11.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.panel11.Name = "panel11"; + this.panel11.Size = new System.Drawing.Size(280, 736); + this.panel11.TabIndex = 144; // - // gridColumn70 + // DgcEnrollment // - this.gridColumn70.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn70.AppearanceCell.Options.UseFont = true; - this.gridColumn70.AppearanceCell.Options.UseForeColor = true; - this.gridColumn70.Caption = "项目名称"; - this.gridColumn70.FieldName = "FeeItemName"; - this.gridColumn70.Name = "gridColumn70"; - this.gridColumn70.OptionsColumn.AllowEdit = false; - this.gridColumn70.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn70.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn70.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn70.OptionsColumn.ReadOnly = true; - this.gridColumn70.OptionsFilter.AllowFilter = false; - this.gridColumn70.Visible = true; - this.gridColumn70.VisibleIndex = 1; - this.gridColumn70.Width = 200; + this.DgcEnrollment.ContextMenuStrip = this.InfoFastMenu; + this.DgcEnrollment.Dock = System.Windows.Forms.DockStyle.Fill; + this.DgcEnrollment.Location = new System.Drawing.Point(0, 23); + this.DgcEnrollment.MainView = this.DgvEnrollment; + this.DgcEnrollment.Name = "DgcEnrollment"; + this.DgcEnrollment.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { + this.repositoryItemCheckEdit3}); + this.DgcEnrollment.Size = new System.Drawing.Size(280, 713); + this.DgcEnrollment.TabIndex = 133; + this.DgcEnrollment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { + this.DgvEnrollment}); // - // gridColumn69 + // InfoFastMenu // - this.gridColumn69.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn69.AppearanceCell.Options.UseFont = true; - this.gridColumn69.Caption = "费用代码"; - this.gridColumn69.FieldName = "FeeItemCode"; - this.gridColumn69.Name = "gridColumn69"; - this.gridColumn69.OptionsColumn.AllowEdit = false; - this.gridColumn69.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn69.OptionsColumn.AllowMove = false; - this.gridColumn69.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn69.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn69.OptionsColumn.ReadOnly = true; - this.gridColumn69.OptionsFilter.AllowFilter = false; - this.gridColumn69.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); - this.gridColumn69.Visible = true; - this.gridColumn69.VisibleIndex = 2; - this.gridColumn69.Width = 80; + this.InfoFastMenu.ImageScalingSize = new System.Drawing.Size(20, 20); + this.InfoFastMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FastCamera, + this.FastDelete, + this.FastExport, + this.FastExportTime, + this.FastRecall, + this.FastGroup, + this.FastCancelGroup}); + this.InfoFastMenu.Name = "CostFastMenu"; + this.InfoFastMenu.Size = new System.Drawing.Size(205, 214); // - // gridColumn71 + // FastCamera // - this.gridColumn71.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn71.AppearanceCell.Options.UseFont = true; - this.gridColumn71.Caption = "收费价格"; - this.gridColumn71.FieldName = "Price"; - this.gridColumn71.Name = "gridColumn71"; - this.gridColumn71.OptionsColumn.AllowEdit = false; - this.gridColumn71.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn71.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn71.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn71.OptionsColumn.ReadOnly = true; - this.gridColumn71.OptionsFilter.AllowFilter = false; - this.gridColumn71.Visible = true; - this.gridColumn71.VisibleIndex = 3; - this.gridColumn71.Width = 60; + this.FastCamera.Image = ((System.Drawing.Image)(resources.GetObject("FastCamera.Image"))); + this.FastCamera.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.FastCamera.Name = "FastCamera"; + this.FastCamera.Size = new System.Drawing.Size(204, 30); + this.FastCamera.Text = "拍照"; // - // GcSettlePrice + // FastDelete // - this.GcSettlePrice.Caption = "核算价格"; - this.GcSettlePrice.FieldName = "SettlePrice"; - this.GcSettlePrice.Name = "GcSettlePrice"; - this.GcSettlePrice.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.GcSettlePrice.OptionsFilter.AllowFilter = false; - this.GcSettlePrice.Visible = true; - this.GcSettlePrice.VisibleIndex = 4; + this.FastDelete.Image = ((System.Drawing.Image)(resources.GetObject("FastDelete.Image"))); + this.FastDelete.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.FastDelete.Name = "FastDelete"; + this.FastDelete.Size = new System.Drawing.Size(204, 30); + this.FastDelete.Text = "删除成员"; // - // gridColumn67 + // FastExport // - this.gridColumn67.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn67.AppearanceCell.Options.UseFont = true; - this.gridColumn67.Caption = "项目类别"; - this.gridColumn67.FieldName = "ItemClass"; - this.gridColumn67.Name = "gridColumn67"; - this.gridColumn67.OptionsColumn.AllowEdit = false; - this.gridColumn67.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn67.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn67.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn67.OptionsColumn.ReadOnly = true; - this.gridColumn67.OptionsFilter.AllowFilter = false; - this.gridColumn67.Visible = true; - this.gridColumn67.VisibleIndex = 5; - this.gridColumn67.Width = 76; + this.FastExport.Image = global::PEIS.Properties.Resources.Excel; + this.FastExport.Name = "FastExport"; + this.FastExport.Size = new System.Drawing.Size(204, 30); + this.FastExport.Text = "导出所有成员"; // - // gridColumn68 + // FastExportTime // - this.gridColumn68.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn68.AppearanceCell.Options.UseFont = true; - this.gridColumn68.Caption = "类型"; - this.gridColumn68.FieldName = "UnitName"; - this.gridColumn68.Name = "gridColumn68"; - this.gridColumn68.OptionsColumn.AllowEdit = false; - this.gridColumn68.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn68.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn68.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn68.OptionsColumn.ReadOnly = true; - this.gridColumn68.OptionsFilter.AllowFilter = false; - this.gridColumn68.Visible = true; - this.gridColumn68.VisibleIndex = 6; - this.gridColumn68.Width = 50; + this.FastExportTime.Image = global::PEIS.Properties.Resources.Excel; + this.FastExportTime.Name = "FastExportTime"; + this.FastExportTime.Size = new System.Drawing.Size(204, 30); + this.FastExportTime.Text = "导出指定时间范围成员"; // - // gridColumn73 + // FastRecall // - this.gridColumn73.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn73.AppearanceCell.Options.UseFont = true; - this.gridColumn73.Caption = "ID"; - this.gridColumn73.FieldName = "ID"; - this.gridColumn73.Name = "gridColumn73"; - this.gridColumn73.Visible = true; - this.gridColumn73.VisibleIndex = 7; - this.gridColumn73.Width = 40; + this.FastRecall.Image = global::PEIS.Properties.Resources.取消弃检; + this.FastRecall.Name = "FastRecall"; + this.FastRecall.Size = new System.Drawing.Size(204, 30); + this.FastRecall.Text = "撤回发送"; // - // TpPack + // FastGroup // - this.TpPack.Controls.Add(this.DgcPack); - this.TpPack.Location = new System.Drawing.Point(4, 23); - this.TpPack.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.TpPack.Name = "TpPack"; - this.TpPack.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.TpPack.Size = new System.Drawing.Size(477, 492); - this.TpPack.TabIndex = 1; - this.TpPack.Text = "套餐"; - this.TpPack.UseVisualStyleBackColor = true; + this.FastGroup.Name = "FastGroup"; + this.FastGroup.Size = new System.Drawing.Size(204, 30); + this.FastGroup.Text = "组合缴费"; + this.FastGroup.Visible = false; // - // DgcPack + // FastCancelGroup // - this.DgcPack.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcPack.Location = new System.Drawing.Point(2, 3); - this.DgcPack.MainView = this.DgvPack; - this.DgcPack.Name = "DgcPack"; - this.DgcPack.Size = new System.Drawing.Size(473, 486); - this.DgcPack.TabIndex = 122; - this.DgcPack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvPack, - this.gridView2}); + this.FastCancelGroup.Name = "FastCancelGroup"; + this.FastCancelGroup.Size = new System.Drawing.Size(204, 30); + this.FastCancelGroup.Text = "取消组合缴费"; + this.FastCancelGroup.Visible = false; // - // gridView2 + // DgvEnrollment // - this.gridView2.GridControl = this.DgcPack; - this.gridView2.Name = "gridView2"; + this.DgvEnrollment.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold); + this.DgvEnrollment.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; + this.DgvEnrollment.Appearance.FooterPanel.Options.UseFont = true; + this.DgvEnrollment.Appearance.FooterPanel.Options.UseForeColor = true; + this.DgvEnrollment.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F); + this.DgvEnrollment.Appearance.GroupRow.Options.UseFont = true; + this.DgvEnrollment.Appearance.HeaderPanel.Font = new System.Drawing.Font("微软雅黑", 12F); + this.DgvEnrollment.Appearance.HeaderPanel.Options.UseFont = true; + this.DgvEnrollment.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F); + this.DgvEnrollment.Appearance.Row.Options.UseFont = true; + this.DgvEnrollment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { + this.gridColumn97, + this.gridColumn164, + this.gridColumn103, + this.gridColumn89, + this.gridColumn90, + this.gridColumn108, + this.gridColumn91, + this.gridColumn93, + this.gridColumn94, + this.gridColumn95, + this.gridColumn96, + this.gridColumn105, + this.gridColumn104, + this.gridColumn92}); + this.DgvEnrollment.GridControl = this.DgcEnrollment; + this.DgvEnrollment.GroupCount = 1; + this.DgvEnrollment.GroupFormat = ""; + this.DgvEnrollment.IndicatorWidth = 55; + this.DgvEnrollment.Name = "DgvEnrollment"; + this.DgvEnrollment.OptionsFilter.AllowFilterEditor = false; + this.DgvEnrollment.OptionsMenu.EnableColumnMenu = false; + this.DgvEnrollment.OptionsSelection.MultiSelect = true; + this.DgvEnrollment.OptionsView.ColumnAutoWidth = false; + this.DgvEnrollment.OptionsView.ShowGroupPanel = false; + this.DgvEnrollment.RowHeight = 40; + this.DgvEnrollment.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { + new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn164, DevExpress.Data.ColumnSortOrder.Ascending)}); // - // DgvPack + // gridColumn97 // - this.DgvPack.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvPack.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Red; - this.DgvPack.Appearance.FooterPanel.Options.UseFont = true; - this.DgvPack.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvPack.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvPack.Appearance.GroupRow.Options.UseFont = true; - this.DgvPack.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvPack.Appearance.Row.Options.UseFont = true; - this.DgvPack.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn82, - this.gridColumn83, - this.gridColumn84, - this.gridColumn85, - this.gridColumn86, - this.gridColumn87, - this.gridColumn88}); - this.DgvPack.FixedLineWidth = 1; - this.DgvPack.GridControl = this.DgcPack; - this.DgvPack.IndicatorWidth = 30; - this.DgvPack.Name = "DgvPack"; - this.DgvPack.OptionsSelection.MultiSelect = true; - this.DgvPack.OptionsView.ColumnAutoWidth = false; - this.DgvPack.OptionsView.ShowGroupPanel = false; - this.DgvPack.RowHeight = 40; + this.gridColumn97.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn97.AppearanceCell.Options.UseFont = true; + this.gridColumn97.Caption = " "; + this.gridColumn97.ColumnEdit = this.repositoryItemCheckEdit3; + this.gridColumn97.FieldName = "IsSelected"; + this.gridColumn97.Name = "gridColumn97"; + this.gridColumn97.OptionsColumn.AllowEdit = false; + this.gridColumn97.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn97.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn97.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn97.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn97.OptionsColumn.ReadOnly = true; + this.gridColumn97.OptionsFilter.AllowFilter = false; // - // gridColumn82 + // repositoryItemCheckEdit3 // - this.gridColumn82.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn82.AppearanceCell.Options.UseFont = true; - this.gridColumn82.Caption = "套餐名称"; - this.gridColumn82.FieldName = "Name"; - this.gridColumn82.Name = "gridColumn82"; - this.gridColumn82.OptionsColumn.AllowEdit = false; - this.gridColumn82.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn82.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn82.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn82.OptionsColumn.ReadOnly = true; - this.gridColumn82.OptionsFilter.AllowFilter = false; - this.gridColumn82.Visible = true; - this.gridColumn82.VisibleIndex = 0; - this.gridColumn82.Width = 161; + this.repositoryItemCheckEdit3.AutoHeight = false; + this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3"; + this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked; + this.repositoryItemCheckEdit3.ValueChecked = ((short)(1)); + this.repositoryItemCheckEdit3.ValueUnchecked = ((short)(0)); // - // gridColumn83 + // gridColumn164 // - this.gridColumn83.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn83.AppearanceCell.Options.UseFont = true; - this.gridColumn83.Caption = "适用性别"; - this.gridColumn83.FieldName = "Sex"; - this.gridColumn83.Name = "gridColumn83"; - this.gridColumn83.OptionsColumn.AllowEdit = false; - this.gridColumn83.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn83.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn83.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn83.OptionsColumn.ReadOnly = true; - this.gridColumn83.OptionsFilter.AllowFilter = false; - this.gridColumn83.Visible = true; - this.gridColumn83.VisibleIndex = 1; - this.gridColumn83.Width = 101; + this.gridColumn164.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn164.AppearanceCell.Options.UseFont = true; + this.gridColumn164.Caption = "状态"; + this.gridColumn164.FieldName = "Signer"; + this.gridColumn164.Name = "gridColumn164"; + this.gridColumn164.OptionsColumn.AllowEdit = false; + this.gridColumn164.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn164.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn164.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn164.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn164.OptionsColumn.ReadOnly = true; + this.gridColumn164.OptionsFilter.AllowFilter = false; + this.gridColumn164.Width = 52; // - // gridColumn84 + // gridColumn103 // - this.gridColumn84.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn84.AppearanceCell.Options.UseFont = true; - this.gridColumn84.Caption = "适用婚态"; - this.gridColumn84.FieldName = "Marriage"; - this.gridColumn84.Name = "gridColumn84"; - this.gridColumn84.OptionsColumn.AllowEdit = false; - this.gridColumn84.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn84.OptionsColumn.AllowMove = false; - this.gridColumn84.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn84.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn84.OptionsColumn.ReadOnly = true; - this.gridColumn84.OptionsFilter.AllowFilter = false; - this.gridColumn84.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); - this.gridColumn84.Visible = true; - this.gridColumn84.VisibleIndex = 2; - this.gridColumn84.Width = 110; + this.gridColumn103.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn103.AppearanceCell.Options.UseFont = true; + this.gridColumn103.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn103.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn103.Caption = "体检号"; + this.gridColumn103.FieldName = "ID"; + this.gridColumn103.Name = "gridColumn103"; + this.gridColumn103.OptionsColumn.AllowEdit = false; + this.gridColumn103.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn103.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn103.OptionsColumn.AllowMove = false; + this.gridColumn103.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn103.OptionsColumn.ReadOnly = true; + this.gridColumn103.OptionsFilter.AllowFilter = false; + this.gridColumn103.Visible = true; + this.gridColumn103.VisibleIndex = 0; + this.gridColumn103.Width = 82; // - // gridColumn85 + // gridColumn89 // - this.gridColumn85.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn85.AppearanceCell.Options.UseFont = true; - this.gridColumn85.Caption = "序号"; - this.gridColumn85.FieldName = "Seq"; - this.gridColumn85.Name = "gridColumn85"; - this.gridColumn85.OptionsColumn.AllowEdit = false; - this.gridColumn85.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn85.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn85.OptionsColumn.ReadOnly = true; - this.gridColumn85.OptionsFilter.AllowFilter = false; - this.gridColumn85.Visible = true; - this.gridColumn85.VisibleIndex = 3; - this.gridColumn85.Width = 50; + this.gridColumn89.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn89.AppearanceCell.Options.UseFont = true; + this.gridColumn89.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn89.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn89.Caption = "姓名"; + this.gridColumn89.FieldName = "Name"; + this.gridColumn89.Name = "gridColumn89"; + this.gridColumn89.OptionsColumn.AllowEdit = false; + this.gridColumn89.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn89.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn89.OptionsColumn.AllowMove = false; + this.gridColumn89.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn89.OptionsColumn.ReadOnly = true; + this.gridColumn89.OptionsFilter.AllowFilter = false; + this.gridColumn89.Visible = true; + this.gridColumn89.VisibleIndex = 1; + this.gridColumn89.Width = 60; // - // gridColumn86 + // gridColumn90 // - this.gridColumn86.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn86.AppearanceCell.Options.UseFont = true; - this.gridColumn86.Caption = "创建人"; - this.gridColumn86.FieldName = "Creator"; - this.gridColumn86.Name = "gridColumn86"; - this.gridColumn86.OptionsColumn.AllowEdit = false; - this.gridColumn86.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn86.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn86.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn86.OptionsColumn.ReadOnly = true; - this.gridColumn86.OptionsFilter.AllowFilter = false; - this.gridColumn86.Visible = true; - this.gridColumn86.VisibleIndex = 4; - this.gridColumn86.Width = 80; + this.gridColumn90.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn90.AppearanceCell.Options.UseFont = true; + this.gridColumn90.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn90.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn90.Caption = "性别"; + this.gridColumn90.FieldName = "Sex"; + this.gridColumn90.Name = "gridColumn90"; + this.gridColumn90.OptionsColumn.AllowEdit = false; + this.gridColumn90.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn90.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn90.OptionsColumn.AllowMove = false; + this.gridColumn90.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn90.OptionsColumn.ReadOnly = true; + this.gridColumn90.OptionsFilter.AllowFilter = false; + this.gridColumn90.Visible = true; + this.gridColumn90.VisibleIndex = 2; + this.gridColumn90.Width = 40; // - // gridColumn87 + // gridColumn108 // - this.gridColumn87.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn87.AppearanceCell.Options.UseFont = true; - this.gridColumn87.Caption = "创建时间"; - this.gridColumn87.FieldName = "CreateTime"; - this.gridColumn87.Name = "gridColumn87"; - this.gridColumn87.OptionsColumn.AllowEdit = false; - this.gridColumn87.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn87.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn87.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn87.OptionsColumn.ReadOnly = true; - this.gridColumn87.OptionsFilter.AllowFilter = false; - this.gridColumn87.Visible = true; - this.gridColumn87.VisibleIndex = 5; - this.gridColumn87.Width = 130; + this.gridColumn108.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn108.AppearanceCell.Options.UseFont = true; + this.gridColumn108.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn108.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn108.Caption = "年龄"; + this.gridColumn108.FieldName = "AgeClass"; + this.gridColumn108.Name = "gridColumn108"; + this.gridColumn108.OptionsColumn.AllowEdit = false; + this.gridColumn108.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn108.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn108.OptionsColumn.AllowMove = false; + this.gridColumn108.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn108.OptionsColumn.ReadOnly = true; + this.gridColumn108.OptionsFilter.AllowFilter = false; + this.gridColumn108.Visible = true; + this.gridColumn108.VisibleIndex = 3; + this.gridColumn108.Width = 30; // - // gridColumn88 + // gridColumn91 // - this.gridColumn88.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn88.AppearanceCell.Options.UseFont = true; - this.gridColumn88.Caption = "ID"; - this.gridColumn88.FieldName = "ID"; - this.gridColumn88.Name = "gridColumn88"; - this.gridColumn88.OptionsColumn.AllowEdit = false; - this.gridColumn88.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn88.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn88.OptionsColumn.ReadOnly = true; - this.gridColumn88.Visible = true; - this.gridColumn88.VisibleIndex = 6; - this.gridColumn88.Width = 40; + this.gridColumn91.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn91.AppearanceCell.Options.UseFont = true; + this.gridColumn91.Caption = "部门"; + this.gridColumn91.FieldName = "GroupName"; + this.gridColumn91.Name = "gridColumn91"; + this.gridColumn91.OptionsColumn.AllowEdit = false; + this.gridColumn91.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn91.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn91.OptionsColumn.AllowMove = false; + this.gridColumn91.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn91.OptionsColumn.ReadOnly = true; + this.gridColumn91.Visible = true; + this.gridColumn91.VisibleIndex = 4; // - // splitter4 + // gridColumn93 // - this.splitter4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); - this.splitter4.Dock = System.Windows.Forms.DockStyle.Right; - this.splitter4.Location = new System.Drawing.Point(704, 3); - this.splitter4.Name = "splitter4"; - this.splitter4.Size = new System.Drawing.Size(4, 519); - this.splitter4.TabIndex = 142; - this.splitter4.TabStop = false; + this.gridColumn93.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn93.AppearanceCell.Options.UseFont = true; + this.gridColumn93.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn93.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn93.Caption = "婚况"; + this.gridColumn93.FieldName = "Marriage"; + this.gridColumn93.Name = "gridColumn93"; + this.gridColumn93.OptionsColumn.AllowEdit = false; + this.gridColumn93.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn93.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn93.OptionsColumn.AllowMove = false; + this.gridColumn93.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn93.OptionsColumn.ReadOnly = true; + this.gridColumn93.OptionsFilter.AllowFilter = false; + this.gridColumn93.Visible = true; + this.gridColumn93.VisibleIndex = 5; + this.gridColumn93.Width = 60; + // + // gridColumn94 + // + this.gridColumn94.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn94.AppearanceCell.Options.UseFont = true; + this.gridColumn94.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn94.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn94.Caption = "出生年月"; + this.gridColumn94.FieldName = "Birthday"; + this.gridColumn94.Name = "gridColumn94"; + this.gridColumn94.OptionsColumn.AllowEdit = false; + this.gridColumn94.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn94.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn94.OptionsColumn.AllowMove = false; + this.gridColumn94.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn94.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn94.OptionsColumn.ReadOnly = true; + this.gridColumn94.OptionsFilter.AllowFilter = false; + this.gridColumn94.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { + new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "BloodCode", "合计:{0} 个血袋")}); + this.gridColumn94.Visible = true; + this.gridColumn94.VisibleIndex = 6; + this.gridColumn94.Width = 100; // - // DgcGroupFeeItem + // gridColumn95 // - this.DgcGroupFeeItem.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcGroupFeeItem.Location = new System.Drawing.Point(3, 3); - this.DgcGroupFeeItem.MainView = this.DgvGroupFeeItem; - this.DgcGroupFeeItem.Name = "DgcGroupFeeItem"; - this.DgcGroupFeeItem.Size = new System.Drawing.Size(701, 519); - this.DgcGroupFeeItem.TabIndex = 137; - this.DgcGroupFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvGroupFeeItem}); + this.gridColumn95.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn95.AppearanceCell.Options.UseFont = true; + this.gridColumn95.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn95.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn95.Caption = "证件类型"; + this.gridColumn95.FieldName = "CardType"; + this.gridColumn95.Name = "gridColumn95"; + this.gridColumn95.OptionsColumn.AllowEdit = false; + this.gridColumn95.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn95.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn95.OptionsColumn.AllowMove = false; + this.gridColumn95.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn95.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn95.OptionsColumn.ReadOnly = true; + this.gridColumn95.OptionsFilter.AllowFilter = false; + this.gridColumn95.Visible = true; + this.gridColumn95.VisibleIndex = 7; + this.gridColumn95.Width = 80; // - // gridView9 + // gridColumn96 // - this.gridView9.GridControl = this.DgcGroupFeeItem; - this.gridView9.Name = "gridView9"; + this.gridColumn96.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn96.AppearanceCell.Options.UseFont = true; + this.gridColumn96.AppearanceHeader.Options.UseTextOptions = true; + this.gridColumn96.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn96.Caption = "证件号码"; + this.gridColumn96.FieldName = "CardNo"; + this.gridColumn96.Name = "gridColumn96"; + this.gridColumn96.OptionsColumn.AllowEdit = false; + this.gridColumn96.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn96.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn96.OptionsColumn.AllowMove = false; + this.gridColumn96.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn96.OptionsColumn.ReadOnly = true; + this.gridColumn96.OptionsFilter.AllowFilter = false; + this.gridColumn96.Visible = true; + this.gridColumn96.VisibleIndex = 8; + this.gridColumn96.Width = 160; // - // DgvGroupFeeItem + // gridColumn105 // - this.DgvGroupFeeItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.DgvGroupFeeItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(117)))), ((int)(((byte)(230))))); - this.DgvGroupFeeItem.Appearance.FooterPanel.Options.UseFont = true; - this.DgvGroupFeeItem.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvGroupFeeItem.Appearance.GroupRow.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvGroupFeeItem.Appearance.GroupRow.Options.UseFont = true; - this.DgvGroupFeeItem.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.DgvGroupFeeItem.Appearance.Row.Options.UseFont = true; - this.DgvGroupFeeItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn75, - this.gridColumn74, - this.gridColumn76, - this.gridColumn77, - this.gridColumn79, - this.gridColumn78, - this.gridColumn80, - this.gridColumn81}); - this.DgvGroupFeeItem.FixedLineWidth = 1; - this.DgvGroupFeeItem.GridControl = this.DgcGroupFeeItem; - this.DgvGroupFeeItem.IndicatorWidth = 30; - this.DgvGroupFeeItem.Name = "DgvGroupFeeItem"; - this.DgvGroupFeeItem.OptionsView.AllowCellMerge = true; - this.DgvGroupFeeItem.OptionsView.ColumnAutoWidth = false; - this.DgvGroupFeeItem.OptionsView.ShowFooter = true; - this.DgvGroupFeeItem.OptionsView.ShowGroupPanel = false; - this.DgvGroupFeeItem.RowHeight = 40; + this.gridColumn105.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn105.AppearanceCell.Options.UseFont = true; + this.gridColumn105.Caption = "联系方式"; + this.gridColumn105.FieldName = "Tel1"; + this.gridColumn105.Name = "gridColumn105"; + this.gridColumn105.OptionsColumn.AllowEdit = false; + this.gridColumn105.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn105.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn105.OptionsColumn.AllowMove = false; + this.gridColumn105.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn105.OptionsColumn.ReadOnly = true; + this.gridColumn105.OptionsFilter.AllowFilter = false; + this.gridColumn105.Visible = true; + this.gridColumn105.VisibleIndex = 10; // - // gridColumn75 + // gridColumn104 // - this.gridColumn75.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn75.AppearanceCell.Options.UseFont = true; - this.gridColumn75.AppearanceCell.Options.UseTextOptions = true; - this.gridColumn75.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.gridColumn75.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center; - this.gridColumn75.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; - this.gridColumn75.Caption = "套餐"; - this.gridColumn75.ColumnEdit = this.repositoryItemMemoEdit1; - this.gridColumn75.FieldName = "PackName"; - this.gridColumn75.Name = "gridColumn75"; - this.gridColumn75.OptionsColumn.AllowEdit = false; - this.gridColumn75.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn75.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn75.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn75.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn75.OptionsColumn.ReadOnly = true; - this.gridColumn75.OptionsFilter.AllowFilter = false; - this.gridColumn75.Visible = true; - this.gridColumn75.VisibleIndex = 0; - this.gridColumn75.Width = 80; + this.gridColumn104.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn104.AppearanceCell.Options.UseFont = true; + this.gridColumn104.Caption = "签到时间"; + this.gridColumn104.FieldName = "SignTime"; + this.gridColumn104.GroupFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; + this.gridColumn104.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime; + this.gridColumn104.Name = "gridColumn104"; + this.gridColumn104.OptionsColumn.AllowEdit = false; + this.gridColumn104.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn104.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn104.OptionsColumn.AllowMove = false; + this.gridColumn104.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn104.OptionsColumn.ReadOnly = true; + this.gridColumn104.OptionsFilter.AllowFilter = false; + this.gridColumn104.Visible = true; + this.gridColumn104.VisibleIndex = 11; // - // gridColumn74 + // gridColumn92 // - this.gridColumn74.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn74.AppearanceCell.Options.UseFont = true; - this.gridColumn74.Caption = "项目类别"; - this.gridColumn74.FieldName = "ItemClass"; - this.gridColumn74.Name = "gridColumn74"; - this.gridColumn74.OptionsColumn.AllowEdit = false; - this.gridColumn74.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn74.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn74.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn74.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn74.OptionsColumn.ReadOnly = true; - this.gridColumn74.OptionsFilter.AllowFilter = false; - this.gridColumn74.Visible = true; - this.gridColumn74.VisibleIndex = 1; - this.gridColumn74.Width = 70; + this.gridColumn92.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn92.AppearanceCell.Options.UseFont = true; + this.gridColumn92.Caption = "状态"; + this.gridColumn92.FieldName = "Signer"; + this.gridColumn92.Name = "gridColumn92"; + this.gridColumn92.OptionsColumn.AllowEdit = false; + this.gridColumn92.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn92.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn92.OptionsColumn.AllowMove = false; + this.gridColumn92.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn92.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn92.OptionsColumn.ReadOnly = true; + this.gridColumn92.OptionsFilter.AllowFilter = false; + this.gridColumn92.Visible = true; + this.gridColumn92.VisibleIndex = 9; // - // gridColumn76 + // PatientSearch // - this.gridColumn76.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn76.AppearanceCell.Options.UseFont = true; - this.gridColumn76.Caption = "费用代码"; - this.gridColumn76.FieldName = "FeeItemCode"; - this.gridColumn76.Name = "gridColumn76"; - this.gridColumn76.OptionsColumn.AllowEdit = false; - this.gridColumn76.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn76.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn76.OptionsColumn.AllowMove = false; - this.gridColumn76.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn76.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn76.OptionsColumn.ReadOnly = true; - this.gridColumn76.OptionsFilter.AllowFilter = false; - this.gridColumn76.Visible = true; - this.gridColumn76.VisibleIndex = 2; - this.gridColumn76.Width = 70; + this.PatientSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PatientSearch.Dock = System.Windows.Forms.DockStyle.Top; + this.PatientSearch.Font = new System.Drawing.Font("微软雅黑", 9F); + this.PatientSearch.Location = new System.Drawing.Point(0, 0); + this.PatientSearch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); + this.PatientSearch.Name = "PatientSearch"; + this.PatientSearch.Size = new System.Drawing.Size(280, 23); + this.PatientSearch.TabIndex = 134; // - // gridColumn77 + // gridColumn109 // - this.gridColumn77.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn77.AppearanceCell.Options.UseFont = true; - this.gridColumn77.Caption = "项目名称"; - this.gridColumn77.FieldName = "FeeItemName"; - this.gridColumn77.Name = "gridColumn77"; - this.gridColumn77.OptionsColumn.AllowEdit = false; - this.gridColumn77.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn77.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn77.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn77.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn77.OptionsColumn.ReadOnly = true; - this.gridColumn77.OptionsFilter.AllowFilter = false; - this.gridColumn77.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Average, "FeeItemName", "合计:")}); - this.gridColumn77.Visible = true; - this.gridColumn77.VisibleIndex = 3; - this.gridColumn77.Width = 200; + this.gridColumn109.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); + this.gridColumn109.AppearanceCell.Options.UseFont = true; + this.gridColumn109.AppearanceCell.Options.UseTextOptions = true; + this.gridColumn109.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; + this.gridColumn109.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center; + this.gridColumn109.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; + this.gridColumn109.Caption = "套餐"; + this.gridColumn109.ColumnEdit = this.repositoryItemMemoEdit21; + this.gridColumn109.FieldName = "PackName"; + this.gridColumn109.Name = "gridColumn109"; + this.gridColumn109.OptionsColumn.AllowEdit = false; + this.gridColumn109.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn109.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; + this.gridColumn109.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn109.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; + this.gridColumn109.OptionsColumn.ReadOnly = true; + this.gridColumn109.OptionsFilter.AllowFilter = false; + this.gridColumn109.Visible = true; + this.gridColumn109.VisibleIndex = 1; + this.gridColumn109.Width = 80; // - // gridColumn79 + // 新建NToolStripMenuItem // - this.gridColumn79.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn79.AppearanceCell.Options.UseFont = true; - this.gridColumn79.Caption = "收费价格"; - this.gridColumn79.DisplayFormat.FormatString = "c"; - this.gridColumn79.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn79.FieldName = "Price"; - this.gridColumn79.GroupFormat.FormatString = "c"; - this.gridColumn79.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric; - this.gridColumn79.Name = "gridColumn79"; - this.gridColumn79.OptionsColumn.AllowEdit = false; - this.gridColumn79.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn79.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn79.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn79.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn79.OptionsColumn.ReadOnly = true; - this.gridColumn79.OptionsFilter.AllowFilter = false; - this.gridColumn79.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { - new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Price", "¥{0:0.##}")}); - this.gridColumn79.Visible = true; - this.gridColumn79.VisibleIndex = 4; - this.gridColumn79.Width = 63; + this.新建NToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("新建NToolStripMenuItem.Image"))); + this.新建NToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.新建NToolStripMenuItem.Name = "新建NToolStripMenuItem"; + this.新建NToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); + this.新建NToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.新建NToolStripMenuItem.Text = "新建(&N)"; // - // gridColumn78 + // 打开OToolStripMenuItem // - this.gridColumn78.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn78.AppearanceCell.Options.UseFont = true; - this.gridColumn78.Caption = "核算价格"; - this.gridColumn78.FieldName = "SettlePrice"; - this.gridColumn78.Name = "gridColumn78"; - this.gridColumn78.OptionsColumn.AllowEdit = false; - this.gridColumn78.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn78.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn78.OptionsColumn.ReadOnly = true; - this.gridColumn78.OptionsFilter.AllowFilter = false; - this.gridColumn78.Visible = true; - this.gridColumn78.VisibleIndex = 5; - this.gridColumn78.Width = 63; + this.打开OToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打开OToolStripMenuItem.Image"))); + this.打开OToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.打开OToolStripMenuItem.Name = "打开OToolStripMenuItem"; + this.打开OToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); + this.打开OToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.打开OToolStripMenuItem.Text = "打开(&O)"; // - // gridColumn80 + // toolStripSeparator // - this.gridColumn80.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn80.AppearanceCell.Options.UseFont = true; - this.gridColumn80.Caption = "执行科室"; - this.gridColumn80.FieldName = "DeptName"; - this.gridColumn80.Name = "gridColumn80"; - this.gridColumn80.OptionsColumn.AllowEdit = false; - this.gridColumn80.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn80.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn80.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn80.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn80.OptionsColumn.ReadOnly = true; - this.gridColumn80.OptionsFilter.AllowFilter = false; - this.gridColumn80.Visible = true; - this.gridColumn80.VisibleIndex = 6; - this.gridColumn80.Width = 70; + this.toolStripSeparator.Name = "toolStripSeparator"; + this.toolStripSeparator.Size = new System.Drawing.Size(6, 6); // - // gridColumn81 + // 保存SToolStripMenuItem // - this.gridColumn81.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn81.AppearanceCell.Options.UseFont = true; - this.gridColumn81.Caption = "ID"; - this.gridColumn81.FieldName = "ID"; - this.gridColumn81.Name = "gridColumn81"; - this.gridColumn81.OptionsColumn.AllowEdit = false; - this.gridColumn81.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn81.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn81.OptionsColumn.ReadOnly = true; - this.gridColumn81.Visible = true; - this.gridColumn81.VisibleIndex = 7; - this.gridColumn81.Width = 40; + this.保存SToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("保存SToolStripMenuItem.Image"))); + this.保存SToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.保存SToolStripMenuItem.Name = "保存SToolStripMenuItem"; + this.保存SToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); + this.保存SToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.保存SToolStripMenuItem.Text = "保存(&S)"; // - // panel5 + // 另存为AToolStripMenuItem // - this.panel5.Controls.Add(this.DgcGroupFeeItem); - this.panel5.Controls.Add(this.splitter4); - this.panel5.Controls.Add(this.panel9); - this.panel5.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel5.Location = new System.Drawing.Point(0, 211); - this.panel5.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.panel5.Name = "panel5"; - this.panel5.Padding = new System.Windows.Forms.Padding(3); - this.panel5.Size = new System.Drawing.Size(1196, 525); - this.panel5.TabIndex = 139; + this.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem"; + this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.另存为AToolStripMenuItem.Text = "另存为(&A)"; // - // repositoryItemMemoEdit1 + // toolStripSeparator1 // - this.repositoryItemMemoEdit1.Appearance.Options.UseTextOptions = true; - this.repositoryItemMemoEdit1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; - this.repositoryItemMemoEdit1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap; - this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1"; + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(6, 6); // - // splitter8 + // 打印PToolStripMenuItem // - this.splitter8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202))))); - this.splitter8.Dock = System.Windows.Forms.DockStyle.Top; - this.splitter8.Location = new System.Drawing.Point(0, 211); - this.splitter8.Name = "splitter8"; - this.splitter8.Padding = new System.Windows.Forms.Padding(3); - this.splitter8.Size = new System.Drawing.Size(1196, 5); - this.splitter8.TabIndex = 143; - this.splitter8.TabStop = false; + this.打印PToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印PToolStripMenuItem.Image"))); + this.打印PToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.打印PToolStripMenuItem.Name = "打印PToolStripMenuItem"; + this.打印PToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P))); + this.打印PToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.打印PToolStripMenuItem.Text = "打印(&P)"; // - // CopyItemTab + // 打印预览VToolStripMenuItem // - this.CopyItemTab.Controls.Add(this.DgcCopyItem); - this.CopyItemTab.Controls.Add(this.panel14); - this.CopyItemTab.Controls.Add(this.CopyMenu); - this.CopyItemTab.Location = new System.Drawing.Point(4, 23); - this.CopyItemTab.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.CopyItemTab.Name = "CopyItemTab"; - this.CopyItemTab.Size = new System.Drawing.Size(372, 362); - this.CopyItemTab.TabIndex = 3; - this.CopyItemTab.Text = "从体检者复制项目"; - this.CopyItemTab.UseVisualStyleBackColor = true; + this.打印预览VToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("打印预览VToolStripMenuItem.Image"))); + this.打印预览VToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.打印预览VToolStripMenuItem.Name = "打印预览VToolStripMenuItem"; + this.打印预览VToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.打印预览VToolStripMenuItem.Text = "打印预览(&V)"; // - // DgcCopyItem + // toolStripSeparator2 // - this.DgcCopyItem.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcCopyItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.DgcCopyItem.Location = new System.Drawing.Point(140, 28); - this.DgcCopyItem.MainView = this.DgvCopyItem; - this.DgcCopyItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.DgcCopyItem.Name = "DgcCopyItem"; - this.DgcCopyItem.Size = new System.Drawing.Size(232, 334); - this.DgcCopyItem.TabIndex = 32; - this.DgcCopyItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvCopyItem}); + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(6, 6); // - // DgvCopyItem + // 退出XToolStripMenuItem // - this.DgvCopyItem.Appearance.FooterPanel.Font = new System.Drawing.Font("微软雅黑", 10.8F); - this.DgvCopyItem.Appearance.FooterPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(48)))), ((int)(((byte)(240))))); - this.DgvCopyItem.Appearance.FooterPanel.Options.UseFont = true; - this.DgvCopyItem.Appearance.FooterPanel.Options.UseForeColor = true; - this.DgvCopyItem.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 10F); - this.DgvCopyItem.Appearance.Row.Options.UseFont = true; - this.DgvCopyItem.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn106, - this.gridColumn107, - this.gridColumn162, - this.gridColumn165, - this.gridColumn166, - this.gridColumn167, - this.gridColumn168, - this.gridColumn169}); - this.DgvCopyItem.GridControl = this.DgcCopyItem; - this.DgvCopyItem.Name = "DgvCopyItem"; - this.DgvCopyItem.OptionsBehavior.Editable = false; - this.DgvCopyItem.OptionsMenu.EnableColumnMenu = false; - this.DgvCopyItem.OptionsView.AllowCellMerge = true; - this.DgvCopyItem.OptionsView.ColumnAutoWidth = false; - this.DgvCopyItem.OptionsView.ShowGroupPanel = false; - this.DgvCopyItem.OptionsView.ShowIndicator = false; - this.DgvCopyItem.RowHeight = 35; + this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem"; + this.退出XToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.退出XToolStripMenuItem.Text = "退出(&X)"; // - // gridColumn106 + // 撤消UToolStripMenuItem // - this.gridColumn106.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn106.AppearanceCell.Options.UseFont = true; - this.gridColumn106.Caption = "套餐"; - this.gridColumn106.FieldName = "PackName"; - this.gridColumn106.Name = "gridColumn106"; - this.gridColumn106.OptionsColumn.AllowEdit = false; - this.gridColumn106.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn106.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn106.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn106.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn106.OptionsColumn.ReadOnly = true; - this.gridColumn106.OptionsFilter.AllowFilter = false; - this.gridColumn106.Visible = true; - this.gridColumn106.VisibleIndex = 0; - this.gridColumn106.Width = 147; + this.撤消UToolStripMenuItem.Name = "撤消UToolStripMenuItem"; + this.撤消UToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z))); + this.撤消UToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.撤消UToolStripMenuItem.Text = "撤消(&U)"; // - // gridColumn107 + // 重复RToolStripMenuItem // - this.gridColumn107.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn107.AppearanceCell.Options.UseFont = true; - this.gridColumn107.Caption = "收费项目"; - this.gridColumn107.FieldName = "FeeItemName"; - this.gridColumn107.Name = "gridColumn107"; - this.gridColumn107.OptionsColumn.AllowEdit = false; - this.gridColumn107.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn107.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn107.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn107.OptionsColumn.ReadOnly = true; - this.gridColumn107.OptionsFilter.AllowFilter = false; - this.gridColumn107.Visible = true; - this.gridColumn107.VisibleIndex = 1; + this.重复RToolStripMenuItem.Name = "重复RToolStripMenuItem"; + this.重复RToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y))); + this.重复RToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.重复RToolStripMenuItem.Text = "重复(&R)"; // - // gridColumn162 + // toolStripSeparator3 // - this.gridColumn162.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn162.AppearanceCell.Options.UseFont = true; - this.gridColumn162.Caption = "收费价格"; - this.gridColumn162.FieldName = "Price"; - this.gridColumn162.Name = "gridColumn162"; - this.gridColumn162.OptionsColumn.AllowEdit = false; - this.gridColumn162.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn162.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn162.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn162.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn162.OptionsColumn.ReadOnly = true; - this.gridColumn162.OptionsFilter.AllowFilter = false; - this.gridColumn162.Visible = true; - this.gridColumn162.VisibleIndex = 2; + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(6, 6); // - // gridColumn165 + // 剪切TToolStripMenuItem // - this.gridColumn165.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn165.AppearanceCell.Options.UseFont = true; - this.gridColumn165.Caption = "核算价格"; - this.gridColumn165.FieldName = "SettlePrice"; - this.gridColumn165.Name = "gridColumn165"; - this.gridColumn165.OptionsColumn.AllowEdit = false; - this.gridColumn165.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn165.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn165.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn165.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn165.OptionsColumn.ReadOnly = true; - this.gridColumn165.OptionsFilter.AllowFilter = false; - this.gridColumn165.Visible = true; - this.gridColumn165.VisibleIndex = 3; + this.剪切TToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("剪切TToolStripMenuItem.Image"))); + this.剪切TToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.剪切TToolStripMenuItem.Name = "剪切TToolStripMenuItem"; + this.剪切TToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X))); + this.剪切TToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.剪切TToolStripMenuItem.Text = "剪切(&T)"; + // + // 复制CToolStripMenuItem + // + this.复制CToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("复制CToolStripMenuItem.Image"))); + this.复制CToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.复制CToolStripMenuItem.Name = "复制CToolStripMenuItem"; + this.复制CToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); + this.复制CToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.复制CToolStripMenuItem.Text = "复制(&C)"; + // + // 粘贴PToolStripMenuItem + // + this.粘贴PToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("粘贴PToolStripMenuItem.Image"))); + this.粘贴PToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; + this.粘贴PToolStripMenuItem.Name = "粘贴PToolStripMenuItem"; + this.粘贴PToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); + this.粘贴PToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.粘贴PToolStripMenuItem.Text = "粘贴(&P)"; // - // gridColumn166 + // toolStripSeparator4 // - this.gridColumn166.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn166.AppearanceCell.Options.UseFont = true; - this.gridColumn166.Caption = "执行科室"; - this.gridColumn166.FieldName = "DeptName"; - this.gridColumn166.Name = "gridColumn166"; - this.gridColumn166.OptionsColumn.AllowEdit = false; - this.gridColumn166.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn166.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn166.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn166.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn166.OptionsColumn.ReadOnly = true; - this.gridColumn166.OptionsFilter.AllowFilter = false; - this.gridColumn166.Visible = true; - this.gridColumn166.VisibleIndex = 4; + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(6, 6); // - // gridColumn167 + // 全选AToolStripMenuItem // - this.gridColumn167.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn167.AppearanceCell.Options.UseFont = true; - this.gridColumn167.Caption = "数量"; - this.gridColumn167.FieldName = "Quantity"; - this.gridColumn167.Name = "gridColumn167"; - this.gridColumn167.OptionsColumn.AllowEdit = false; - this.gridColumn167.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn167.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn167.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn167.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn167.OptionsColumn.ReadOnly = true; - this.gridColumn167.OptionsFilter.AllowFilter = false; - this.gridColumn167.Visible = true; - this.gridColumn167.VisibleIndex = 5; - this.gridColumn167.Width = 59; + this.全选AToolStripMenuItem.Name = "全选AToolStripMenuItem"; + this.全选AToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.全选AToolStripMenuItem.Text = "全选(&A)"; // - // gridColumn168 + // 自定义CToolStripMenuItem // - this.gridColumn168.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn168.AppearanceCell.Options.UseFont = true; - this.gridColumn168.Caption = "单位"; - this.gridColumn168.FieldName = "Unit"; - this.gridColumn168.Name = "gridColumn168"; - this.gridColumn168.OptionsColumn.AllowEdit = false; - this.gridColumn168.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn168.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn168.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn168.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn168.OptionsColumn.ReadOnly = true; - this.gridColumn168.OptionsFilter.AllowFilter = false; - this.gridColumn168.Visible = true; - this.gridColumn168.VisibleIndex = 6; - this.gridColumn168.Width = 48; + this.自定义CToolStripMenuItem.Name = "自定义CToolStripMenuItem"; + this.自定义CToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.自定义CToolStripMenuItem.Text = "自定义(&C)"; // - // gridColumn169 + // 选项OToolStripMenuItem // - this.gridColumn169.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn169.AppearanceCell.Options.UseFont = true; - this.gridColumn169.Caption = "检查类别"; - this.gridColumn169.FieldName = "ItemClass"; - this.gridColumn169.Name = "gridColumn169"; - this.gridColumn169.OptionsColumn.AllowEdit = false; - this.gridColumn169.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn169.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; - this.gridColumn169.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn169.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn169.OptionsColumn.ReadOnly = true; - this.gridColumn169.OptionsFilter.AllowFilter = false; - this.gridColumn169.Visible = true; - this.gridColumn169.VisibleIndex = 7; + this.选项OToolStripMenuItem.Name = "选项OToolStripMenuItem"; + this.选项OToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.选项OToolStripMenuItem.Text = "选项(&O)"; // - // panel14 + // 内容CToolStripMenuItem // - this.panel14.Controls.Add(this.NameSearch2); - this.panel14.Controls.Add(this.DgcRegItem2); - this.panel14.Dock = System.Windows.Forms.DockStyle.Left; - this.panel14.Location = new System.Drawing.Point(0, 28); - this.panel14.Name = "panel14"; - this.panel14.Size = new System.Drawing.Size(140, 334); - this.panel14.TabIndex = 31; + this.内容CToolStripMenuItem.Name = "内容CToolStripMenuItem"; + this.内容CToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.内容CToolStripMenuItem.Text = "内容(&C)"; // - // NameSearch2 + // 索引IToolStripMenuItem // - this.NameSearch2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.NameSearch2.Dock = System.Windows.Forms.DockStyle.Top; - this.NameSearch2.Font = new System.Drawing.Font("微软雅黑", 9F); - this.NameSearch2.Location = new System.Drawing.Point(0, 0); - this.NameSearch2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.NameSearch2.Name = "NameSearch2"; - this.NameSearch2.Size = new System.Drawing.Size(140, 23); - this.NameSearch2.TabIndex = 30; + this.索引IToolStripMenuItem.Name = "索引IToolStripMenuItem"; + this.索引IToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.索引IToolStripMenuItem.Text = "索引(&I)"; // - // DgcRegItem2 + // 搜索SToolStripMenuItem // - this.DgcRegItem2.Dock = System.Windows.Forms.DockStyle.Fill; - this.DgcRegItem2.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.DgcRegItem2.Location = new System.Drawing.Point(0, 0); - this.DgcRegItem2.MainView = this.DgvRegItem2; - this.DgcRegItem2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3); - this.DgcRegItem2.Name = "DgcRegItem2"; - this.DgcRegItem2.Size = new System.Drawing.Size(140, 334); - this.DgcRegItem2.TabIndex = 29; - this.DgcRegItem2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { - this.DgvRegItem2}); + this.搜索SToolStripMenuItem.Name = "搜索SToolStripMenuItem"; + this.搜索SToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.搜索SToolStripMenuItem.Text = "搜索(&S)"; // - // DgvRegItem2 + // toolStripSeparator5 // - this.DgvRegItem2.Appearance.Row.Font = new System.Drawing.Font("微软雅黑", 10F); - this.DgvRegItem2.Appearance.Row.Options.UseFont = true; - this.DgvRegItem2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { - this.gridColumn170, - this.gridColumn171}); - this.DgvRegItem2.GridControl = this.DgcRegItem2; - this.DgvRegItem2.Name = "DgvRegItem2"; - this.DgvRegItem2.OptionsMenu.EnableColumnMenu = false; - this.DgvRegItem2.OptionsSelection.MultiSelect = true; - this.DgvRegItem2.OptionsView.ColumnAutoWidth = false; - this.DgvRegItem2.OptionsView.ShowGroupPanel = false; - this.DgvRegItem2.OptionsView.ShowIndicator = false; - this.DgvRegItem2.RowHeight = 35; + this.toolStripSeparator5.Name = "toolStripSeparator5"; + this.toolStripSeparator5.Size = new System.Drawing.Size(6, 6); // - // gridColumn170 + // 关于AToolStripMenuItem // - this.gridColumn170.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn170.AppearanceCell.Options.UseFont = true; - this.gridColumn170.Caption = "体检号"; - this.gridColumn170.FieldName = "ID"; - this.gridColumn170.Name = "gridColumn170"; - this.gridColumn170.OptionsColumn.AllowEdit = false; - this.gridColumn170.OptionsColumn.ReadOnly = true; - this.gridColumn170.OptionsFilter.AllowFilter = false; - this.gridColumn170.Visible = true; - this.gridColumn170.VisibleIndex = 0; - this.gridColumn170.Width = 55; + this.关于AToolStripMenuItem.Name = "关于AToolStripMenuItem"; + this.关于AToolStripMenuItem.Size = new System.Drawing.Size(32, 19); + this.关于AToolStripMenuItem.Text = "关于(&A)..."; // - // gridColumn171 + // gridView3 // - this.gridColumn171.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F); - this.gridColumn171.AppearanceCell.Options.UseFont = true; - this.gridColumn171.Caption = "姓名"; - this.gridColumn171.FieldName = "Name"; - this.gridColumn171.Name = "gridColumn171"; - this.gridColumn171.OptionsColumn.AllowEdit = false; - this.gridColumn171.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn171.OptionsColumn.AllowMove = false; - this.gridColumn171.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn171.OptionsColumn.Printable = DevExpress.Utils.DefaultBoolean.False; - this.gridColumn171.OptionsColumn.ReadOnly = true; - this.gridColumn171.OptionsFilter.AllowFilter = false; - this.gridColumn171.Visible = true; - this.gridColumn171.VisibleIndex = 1; - this.gridColumn171.Width = 52; + this.gridView3.Name = "gridView3"; // - // CopyMenu + // gridView5 // - this.CopyMenu.BackColor = System.Drawing.Color.White; - this.CopyMenu.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.CopyMenu.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; - this.CopyMenu.ImageScalingSize = new System.Drawing.Size(20, 20); - this.CopyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.TsmiCopyFeeItem}); - this.CopyMenu.Location = new System.Drawing.Point(0, 0); - this.CopyMenu.Name = "CopyMenu"; - this.CopyMenu.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2); - this.CopyMenu.Size = new System.Drawing.Size(372, 28); - this.CopyMenu.TabIndex = 24; - this.CopyMenu.Text = "menuStrip1"; + this.gridView5.Name = "gridView5"; // - // TsmiCopyFeeItem + // gridView7 // - this.TsmiCopyFeeItem.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCopyFeeItem.Image"))); - this.TsmiCopyFeeItem.Name = "TsmiCopyFeeItem"; - this.TsmiCopyFeeItem.Size = new System.Drawing.Size(64, 24); - this.TsmiCopyFeeItem.Text = "复制"; + this.gridView7.Name = "gridView7"; + // + // gridView8 + // + this.gridView8.Name = "gridView8"; + // + // gridView9 + // + this.gridView9.GridControl = this.DgcGroupFeeItem; + this.gridView9.Name = "gridView9"; // // EnrollmentOrgForm // @@ -5535,6 +5540,7 @@ this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.Name = "EnrollmentOrgForm"; this.Text = "团体登记"; + ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit21)).EndInit(); this.panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.DgcOrg)).EndInit(); @@ -5553,7 +5559,6 @@ ((System.ComponentModel.ISupportInitialize)(this.DgcGroupPatient)).EndInit(); this.contextMenuStrip1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.DgvGroupPatient)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(repositoryItemImageEdit2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit(); this.xtraTabControl2.ResumeLayout(false); this.xtraTabPage3.ResumeLayout(false); @@ -5569,6 +5574,22 @@ ((System.ComponentModel.ISupportInitialize)(this.RiCmbExamType)).EndInit(); this.panel3.ResumeLayout(false); this.TpGroupFeeItem.ResumeLayout(false); + this.panel5.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.DgcGroupFeeItem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvGroupFeeItem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit(); + this.panel9.ResumeLayout(false); + this.tabControl1.ResumeLayout(false); + this.TpPack.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.DgcPack)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvPack)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit(); + this.TpFeeItem.ResumeLayout(false); + this.TpFeeItem.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcFeeItem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvFeeItem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DgcGroup2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DgvGroup2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit(); @@ -5608,6 +5629,16 @@ ((System.ComponentModel.ISupportInitialize)(this.DgvFeeItem2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit(); + this.CopyItemTab.ResumeLayout(false); + this.CopyItemTab.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcCopyItem)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvCopyItem)).EndInit(); + this.panel14.ResumeLayout(false); + this.panel14.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.DgcRegItem2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.DgvRegItem2)).EndInit(); + this.CopyMenu.ResumeLayout(false); + this.CopyMenu.PerformLayout(); this.panel7.ResumeLayout(false); this.panel7.PerformLayout(); this.menuStrip1.ResumeLayout(false); @@ -5622,33 +5653,7 @@ ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit(); - this.panel9.ResumeLayout(false); - this.tabControl1.ResumeLayout(false); - this.TpFeeItem.ResumeLayout(false); - this.TpFeeItem.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcFeeItem)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvFeeItem)).EndInit(); - this.TpPack.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.DgcPack)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvPack)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgcGroupFeeItem)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvGroupFeeItem)).EndInit(); - this.panel5.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit(); - this.CopyItemTab.ResumeLayout(false); - this.CopyItemTab.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcCopyItem)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvCopyItem)).EndInit(); - this.panel14.ResumeLayout(false); - this.panel14.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.DgcRegItem2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.DgvRegItem2)).EndInit(); - this.CopyMenu.ResumeLayout(false); - this.CopyMenu.PerformLayout(); this.ResumeLayout(false); } @@ -6019,5 +6024,6 @@ private DevExpress.XtraGrid.Columns.GridColumn gridColumn171; private System.Windows.Forms.MenuStrip CopyMenu; private System.Windows.Forms.ToolStripMenuItem TsmiCopyFeeItem; + private DevExpress.XtraEditors.Repository.RepositoryItemImageEdit repositoryItemImageEdit2; } } \ No newline at end of file diff --git a/PEIS/View/Enrollment/EnrollmentOrgForm.cs b/PEIS/View/Enrollment/EnrollmentOrgForm.cs index 0bfae58..29440d2 100644 --- a/PEIS/View/Enrollment/EnrollmentOrgForm.cs +++ b/PEIS/View/Enrollment/EnrollmentOrgForm.cs @@ -44,6 +44,8 @@ namespace PEIS.View.Enrollment private List _lstCheckCost2 = new List(); private List _lstEnrollmentPatient = new List(); private List _lstExcelEPatient = new List(); + private List _lstRegItems2 = new List(); + private List _lstCopyFeeItem = new List(); private List _lstEnrollmentFeeItem = new List(); private List _lstGroupFeeItem = new List(); private List _lstGroupPatient = new List(); @@ -169,6 +171,10 @@ namespace PEIS.View.Enrollment // 撤回发送科室 FastRecall.Click += FastRecall_Click; + NameSearch2.KeyDown += NameSearch2_KeyDown; + DgvRegItem2.SelectionChanged += DgvRegItem2_SelectionChanged; + // 复制项目 + TsmiCopyFeeItem.Click += TsmiCopyFeeItem_Click; #region 团体订单 TFastCharge.Click += TFastCharge_Click; @@ -503,7 +509,7 @@ namespace PEIS.View.Enrollment _chooseRegItem = DgvEnrollment.GetRow(DgvEnrollment.GetSelectedRows()[0]) as EnrollmentPatient; topRowIndex = _chooseRegItem.ID; - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); DgcPack2.DataSource = _lstPack.Where(w => w.Sex.Equals("所有") || w.Sex.Equals(DgvEnrollment.GetRowCellValue(DgvEnrollment.GetSelectedRows()[0], "Sex").ToString())); @@ -532,12 +538,12 @@ namespace PEIS.View.Enrollment { if (Global.Msg("warn", "确定移除当前套餐吗?") == DialogResult.No) return; OnDelItemByPackId(1, Convert.ToInt64(item?.EID), Convert.ToInt64(item?.PackId)); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); return; } item?.Delete(); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } } @@ -575,7 +581,7 @@ namespace PEIS.View.Enrollment KeyNo = DgvFeeItem2.GetRowCellValue(DgvFeeItem2.GetSelectedRows()[0], "KeyNo")?.ToString() }; item.Save(); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } private void DgvPack2_DoubleClick(object sender, EventArgs e) // 双击添加个人套餐 @@ -592,7 +598,7 @@ namespace PEIS.View.Enrollment } OnAddEnrollmentFeeItemByPack(_chooseRegItem.ID, Convert.ToInt64(DgvPack2.GetRowCellValue(DgvPack2.GetSelectedRows()[0], "ID").ToString()), DgvPack2.GetRowCellValue(DgvPack2.GetSelectedRows()[0], "Name").ToString()); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } private void TsmiPrintCost_Click(object sender, EventArgs e) // 打印收费单 @@ -688,16 +694,16 @@ namespace PEIS.View.Enrollment try { var items = new List(); - _lstEnrollmentFeeItem.Where(w => w.OrderNo != null && !w.IsHide ).GroupBy(g => g.DeptCode).ForEach(dept => - { - var item = new EnrollmentFeeItem() - { - DeptName = dept.FirstOrDefault()?.DeptName, - FeeItemName = string.Join(@"、", dept.Select(s => s.FeeItemName).ToList()), - Address = dept.FirstOrDefault()?.Address - }; - items.Add(item); - }); + _lstEnrollmentFeeItem.Where(w => w.OrderNo != null && !w.IsHide).GroupBy(g => g.DeptCode).ForEach(dept => + { + var item = new EnrollmentFeeItem() + { + DeptName = dept.FirstOrDefault()?.DeptName, + FeeItemName = string.Join(@"、", dept.Select(s => s.FeeItemName).ToList()), + Address = dept.FirstOrDefault()?.Address + }; + items.Add(item); + }); _pReport = ReportHelper.PrintGuide(items, _regInfo); _pReport.Show(); @@ -749,7 +755,7 @@ namespace PEIS.View.Enrollment return; } - if(_lstGroupPatient.Where(w => w.PID == item?.ID).ToList().Count != 0) + if (_lstGroupPatient.Where(w => w.PID == item?.ID).ToList().Count != 0) { Global.Msg("info", "该成员已应用到分组!"); return; @@ -809,17 +815,17 @@ namespace PEIS.View.Enrollment private void NameSearch_KeyDown(object sender, KeyEventArgs e) // 模糊检索 { if (e.KeyCode == Keys.Enter) - OnGetEnrollmentOrg(DtpBegDate.Value, DtpEndDate.Value, NameSearch.Text); + OnGetEnrollmentOrg(DtpBegDate.Value, DtpEndDate.Value, NameSearch.Text); } private void FeeItemSearch_TextChanged(object sender, EventArgs e) // 收费项目检索 { - DgcFeeItem.DataSource = _lstFeeItem.Where(a => a?.FeeItemName.Contains(FeeItemSearch.Text) == true); + DgcFeeItem.DataSource = _lstFeeItem.Where(a => a?.FeeItemName.Contains(FeeItemSearch.Text.Trim()) == true || a?.SpellCode?.Contains(FeeItemSearch.Text.Trim()) == true); } private void FeeItemSearch2_TextChanged(object sender, EventArgs e) // 收费项目检索 { - DgcFeeItem2.DataSource = _lstFeeItem2.Where(a => a?.FeeItemName.Contains(FeeItemSearch2.Text) == true); + DgcFeeItem2.DataSource = _lstFeeItem2.Where(a => a?.FeeItemName.Contains(FeeItemSearch2.Text.Trim()) == true || a?.SpellCode?.Contains(FeeItemSearch2.Text.Trim()) == true); } private void PatientSearch_TextChanged(object sender, EventArgs e) // 团体成员检索 @@ -1105,6 +1111,68 @@ namespace PEIS.View.Enrollment OnRecallDept(item.ID); } // 撤回发送 + private void NameSearch2_KeyDown(object sender, KeyEventArgs e) // 复制人员检索 + { + if (e.KeyCode == Keys.Enter) OnGetCopyRegItems(); + } + + private void DgvRegItem2_SelectionChanged(object sender, DevExpress.Data.SelectionChangedEventArgs e) + { + Invoke(new Action(() => + { + OnGetEnrollmentFeeItem(Convert.ToInt64(DgvRegItem2.GetRowCellValue(DgvRegItem2.GetSelectedRows()[0], "ID").ToString()), "1"); + })); + } + + private void TsmiCopyFeeItem_Click(object sender, EventArgs e) + { + if (_lstCopyFeeItem == null || _lstCopyFeeItem.Count == 0) return; + + if (_chooseRegItem == null) + { + Global.Msg("info", "请先选中体检人员!"); + return; + } + + if (_lstEnrollmentFeeItem?.Count != 0) + { + Global.Msg("info", "该登记已有收费项目,不能复制,请核对后重试!"); + return; + } + + EnrollmentFeeItem item = new EnrollmentFeeItem(); + Int32 index = 0; + _lstCopyFeeItem.ForEach(a => + { + index++; + + item.EID = _chooseRegItem.ID; + item.OEID = a.OEID; + item.GroupID = a.GroupID; + item.PackId = a.PackId; + item.PackName = a.PackName; + item.FID = a.FID; + item.FeeItemCode = a.FeeItemCode; + item.FeeItemName = a.FeeItemName; + item.Quantity = 1; + item.Unit = a.Unit; + item.Price = a.Price; + item.SettlePrice = a.SettlePrice; + item.ItemClass = a.ItemClass; + item.CreateTime = DateTime.Now; + item.CreatorCode = Global.currentUser.Code; + item.Creator = Global.currentUser.Name; + item.DeptCode = a.DeptCode; + item.DeptName = a.DeptName; + item.Seq = index; + item.KeyNo = a.KeyNo; + + item.Save(); + }); + + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); + } + #region 团体订单 private void TFastCancelCharge_Click(object sender, EventArgs e) // 取消记账 @@ -1139,7 +1207,7 @@ namespace PEIS.View.Enrollment { if (item != null) OnDeleteOrder(item.ID); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); return; } @@ -1149,7 +1217,7 @@ namespace PEIS.View.Enrollment return; } - if(item?.CancelTime != null) + if (item?.CancelTime != null) { Global.Msg("info", "该订单为退费订单留存记录,不能删除!"); return; @@ -1158,7 +1226,7 @@ namespace PEIS.View.Enrollment if (item == null) return; OnDeleteOrder(item.ID); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } private void TFastAllCharge_Click(object sender, EventArgs e) // 全部记账 @@ -1205,7 +1273,7 @@ namespace PEIS.View.Enrollment } OnChangeCost(item.ID, 0); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); } @@ -1220,7 +1288,7 @@ namespace PEIS.View.Enrollment EnrollmentCheckCost item = DgvCheckCost2.GetRow(DgvCheckCost2.GetSelectedRows()[0]) as EnrollmentCheckCost; OnChangeCost(item.ID, Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString())); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); } @@ -1257,7 +1325,7 @@ namespace PEIS.View.Enrollment if (item != null) OnDeleteOrder(item.ID); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); return; } @@ -1276,7 +1344,7 @@ namespace PEIS.View.Enrollment if (item == null) return; OnDeleteOrder(item.ID); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } private void PFastAllCharge_Click(object sender, EventArgs e) // 全部记账 @@ -1406,7 +1474,7 @@ namespace PEIS.View.Enrollment CheckCostForm checkCostForm = new CheckCostForm(0, _chooseRegItem.ID); checkCostForm.ShowDialog(); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } private void TsmiCheck4Org_Click(object sender, EventArgs e) @@ -1430,7 +1498,7 @@ namespace PEIS.View.Enrollment CheckCostForm checkCostForm = new CheckCostForm(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), 0); checkCostForm.ShowDialog(); OnGetCheckCost(Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()), _chooseRegItem.ID); - OnGetEnrollmentFeeItem(_chooseRegItem.ID); + OnGetEnrollmentFeeItem(_chooseRegItem.ID, "0"); } private void TsmiOpenFeeItem_Click(object sender, EventArgs e) @@ -1588,6 +1656,17 @@ namespace PEIS.View.Enrollment public event EventHandler> GetExcelList; + public event EventHandler> GetCopyRegItems; + + protected virtual void OnGetCopyRegItems() + { + GetCopyRegItems?.Invoke(this, new Args() + { + Name = NameSearch2.Text.Trim(), + EnrollmentOID = Convert.ToInt64(DgvOrg.GetRowCellValue(DgvOrg.GetSelectedRows()[0], "ID").ToString()) + }); + } + protected virtual void OnCancelGroupTag(Int64 oeID, List idList) { CancelGroupTag?.Invoke(this, new Args { EnrollmentOID = oeID, IdList = idList }); @@ -1652,9 +1731,9 @@ namespace PEIS.View.Enrollment GetCheckCost?.Invoke(this, new Args { EnrollmentOID = oeID, EnrollmentID = enrollmentID }); } - protected virtual void OnGetEnrollmentFeeItem(Int64 enrollmentID) + protected virtual void OnGetEnrollmentFeeItem(Int64 enrollmentID, String code) { - GetEnrollmentFeeItem?.Invoke(this, new Args { EnrollmentID = enrollmentID }); + GetEnrollmentFeeItem?.Invoke(this, new Args { EnrollmentID = enrollmentID, Code = code }); } protected virtual void OnGetEnrollmentPatient(Int64 oeID) @@ -1854,13 +1933,22 @@ namespace PEIS.View.Enrollment DgvEnrollment.BestFitColumns(); } - public void ShowEnrollmentFeeItem(List items) + public void ShowEnrollmentFeeItem(List items, String code) { - _lstEnrollmentFeeItem = items; - DgcEnrollmentFeeItem.DataSource = _lstEnrollmentFeeItem; - DgvEnrollmentFeeItem.BestFitColumns(); - DgvEnrollmentFeeItem.ExpandAllGroups(); - + if (code == "0") + { + _lstEnrollmentFeeItem = items; + DgcEnrollmentFeeItem.DataSource = _lstEnrollmentFeeItem; + DgvEnrollmentFeeItem.BestFitColumns(); + DgvEnrollmentFeeItem.ExpandAllGroups(); + } + else + { + Invoke(new Action(() => _lstCopyFeeItem = items)); + Invoke(new Action(() => DgcCopyItem.DataSource = null)); + Invoke(new Action(() => DgcCopyItem.DataSource = _lstCopyFeeItem)); + Invoke(new Action(() => DgvCopyItem.BestFitColumns())); + } } public void ShowCheckCost(List items) @@ -1920,6 +2008,14 @@ namespace PEIS.View.Enrollment } } + public void ShowCopyRegItems(List items) + { + Invoke(new Action(() => _lstRegItems2 = items)); + Invoke(new Action(() => DgcRegItem2.DataSource = null)); + Invoke(new Action(() => { DgcRegItem2.DataSource = _lstRegItems2.Where(a => a?.Name.Contains(NameSearch2.Text) == true || a?.ID.ToString().Contains(NameSearch2.Text) == true || a?.SpellCode?.Contains(NameSearch2.Text) == true); })); + if (_lstRegItems2.Where(a => a?.Name.Contains(NameSearch2.Text) == true || a?.ID.ToString().Contains(NameSearch2.Text) == true).Count() == 0) DgcCopyItem.DataSource = _lstCopyFeeItem = null; + } + //void RefreshData() //{ // _lstPatient = _lstPatient.Where(a => !_lstGroupPatientTotal.Select(b => b.PID).ToList().Contains(a.PID)).ToList(); diff --git a/PEIS/View/Enrollment/IEnrollmentOrgView.cs b/PEIS/View/Enrollment/IEnrollmentOrgView.cs index 0aca34a..ece7c13 100644 --- a/PEIS/View/Enrollment/IEnrollmentOrgView.cs +++ b/PEIS/View/Enrollment/IEnrollmentOrgView.cs @@ -59,7 +59,9 @@ namespace PEIS.View.Enrollment event EventHandler> GroupTag; event EventHandler> CancelGroupTag; event EventHandler> GetExcelList; + event EventHandler> GetCopyRegItems; + void ShowCopyRegItems(List items); void ShowEnrollmentOrg(List items); void ShowEnrollmentOrgGroup(List items); void ShowOrgPatient(List items); @@ -71,7 +73,7 @@ namespace PEIS.View.Enrollment void ShowEnrollmentOrgFeeItem(List items); void ShowEnrollmentPatient(List items); - void ShowEnrollmentFeeItem(List items); + void ShowEnrollmentFeeItem(List items, String code); void ShowCheckCost(List items); void ShowSendToDept(bool status); void ShowFeeCheckCost(bool status); diff --git a/PEIS/View/Exam/PartForm.Designer.cs b/PEIS/View/Exam/PartForm.Designer.cs index a1516de..fa66e0d 100644 --- a/PEIS/View/Exam/PartForm.Designer.cs +++ b/PEIS/View/Exam/PartForm.Designer.cs @@ -239,6 +239,8 @@ this.colRptExtTime = new DevExpress.XtraGrid.Columns.GridColumn(); this.colRptExtDesc = new DevExpress.XtraGrid.Columns.GridColumn(); this.superTabControl1 = new FastReport.DevComponents.DotNetBar.SuperTabControl(); + this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.PrintPacs = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerBase)).BeginInit(); this.splitContainerBase.Panel1.SuspendLayout(); this.splitContainerBase.Panel2.SuspendLayout(); @@ -323,6 +325,7 @@ this.panel2.SuspendLayout(); this.menuStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit(); + this.contextMenuStrip2.SuspendLayout(); this.SuspendLayout(); // // splitContainerBase @@ -1900,6 +1903,7 @@ // // dgcRptPacs // + this.dgcRptPacs.ContextMenuStrip = this.contextMenuStrip2; this.dgcRptPacs.Dock = System.Windows.Forms.DockStyle.Fill; this.dgcRptPacs.Location = new System.Drawing.Point(0, 0); this.dgcRptPacs.MainView = this.DgvRptPacs; @@ -3001,6 +3005,20 @@ this.superTabControl1.SelectedTabIndex = -1; this.superTabControl1.TabIndex = 0; // + // contextMenuStrip2 + // + this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.PrintPacs}); + this.contextMenuStrip2.Name = "contextMenuStrip2"; + this.contextMenuStrip2.Size = new System.Drawing.Size(125, 26); + // + // PrintPacs + // + this.PrintPacs.Image = ((System.Drawing.Image)(resources.GetObject("PrintPacs.Image"))); + this.PrintPacs.Name = "PrintPacs"; + this.PrintPacs.Size = new System.Drawing.Size(124, 22); + this.PrintPacs.Text = "打印报告"; + // // PartForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); @@ -3104,6 +3122,7 @@ this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit(); + this.contextMenuStrip2.ResumeLayout(false); this.ResumeLayout(false); } @@ -3319,5 +3338,7 @@ private UControl.OpMenuSimple opsConclusion; private System.Windows.Forms.Label label19; private DevExpress.XtraGrid.Views.Grid.GridView gridView1; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip2; + private System.Windows.Forms.ToolStripMenuItem PrintPacs; } } \ No newline at end of file diff --git a/PEIS/View/Exam/PartForm.cs b/PEIS/View/Exam/PartForm.cs index 725d429..c8f1341 100644 --- a/PEIS/View/Exam/PartForm.cs +++ b/PEIS/View/Exam/PartForm.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.Drawing; +using System.Drawing.Printing; using System.Globalization; using System.IO; using System.Linq; @@ -191,6 +192,8 @@ namespace PEIS.View.Exam { if (e.KeyCode == Keys.Enter) OnGetPatients(); }; + // pacs报告打印 + PrintPacs.Click += PrintPacs_Click; } #region 【part01】.体检者列表 @@ -2085,6 +2088,61 @@ namespace PEIS.View.Exam { } + /// + /// pacs报告打印 + /// + /// + /// + private void PrintPacs_Click(object sender, EventArgs e) + { + if (!(DgvRptPacs.GetFocusedRow() is Report selected)) return; + var rpt = DAOHelp.Query($@"SELECT TOP 1 ReportImage FROM [dbo].[Report] WHERE ID={selected.ID}")?.FirstOrDefault(); + if (rpt?.ReportImage != null) + { + try + { + using (var ms = new MemoryStream(rpt.ReportImage)) + { + Image img = Image.FromStream(ms); + System.Windows.Forms.PrintDialog printDialog = new System.Windows.Forms.PrintDialog(); + printDialog.Document = new PrintDocument(); + printDialog.Document.PrintPage += (a, b) => + { + // 计算图像的宽度和高度 + int imageWidth = img.Width; + int imageHeight = img.Height; + + // 获取打印区域的宽度和高度(考虑到页边距) + float marginBoundsWidth = b.MarginBounds.Width; + float marginBoundsHeight = b.MarginBounds.Height; + + // 计算绘制起点的坐标,使图像居中 + float left = (marginBoundsWidth - imageWidth) / 2; + float top = (marginBoundsHeight - imageHeight) / 2; + + // 确保坐标值不为负数 + left = left < 0 ? 0 : left; + top = top < 0 ? 0 : top; + + + b.Graphics.DrawImage(img, left, top, imageWidth, imageHeight); + }; + printDialog.UseEXDialog = true; // 显示增强的打印对话框 + + if (printDialog.ShowDialog() == DialogResult.OK) + { + printDialog.Document.Print(); // 执行打印操作 + } + } + } + catch (Exception ex) + { + Global.MsgWarn(ex.Message); + Debug.Write(ex.Message); + } + } + } + #endregion PACS #region 数据关联获取 diff --git a/PEIS/View/Exam/PartForm.resx b/PEIS/View/Exam/PartForm.resx index 6d4f03e..5448d21 100644 --- a/PEIS/View/Exam/PartForm.resx +++ b/PEIS/View/Exam/PartForm.resx @@ -123,10 +123,25 @@ 175, 17 + + 580, 17 + + + + + iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAAV1JREFUWEft + l09OAyEUxucI3RjTK7hqY8tsXbk2FRa9glsP0F7C83iELhjqwsPoUN/nUAojMGC64Jd8SXnte3yh/G0q + lf9ixeXDmndvvd7jJF/XQi2oTB4WT4cZ492h11eKWt59LMXnDZWbDnvutijuHgW/jLwXKjcdxuUehSkU + DPJ0DQrFw7gSPyZMDYX9UrvLmDtPz0nqbhxzmEtL90XdulkJxVyJJdVy+UjdX2IOsR7SkhpMjcwt0xCF + ipFkqN3KW7TvN8f56UeZQN04Q0LdoZ17t0XdKEMa/OfUzEayIaBN9cs021k2yVCJs2z4PsFQibMM8TRD + nngIyLM79sXPqIYc8TNCDdGKc84ZCFsF8tIMOSbvKe4whLZPPkOoi3j/2X9xs5f3mCEU9mnMEGJBV1vq + 7HcD1DHbUAzIs0do0uU/p6EsVEN/cXXPoKt7KGrs1ReuAk/pSsVL03wDEqTl6G2XZ9cAAAAASUVORK5C + YII= + + 340, 17 - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAZRJREFUWEdj @@ -171,9 +186,6 @@ fOB5L+flMi1KC1D4AAAAAElFTkSuQmCC - - 17, 17 - 70 diff --git a/PEIS/View/Exam/TotalForm.Designer.cs b/PEIS/View/Exam/TotalForm.Designer.cs index a872252..cf3b4a8 100644 --- a/PEIS/View/Exam/TotalForm.Designer.cs +++ b/PEIS/View/Exam/TotalForm.Designer.cs @@ -233,6 +233,8 @@ this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView(); + this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.PrintPacs = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerBase)).BeginInit(); this.splitContainerBase.Panel1.SuspendLayout(); this.splitContainerBase.Panel2.SuspendLayout(); @@ -327,6 +329,7 @@ ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit(); + this.contextMenuStrip1.SuspendLayout(); this.SuspendLayout(); // // splitContainerBase @@ -1998,6 +2001,7 @@ // // DgcRptPacs // + this.DgcRptPacs.ContextMenuStrip = this.contextMenuStrip1; this.DgcRptPacs.Dock = System.Windows.Forms.DockStyle.Fill; this.DgcRptPacs.Location = new System.Drawing.Point(0, 0); this.DgcRptPacs.MainView = this.DgvRptPacs; @@ -2848,6 +2852,20 @@ // this.gridView8.Name = "gridView8"; // + // contextMenuStrip1 + // + this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.PrintPacs}); + this.contextMenuStrip1.Name = "contextMenuStrip1"; + this.contextMenuStrip1.Size = new System.Drawing.Size(125, 26); + // + // PrintPacs + // + this.PrintPacs.Image = ((System.Drawing.Image)(resources.GetObject("PrintPacs.Image"))); + this.PrintPacs.Name = "PrintPacs"; + this.PrintPacs.Size = new System.Drawing.Size(124, 22); + this.PrintPacs.Text = "打印报告"; + // // TotalForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); @@ -2960,6 +2978,7 @@ ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit(); + this.contextMenuStrip1.ResumeLayout(false); this.ResumeLayout(false); } @@ -3169,5 +3188,7 @@ private DevExpress.XtraGrid.Columns.GridColumn gridColumn31; private DevExpress.XtraGrid.Columns.GridColumn gridColumn32; private DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit repositoryItemMemoEdit4; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; + private System.Windows.Forms.ToolStripMenuItem PrintPacs; } } \ No newline at end of file diff --git a/PEIS/View/Exam/TotalForm.cs b/PEIS/View/Exam/TotalForm.cs index cb05fe8..2e837f0 100644 --- a/PEIS/View/Exam/TotalForm.cs +++ b/PEIS/View/Exam/TotalForm.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.Drawing; +using System.Drawing.Printing; using System.Globalization; using System.IO; using System.Linq; @@ -239,6 +240,8 @@ namespace PEIS.View.Exam DgvExamConclusion.OptionsBehavior.Editable = true; // 设置行头自动调整高度以显示勾选框 DgvExamConclusion.OptionsView.RowAutoHeight = true; + // pacs报告打印 + PrintPacs.Click += PrintPacs_Click; } private void ConclusionSort(int i) @@ -940,6 +943,61 @@ namespace PEIS.View.Exam GetExamPacsImage(selected.EID, selected.ReportNo); } + /// + /// pacs报告打印 + /// + /// + /// + private void PrintPacs_Click(object sender, EventArgs e) + { + if (!(DgvRptPacs.GetFocusedRow() is Report selected)) return; + var rpt = DAOHelp.Query($@"SELECT TOP 1 ReportImage FROM [dbo].[Report] WHERE ID={selected.ID}")?.FirstOrDefault(); + if (rpt?.ReportImage != null) + { + try + { + using (var ms = new MemoryStream(rpt.ReportImage)) + { + Image img = Image.FromStream(ms); + PrintDialog printDialog = new PrintDialog(); + printDialog.Document = new PrintDocument(); + printDialog.Document.PrintPage += (a, b) => + { + // 计算图像的宽度和高度 + int imageWidth = img.Width; + int imageHeight = img.Height; + + // 获取打印区域的宽度和高度(考虑到页边距) + float marginBoundsWidth = b.MarginBounds.Width; + float marginBoundsHeight = b.MarginBounds.Height; + + // 计算绘制起点的坐标,使图像居中 + float left = (marginBoundsWidth - imageWidth) / 2; + float top = (marginBoundsHeight - imageHeight) / 2; + + // 确保坐标值不为负数 + left = left < 0 ? 0 : left; + top = top < 0 ? 0 : top; + + + b.Graphics.DrawImage(img, left, top, imageWidth, imageHeight); + }; + printDialog.UseEXDialog = true; // 显示增强的打印对话框 + + if (printDialog.ShowDialog() == DialogResult.OK) + { + printDialog.Document.Print(); // 执行打印操作 + } + } + } + catch (Exception ex) + { + Global.MsgWarn(ex.Message); + Debug.Write(ex.Message); + } + } + } + #endregion PACS private void SetPictureBoxReportExt(ReportExt item) diff --git a/PEIS/View/Exam/TotalForm.resx b/PEIS/View/Exam/TotalForm.resx index 7155ed1..2d10cc1 100644 --- a/PEIS/View/Exam/TotalForm.resx +++ b/PEIS/View/Exam/TotalForm.resx @@ -118,18 +118,27 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 497, 55 + 676, 17 - - 497, 55 - - - 377, 55 + + 17, 17 + + + + iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAAV1JREFUWEft + l09OAyEUxucI3RjTK7hqY8tsXbk2FRa9glsP0F7C83iELhjqwsPoUN/nUAojMGC64Jd8SXnte3yh/G0q + lf9ixeXDmndvvd7jJF/XQi2oTB4WT4cZ492h11eKWt59LMXnDZWbDnvutijuHgW/jLwXKjcdxuUehSkU + DPJ0DQrFw7gSPyZMDYX9UrvLmDtPz0nqbhxzmEtL90XdulkJxVyJJdVy+UjdX2IOsR7SkhpMjcwt0xCF + ipFkqN3KW7TvN8f56UeZQN04Q0LdoZ17t0XdKEMa/OfUzEayIaBN9cs021k2yVCJs2z4PsFQibMM8TRD + nngIyLM79sXPqIYc8TNCDdGKc84ZCFsF8tIMOSbvKe4whLZPPkOoi3j/2X9xs5f3mCEU9mnMEGJBV1vq + 7HcD1DHbUAzIs0do0uU/p6EsVEN/cXXPoKt7KGrs1ReuAk/pSsVL03wDEqTl6G2XZ9cAAAAASUVORK5C + YII= + + - 377, 55 + 563, 17 - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAbNJREFUWEft @@ -169,10 +178,10 @@ - 1216, 17 + 182, 17 - 1379, 17 + 345, 17 46