diff --git a/PEIS/Model/Exam/TotalModel.cs b/PEIS/Model/Exam/TotalModel.cs
index 51ffed9..a1e45d4 100644
--- a/PEIS/Model/Exam/TotalModel.cs
+++ b/PEIS/Model/Exam/TotalModel.cs
@@ -304,7 +304,7 @@ ORDER BY A.DeptCode,B.FeeItemName").ToList();
///
///
///
- public bool Finish(bool isFinish, Int64 id, string userName, string userCode)
+ public int Finish(bool isFinish, Int64 id, string userName, string userCode)
{
if (isFinish)
{
@@ -328,13 +328,13 @@ ORDER BY A.DeptCode,B.FeeItemName").ToList();
return true; // 返回true表示已处理异常
});
}
- return finish;// && saveRpt;
+ return finish ? 1 : 0;// && saveRpt;
}
DAOHelp.ExecuteSql($@"UPDATE Exam_Report SET IsDelete=1 WHERE EID={id}");
return DAOHelp.ExecuteSql($@"UPDATE Enrollment_Patient
SET Finisher = NULL, FinisherCode = NULL, FinishTime = NULL
- WHERE Id = {id}") > 0;
+ WHERE Id = {id}") > 0 ? -1 : 0;
}
///
diff --git a/PEIS/Model/ReportModel.cs b/PEIS/Model/ReportModel.cs
index cd06ee9..ba33228 100644
--- a/PEIS/Model/ReportModel.cs
+++ b/PEIS/Model/ReportModel.cs
@@ -206,24 +206,6 @@ namespace PEIS.Model
var img = stream.ToArray();
pacs.Add(new Report { ReportImage = img });
}
-
-
- //using (PdfDocument pdfDocument = PdfDocument.Load(memoryStream))
- //{
- // for (int pageIndex = 0; pageIndex < pdfDocument.PageCount; pageIndex++)
- // {
- // using (Image bitmap = pdfDocument.Render(pageIndex, 2480, 3508, false))
- // {
- // using (MemoryStream stream = new MemoryStream())
- // {
- // bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
- // bitmap.Save(stream, ImageFormat.Jpeg);
- // var img = stream.ToArray();
- // pacs.Add(new Report { ReportImage = img });
- // }
- // }
- // }
- //}
}
}
diff --git a/PEIS/Presenter/EnrollmentPersonPresenter.cs b/PEIS/Presenter/EnrollmentPersonPresenter.cs
index b4f2101..d7900d6 100644
--- a/PEIS/Presenter/EnrollmentPersonPresenter.cs
+++ b/PEIS/Presenter/EnrollmentPersonPresenter.cs
@@ -35,7 +35,7 @@ namespace PEIS.Presenter
// 获取登记列表
View.GetRegItems += (send, args) =>
{
- View.ShowRegItems(new EnrollmentPatientModel().GetEnrollmentPatientRegItems(args.Item.begDate, args.Item.endDate, args.Item.name));
+ View.ShowRegItems(new EnrollmentPatientModel().GetEnrollmentPatientRegItems(args.Item.begDate, args.Item.endDate, args.Item.name), args.Item.code);
};
View.GetRegInfo += (send, args) =>
{
diff --git a/PEIS/Utils/ReportHelper.cs b/PEIS/Utils/ReportHelper.cs
index baa2995..5de6840 100644
--- a/PEIS/Utils/ReportHelper.cs
+++ b/PEIS/Utils/ReportHelper.cs
@@ -252,7 +252,9 @@ namespace PEIS.Utils
var lstGeneral = new ReportModel().GetGeneralResult(eid);
var lstLis = new ReportModel().GetLisResult(eid);
var lstPacs = new ReportModel().GetPacsResult(eid);
- var lstPacsPhotos = new ReportModel().GetPacsPhoto(eid);
+ //var lstPacsPhotos = new ReportModel().GetPacsPhoto(eid);
+ // 蒙自中医不需要附原始报告单
+ var lstPacsPhotos = new List();
// 登记信息
rpt.SetParameterValue("PatientName", patient.Name);
diff --git a/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs b/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs
index 6d8439f..b40eefe 100644
--- a/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs
+++ b/PEIS/View/Enrollment/EnrollmentOrgForm.Designer.cs
@@ -29,11 +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 gridFormatRule3 = new DevExpress.XtraGrid.GridFormatRule();
- DevExpress.XtraEditors.FormatConditionRuleExpression formatConditionRuleExpression3 = new DevExpress.XtraEditors.FormatConditionRuleExpression();
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.gridColumn99 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn102 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemMemoEdit21 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
@@ -87,7 +88,6 @@
this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
- this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
this.splitter3 = new System.Windows.Forms.Splitter();
@@ -138,47 +138,6 @@
this.panel3 = new System.Windows.Forms.Panel();
this.OpsGroup = new PEIS.View.UControl.OpMenuSimple();
this.TpGroupFeeItem = new DevExpress.XtraTab.XtraTabPage();
- 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.splitter8 = new System.Windows.Forms.Splitter();
this.DgcGroup2 = new DevExpress.XtraGrid.GridControl();
this.DgvGroup2 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
@@ -379,6 +338,67 @@
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.repositoryItemMemoEdit21)).BeginInit();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DgcOrg)).BeginInit();
@@ -395,7 +415,7 @@
((System.ComponentModel.ISupportInitialize)(this.DgcGroupPatient)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DgvGroupPatient)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(repositoryItemImageEdit2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
this.xtraTabControl2.SuspendLayout();
this.xtraTabPage3.SuspendLayout();
@@ -410,21 +430,6 @@
((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();
@@ -474,6 +479,29 @@
((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();
//
// gridColumn99
@@ -925,8 +953,6 @@
this.DgcGroupPatient.Location = new System.Drawing.Point(0, 0);
this.DgcGroupPatient.MainView = this.DgvGroupPatient;
this.DgcGroupPatient.Name = "DgcGroupPatient";
- this.DgcGroupPatient.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
- this.repositoryItemImageEdit2});
this.DgcGroupPatient.Size = new System.Drawing.Size(652, 518);
this.DgcGroupPatient.TabIndex = 132;
this.DgcGroupPatient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
@@ -1221,19 +1247,16 @@
this.gridColumn52.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn52.AppearanceCell.Options.UseFont = true;
this.gridColumn52.Caption = "身份证照片";
- this.gridColumn52.ColumnEdit = this.repositoryItemImageEdit2;
+ 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.FieldName = "Photo";
this.gridColumn52.Name = "gridColumn52";
this.gridColumn52.Visible = true;
this.gridColumn52.VisibleIndex = 11;
//
- // 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";
- //
// gridColumn53
//
this.gridColumn53.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
@@ -1904,6 +1927,7 @@
//
// TpGroupFeeItem
//
+ this.TpGroupFeeItem.Controls.Add(this.splitter8);
this.TpGroupFeeItem.Controls.Add(this.panel5);
this.TpGroupFeeItem.Controls.Add(this.DgcGroup2);
this.TpGroupFeeItem.Controls.Add(this.panel4);
@@ -1912,3292 +1936,3592 @@
this.TpGroupFeeItem.Size = new System.Drawing.Size(1196, 736);
this.TpGroupFeeItem.Text = "分组项目";
//
- // panel5
- //
- this.panel5.Controls.Add(this.DgcGroupFeeItem);
- this.panel5.Controls.Add(this.splitter4);
- this.panel5.Controls.Add(this.panel9);
- this.panel5.Controls.Add(this.splitter8);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel5.Location = new System.Drawing.Point(0, 192);
- this.panel5.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(1196, 544);
- this.panel5.TabIndex = 139;
- //
- // DgcGroupFeeItem
+ // DgcGroup2
//
- this.DgcGroupFeeItem.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcGroupFeeItem.Location = new System.Drawing.Point(0, 5);
- this.DgcGroupFeeItem.MainView = this.DgvGroupFeeItem;
- this.DgcGroupFeeItem.Name = "DgcGroupFeeItem";
- this.DgcGroupFeeItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
- this.repositoryItemMemoEdit1});
- this.DgcGroupFeeItem.Size = new System.Drawing.Size(732, 539);
- this.DgcGroupFeeItem.TabIndex = 137;
- this.DgcGroupFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
- this.DgvGroupFeeItem});
+ 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});
//
- // DgvGroupFeeItem
+ // DgvGroup2
//
- 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.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;
//
- // gridColumn75
+ // gridColumn57
//
- 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.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;
//
- // repositoryItemMemoEdit1
+ // gridColumn58
//
- 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.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;
//
- // gridColumn74
+ // repositoryItemComboBox1
//
- 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.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";
//
- // gridColumn76
+ // gridColumn59
//
- 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.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;
//
- // gridColumn77
+ // repositoryItemComboBox2
//
- 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.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";
//
- // gridColumn79
+ // gridColumn60
//
- 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.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;
//
- // gridColumn78
+ // gridColumn61
//
- 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.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;
//
- // gridColumn80
+ // gridColumn62
//
- 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.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;
//
- // gridColumn81
+ // repositoryItemComboBox3
//
- 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.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";
//
- // splitter4
+ // gridColumn63
//
- 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(732, 5);
- this.splitter4.Name = "splitter4";
- this.splitter4.Size = new System.Drawing.Size(4, 539);
- this.splitter4.TabIndex = 142;
- this.splitter4.TabStop = false;
+ 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;
//
- // panel9
+ // gridColumn64
//
- this.panel9.Controls.Add(this.tabControl1);
- this.panel9.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel9.Location = new System.Drawing.Point(736, 5);
- this.panel9.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(460, 539);
- this.panel9.TabIndex = 141;
+ 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;
//
- // tabControl1
+ // gridColumn65
//
- 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(460, 539);
- this.tabControl1.TabIndex = 139;
+ 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;
//
- // TpPack
+ // gridColumn66
//
- 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(452, 512);
- this.TpPack.TabIndex = 1;
- this.TpPack.Text = "套餐";
- this.TpPack.UseVisualStyleBackColor = true;
+ 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;
//
- // DgcPack
+ // panel4
//
- 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(448, 506);
- this.DgcPack.TabIndex = 122;
- this.DgcPack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
- this.DgvPack,
- this.gridView2});
+ 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;
//
- // DgvPack
+ // BtnApplyGroupFeeItem
//
- 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.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;
//
- // gridColumn82
+ // TpPerson
//
- 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.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 = "团体成员收费";
//
- // gridColumn83
+ // panel6
//
- 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.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;
//
- // gridColumn84
+ // panel13
//
- 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.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;
//
- // gridColumn85
+ // xtraTabControl4
//
- 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.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});
//
- // gridColumn86
+ // xtraTabPage4
//
- 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.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 = "个人订单";
//
- // gridColumn87
+ // DgcCheckCost2
//
- 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.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});
//
- // gridColumn88
+ // PersonCostFastMenu
//
- 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.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);
//
- // gridView2
+ // PFastCharge
//
- this.gridView2.GridControl = this.DgcPack;
- this.gridView2.Name = "gridView2";
+ 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 = "记账";
//
- // TpFeeItem
+ // PFastAllCharge
//
- 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(452, 512);
- this.TpFeeItem.TabIndex = 0;
- this.TpFeeItem.Text = "收费项目";
- this.TpFeeItem.UseVisualStyleBackColor = true;
+ 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 = "全部记账";
//
- // DgcFeeItem
+ // PFastDeleteCost
//
- 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(448, 484);
- this.DgcFeeItem.TabIndex = 137;
- this.DgcFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
- this.DgvFeeItem,
- this.gridView1});
+ 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 = "删除订单";
//
- // DgvFeeItem
+ // PFastCancelCharge
//
- 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.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 = "取消记账";
//
- // gridColumn72
+ // PFastChangeCost
//
- 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.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 = "订单转换";
//
- // gridColumn70
+ // toolStripMenuItem14
//
- 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.toolStripMenuItem14.Name = "toolStripMenuItem14";
+ this.toolStripMenuItem14.Size = new System.Drawing.Size(160, 34);
+ this.toolStripMenuItem14.Text = "全部删除订单";
+ this.toolStripMenuItem14.Visible = false;
//
- // gridColumn69
+ // toolStripMenuItem15
//
- 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.toolStripMenuItem15.Name = "toolStripMenuItem15";
+ this.toolStripMenuItem15.Size = new System.Drawing.Size(160, 34);
+ this.toolStripMenuItem15.Text = "全部取消记账";
+ this.toolStripMenuItem15.Visible = false;
//
- // gridColumn71
+ // PFastRefreshCost
//
- 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.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;
//
- // GcSettlePrice
+ // DgvCheckCost2
//
- 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.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;
//
- // gridColumn67
+ // gridColumn143
//
- 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.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;
//
- // gridColumn68
+ // gridColumn144
//
- 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.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;
//
- // gridColumn73
+ // gridColumn145
//
- 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.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;
//
- // repositoryItemCheckEdit1
+ // gridColumn146
//
- this.repositoryItemCheckEdit1.AutoHeight = false;
- this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
+ 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;
//
- // gridView1
+ // gridColumn147
//
- this.gridView1.GridControl = this.DgcFeeItem;
- this.gridView1.Name = "gridView1";
+ 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;
//
- // FeeItemSearch
+ // gridColumn148
//
- 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(448, 22);
- this.FeeItemSearch.TabIndex = 136;
+ 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;
//
- // splitter8
+ // gridColumn149
//
- 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, 0);
- this.splitter8.Name = "splitter8";
- this.splitter8.Size = new System.Drawing.Size(1196, 5);
- this.splitter8.TabIndex = 140;
- this.splitter8.TabStop = false;
+ 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;
//
- // DgcGroup2
+ // gridColumn150
//
- 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, 148);
- this.DgcGroup2.TabIndex = 142;
- this.DgcGroup2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
- this.DgvGroup2});
+ 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;
//
- // DgvGroup2
+ // gridColumn151
//
- 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.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;
//
- // gridColumn57
+ // gridColumn152
//
- 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.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;
//
- // gridColumn58
+ // gridColumn157
//
- 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.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;
//
- // repositoryItemComboBox1
+ // gridColumn158
//
- 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.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;
//
- // gridColumn59
+ // gridColumn159
//
- 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.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;
//
- // repositoryItemComboBox2
+ // gridColumn160
//
- 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.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;
//
- // gridColumn60
+ // gridColumn100
//
- 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.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;
//
- // gridColumn61
+ // repositoryItemMemoEdit2
//
- 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.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";
//
- // gridColumn62
+ // splitter6
//
- 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.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;
//
- // repositoryItemComboBox3
+ // panel12
//
- 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.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;
//
- // gridColumn63
+ // xtraTabControl3
//
- 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.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});
//
- // gridColumn64
+ // xtraTabPage2
//
- 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;
+ 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 = "团体订单";
//
- // gridColumn65
+ // DgcCheckCost
//
- 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;
+ 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});
//
- // gridColumn66
+ // TeamCostFastMenu
//
- 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;
+ 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);
//
- // panel4
+ // TFastCharge
//
- 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;
- //
- // BtnApplyGroupFeeItem
- //
- 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;
+ 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 = "记账";
//
- // TpPerson
+ // TFastAllCharge
//
- 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 = "团体成员收费";
+ 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 = "全部记账";
//
- // panel6
+ // TFastDeleteCost
//
- 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;
+ 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 = "删除订单";
//
- // panel13
+ // TFastCancelCharge
//
- 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;
+ 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 = "取消记账";
//
- // xtraTabControl4
+ // TFastChangeCost
//
- 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});
+ 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 = "订单转换";
//
- // xtraTabPage4
+ // TFastAllDeleteCost
//
- 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 = "个人订单";
+ this.TFastAllDeleteCost.Name = "TFastAllDeleteCost";
+ this.TFastAllDeleteCost.Size = new System.Drawing.Size(160, 34);
+ this.TFastAllDeleteCost.Text = "全部删除订单";
+ this.TFastAllDeleteCost.Visible = false;
//
- // DgcCheckCost2
+ // TFastAllCancelCharge
//
- 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});
+ this.TFastAllCancelCharge.Name = "TFastAllCancelCharge";
+ this.TFastAllCancelCharge.Size = new System.Drawing.Size(160, 34);
+ this.TFastAllCancelCharge.Text = "全部取消记账";
+ this.TFastAllCancelCharge.Visible = false;
//
- // PersonCostFastMenu
+ // DgvCheckCost
//
- 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.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)});
//
- // PFastCharge
+ // gridColumn98
//
- 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.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;
//
- // PFastAllCharge
+ // gridColumn118
//
- 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.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;
//
- // PFastDeleteCost
+ // gridColumn123
//
- 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.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;
//
- // PFastCancelCharge
+ // gridColumn142
//
- 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.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;
//
- // PFastChangeCost
+ // gridColumn119
//
- 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 = "订单转换";
- //
- // toolStripMenuItem14
- //
- this.toolStripMenuItem14.Name = "toolStripMenuItem14";
- this.toolStripMenuItem14.Size = new System.Drawing.Size(160, 34);
- this.toolStripMenuItem14.Text = "全部删除订单";
- this.toolStripMenuItem14.Visible = false;
- //
- // toolStripMenuItem15
- //
- this.toolStripMenuItem15.Name = "toolStripMenuItem15";
- this.toolStripMenuItem15.Size = new System.Drawing.Size(160, 34);
- this.toolStripMenuItem15.Text = "全部取消记账";
- this.toolStripMenuItem15.Visible = false;
- //
- // PFastRefreshCost
- //
- 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;
- //
- // DgvCheckCost2
- //
- 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;
- gridFormatRule3.ApplyToRow = true;
- gridFormatRule3.Column = this.gridColumn99;
- gridFormatRule3.Name = "Format0";
- formatConditionRuleExpression3.Appearance.ForeColor = System.Drawing.Color.Gray;
- formatConditionRuleExpression3.Appearance.Options.UseForeColor = true;
- formatConditionRuleExpression3.Expression = "[CancelTime] Is Not Null";
- formatConditionRuleExpression3.PredefinedName = "Strikeout Text";
- gridFormatRule3.Rule = formatConditionRuleExpression3;
- this.DgvCheckCost2.FormatRules.Add(gridFormatRule3);
- 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.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;
//
- // gridColumn143
+ // gridColumn121
//
- 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;
+ 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;
//
- // gridColumn144
+ // gridColumn122
//
- 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.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;
//
- // gridColumn145
+ // gridColumn124
//
- 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.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;
//
- // gridColumn146
+ // gridColumn141
//
- 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.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;
//
- // gridColumn147
+ // gridColumn120
//
- 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.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;
//
- // gridColumn148
+ // gridColumn125
//
- 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.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;
//
- // gridColumn149
+ // gridColumn153
//
- 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.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;
//
- // gridColumn150
+ // gridColumn154
//
- 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.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;
//
- // gridColumn151
+ // gridColumn155
//
- 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.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;
//
- // gridColumn152
+ // gridColumn156
//
- 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.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;
//
- // gridColumn157
+ // gridColumn101
//
- 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.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;
//
- // gridColumn158
+ // repositoryItemMemoEdit3
//
- 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.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";
//
- // gridColumn159
+ // splitter5
//
- 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.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;
//
- // gridColumn160
+ // panel8
//
- 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.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;
//
- // gridColumn100
+ // DgcEnrollmentFeeItem
//
- 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.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});
//
- // repositoryItemMemoEdit2
+ // DgvEnrollmentFeeItem
//
- 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.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)});
//
- // splitter6
+ // gridColumn110
//
- 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.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;
//
- // panel12
+ // gridColumn111
//
- 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.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;
//
- // xtraTabControl3
+ // gridColumn112
//
- 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.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;
//
- // xtraTabPage2
+ // gridColumn113
//
- 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.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;
//
- // DgcCheckCost
+ // 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;
+ //
+ // gridColumn115
//
- 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});
+ 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;
//
- // TeamCostFastMenu
+ // gridColumn116
//
- 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.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;
//
- // TFastCharge
+ // gridColumn117
//
- 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.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;
//
- // TFastAllCharge
+ // gridColumn161
//
- 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.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;
//
- // TFastDeleteCost
+ // gridColumn163
//
- 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.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;
//
- // TFastCancelCharge
+ // splitter7
//
- 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.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;
//
- // TFastChangeCost
+ // PnlFeeItem
//
- 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.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;
//
- // TFastAllDeleteCost
+ // tabControl2
//
- this.TFastAllDeleteCost.Name = "TFastAllDeleteCost";
- this.TFastAllDeleteCost.Size = new System.Drawing.Size(160, 34);
- this.TFastAllDeleteCost.Text = "全部删除订单";
- this.TFastAllDeleteCost.Visible = false;
+ 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;
//
- // TFastAllCancelCharge
+ // tabPage1
//
- this.TFastAllCancelCharge.Name = "TFastAllCancelCharge";
- this.TFastAllCancelCharge.Size = new System.Drawing.Size(160, 34);
- this.TFastAllCancelCharge.Text = "全部取消记账";
- this.TFastAllCancelCharge.Visible = false;
+ 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;
//
- // DgvCheckCost
+ // DgcPack2
//
- 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;
- gridFormatRule1.ApplyToRow = true;
- gridFormatRule1.Column = this.gridColumn102;
- 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.DgvCheckCost.FormatRules.Add(gridFormatRule1);
- 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.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});
//
- // gridColumn98
+ // DgvPack2
//
- 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.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;
//
- // gridColumn118
+ // gridColumn126
//
- 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.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;
//
- // gridColumn123
+ // gridColumn127
//
- 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.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;
//
- // gridColumn142
+ // gridColumn128
//
- 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.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;
//
- // gridColumn119
+ // gridColumn129
//
- 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.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;
//
- // gridColumn121
+ // gridColumn130
//
- 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.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;
//
- // gridColumn122
+ // gridColumn131
//
- 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.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;
//
- // gridColumn124
+ // gridColumn132
//
- 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.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;
//
- // gridColumn141
+ // gridView4
//
- 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.gridView4.GridControl = this.DgcPack2;
+ this.gridView4.Name = "gridView4";
//
- // gridColumn120
+ // tabPage2
//
- 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.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;
//
- // gridColumn125
+ // DgcFeeItem2
//
- 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.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});
//
- // gridColumn153
+ // DgvFeeItem2
//
- 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.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;
//
- // gridColumn154
+ // gridColumn139
//
- 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.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;
//
- // gridColumn155
+ // gridColumn136
//
- 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;
+ 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;
//
- // gridColumn156
+ // gridColumn138
//
- 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;
+ 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;
//
- // gridColumn101
+ // gridColumn137
//
- 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;
+ 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;
//
- // repositoryItemMemoEdit3
+ // gridColumn133
//
- 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";
+ 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;
//
- // splitter5
+ // gridColumn134
//
- 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;
+ 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;
//
- // panel8
+ // gridColumn135
//
- 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.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;
//
- // DgcEnrollmentFeeItem
+ // gridColumn140
//
- 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.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;
//
- // DgvEnrollmentFeeItem
+ // repositoryItemCheckEdit2
//
- 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.repositoryItemCheckEdit2.AutoHeight = false;
+ this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
//
- // gridColumn110
+ // gridView6
//
- 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.gridView6.GridControl = this.DgcFeeItem2;
+ this.gridView6.Name = "gridView6";
//
- // gridColumn111
+ // FeeItemSearch2
//
- 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.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;
//
- // gridColumn112
+ // panel7
//
- 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;
+ 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;
//
- // gridColumn113
+ // menuStrip1
//
- 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;
+ 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";
//
- // gridColumn114
+ // TsmiCheckOrg
//
- 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.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 = "生成团体订单";
//
- // gridColumn115
+ // toolStripMenuItem1
//
- 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.toolStripMenuItem1.Name = "toolStripMenuItem1";
+ this.toolStripMenuItem1.Size = new System.Drawing.Size(12, 40);
//
- // gridColumn116
+ // TsmiCheckPerson
//
- 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.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 = "生成个人订单";
//
- // gridColumn117
+ // toolStripMenuItem7
//
- 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.toolStripMenuItem7.Name = "toolStripMenuItem7";
+ this.toolStripMenuItem7.Size = new System.Drawing.Size(12, 40);
//
- // gridColumn161
+ // TsmiPrintCost
//
- 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.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 = "打印收费单";
//
- // gridColumn163
+ // TsmiPrintPerson
//
- 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.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 = "打印个人收费单";
//
- // splitter7
+ // TsmiPrintTeam
//
- 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.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 = "打印团体收费单";
//
- // PnlFeeItem
+ // TsmiPrintGroup
//
- 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.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 = "打印团体分组收费单";
//
- // tabControl2
+ // toolStripMenuItem3
//
- this.tabControl2.Controls.Add(this.tabPage1);
- this.tabControl2.Controls.Add(this.tabPage2);
- 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.toolStripMenuItem3.Name = "toolStripMenuItem3";
+ this.toolStripMenuItem3.Size = new System.Drawing.Size(12, 40);
+ this.toolStripMenuItem3.Visible = false;
//
- // tabPage1
+ // TsmiFee
//
- 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.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;
//
- // DgcPack2
+ // toolStripMenuItem2
//
- 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.toolStripMenuItem2.Name = "toolStripMenuItem2";
+ this.toolStripMenuItem2.Size = new System.Drawing.Size(12, 40);
//
- // DgvPack2
+ // TsmiSend
//
- 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.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 = "发送到科室";
//
- // gridColumn126
+ // toolStripMenuItem4
//
- 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.toolStripMenuItem4.Name = "toolStripMenuItem4";
+ this.toolStripMenuItem4.Size = new System.Drawing.Size(12, 40);
//
- // gridColumn127
+ // TsmiPrintGuide
//
- 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.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 = "打印导检单";
//
- // gridColumn128
+ // toolStripMenuItem5
//
- 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.toolStripMenuItem5.Name = "toolStripMenuItem5";
+ this.toolStripMenuItem5.Size = new System.Drawing.Size(12, 40);
//
- // gridColumn129
+ // TsmiOpenFeeItem
//
- 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.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 = "打开收费项目";
+ //
+ // toolStripMenuItem6
+ //
+ this.toolStripMenuItem6.Name = "toolStripMenuItem6";
+ this.toolStripMenuItem6.Size = new System.Drawing.Size(12, 40);
+ //
+ // TsmiBatchCtrl
+ //
+ 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 = "批量操作";
//
- // gridColumn130
+ // splitterControl1
//
- 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.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;
//
- // gridColumn131
+ // panel11
//
- 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.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;
//
- // gridColumn132
+ // DgcEnrollment
//
- 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.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});
//
- // gridView4
+ // InfoFastMenu
//
- this.gridView4.GridControl = this.DgcPack2;
- this.gridView4.Name = "gridView4";
+ 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);
//
- // tabPage2
+ // FastCamera
//
- 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.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 = "拍照";
//
- // DgcFeeItem2
+ // FastDelete
//
- 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.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 = "删除成员";
//
- // DgvFeeItem2
+ // FastExport
//
- 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.FastExport.Image = global::PEIS.Properties.Resources.Excel;
+ this.FastExport.Name = "FastExport";
+ this.FastExport.Size = new System.Drawing.Size(204, 30);
+ this.FastExport.Text = "导出所有成员";
//
- // gridColumn139
+ // FastExportTime
//
- 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.FastExportTime.Image = global::PEIS.Properties.Resources.Excel;
+ this.FastExportTime.Name = "FastExportTime";
+ this.FastExportTime.Size = new System.Drawing.Size(204, 30);
+ this.FastExportTime.Text = "导出指定时间范围成员";
//
- // gridColumn136
+ // FastRecall
//
- 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.FastRecall.Image = global::PEIS.Properties.Resources.取消弃检;
+ this.FastRecall.Name = "FastRecall";
+ this.FastRecall.Size = new System.Drawing.Size(204, 30);
+ this.FastRecall.Text = "撤回发送";
//
- // gridColumn138
+ // FastGroup
//
- 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.FastGroup.Name = "FastGroup";
+ this.FastGroup.Size = new System.Drawing.Size(204, 30);
+ this.FastGroup.Text = "组合缴费";
+ this.FastGroup.Visible = false;
//
- // gridColumn137
+ // FastCancelGroup
//
- 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.FastCancelGroup.Name = "FastCancelGroup";
+ this.FastCancelGroup.Size = new System.Drawing.Size(204, 30);
+ this.FastCancelGroup.Text = "取消组合缴费";
+ this.FastCancelGroup.Visible = false;
+ //
+ // DgvEnrollment
+ //
+ 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)});
//
- // gridColumn133
+ // gridColumn97
//
- 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.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;
//
- // gridColumn134
+ // repositoryItemCheckEdit3
//
- 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.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));
//
- // gridColumn135
+ // gridColumn164
//
- 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.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;
//
- // gridColumn140
+ // gridColumn103
//
- 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.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;
//
- // repositoryItemCheckEdit2
+ // gridColumn89
//
- this.repositoryItemCheckEdit2.AutoHeight = false;
- this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
+ 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;
//
- // gridView6
+ // gridColumn90
//
- this.gridView6.GridControl = this.DgcFeeItem2;
- this.gridView6.Name = "gridView6";
+ 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;
//
- // FeeItemSearch2
+ // gridColumn108
//
- 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.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;
//
- // panel7
+ // gridColumn91
//
- 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.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;
//
- // menuStrip1
+ // gridColumn93
//
- 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.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;
//
- // TsmiCheckOrg
+ // gridColumn94
//
- 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.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;
//
- // toolStripMenuItem1
+ // gridColumn95
//
- this.toolStripMenuItem1.Name = "toolStripMenuItem1";
- this.toolStripMenuItem1.Size = new System.Drawing.Size(12, 40);
+ 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;
//
- // TsmiCheckPerson
+ // gridColumn96
//
- 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.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;
//
- // toolStripMenuItem7
+ // gridColumn105
//
- this.toolStripMenuItem7.Name = "toolStripMenuItem7";
- this.toolStripMenuItem7.Size = new System.Drawing.Size(12, 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;
//
- // TsmiPrintCost
+ // gridColumn104
//
- 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.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;
//
- // TsmiPrintPerson
+ // gridColumn92
//
- 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.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;
//
- // TsmiPrintTeam
+ // PatientSearch
//
- 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.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;
//
- // TsmiPrintGroup
+ // gridColumn109
//
- 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.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;
//
- // toolStripMenuItem3
+ // 新建NToolStripMenuItem
//
- this.toolStripMenuItem3.Name = "toolStripMenuItem3";
- this.toolStripMenuItem3.Size = new System.Drawing.Size(12, 40);
- this.toolStripMenuItem3.Visible = false;
+ 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)";
//
- // TsmiFee
+ // 打开OToolStripMenuItem
//
- 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.打开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)";
//
- // toolStripMenuItem2
+ // toolStripSeparator
//
- this.toolStripMenuItem2.Name = "toolStripMenuItem2";
- this.toolStripMenuItem2.Size = new System.Drawing.Size(12, 40);
+ this.toolStripSeparator.Name = "toolStripSeparator";
+ this.toolStripSeparator.Size = new System.Drawing.Size(6, 6);
//
- // TsmiSend
+ // 保存SToolStripMenuItem
//
- 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.保存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)";
//
- // toolStripMenuItem4
+ // 另存为AToolStripMenuItem
//
- this.toolStripMenuItem4.Name = "toolStripMenuItem4";
- this.toolStripMenuItem4.Size = new System.Drawing.Size(12, 40);
+ this.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem";
+ this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.另存为AToolStripMenuItem.Text = "另存为(&A)";
//
- // TsmiPrintGuide
+ // toolStripSeparator1
//
- 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.toolStripSeparator1.Name = "toolStripSeparator1";
+ this.toolStripSeparator1.Size = new System.Drawing.Size(6, 6);
+ //
+ // 打印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.P)));
+ this.打印PToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.打印PToolStripMenuItem.Text = "打印(&P)";
//
- // toolStripMenuItem5
+ // 打印预览VToolStripMenuItem
//
- this.toolStripMenuItem5.Name = "toolStripMenuItem5";
- this.toolStripMenuItem5.Size = new System.Drawing.Size(12, 40);
+ 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)";
//
- // TsmiOpenFeeItem
+ // toolStripSeparator2
//
- 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.toolStripSeparator2.Name = "toolStripSeparator2";
+ this.toolStripSeparator2.Size = new System.Drawing.Size(6, 6);
//
- // toolStripMenuItem6
+ // 退出XToolStripMenuItem
//
- this.toolStripMenuItem6.Name = "toolStripMenuItem6";
- this.toolStripMenuItem6.Size = new System.Drawing.Size(12, 40);
+ this.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem";
+ this.退出XToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.退出XToolStripMenuItem.Text = "退出(&X)";
//
- // TsmiBatchCtrl
+ // 撤消UToolStripMenuItem
//
- 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.撤消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)";
//
- // splitterControl1
+ // 重复RToolStripMenuItem
//
- 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.重复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)";
//
- // panel11
+ // toolStripSeparator3
//
- 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.toolStripSeparator3.Name = "toolStripSeparator3";
+ this.toolStripSeparator3.Size = new System.Drawing.Size(6, 6);
//
- // DgcEnrollment
+ // 剪切TToolStripMenuItem
//
- 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.剪切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)";
//
- // InfoFastMenu
+ // 复制CToolStripMenuItem
//
- 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.复制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)";
//
- // FastCamera
+ // 粘贴PToolStripMenuItem
//
- 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.粘贴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)";
//
- // FastDelete
+ // toolStripSeparator4
//
- 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.toolStripSeparator4.Name = "toolStripSeparator4";
+ this.toolStripSeparator4.Size = new System.Drawing.Size(6, 6);
//
- // FastExport
+ // 全选AToolStripMenuItem
//
- 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.全选AToolStripMenuItem.Name = "全选AToolStripMenuItem";
+ this.全选AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.全选AToolStripMenuItem.Text = "全选(&A)";
//
- // FastExportTime
+ // 自定义CToolStripMenuItem
//
- 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.自定义CToolStripMenuItem.Name = "自定义CToolStripMenuItem";
+ this.自定义CToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.自定义CToolStripMenuItem.Text = "自定义(&C)";
//
- // FastRecall
+ // 选项OToolStripMenuItem
//
- this.FastRecall.Image = global::PEIS.Properties.Resources.取消弃检;
- this.FastRecall.Name = "FastRecall";
- this.FastRecall.Size = new System.Drawing.Size(204, 30);
- this.FastRecall.Text = "撤回发送";
+ this.选项OToolStripMenuItem.Name = "选项OToolStripMenuItem";
+ this.选项OToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.选项OToolStripMenuItem.Text = "选项(&O)";
//
- // FastGroup
+ // 内容CToolStripMenuItem
//
- this.FastGroup.Name = "FastGroup";
- this.FastGroup.Size = new System.Drawing.Size(204, 30);
- this.FastGroup.Text = "组合缴费";
- this.FastGroup.Visible = false;
+ this.内容CToolStripMenuItem.Name = "内容CToolStripMenuItem";
+ this.内容CToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.内容CToolStripMenuItem.Text = "内容(&C)";
//
- // FastCancelGroup
+ // 索引IToolStripMenuItem
//
- this.FastCancelGroup.Name = "FastCancelGroup";
- this.FastCancelGroup.Size = new System.Drawing.Size(204, 30);
- this.FastCancelGroup.Text = "取消组合缴费";
- this.FastCancelGroup.Visible = false;
+ this.索引IToolStripMenuItem.Name = "索引IToolStripMenuItem";
+ this.索引IToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.索引IToolStripMenuItem.Text = "索引(&I)";
//
- // DgvEnrollment
+ // 搜索SToolStripMenuItem
//
- 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.搜索SToolStripMenuItem.Name = "搜索SToolStripMenuItem";
+ this.搜索SToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.搜索SToolStripMenuItem.Text = "搜索(&S)";
//
- // gridColumn97
+ // toolStripSeparator5
//
- 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.toolStripSeparator5.Name = "toolStripSeparator5";
+ this.toolStripSeparator5.Size = new System.Drawing.Size(6, 6);
//
- // repositoryItemCheckEdit3
+ // 关于AToolStripMenuItem
//
- 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.关于AToolStripMenuItem.Name = "关于AToolStripMenuItem";
+ this.关于AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
+ this.关于AToolStripMenuItem.Text = "关于(&A)...";
//
- // gridColumn164
+ // gridView3
//
- 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.gridView3.Name = "gridView3";
//
- // gridColumn103
+ // gridView5
//
- 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.gridView5.Name = "gridView5";
//
- // gridColumn89
+ // gridView7
//
- 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.gridView7.Name = "gridView7";
//
- // gridColumn90
+ // gridView8
//
- 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.gridView8.Name = "gridView8";
//
- // gridColumn108
+ // panel9
//
- 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.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;
//
- // gridColumn91
+ // tabControl1
//
- 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.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;
//
- // gridColumn93
+ // TpFeeItem
//
- 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.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;
//
- // gridColumn94
+ // FeeItemSearch
//
- 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;
+ 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;
//
- // gridColumn95
+ // DgcFeeItem
//
- 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.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});
//
- // gridColumn96
+ // gridView1
//
- 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.gridView1.GridControl = this.DgcFeeItem;
+ this.gridView1.Name = "gridView1";
//
- // gridColumn105
+ // repositoryItemCheckEdit1
+ //
+ this.repositoryItemCheckEdit1.AutoHeight = false;
+ this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
+ //
+ // DgvFeeItem
+ //
+ 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;
+ //
+ // gridColumn72
+ //
+ 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.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;
+ // gridColumn70
//
- // gridColumn104
+ 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.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;
+ // gridColumn69
//
- // gridColumn92
+ 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.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;
+ // gridColumn71
//
- // PatientSearch
+ 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.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;
+ // GcSettlePrice
//
- // gridColumn109
+ 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.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;
+ // gridColumn67
//
- // 新建NToolStripMenuItem
+ 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.新建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)";
+ // gridColumn68
//
- // 打开OToolStripMenuItem
+ 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.打开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)";
+ // gridColumn73
//
- // toolStripSeparator
+ 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.toolStripSeparator.Name = "toolStripSeparator";
- this.toolStripSeparator.Size = new System.Drawing.Size(6, 6);
+ // TpPack
//
- // 保存SToolStripMenuItem
+ 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.保存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)";
+ // DgcPack
//
- // 另存为AToolStripMenuItem
+ 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.另存为AToolStripMenuItem.Name = "另存为AToolStripMenuItem";
- this.另存为AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.另存为AToolStripMenuItem.Text = "另存为(&A)";
+ // gridView2
//
- // toolStripSeparator1
+ this.gridView2.GridControl = this.DgcPack;
+ this.gridView2.Name = "gridView2";
//
- this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(6, 6);
+ // DgvPack
//
- // 打印PToolStripMenuItem
+ 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.打印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)";
+ // gridColumn82
//
- // 打印预览VToolStripMenuItem
+ 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.打印预览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)";
+ // gridColumn83
//
- // toolStripSeparator2
+ 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.toolStripSeparator2.Name = "toolStripSeparator2";
- this.toolStripSeparator2.Size = new System.Drawing.Size(6, 6);
+ // gridColumn84
//
- // 退出XToolStripMenuItem
+ 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.退出XToolStripMenuItem.Name = "退出XToolStripMenuItem";
- this.退出XToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.退出XToolStripMenuItem.Text = "退出(&X)";
+ // gridColumn85
//
- // 撤消UToolStripMenuItem
+ 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.撤消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)";
+ // gridColumn86
//
- // 重复RToolStripMenuItem
+ 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.重复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)";
+ // gridColumn87
//
- // toolStripSeparator3
+ 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.toolStripSeparator3.Name = "toolStripSeparator3";
- this.toolStripSeparator3.Size = new System.Drawing.Size(6, 6);
+ // gridColumn88
//
- // 剪切TToolStripMenuItem
+ 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.剪切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)";
+ // splitter4
//
- // 复制CToolStripMenuItem
+ 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.复制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)";
+ // DgcGroupFeeItem
//
- // 粘贴PToolStripMenuItem
+ 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.粘贴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)";
+ // gridView9
//
- // toolStripSeparator4
+ this.gridView9.GridControl = this.DgcGroupFeeItem;
+ this.gridView9.Name = "gridView9";
//
- this.toolStripSeparator4.Name = "toolStripSeparator4";
- this.toolStripSeparator4.Size = new System.Drawing.Size(6, 6);
+ // DgvGroupFeeItem
//
- // 全选AToolStripMenuItem
+ 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.全选AToolStripMenuItem.Name = "全选AToolStripMenuItem";
- this.全选AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.全选AToolStripMenuItem.Text = "全选(&A)";
+ // gridColumn75
//
- // 自定义CToolStripMenuItem
+ 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.自定义CToolStripMenuItem.Name = "自定义CToolStripMenuItem";
- this.自定义CToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.自定义CToolStripMenuItem.Text = "自定义(&C)";
+ // gridColumn74
//
- // 选项OToolStripMenuItem
+ 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.选项OToolStripMenuItem.Name = "选项OToolStripMenuItem";
- this.选项OToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.选项OToolStripMenuItem.Text = "选项(&O)";
+ // gridColumn76
//
- // 内容CToolStripMenuItem
+ 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.内容CToolStripMenuItem.Name = "内容CToolStripMenuItem";
- this.内容CToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.内容CToolStripMenuItem.Text = "内容(&C)";
+ // gridColumn77
//
- // 索引IToolStripMenuItem
+ 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.索引IToolStripMenuItem.Name = "索引IToolStripMenuItem";
- this.索引IToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.索引IToolStripMenuItem.Text = "索引(&I)";
+ // gridColumn79
//
- // 搜索SToolStripMenuItem
+ 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.搜索SToolStripMenuItem.Name = "搜索SToolStripMenuItem";
- this.搜索SToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.搜索SToolStripMenuItem.Text = "搜索(&S)";
+ // gridColumn78
//
- // toolStripSeparator5
+ 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.toolStripSeparator5.Name = "toolStripSeparator5";
- this.toolStripSeparator5.Size = new System.Drawing.Size(6, 6);
+ // gridColumn80
//
- // 关于AToolStripMenuItem
+ 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.关于AToolStripMenuItem.Name = "关于AToolStripMenuItem";
- this.关于AToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
- this.关于AToolStripMenuItem.Text = "关于(&A)...";
+ // gridColumn81
//
- // gridView3
+ 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.gridView3.Name = "gridView3";
+ // panel5
//
- // gridView5
+ 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.gridView5.Name = "gridView5";
+ // repositoryItemMemoEdit1
//
- // gridView7
+ 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.gridView7.Name = "gridView7";
+ // splitter8
//
- // gridView8
+ 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.gridView8.Name = "gridView8";
+ // CopyItemTab
+ //
+ 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;
+ //
+ // DgcCopyItem
+ //
+ 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});
+ //
+ // DgvCopyItem
+ //
+ 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;
+ //
+ // gridColumn106
+ //
+ 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;
+ //
+ // gridColumn107
+ //
+ 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;
+ //
+ // gridColumn162
+ //
+ 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;
+ //
+ // gridColumn165
+ //
+ 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;
+ //
+ // gridColumn166
+ //
+ 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;
+ //
+ // gridColumn167
+ //
+ 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;
+ //
+ // gridColumn168
+ //
+ 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;
+ //
+ // gridColumn169
+ //
+ 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;
+ //
+ // panel14
+ //
+ 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;
+ //
+ // NameSearch2
+ //
+ 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;
+ //
+ // DgcRegItem2
+ //
+ 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});
+ //
+ // DgvRegItem2
+ //
+ 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;
+ //
+ // gridColumn170
+ //
+ 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;
+ //
+ // gridColumn171
+ //
+ 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;
+ //
+ // CopyMenu
+ //
+ 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";
+ //
+ // TsmiCopyFeeItem
+ //
+ 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 = "复制";
//
// EnrollmentOrgForm
//
@@ -5229,7 +5553,7 @@
((System.ComponentModel.ISupportInitialize)(this.DgcGroupPatient)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.DgvGroupPatient)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(repositoryItemImageEdit2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
this.xtraTabControl2.ResumeLayout(false);
this.xtraTabPage3.ResumeLayout(false);
@@ -5245,22 +5569,6 @@
((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();
@@ -5314,6 +5622,33 @@
((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);
}
@@ -5377,23 +5712,10 @@
private DevExpress.XtraGrid.Columns.GridColumn gridColumn50;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn51;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn52;
- private DevExpress.XtraEditors.Repository.RepositoryItemImageEdit repositoryItemImageEdit2;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn53;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn55;
- private System.Windows.Forms.Panel panel5;
private System.Windows.Forms.Panel panel4;
private System.Windows.Forms.Button BtnApplyGroupFeeItem;
- private DevExpress.XtraGrid.GridControl DgcGroupFeeItem;
- private DevExpress.XtraGrid.Views.Grid.GridView DgvGroupFeeItem;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn75;
- private DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit repositoryItemMemoEdit1;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn74;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn76;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn77;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn79;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn78;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn80;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn81;
private DevExpress.XtraGrid.GridControl DgcEnrollment;
private DevExpress.XtraGrid.Views.Grid.GridView DgvEnrollment;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn89;
@@ -5405,22 +5727,6 @@
private DevExpress.XtraGrid.Columns.GridColumn gridColumn103;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn108;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn109;
- private System.Windows.Forms.Splitter splitter8;
- private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage TpPack;
- private DevExpress.XtraGrid.GridControl DgcPack;
- private DevExpress.XtraGrid.Views.Grid.GridView DgvPack;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn82;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn83;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn84;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn85;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn86;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn87;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn88;
- private DevExpress.XtraGrid.Views.Grid.GridView gridView2;
- private System.Windows.Forms.TabPage TpFeeItem;
- private System.Windows.Forms.Splitter splitter4;
private DevExpress.XtraGrid.GridControl DgcGroup2;
private DevExpress.XtraGrid.Views.Grid.GridView DgvGroup2;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn57;
@@ -5510,19 +5816,6 @@
private System.Windows.Forms.ToolStripMenuItem TFastAllCharge;
private System.Windows.Forms.TextBox NameSearch;
private System.Windows.Forms.Label label16;
- private DevExpress.XtraGrid.GridControl DgcFeeItem;
- private DevExpress.XtraGrid.Views.Grid.GridView DgvFeeItem;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn67;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn68;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn69;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn70;
- private DevExpress.XtraGrid.Columns.GridColumn GcSettlePrice;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn71;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn72;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn73;
- private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1;
- private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
- private System.Windows.Forms.TextBox FeeItemSearch;
private System.Windows.Forms.Panel panel6;
private System.Windows.Forms.Panel panel8;
private DevExpress.XtraGrid.GridControl DgcEnrollmentFeeItem;
@@ -5665,5 +5958,66 @@
private System.Windows.Forms.ToolStripMenuItem FastExportTime;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn104;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn105;
+ private System.Windows.Forms.Splitter splitter8;
+ private System.Windows.Forms.Panel panel5;
+ private DevExpress.XtraGrid.GridControl DgcGroupFeeItem;
+ private DevExpress.XtraGrid.Views.Grid.GridView DgvGroupFeeItem;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn75;
+ private DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit repositoryItemMemoEdit1;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn74;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn76;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn77;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn79;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn78;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn80;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn81;
+ private System.Windows.Forms.Splitter splitter4;
+ private System.Windows.Forms.Panel panel9;
+ private System.Windows.Forms.TabControl tabControl1;
+ private System.Windows.Forms.TabPage TpPack;
+ private DevExpress.XtraGrid.GridControl DgcPack;
+ private DevExpress.XtraGrid.Views.Grid.GridView DgvPack;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn82;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn83;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn84;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn85;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn86;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn87;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn88;
+ private DevExpress.XtraGrid.Views.Grid.GridView gridView2;
+ private System.Windows.Forms.TabPage TpFeeItem;
+ private DevExpress.XtraGrid.GridControl DgcFeeItem;
+ private DevExpress.XtraGrid.Views.Grid.GridView DgvFeeItem;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn72;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn70;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn69;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn71;
+ private DevExpress.XtraGrid.Columns.GridColumn GcSettlePrice;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn67;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn68;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn73;
+ private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1;
+ private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
+ private System.Windows.Forms.TextBox FeeItemSearch;
+ private DevExpress.XtraGrid.Views.Grid.GridView gridView9;
+ private System.Windows.Forms.TabPage CopyItemTab;
+ private DevExpress.XtraGrid.GridControl DgcCopyItem;
+ private DevExpress.XtraGrid.Views.Grid.GridView DgvCopyItem;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn106;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn107;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn162;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn165;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn166;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn167;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn168;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn169;
+ private System.Windows.Forms.Panel panel14;
+ private System.Windows.Forms.TextBox NameSearch2;
+ private DevExpress.XtraGrid.GridControl DgcRegItem2;
+ private DevExpress.XtraGrid.Views.Grid.GridView DgvRegItem2;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn170;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn171;
+ private System.Windows.Forms.MenuStrip CopyMenu;
+ private System.Windows.Forms.ToolStripMenuItem TsmiCopyFeeItem;
}
}
\ No newline at end of file
diff --git a/PEIS/View/Enrollment/EnrollmentOrgForm.resx b/PEIS/View/Enrollment/EnrollmentOrgForm.resx
index 440e06b..9114144 100644
--- a/PEIS/View/Enrollment/EnrollmentOrgForm.resx
+++ b/PEIS/View/Enrollment/EnrollmentOrgForm.resx
@@ -120,9 +120,6 @@
510, 16
-
- 510, 16
-
1597, 17
@@ -276,9 +273,18 @@
4OWtCNeHAAAAAElFTkSuQmCC
-
- 1914, 17
+
+ 2034, 17
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAABGdBTUEAALGPC/xhBQAAAOBJREFUSEvt
+ luENgyAQhRmq5XeHgAm6SIdxAhfoENB5Wg7vKEEpd1VjSPySFz3DvQcEEtXJoWjjHlfjn1xp6+7YKkdb
+ P2rj31JdjLuhhYzcgCsYDytFCxkUiGWT/gLpIGDZZHWgFHZgOPoDbR9HYAjXBdsTrEBoLA15enm0SLAC
+ p9nK7g6FYpnoIxCeNcWGwKaBVC8pNgTKmvg7sKbYEMgD4TvVX81PcIIa8i1rQcbwPgu0foyDapSByzOe
+ FBsCZS3i8EAO/QZytSoQ/kHIQCY3oIUcmDWslKuf9+xkf5T6AK7FDQdfUvQCAAAAAElFTkSuQmCC
+
+
1914, 17
@@ -311,7 +317,7 @@
frF0DeOou0VjfCumLZLL/QM6DnLkln25BAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAAXpJREFUWEft
VMttxCAQdQlpIA3klEPMKreUEGlB2nSzp+0gh7Swl5SQEnwAK+UkzAL2gAa8tgHl4yc9WQzj956xPc2G
@@ -323,7 +329,7 @@
E2hYuQ0bCqJpvgGNsilBELCZFAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAAXpJREFUWEft
VMttxCAQdQlpIA3klEPMKreUEGlB2nSzp+0gh7Swl5SQEnwAK+UkzAL2gAa8tgHl4yc9WQzj956xPc2G
@@ -335,7 +341,7 @@
E2hYuQ0bCqJpvgGNsilBELCZFAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAAXpJREFUWEft
VMttxCAQdQlpIA3klEPMKreUEGlB2nSzp+0gh7Swl5SQEnwAK+UkzAL2gAa8tgHl4yc9WQzj956xPc2G
@@ -347,7 +353,7 @@
E2hYuQ0bCqJpvgGNsilBELCZFAAAAABJRU5ErkJggg==
-
+
iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAAXpJREFUWEft
VMttxCAQdQlpIA3klEPMKreUEGlB2nSzp+0gh7Swl5SQEnwAK+UkzAL2gAa8tgHl4yc9WQzj956xPc2G
diff --git a/PEIS/View/Enrollment/EnrollmentPersonForm.Designer.cs b/PEIS/View/Enrollment/EnrollmentPersonForm.Designer.cs
index 5e7f3dd..25ea0c7 100644
--- a/PEIS/View/Enrollment/EnrollmentPersonForm.Designer.cs
+++ b/PEIS/View/Enrollment/EnrollmentPersonForm.Designer.cs
@@ -222,6 +222,8 @@
this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
+ this.panel2 = 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.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
@@ -230,8 +232,8 @@
this.TsmiCopyFeeItem = new System.Windows.Forms.ToolStripMenuItem();
this.DgcCheckCost = new DevExpress.XtraGrid.GridControl();
this.DgvCheckCost = new DevExpress.XtraGrid.Views.Grid.GridView();
- this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
+ this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
this.RegListPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DgcRegItem)).BeginInit();
this.RegMenu.SuspendLayout();
@@ -285,6 +287,7 @@
this.CopyItemTab.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DgcCopyItem)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.DgvCopyItem)).BeginInit();
+ this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.DgcRegItem2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.DgvRegItem2)).BeginInit();
this.CopyMenu.SuspendLayout();
@@ -569,21 +572,19 @@
this.RegListPanel.Controls.Add(this.groupBox2);
this.RegListPanel.Dock = System.Windows.Forms.DockStyle.Left;
this.RegListPanel.Location = new System.Drawing.Point(0, 0);
- this.RegListPanel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.RegListPanel.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.RegListPanel.Name = "RegListPanel";
- this.RegListPanel.Size = new System.Drawing.Size(464, 1511);
+ this.RegListPanel.Size = new System.Drawing.Size(232, 779);
this.RegListPanel.TabIndex = 13;
//
// DgcRegItem
//
this.DgcRegItem.ContextMenuStrip = this.RegMenu;
this.DgcRegItem.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcRegItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(6);
- this.DgcRegItem.Location = new System.Drawing.Point(0, 324);
+ this.DgcRegItem.Location = new System.Drawing.Point(0, 178);
this.DgcRegItem.MainView = this.DgvRegItem;
- this.DgcRegItem.Margin = new System.Windows.Forms.Padding(6);
this.DgcRegItem.Name = "DgcRegItem";
- this.DgcRegItem.Size = new System.Drawing.Size(464, 1187);
+ this.DgcRegItem.Size = new System.Drawing.Size(232, 601);
this.DgcRegItem.TabIndex = 134;
this.DgcRegItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvRegItem});
@@ -595,20 +596,20 @@
this.ExportExcel,
this.FastRecallDept});
this.RegMenu.Name = "RegMenu";
- this.RegMenu.Size = new System.Drawing.Size(189, 76);
+ this.RegMenu.Size = new System.Drawing.Size(129, 56);
//
// ExportExcel
//
this.ExportExcel.Image = global::PEIS.Properties.Resources.Excel;
this.ExportExcel.Name = "ExportExcel";
- this.ExportExcel.Size = new System.Drawing.Size(188, 36);
+ this.ExportExcel.Size = new System.Drawing.Size(128, 26);
this.ExportExcel.Text = "导出数据";
//
// FastRecallDept
//
this.FastRecallDept.Image = global::PEIS.Properties.Resources.取消弃检;
this.FastRecallDept.Name = "FastRecallDept";
- this.FastRecallDept.Size = new System.Drawing.Size(188, 36);
+ this.FastRecallDept.Size = new System.Drawing.Size(128, 26);
this.FastRecallDept.Text = "撤回发送";
//
// DgvRegItem
@@ -795,10 +796,10 @@
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 9F);
this.groupBox2.Location = new System.Drawing.Point(0, 0);
- this.groupBox2.Margin = new System.Windows.Forms.Padding(0, 0, 5, 0);
+ this.groupBox2.Margin = new System.Windows.Forms.Padding(0, 0, 2, 0);
this.groupBox2.Name = "groupBox2";
- this.groupBox2.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.groupBox2.Size = new System.Drawing.Size(464, 324);
+ this.groupBox2.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.groupBox2.Size = new System.Drawing.Size(232, 178);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "快速查询";
@@ -809,20 +810,20 @@
this.TsmiRegRefresh.Appearance.Options.UseFont = true;
this.TsmiRegRefresh.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("TsmiRegRefresh.ImageOptions.Image")));
this.TsmiRegRefresh.ImageOptions.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
- this.TsmiRegRefresh.Location = new System.Drawing.Point(5, 257);
- this.TsmiRegRefresh.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.TsmiRegRefresh.Location = new System.Drawing.Point(2, 141);
+ this.TsmiRegRefresh.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.TsmiRegRefresh.Name = "TsmiRegRefresh";
- this.TsmiRegRefresh.Size = new System.Drawing.Size(454, 62);
+ this.TsmiRegRefresh.Size = new System.Drawing.Size(227, 34);
this.TsmiRegRefresh.TabIndex = 64;
this.TsmiRegRefresh.Text = "刷新";
//
// label19
//
this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(8, 203);
- this.label19.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.label19.Location = new System.Drawing.Point(4, 111);
+ this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(110, 31);
+ this.label19.Size = new System.Drawing.Size(56, 17);
this.label19.TabIndex = 63;
this.label19.Text = "终止日期";
//
@@ -833,10 +834,10 @@
this.EndDate.CustomFormat = " yyyy 年 MM 月 dd 日";
this.EndDate.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.EndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.EndDate.Location = new System.Drawing.Point(126, 195);
- this.EndDate.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.EndDate.Location = new System.Drawing.Point(63, 107);
+ this.EndDate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.EndDate.Name = "EndDate";
- this.EndDate.Size = new System.Drawing.Size(304, 39);
+ this.EndDate.Size = new System.Drawing.Size(154, 23);
this.EndDate.TabIndex = 62;
this.EndDate.Value = new System.DateTime(2023, 9, 12, 0, 0, 0, 0);
//
@@ -848,14 +849,14 @@
this.FastOneMonth,
this.FastThreeMonth});
this.DateFastMenu.Name = "DateFastMenu";
- this.DateFastMenu.Size = new System.Drawing.Size(217, 112);
+ this.DateFastMenu.Size = new System.Drawing.Size(145, 94);
//
// FastLastWeek
//
this.FastLastWeek.Image = ((System.Drawing.Image)(resources.GetObject("FastLastWeek.Image")));
this.FastLastWeek.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FastLastWeek.Name = "FastLastWeek";
- this.FastLastWeek.Size = new System.Drawing.Size(216, 36);
+ this.FastLastWeek.Size = new System.Drawing.Size(144, 30);
this.FastLastWeek.Text = "最近一周";
//
// FastOneMonth
@@ -863,7 +864,7 @@
this.FastOneMonth.Image = ((System.Drawing.Image)(resources.GetObject("FastOneMonth.Image")));
this.FastOneMonth.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FastOneMonth.Name = "FastOneMonth";
- this.FastOneMonth.Size = new System.Drawing.Size(216, 36);
+ this.FastOneMonth.Size = new System.Drawing.Size(144, 30);
this.FastOneMonth.Text = "最近一个月";
//
// FastThreeMonth
@@ -871,7 +872,7 @@
this.FastThreeMonth.Image = ((System.Drawing.Image)(resources.GetObject("FastThreeMonth.Image")));
this.FastThreeMonth.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FastThreeMonth.Name = "FastThreeMonth";
- this.FastThreeMonth.Size = new System.Drawing.Size(216, 36);
+ this.FastThreeMonth.Size = new System.Drawing.Size(144, 30);
this.FastThreeMonth.Text = "最近三个月";
//
// BegDate
@@ -881,20 +882,20 @@
this.BegDate.CustomFormat = " yyyy 年 MM 月 dd 日";
this.BegDate.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.BegDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.BegDate.Location = new System.Drawing.Point(126, 127);
- this.BegDate.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.BegDate.Location = new System.Drawing.Point(63, 70);
+ this.BegDate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.BegDate.Name = "BegDate";
- this.BegDate.Size = new System.Drawing.Size(304, 39);
+ this.BegDate.Size = new System.Drawing.Size(154, 23);
this.BegDate.TabIndex = 61;
this.BegDate.Value = new System.DateTime(2023, 9, 12, 0, 0, 0, 0);
//
// label15
//
this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(8, 135);
- this.label15.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.label15.Location = new System.Drawing.Point(4, 74);
+ this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(110, 31);
+ this.label15.Size = new System.Drawing.Size(56, 17);
this.label15.TabIndex = 9;
this.label15.Text = "起始日期";
//
@@ -902,19 +903,19 @@
//
this.NameSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.NameSearch.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.NameSearch.Location = new System.Drawing.Point(126, 59);
- this.NameSearch.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.NameSearch.Location = new System.Drawing.Point(63, 32);
+ this.NameSearch.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.NameSearch.Name = "NameSearch";
- this.NameSearch.Size = new System.Drawing.Size(302, 39);
+ this.NameSearch.Size = new System.Drawing.Size(152, 23);
this.NameSearch.TabIndex = 6;
//
// label16
//
this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(8, 62);
- this.label16.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
+ this.label16.Location = new System.Drawing.Point(4, 34);
+ this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(110, 31);
+ this.label16.Size = new System.Drawing.Size(56, 17);
this.label16.TabIndex = 5;
this.label16.Text = "模糊检索";
//
@@ -928,20 +929,20 @@
this.FastCancelCharge,
this.FastRefreshCost});
this.CostFastMenu.Name = "CostFastMenu";
- this.CostFastMenu.Size = new System.Drawing.Size(197, 184);
+ this.CostFastMenu.Size = new System.Drawing.Size(137, 174);
//
// FastCharge
//
this.FastCharge.Image = ((System.Drawing.Image)(resources.GetObject("FastCharge.Image")));
this.FastCharge.Name = "FastCharge";
- this.FastCharge.Size = new System.Drawing.Size(196, 36);
+ this.FastCharge.Size = new System.Drawing.Size(136, 34);
this.FastCharge.Text = "记账";
//
// FastAllCharge
//
this.FastAllCharge.Image = ((System.Drawing.Image)(resources.GetObject("FastAllCharge.Image")));
this.FastAllCharge.Name = "FastAllCharge";
- this.FastAllCharge.Size = new System.Drawing.Size(196, 36);
+ this.FastAllCharge.Size = new System.Drawing.Size(136, 34);
this.FastAllCharge.Text = "全部记账";
//
// FastDeleteCost
@@ -949,7 +950,7 @@
this.FastDeleteCost.Image = ((System.Drawing.Image)(resources.GetObject("FastDeleteCost.Image")));
this.FastDeleteCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FastDeleteCost.Name = "FastDeleteCost";
- this.FastDeleteCost.Size = new System.Drawing.Size(196, 36);
+ this.FastDeleteCost.Size = new System.Drawing.Size(136, 34);
this.FastDeleteCost.Text = "删除订单";
//
// FastCancelCharge
@@ -957,7 +958,7 @@
this.FastCancelCharge.Image = ((System.Drawing.Image)(resources.GetObject("FastCancelCharge.Image")));
this.FastCancelCharge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FastCancelCharge.Name = "FastCancelCharge";
- this.FastCancelCharge.Size = new System.Drawing.Size(196, 36);
+ this.FastCancelCharge.Size = new System.Drawing.Size(136, 34);
this.FastCancelCharge.Text = "取消记账";
//
// FastRefreshCost
@@ -965,7 +966,7 @@
this.FastRefreshCost.Image = global::PEIS.Properties.Resources.刷新;
this.FastRefreshCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FastRefreshCost.Name = "FastRefreshCost";
- this.FastRefreshCost.Size = new System.Drawing.Size(196, 36);
+ this.FastRefreshCost.Size = new System.Drawing.Size(136, 34);
this.FastRefreshCost.Text = "刷新订单";
this.FastRefreshCost.Visible = false;
//
@@ -973,10 +974,10 @@
//
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(464, 0);
- this.splitterControl1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.splitterControl1.Location = new System.Drawing.Point(232, 0);
+ this.splitterControl1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.splitterControl1.Name = "splitterControl1";
- this.splitterControl1.Size = new System.Drawing.Size(10, 1511);
+ this.splitterControl1.Size = new System.Drawing.Size(5, 779);
this.splitterControl1.TabIndex = 16;
this.splitterControl1.TabStop = false;
//
@@ -1205,10 +1206,10 @@
this.TsmiRegAdd,
this.TsmiRegEdit,
this.TsmiRegCancel});
- this.menuStrip1.Location = new System.Drawing.Point(474, 0);
+ this.menuStrip1.Location = new System.Drawing.Point(237, 0);
this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Padding = new System.Windows.Forms.Padding(5, 3, 0, 3);
- this.menuStrip1.Size = new System.Drawing.Size(2402, 46);
+ this.menuStrip1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
+ this.menuStrip1.Size = new System.Drawing.Size(1201, 44);
this.menuStrip1.TabIndex = 25;
this.menuStrip1.Text = "menuStrip1";
//
@@ -1217,7 +1218,7 @@
this.TsmiRegAdd.Image = ((System.Drawing.Image)(resources.GetObject("TsmiRegAdd.Image")));
this.TsmiRegAdd.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiRegAdd.Name = "TsmiRegAdd";
- this.TsmiRegAdd.Size = new System.Drawing.Size(110, 40);
+ this.TsmiRegAdd.Size = new System.Drawing.Size(80, 40);
this.TsmiRegAdd.Text = "登记";
//
// TsmiRegEdit
@@ -1225,7 +1226,7 @@
this.TsmiRegEdit.Image = ((System.Drawing.Image)(resources.GetObject("TsmiRegEdit.Image")));
this.TsmiRegEdit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiRegEdit.Name = "TsmiRegEdit";
- this.TsmiRegEdit.Size = new System.Drawing.Size(110, 40);
+ this.TsmiRegEdit.Size = new System.Drawing.Size(80, 40);
this.TsmiRegEdit.Text = "编辑";
//
// TsmiRegCancel
@@ -1233,7 +1234,7 @@
this.TsmiRegCancel.Image = global::PEIS.Properties.Resources.取消2;
this.TsmiRegCancel.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiRegCancel.Name = "TsmiRegCancel";
- this.TsmiRegCancel.Size = new System.Drawing.Size(144, 40);
+ this.TsmiRegCancel.Size = new System.Drawing.Size(90, 40);
this.TsmiRegCancel.Text = "取消登记";
//
// panel1
@@ -1271,20 +1272,20 @@
this.panel1.Controls.Add(this.ExamTypeLabel);
this.panel1.Controls.Add(this.CompanyLabel);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(474, 46);
- this.panel1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.panel1.Location = new System.Drawing.Point(237, 44);
+ this.panel1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(2402, 272);
+ this.panel1.Size = new System.Drawing.Size(1201, 150);
this.panel1.TabIndex = 26;
//
// AgeLabel
//
this.AgeLabel.AutoSize = true;
this.AgeLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
- this.AgeLabel.Location = new System.Drawing.Point(313, 153);
+ this.AgeLabel.Location = new System.Drawing.Point(156, 84);
this.AgeLabel.Margin = new System.Windows.Forms.Padding(0);
this.AgeLabel.Name = "AgeLabel";
- this.AgeLabel.Size = new System.Drawing.Size(101, 36);
+ this.AgeLabel.Size = new System.Drawing.Size(53, 19);
this.AgeLabel.TabIndex = 154;
this.AgeLabel.Text = "年 龄";
//
@@ -1292,10 +1293,10 @@
//
this.label18.AutoSize = true;
this.label18.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label18.Location = new System.Drawing.Point(232, 157);
+ this.label18.Location = new System.Drawing.Point(116, 86);
this.label18.Margin = new System.Windows.Forms.Padding(0);
this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(82, 31);
+ this.label18.Size = new System.Drawing.Size(43, 17);
this.label18.TabIndex = 153;
this.label18.Text = "年 龄:";
//
@@ -1303,10 +1304,10 @@
//
this.label17.AutoSize = true;
this.label17.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label17.Location = new System.Drawing.Point(1272, 225);
+ this.label17.Location = new System.Drawing.Point(636, 123);
this.label17.Margin = new System.Windows.Forms.Padding(0);
this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(116, 31);
+ this.label17.Size = new System.Drawing.Size(59, 17);
this.label17.TabIndex = 152;
this.label17.Text = "工作单位:";
//
@@ -1314,10 +1315,10 @@
//
this.label14.AutoSize = true;
this.label14.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label14.Location = new System.Drawing.Point(565, 225);
+ this.label14.Location = new System.Drawing.Point(282, 123);
this.label14.Margin = new System.Windows.Forms.Padding(0);
this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(106, 31);
+ this.label14.Size = new System.Drawing.Size(55, 17);
this.label14.TabIndex = 151;
this.label14.Text = "证 件 号:";
//
@@ -1325,10 +1326,10 @@
//
this.label13.AutoSize = true;
this.label13.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label13.Location = new System.Drawing.Point(1272, 157);
+ this.label13.Location = new System.Drawing.Point(636, 86);
this.label13.Margin = new System.Windows.Forms.Padding(0);
this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(130, 31);
+ this.label13.Size = new System.Drawing.Size(66, 17);
this.label13.TabIndex = 150;
this.label13.Text = "联系地址1:";
//
@@ -1336,10 +1337,10 @@
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label12.Location = new System.Drawing.Point(1272, 87);
+ this.label12.Location = new System.Drawing.Point(636, 48);
this.label12.Margin = new System.Windows.Forms.Padding(0);
this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(130, 31);
+ this.label12.Size = new System.Drawing.Size(66, 17);
this.label12.TabIndex = 149;
this.label12.Text = "联系电话1:";
//
@@ -1347,10 +1348,10 @@
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label11.Location = new System.Drawing.Point(1272, 20);
+ this.label11.Location = new System.Drawing.Point(636, 11);
this.label11.Margin = new System.Windows.Forms.Padding(0);
this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(106, 31);
+ this.label11.Size = new System.Drawing.Size(54, 17);
this.label11.TabIndex = 148;
this.label11.Text = "联系人1:";
//
@@ -1358,10 +1359,10 @@
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label10.Location = new System.Drawing.Point(932, 157);
+ this.label10.Location = new System.Drawing.Point(466, 86);
this.label10.Margin = new System.Windows.Forms.Padding(0);
this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(116, 31);
+ this.label10.Size = new System.Drawing.Size(59, 17);
this.label10.TabIndex = 147;
this.label10.Text = "教育程度:";
//
@@ -1369,10 +1370,10 @@
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label9.Location = new System.Drawing.Point(565, 157);
+ this.label9.Location = new System.Drawing.Point(282, 86);
this.label9.Margin = new System.Windows.Forms.Padding(0);
this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(116, 31);
+ this.label9.Size = new System.Drawing.Size(59, 17);
this.label9.TabIndex = 146;
this.label9.Text = "婚姻状况:";
//
@@ -1380,10 +1381,10 @@
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label8.Location = new System.Drawing.Point(932, 87);
+ this.label8.Location = new System.Drawing.Point(466, 48);
this.label8.Margin = new System.Windows.Forms.Padding(0);
this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(82, 31);
+ this.label8.Size = new System.Drawing.Size(43, 17);
this.label8.TabIndex = 145;
this.label8.Text = "职 业:";
//
@@ -1391,10 +1392,10 @@
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label7.Location = new System.Drawing.Point(565, 87);
+ this.label7.Location = new System.Drawing.Point(282, 48);
this.label7.Margin = new System.Windows.Forms.Padding(0);
this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(116, 31);
+ this.label7.Size = new System.Drawing.Size(59, 17);
this.label7.TabIndex = 144;
this.label7.Text = "体检类型:";
//
@@ -1402,10 +1403,10 @@
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label6.Location = new System.Drawing.Point(565, 20);
+ this.label6.Location = new System.Drawing.Point(282, 11);
this.label6.Margin = new System.Windows.Forms.Padding(0);
this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(116, 31);
+ this.label6.Size = new System.Drawing.Size(59, 17);
this.label6.TabIndex = 143;
this.label6.Text = "体检日期:";
//
@@ -1413,10 +1414,10 @@
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label5.Location = new System.Drawing.Point(232, 225);
+ this.label5.Location = new System.Drawing.Point(116, 123);
this.label5.Margin = new System.Windows.Forms.Padding(0);
this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(116, 31);
+ this.label5.Size = new System.Drawing.Size(59, 17);
this.label5.TabIndex = 142;
this.label5.Text = "出生日期:";
//
@@ -1424,30 +1425,30 @@
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.label4.Location = new System.Drawing.Point(932, 20);
+ this.label4.Location = new System.Drawing.Point(466, 11);
this.label4.Margin = new System.Windows.Forms.Padding(0);
this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(82, 31);
+ this.label4.Size = new System.Drawing.Size(43, 17);
this.label4.TabIndex = 141;
this.label4.Text = "民 族:";
//
// label3
//
this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(232, 87);
+ this.label3.Location = new System.Drawing.Point(116, 48);
this.label3.Margin = new System.Windows.Forms.Padding(0);
this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(82, 31);
+ this.label3.Size = new System.Drawing.Size(43, 17);
this.label3.TabIndex = 140;
this.label3.Text = "性 别:";
//
// label2
//
this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(232, 20);
+ this.label2.Location = new System.Drawing.Point(116, 11);
this.label2.Margin = new System.Windows.Forms.Padding(0);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(82, 31);
+ this.label2.Size = new System.Drawing.Size(43, 17);
this.label2.TabIndex = 139;
this.label2.Text = "姓 名:";
//
@@ -1455,10 +1456,10 @@
//
this.ContractorLabel1.AutoSize = true;
this.ContractorLabel1.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.ContractorLabel1.Location = new System.Drawing.Point(1377, 20);
+ this.ContractorLabel1.Location = new System.Drawing.Point(688, 11);
this.ContractorLabel1.Margin = new System.Windows.Forms.Padding(0);
this.ContractorLabel1.Name = "ContractorLabel1";
- this.ContractorLabel1.Size = new System.Drawing.Size(100, 31);
+ this.ContractorLabel1.Size = new System.Drawing.Size(51, 17);
this.ContractorLabel1.TabIndex = 138;
this.ContractorLabel1.Text = "联系人1";
//
@@ -1466,10 +1467,10 @@
//
this.AddressLabel1.AutoSize = true;
this.AddressLabel1.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.AddressLabel1.Location = new System.Drawing.Point(1400, 157);
+ this.AddressLabel1.Location = new System.Drawing.Point(700, 86);
this.AddressLabel1.Margin = new System.Windows.Forms.Padding(0);
this.AddressLabel1.Name = "AddressLabel1";
- this.AddressLabel1.Size = new System.Drawing.Size(124, 31);
+ this.AddressLabel1.Size = new System.Drawing.Size(63, 17);
this.AddressLabel1.TabIndex = 137;
this.AddressLabel1.Text = "联系地址1";
//
@@ -1477,20 +1478,20 @@
//
this.SexLabel.AutoSize = true;
this.SexLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SexLabel.Location = new System.Drawing.Point(313, 85);
+ this.SexLabel.Location = new System.Drawing.Point(156, 47);
this.SexLabel.Margin = new System.Windows.Forms.Padding(0);
this.SexLabel.Name = "SexLabel";
- this.SexLabel.Size = new System.Drawing.Size(101, 36);
+ this.SexLabel.Size = new System.Drawing.Size(53, 19);
this.SexLabel.TabIndex = 136;
this.SexLabel.Text = "性 别";
//
// RegAvatar
//
this.RegAvatar.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.RegAvatar.Location = new System.Drawing.Point(8, 6);
- this.RegAvatar.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.RegAvatar.Location = new System.Drawing.Point(4, 3);
+ this.RegAvatar.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.RegAvatar.Name = "RegAvatar";
- this.RegAvatar.Size = new System.Drawing.Size(206, 248);
+ this.RegAvatar.Size = new System.Drawing.Size(104, 137);
this.RegAvatar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.RegAvatar.TabIndex = 135;
this.RegAvatar.TabStop = false;
@@ -1499,10 +1500,10 @@
//
this.BirthdayLabel.AutoSize = true;
this.BirthdayLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
- this.BirthdayLabel.Location = new System.Drawing.Point(348, 223);
+ this.BirthdayLabel.Location = new System.Drawing.Point(174, 122);
this.BirthdayLabel.Margin = new System.Windows.Forms.Padding(0);
this.BirthdayLabel.Name = "BirthdayLabel";
- this.BirthdayLabel.Size = new System.Drawing.Size(175, 36);
+ this.BirthdayLabel.Size = new System.Drawing.Size(93, 19);
this.BirthdayLabel.TabIndex = 128;
this.BirthdayLabel.Text = "2000-01-01";
//
@@ -1510,10 +1511,10 @@
//
this.NationLabel.AutoSize = true;
this.NationLabel.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.NationLabel.Location = new System.Drawing.Point(1013, 20);
+ this.NationLabel.Location = new System.Drawing.Point(506, 11);
this.NationLabel.Margin = new System.Windows.Forms.Padding(0);
this.NationLabel.Name = "NationLabel";
- this.NationLabel.Size = new System.Drawing.Size(90, 31);
+ this.NationLabel.Size = new System.Drawing.Size(48, 17);
this.NationLabel.TabIndex = 127;
this.NationLabel.Text = "民 族";
//
@@ -1521,10 +1522,10 @@
//
this.NameLabel.AutoSize = true;
this.NameLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
- this.NameLabel.Location = new System.Drawing.Point(313, 17);
+ this.NameLabel.Location = new System.Drawing.Point(156, 9);
this.NameLabel.Margin = new System.Windows.Forms.Padding(0);
this.NameLabel.Name = "NameLabel";
- this.NameLabel.Size = new System.Drawing.Size(101, 36);
+ this.NameLabel.Size = new System.Drawing.Size(53, 19);
this.NameLabel.TabIndex = 129;
this.NameLabel.Text = "姓 名";
//
@@ -1532,10 +1533,10 @@
//
this.EducationLabel.AutoSize = true;
this.EducationLabel.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.EducationLabel.Location = new System.Drawing.Point(1044, 157);
+ this.EducationLabel.Location = new System.Drawing.Point(522, 86);
this.EducationLabel.Margin = new System.Windows.Forms.Padding(0);
this.EducationLabel.Name = "EducationLabel";
- this.EducationLabel.Size = new System.Drawing.Size(110, 31);
+ this.EducationLabel.Size = new System.Drawing.Size(56, 17);
this.EducationLabel.TabIndex = 125;
this.EducationLabel.Text = "教育程度";
//
@@ -1543,10 +1544,10 @@
//
this.ExamDateLabel.AutoSize = true;
this.ExamDateLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
- this.ExamDateLabel.Location = new System.Drawing.Point(677, 17);
+ this.ExamDateLabel.Location = new System.Drawing.Point(338, 9);
this.ExamDateLabel.Margin = new System.Windows.Forms.Padding(0);
this.ExamDateLabel.Name = "ExamDateLabel";
- this.ExamDateLabel.Size = new System.Drawing.Size(175, 36);
+ this.ExamDateLabel.Size = new System.Drawing.Size(93, 19);
this.ExamDateLabel.TabIndex = 132;
this.ExamDateLabel.Text = "2000-01-01";
//
@@ -1554,10 +1555,10 @@
//
this.TelLabel1.AutoSize = true;
this.TelLabel1.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.TelLabel1.Location = new System.Drawing.Point(1400, 87);
+ this.TelLabel1.Location = new System.Drawing.Point(700, 48);
this.TelLabel1.Margin = new System.Windows.Forms.Padding(0);
this.TelLabel1.Name = "TelLabel1";
- this.TelLabel1.Size = new System.Drawing.Size(124, 31);
+ this.TelLabel1.Size = new System.Drawing.Size(63, 17);
this.TelLabel1.TabIndex = 134;
this.TelLabel1.Text = "联系电话1";
//
@@ -1565,10 +1566,10 @@
//
this.MaritalLabel.AutoSize = true;
this.MaritalLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
- this.MaritalLabel.Location = new System.Drawing.Point(677, 153);
+ this.MaritalLabel.Location = new System.Drawing.Point(338, 84);
this.MaritalLabel.Margin = new System.Windows.Forms.Padding(0);
this.MaritalLabel.Name = "MaritalLabel";
- this.MaritalLabel.Size = new System.Drawing.Size(123, 36);
+ this.MaritalLabel.Size = new System.Drawing.Size(65, 19);
this.MaritalLabel.TabIndex = 126;
this.MaritalLabel.Text = "婚姻状况";
//
@@ -1576,10 +1577,10 @@
//
this.CardNoLabel.AutoSize = true;
this.CardNoLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CardNoLabel.Location = new System.Drawing.Point(670, 225);
+ this.CardNoLabel.Location = new System.Drawing.Point(335, 123);
this.CardNoLabel.Margin = new System.Windows.Forms.Padding(0);
this.CardNoLabel.Name = "CardNoLabel";
- this.CardNoLabel.Size = new System.Drawing.Size(96, 36);
+ this.CardNoLabel.Size = new System.Drawing.Size(51, 19);
this.CardNoLabel.TabIndex = 131;
this.CardNoLabel.Text = "证件号";
//
@@ -1587,10 +1588,10 @@
//
this.OccupationLabel.AutoSize = true;
this.OccupationLabel.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.OccupationLabel.Location = new System.Drawing.Point(1013, 87);
+ this.OccupationLabel.Location = new System.Drawing.Point(506, 48);
this.OccupationLabel.Margin = new System.Windows.Forms.Padding(0);
this.OccupationLabel.Name = "OccupationLabel";
- this.OccupationLabel.Size = new System.Drawing.Size(90, 31);
+ this.OccupationLabel.Size = new System.Drawing.Size(48, 17);
this.OccupationLabel.TabIndex = 124;
this.OccupationLabel.Text = "职 业";
//
@@ -1598,10 +1599,10 @@
//
this.ExamTypeLabel.AutoSize = true;
this.ExamTypeLabel.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
- this.ExamTypeLabel.Location = new System.Drawing.Point(677, 85);
+ this.ExamTypeLabel.Location = new System.Drawing.Point(338, 47);
this.ExamTypeLabel.Margin = new System.Windows.Forms.Padding(0);
this.ExamTypeLabel.Name = "ExamTypeLabel";
- this.ExamTypeLabel.Size = new System.Drawing.Size(123, 36);
+ this.ExamTypeLabel.Size = new System.Drawing.Size(65, 19);
this.ExamTypeLabel.TabIndex = 133;
this.ExamTypeLabel.Text = "体检类型";
//
@@ -1609,10 +1610,10 @@
//
this.CompanyLabel.AutoSize = true;
this.CompanyLabel.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.CompanyLabel.Location = new System.Drawing.Point(1386, 225);
+ this.CompanyLabel.Location = new System.Drawing.Point(693, 123);
this.CompanyLabel.Margin = new System.Windows.Forms.Padding(0);
this.CompanyLabel.Name = "CompanyLabel";
- this.CompanyLabel.Size = new System.Drawing.Size(110, 31);
+ this.CompanyLabel.Size = new System.Drawing.Size(56, 17);
this.CompanyLabel.TabIndex = 130;
this.CompanyLabel.Text = "工作单位";
//
@@ -1662,10 +1663,10 @@
this.TsmiProjectPrintGuide,
this.TsmiProjectPrintApply,
this.TsmiOpenFeeItem});
- this.ProjectMenu.Location = new System.Drawing.Point(474, 318);
+ this.ProjectMenu.Location = new System.Drawing.Point(237, 194);
this.ProjectMenu.Name = "ProjectMenu";
- this.ProjectMenu.Padding = new System.Windows.Forms.Padding(5, 3, 0, 3);
- this.ProjectMenu.Size = new System.Drawing.Size(2402, 46);
+ this.ProjectMenu.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
+ this.ProjectMenu.Size = new System.Drawing.Size(1201, 44);
this.ProjectMenu.TabIndex = 28;
this.ProjectMenu.Text = "menuStrip1";
//
@@ -1674,7 +1675,7 @@
this.TsmiPojectCreateOrder.Image = ((System.Drawing.Image)(resources.GetObject("TsmiPojectCreateOrder.Image")));
this.TsmiPojectCreateOrder.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiPojectCreateOrder.Name = "TsmiPojectCreateOrder";
- this.TsmiPojectCreateOrder.Size = new System.Drawing.Size(158, 40);
+ this.TsmiPojectCreateOrder.Size = new System.Drawing.Size(104, 40);
this.TsmiPojectCreateOrder.Text = "个人收费";
//
// TsmiProjectPrintCost
@@ -1682,7 +1683,7 @@
this.TsmiProjectPrintCost.Image = ((System.Drawing.Image)(resources.GetObject("TsmiProjectPrintCost.Image")));
this.TsmiProjectPrintCost.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiProjectPrintCost.Name = "TsmiProjectPrintCost";
- this.TsmiProjectPrintCost.Size = new System.Drawing.Size(182, 40);
+ this.TsmiProjectPrintCost.Size = new System.Drawing.Size(116, 40);
this.TsmiProjectPrintCost.Text = "打印收费单";
//
// TsmiProjectCharge
@@ -1690,7 +1691,7 @@
this.TsmiProjectCharge.Image = ((System.Drawing.Image)(resources.GetObject("TsmiProjectCharge.Image")));
this.TsmiProjectCharge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiProjectCharge.Name = "TsmiProjectCharge";
- this.TsmiProjectCharge.Size = new System.Drawing.Size(124, 40);
+ this.TsmiProjectCharge.Size = new System.Drawing.Size(88, 40);
this.TsmiProjectCharge.Text = "记 账";
this.TsmiProjectCharge.Visible = false;
//
@@ -1699,7 +1700,7 @@
this.TsmiProjectSendDept.Image = ((System.Drawing.Image)(resources.GetObject("TsmiProjectSendDept.Image")));
this.TsmiProjectSendDept.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiProjectSendDept.Name = "TsmiProjectSendDept";
- this.TsmiProjectSendDept.Size = new System.Drawing.Size(178, 40);
+ this.TsmiProjectSendDept.Size = new System.Drawing.Size(112, 40);
this.TsmiProjectSendDept.Text = "发送到科室";
//
// TsmiProjectPrintGuide
@@ -1707,7 +1708,7 @@
this.TsmiProjectPrintGuide.Image = ((System.Drawing.Image)(resources.GetObject("TsmiProjectPrintGuide.Image")));
this.TsmiProjectPrintGuide.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiProjectPrintGuide.Name = "TsmiProjectPrintGuide";
- this.TsmiProjectPrintGuide.Size = new System.Drawing.Size(182, 40);
+ this.TsmiProjectPrintGuide.Size = new System.Drawing.Size(116, 40);
this.TsmiProjectPrintGuide.Text = "打印导检单";
//
// TsmiProjectPrintApply
@@ -1715,7 +1716,7 @@
this.TsmiProjectPrintApply.Image = ((System.Drawing.Image)(resources.GetObject("TsmiProjectPrintApply.Image")));
this.TsmiProjectPrintApply.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.TsmiProjectPrintApply.Name = "TsmiProjectPrintApply";
- this.TsmiProjectPrintApply.Size = new System.Drawing.Size(182, 40);
+ this.TsmiProjectPrintApply.Size = new System.Drawing.Size(116, 40);
this.TsmiProjectPrintApply.Text = "打印申请单";
this.TsmiProjectPrintApply.Visible = false;
//
@@ -1724,7 +1725,7 @@
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(198, 40);
+ this.TsmiOpenFeeItem.Size = new System.Drawing.Size(120, 40);
this.TsmiOpenFeeItem.Text = "关闭收费项目";
//
// gridView11
@@ -1772,8 +1773,8 @@
this.splitContainer1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(162)))), ((int)(((byte)(202)))));
this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(474, 364);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.splitContainer1.Location = new System.Drawing.Point(237, 238);
+ this.splitContainer1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
@@ -1784,9 +1785,9 @@
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.DgcCheckCost);
- this.splitContainer1.Size = new System.Drawing.Size(2402, 1147);
- this.splitContainer1.SplitterDistance = 622;
- this.splitContainer1.SplitterWidth = 6;
+ this.splitContainer1.Size = new System.Drawing.Size(1201, 541);
+ this.splitContainer1.SplitterDistance = 293;
+ this.splitContainer1.SplitterWidth = 3;
this.splitContainer1.TabIndex = 29;
//
// splitContainer2
@@ -1795,7 +1796,7 @@
this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.splitContainer2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.splitContainer2.Name = "splitContainer2";
//
// splitContainer2.Panel1
@@ -1806,20 +1807,20 @@
//
this.splitContainer2.Panel2.BackColor = System.Drawing.Color.White;
this.splitContainer2.Panel2.Controls.Add(this.PackAndFeeItem);
- this.splitContainer2.Size = new System.Drawing.Size(2402, 622);
- this.splitContainer2.SplitterDistance = 699;
- this.splitContainer2.SplitterWidth = 6;
+ this.splitContainer2.Size = new System.Drawing.Size(1201, 293);
+ this.splitContainer2.SplitterDistance = 547;
+ this.splitContainer2.SplitterWidth = 3;
this.splitContainer2.TabIndex = 0;
//
// DgcEFeeItem
//
this.DgcEFeeItem.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcEFeeItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.DgcEFeeItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.DgcEFeeItem.Location = new System.Drawing.Point(0, 0);
this.DgcEFeeItem.MainView = this.DgvEFeeItem;
- this.DgcEFeeItem.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.DgcEFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.DgcEFeeItem.Name = "DgcEFeeItem";
- this.DgcEFeeItem.Size = new System.Drawing.Size(695, 618);
+ this.DgcEFeeItem.Size = new System.Drawing.Size(543, 289);
this.DgcEFeeItem.TabIndex = 2;
this.DgcEFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvEFeeItem});
@@ -1855,7 +1856,7 @@
//
// gridColumn28
//
- this.gridColumn28.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn28.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn28.AppearanceCell.Options.UseFont = true;
this.gridColumn28.Caption = "订单号";
this.gridColumn28.FieldName = "OrderNo";
@@ -1873,7 +1874,7 @@
//
// gridColumn21
//
- this.gridColumn21.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn21.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn21.AppearanceCell.Options.UseFont = true;
this.gridColumn21.Caption = "套餐";
this.gridColumn21.FieldName = "PackName";
@@ -1891,7 +1892,7 @@
//
// gridColumn22
//
- this.gridColumn22.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn22.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn22.AppearanceCell.Options.UseFont = true;
this.gridColumn22.Caption = "收费项目";
this.gridColumn22.FieldName = "FeeItemName";
@@ -1909,7 +1910,7 @@
//
// gridColumn23
//
- this.gridColumn23.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn23.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn23.AppearanceCell.Options.UseFont = true;
this.gridColumn23.Caption = "收费价格";
this.gridColumn23.FieldName = "Price";
@@ -1928,7 +1929,7 @@
//
// gridColumn25
//
- this.gridColumn25.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn25.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn25.AppearanceCell.Options.UseFont = true;
this.gridColumn25.Caption = "核算价格";
this.gridColumn25.FieldName = "SettlePrice";
@@ -1947,7 +1948,7 @@
//
// gridColumn29
//
- this.gridColumn29.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn29.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn29.AppearanceCell.Options.UseFont = true;
this.gridColumn29.Caption = "执行科室";
this.gridColumn29.FieldName = "DeptName";
@@ -1964,7 +1965,7 @@
//
// gridColumn30
//
- this.gridColumn30.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn30.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn30.AppearanceCell.Options.UseFont = true;
this.gridColumn30.Caption = "数量";
this.gridColumn30.FieldName = "Quantity";
@@ -1982,7 +1983,7 @@
//
// gridColumn31
//
- this.gridColumn31.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn31.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn31.AppearanceCell.Options.UseFont = true;
this.gridColumn31.Caption = "单位";
this.gridColumn31.FieldName = "Unit";
@@ -2000,7 +2001,7 @@
//
// gridColumn32
//
- this.gridColumn32.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.gridColumn32.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn32.AppearanceCell.Options.UseFont = true;
this.gridColumn32.Caption = "检查类别";
this.gridColumn32.FieldName = "ItemClass";
@@ -2022,35 +2023,33 @@
this.PackAndFeeItem.Controls.Add(this.CopyItemTab);
this.PackAndFeeItem.Dock = System.Windows.Forms.DockStyle.Fill;
this.PackAndFeeItem.Location = new System.Drawing.Point(0, 0);
- this.PackAndFeeItem.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.PackAndFeeItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.PackAndFeeItem.Name = "PackAndFeeItem";
this.PackAndFeeItem.SelectedIndex = 0;
- this.PackAndFeeItem.Size = new System.Drawing.Size(1693, 618);
+ this.PackAndFeeItem.Size = new System.Drawing.Size(647, 289);
this.PackAndFeeItem.TabIndex = 1;
//
// ExamComboTab
//
this.ExamComboTab.BackColor = System.Drawing.Color.White;
this.ExamComboTab.Controls.Add(this.DgcPack);
- this.ExamComboTab.Location = new System.Drawing.Point(8, 45);
- this.ExamComboTab.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.ExamComboTab.Location = new System.Drawing.Point(4, 26);
+ this.ExamComboTab.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.ExamComboTab.Name = "ExamComboTab";
- this.ExamComboTab.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.ExamComboTab.Size = new System.Drawing.Size(1677, 565);
+ this.ExamComboTab.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.ExamComboTab.Size = new System.Drawing.Size(639, 259);
this.ExamComboTab.TabIndex = 1;
this.ExamComboTab.Text = "体检套餐";
//
// DgcPack
//
this.DgcPack.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcPack.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(6);
- this.DgcPack.Location = new System.Drawing.Point(5, 6);
+ this.DgcPack.Location = new System.Drawing.Point(2, 3);
this.DgcPack.MainView = this.DgvPack;
- this.DgcPack.Margin = new System.Windows.Forms.Padding(6);
this.DgcPack.Name = "DgcPack";
this.DgcPack.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemCheckEdit2});
- this.DgcPack.Size = new System.Drawing.Size(1667, 553);
+ this.DgcPack.Size = new System.Drawing.Size(635, 253);
this.DgcPack.TabIndex = 122;
this.DgcPack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvPack,
@@ -2210,25 +2209,23 @@
this.FeeItemTab.BackColor = System.Drawing.Color.White;
this.FeeItemTab.Controls.Add(this.DgcFeeItem);
this.FeeItemTab.Controls.Add(this.FeeItemSearch);
- this.FeeItemTab.Location = new System.Drawing.Point(8, 45);
- this.FeeItemTab.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.FeeItemTab.Location = new System.Drawing.Point(4, 26);
+ this.FeeItemTab.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.FeeItemTab.Name = "FeeItemTab";
- this.FeeItemTab.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.FeeItemTab.Size = new System.Drawing.Size(1675, 561);
+ this.FeeItemTab.Padding = new System.Windows.Forms.Padding(2, 3, 2, 3);
+ this.FeeItemTab.Size = new System.Drawing.Size(637, 255);
this.FeeItemTab.TabIndex = 0;
this.FeeItemTab.Text = "收费项目";
//
// DgcFeeItem
//
this.DgcFeeItem.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcFeeItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(6);
- this.DgcFeeItem.Location = new System.Drawing.Point(5, 45);
+ this.DgcFeeItem.Location = new System.Drawing.Point(2, 26);
this.DgcFeeItem.MainView = this.DgvFeeItem;
- this.DgcFeeItem.Margin = new System.Windows.Forms.Padding(6);
this.DgcFeeItem.Name = "DgcFeeItem";
this.DgcFeeItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemCheckEdit1});
- this.DgcFeeItem.Size = new System.Drawing.Size(1665, 510);
+ this.DgcFeeItem.Size = new System.Drawing.Size(633, 226);
this.DgcFeeItem.TabIndex = 124;
this.DgcFeeItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvFeeItem,
@@ -2397,21 +2394,21 @@
// FeeItemSearch
//
this.FeeItemSearch.Dock = System.Windows.Forms.DockStyle.Top;
- this.FeeItemSearch.Location = new System.Drawing.Point(5, 6);
- this.FeeItemSearch.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ 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(1665, 39);
+ this.FeeItemSearch.Size = new System.Drawing.Size(633, 23);
this.FeeItemSearch.TabIndex = 123;
//
// CopyItemTab
//
this.CopyItemTab.Controls.Add(this.DgcCopyItem);
- this.CopyItemTab.Controls.Add(this.DgcRegItem2);
+ this.CopyItemTab.Controls.Add(this.panel2);
this.CopyItemTab.Controls.Add(this.CopyMenu);
- this.CopyItemTab.Location = new System.Drawing.Point(8, 45);
- this.CopyItemTab.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
+ this.CopyItemTab.Location = new System.Drawing.Point(4, 26);
+ this.CopyItemTab.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.CopyItemTab.Name = "CopyItemTab";
- this.CopyItemTab.Size = new System.Drawing.Size(1675, 561);
+ this.CopyItemTab.Size = new System.Drawing.Size(639, 259);
this.CopyItemTab.TabIndex = 2;
this.CopyItemTab.Text = "从体检者复制项目";
this.CopyItemTab.UseVisualStyleBackColor = true;
@@ -2419,13 +2416,13 @@
// DgcCopyItem
//
this.DgcCopyItem.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcCopyItem.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.DgcCopyItem.Location = new System.Drawing.Point(287, 41);
+ 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(5, 6, 5, 6);
+ this.DgcCopyItem.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.DgcCopyItem.Name = "DgcCopyItem";
- this.DgcCopyItem.Size = new System.Drawing.Size(1388, 520);
- this.DgcCopyItem.TabIndex = 30;
+ this.DgcCopyItem.Size = new System.Drawing.Size(499, 231);
+ this.DgcCopyItem.TabIndex = 32;
this.DgcCopyItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvCopyItem});
//
@@ -2458,7 +2455,7 @@
//
// gridColumn42
//
- this.gridColumn42.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn42.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn42.AppearanceCell.Options.UseFont = true;
this.gridColumn42.Caption = "套餐";
this.gridColumn42.FieldName = "PackName";
@@ -2476,7 +2473,7 @@
//
// gridColumn43
//
- this.gridColumn43.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn43.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn43.AppearanceCell.Options.UseFont = true;
this.gridColumn43.Caption = "收费项目";
this.gridColumn43.FieldName = "FeeItemName";
@@ -2492,7 +2489,7 @@
//
// gridColumn44
//
- this.gridColumn44.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn44.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn44.AppearanceCell.Options.UseFont = true;
this.gridColumn44.Caption = "收费价格";
this.gridColumn44.FieldName = "Price";
@@ -2509,7 +2506,7 @@
//
// gridColumn45
//
- this.gridColumn45.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn45.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn45.AppearanceCell.Options.UseFont = true;
this.gridColumn45.Caption = "核算价格";
this.gridColumn45.FieldName = "SettlePrice";
@@ -2526,7 +2523,7 @@
//
// gridColumn46
//
- this.gridColumn46.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn46.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn46.AppearanceCell.Options.UseFont = true;
this.gridColumn46.Caption = "执行科室";
this.gridColumn46.FieldName = "DeptName";
@@ -2543,7 +2540,7 @@
//
// gridColumn47
//
- this.gridColumn47.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn47.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn47.AppearanceCell.Options.UseFont = true;
this.gridColumn47.Caption = "数量";
this.gridColumn47.FieldName = "Quantity";
@@ -2561,7 +2558,7 @@
//
// gridColumn48
//
- this.gridColumn48.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn48.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn48.AppearanceCell.Options.UseFont = true;
this.gridColumn48.Caption = "单位";
this.gridColumn48.FieldName = "Unit";
@@ -2579,7 +2576,7 @@
//
// gridColumn49
//
- this.gridColumn49.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.gridColumn49.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
this.gridColumn49.AppearanceCell.Options.UseFont = true;
this.gridColumn49.Caption = "检查类别";
this.gridColumn49.FieldName = "ItemClass";
@@ -2594,15 +2591,36 @@
this.gridColumn49.Visible = true;
this.gridColumn49.VisibleIndex = 7;
//
+ // panel2
+ //
+ this.panel2.Controls.Add(this.NameSearch2);
+ this.panel2.Controls.Add(this.DgcRegItem2);
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel2.Location = new System.Drawing.Point(0, 28);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(140, 231);
+ this.panel2.TabIndex = 31;
+ //
+ // NameSearch2
+ //
+ 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;
+ //
// DgcRegItem2
//
- this.DgcRegItem2.Dock = System.Windows.Forms.DockStyle.Left;
- this.DgcRegItem2.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.DgcRegItem2.Location = new System.Drawing.Point(0, 41);
+ 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(5, 6, 5, 6);
+ this.DgcRegItem2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.DgcRegItem2.Name = "DgcRegItem2";
- this.DgcRegItem2.Size = new System.Drawing.Size(287, 520);
+ this.DgcRegItem2.Size = new System.Drawing.Size(140, 231);
this.DgcRegItem2.TabIndex = 29;
this.DgcRegItem2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvRegItem2});
@@ -2625,15 +2643,22 @@
//
// gridColumn50
//
+ this.gridColumn50.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.gridColumn50.AppearanceCell.Options.UseFont = true;
this.gridColumn50.Caption = "体检号";
this.gridColumn50.FieldName = "ID";
this.gridColumn50.Name = "gridColumn50";
+ this.gridColumn50.OptionsColumn.AllowEdit = false;
+ this.gridColumn50.OptionsColumn.ReadOnly = true;
+ this.gridColumn50.OptionsFilter.AllowFilter = false;
this.gridColumn50.Visible = true;
this.gridColumn50.VisibleIndex = 0;
this.gridColumn50.Width = 55;
//
// gridColumn9
//
+ this.gridColumn9.AppearanceCell.Font = new System.Drawing.Font("微软雅黑", 12F);
+ this.gridColumn9.AppearanceCell.Options.UseFont = true;
this.gridColumn9.Caption = "姓名";
this.gridColumn9.FieldName = "Name";
this.gridColumn9.Name = "gridColumn9";
@@ -2658,8 +2683,8 @@
this.TsmiCopyFeeItem});
this.CopyMenu.Location = new System.Drawing.Point(0, 0);
this.CopyMenu.Name = "CopyMenu";
- this.CopyMenu.Padding = new System.Windows.Forms.Padding(5, 3, 0, 3);
- this.CopyMenu.Size = new System.Drawing.Size(1675, 41);
+ this.CopyMenu.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
+ this.CopyMenu.Size = new System.Drawing.Size(639, 28);
this.CopyMenu.TabIndex = 24;
this.CopyMenu.Text = "menuStrip1";
//
@@ -2667,21 +2692,19 @@
//
this.TsmiCopyFeeItem.Image = ((System.Drawing.Image)(resources.GetObject("TsmiCopyFeeItem.Image")));
this.TsmiCopyFeeItem.Name = "TsmiCopyFeeItem";
- this.TsmiCopyFeeItem.Size = new System.Drawing.Size(94, 35);
+ this.TsmiCopyFeeItem.Size = new System.Drawing.Size(64, 24);
this.TsmiCopyFeeItem.Text = "复制";
//
// DgcCheckCost
//
this.DgcCheckCost.ContextMenuStrip = this.CostFastMenu;
this.DgcCheckCost.Dock = System.Windows.Forms.DockStyle.Fill;
- this.DgcCheckCost.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(6);
this.DgcCheckCost.Location = new System.Drawing.Point(0, 0);
this.DgcCheckCost.MainView = this.DgvCheckCost;
- this.DgcCheckCost.Margin = new System.Windows.Forms.Padding(6);
this.DgcCheckCost.Name = "DgcCheckCost";
this.DgcCheckCost.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemMemoEdit3});
- this.DgcCheckCost.Size = new System.Drawing.Size(2398, 515);
+ this.DgcCheckCost.Size = new System.Drawing.Size(1197, 241);
this.DgcCheckCost.TabIndex = 145;
this.DgcCheckCost.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.DgvCheckCost});
@@ -2736,13 +2759,6 @@
this.DgvCheckCost.OptionsView.ShowIndicator = false;
this.DgvCheckCost.RowHeight = 35;
//
- // 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";
- //
// gridColumn53
//
this.gridColumn53.Caption = "退费人";
@@ -2759,19 +2775,26 @@
this.gridColumn53.Visible = true;
this.gridColumn53.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";
+ //
// EnrollmentPersonForm
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(14F, 31F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(2876, 1511);
+ this.ClientSize = new System.Drawing.Size(1438, 779);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.ProjectMenu);
this.Controls.Add(this.panel1);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.splitterControl1);
this.Controls.Add(this.RegListPanel);
- this.Margin = new System.Windows.Forms.Padding(6, 8, 6, 8);
+ this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "EnrollmentPersonForm";
this.Text = "个人登记";
this.Load += new System.EventHandler(this.Reg4PersonForm_Load);
@@ -2834,6 +2857,8 @@
this.CopyItemTab.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.DgcCopyItem)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.DgvCopyItem)).EndInit();
+ this.panel2.ResumeLayout(false);
+ this.panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.DgcRegItem2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.DgvRegItem2)).EndInit();
this.CopyMenu.ResumeLayout(false);
@@ -2996,16 +3021,6 @@
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
private System.Windows.Forms.TextBox FeeItemSearch;
private System.Windows.Forms.TabPage CopyItemTab;
- private DevExpress.XtraGrid.GridControl DgcCopyItem;
- private DevExpress.XtraGrid.Views.Grid.GridView DgvCopyItem;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn42;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn43;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn44;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn45;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn46;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn47;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn48;
- private DevExpress.XtraGrid.Columns.GridColumn gridColumn49;
private DevExpress.XtraGrid.GridControl DgcRegItem2;
private DevExpress.XtraGrid.Views.Grid.GridView DgvRegItem2;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn50;
@@ -3048,5 +3063,17 @@
private System.Windows.Forms.ToolStripMenuItem FastRefreshCost;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn52;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn53;
+ private System.Windows.Forms.Panel panel2;
+ private System.Windows.Forms.TextBox NameSearch2;
+ private DevExpress.XtraGrid.GridControl DgcCopyItem;
+ private DevExpress.XtraGrid.Views.Grid.GridView DgvCopyItem;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn42;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn43;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn44;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn45;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn46;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn47;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn48;
+ private DevExpress.XtraGrid.Columns.GridColumn gridColumn49;
}
}
\ No newline at end of file
diff --git a/PEIS/View/Enrollment/EnrollmentPersonForm.cs b/PEIS/View/Enrollment/EnrollmentPersonForm.cs
index d81b178..cd7700f 100644
--- a/PEIS/View/Enrollment/EnrollmentPersonForm.cs
+++ b/PEIS/View/Enrollment/EnrollmentPersonForm.cs
@@ -23,7 +23,7 @@ namespace PEIS.View.Enrollment
public partial class EnrollmentPersonForm : ViewBase, IEnrollmentPersonView
{
List _lstPack = null;
- List _lstRegItems = null;
+ List _lstRegItems = null, _lstRegItems2 = null;
List _lstEFeeItem = null, _lstCopyFeeItem = null;
List _lstCheckCost = null;
List _lstFeeItem = null, _lstPackFeeItem = null;
@@ -137,6 +137,7 @@ namespace PEIS.View.Enrollment
DgvCopyItem.CustomColumnDisplayText += DgvCopyItem_CustomColumnDisplayText;
DgvRegItem2.SelectionChanged += DgvRegItem2_SelectionChanged;
+ NameSearch2.KeyDown += NameSearch2_KeyDown;
#region 判断双击位置
DgvPack.MouseDown += DgvPack_MouseDown;
@@ -145,7 +146,6 @@ namespace PEIS.View.Enrollment
#endregion
}
-
private void DgvEFeeItem_MouseDown(object sender, MouseEventArgs e)
{
eInfo = DgvEFeeItem.CalcHitInfo(e.X, e.Y);
@@ -223,7 +223,7 @@ namespace PEIS.View.Enrollment
ThreadPool.QueueUserWorkItem(state =>
{
- OnGetRegItems();
+ OnGetRegItems(0);
OnGetPackItem(); // 获取体检套餐
OnGetFeeItem(); // 获取收费项目
});
@@ -235,14 +235,14 @@ namespace PEIS.View.Enrollment
private void NameSearch_KeyDown(object sender, KeyEventArgs e) // 模糊检索
{
- if (e.KeyCode == Keys.Enter) OnGetRegItems();
+ if (e.KeyCode == Keys.Enter) OnGetRegItems(0);
}
private void TsmiRegRefresh_Click(object sender, EventArgs e) // 刷新按钮
{
// 使当前控件获得焦点,避免日期选择器修改后未生效
menuStrip1.Focus();
- OnGetRegItems();
+ OnGetRegItems(0);
}
private void DgvRegItem_SelectionChanged(object sender, DevExpress.Data.SelectionChangedEventArgs e) // 登记列表切换
@@ -303,7 +303,7 @@ namespace PEIS.View.Enrollment
{
NewEnrollmentPersonForm enrollmentPersonForm = new NewEnrollmentPersonForm(null, false);
enrollmentPersonForm.ShowDialog();
- OnGetRegItems();
+ OnGetRegItems(0);
}
private void TsmiRegEdit_Click(object sender, EventArgs e) // 编辑登记信息
@@ -311,7 +311,7 @@ namespace PEIS.View.Enrollment
if (_lstRegItems == null || _lstRegItems.Count() == 0) return;
NewEnrollmentPersonForm enrollmentPersonForm = new NewEnrollmentPersonForm(_chooseRegItem, true);
enrollmentPersonForm.ShowDialog();
- OnGetRegItems();
+ OnGetRegItems(0);
}
private void TsmiRegCancel_Click(object sender, EventArgs e) // 取消登记
@@ -331,7 +331,7 @@ namespace PEIS.View.Enrollment
if (Global.Msg("warn", "确定取消登记该信息?") == DialogResult.No) return;
OnCancelRegInfo(_chooseRegItem.ID);
- OnGetRegItems();
+ OnGetRegItems(0);
}
#endregion
@@ -510,7 +510,7 @@ namespace PEIS.View.Enrollment
try
{
var items = new List();
- _lstEFeeItem.Where(w => w.OrderNo != null && !w.IsHide && !(w.DeptName.Contains("金域"))).GroupBy(g => g.DeptCode).ForEach(dept =>
+ _lstEFeeItem.Where(w => w.OrderNo != null && !w.IsHide ).GroupBy(g => g.DeptCode).ForEach(dept =>
{
var item = new EnrollmentFeeItem()
{
@@ -604,7 +604,7 @@ namespace PEIS.View.Enrollment
//CostToHis(_chooseRegItem.ID);
OnSendToDept(_chooseRegItem.ID);
- OnGetRegItems();
+ OnGetRegItems(0);
OnGetCheckCost(_chooseRegItem.ID);
}
@@ -701,7 +701,7 @@ namespace PEIS.View.Enrollment
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) == true || a?.SpellCode?.Contains(FeeItemSearch.Text) == true);
}
private void TsmiCopyFeeItem_Click(object sender, EventArgs e)
@@ -755,9 +755,13 @@ namespace PEIS.View.Enrollment
{
if (_chooseRegItem == null || _chooseRegItem.SignTime == null) return;
OnRecallDept(_chooseRegItem.ID);
- OnGetRegItems();
+ OnGetRegItems(0);
}
+ private void NameSearch2_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter) OnGetRegItems(1);
+ }
#endregion
@@ -765,42 +769,47 @@ namespace PEIS.View.Enrollment
// 获取登记列表
public event EventHandler> GetRegItems;
- public void ShowRegItems(List items)
+ public void ShowRegItems(List items, int code)
{
- items.ForEach(a => a.Sex = a.Sex.Equals("1") ? "男" : a.Sex.Equals("2") ? "女" : "");
- Invoke(new Action(() => _lstRegItems = items));
- Invoke(new Action(() => { DgcRegItem.DataSource = null; DgcRegItem2.DataSource = null; }));
- Invoke(new Action(() => { DgcRegItem.DataSource = _lstRegItems.Where(a => a?.Name.Contains(NameSearch.Text) == true || a?.ID.ToString().Contains(NameSearch.Text) == true || a?.SpellCode?.Contains(NameSearch.Text) == true); }));
- Invoke(new Action(() =>
- {
- var list = new List();
- DgcRegItem2.DataSource = list.Concat(items);
- }));
+ if (code == 0) {
+ items.ForEach(a => a.Sex = a.Sex.Equals("1") ? "男" : a.Sex.Equals("2") ? "女" : "");
+ Invoke(new Action(() => _lstRegItems = items));
+ Invoke(new Action(() => DgcRegItem.DataSource = null));
+ Invoke(new Action(() => { DgcRegItem.DataSource = _lstRegItems.Where(a => a?.Name.Contains(NameSearch.Text) == true || a?.ID.ToString().Contains(NameSearch.Text) == true || a?.SpellCode?.Contains(NameSearch.Text) == true); }));
- if (_lstRegItems.Where(a => a?.Name.Contains(NameSearch.Text) == true || a?.ID.ToString().Contains(NameSearch.Text) == true).Count() != 0)
- {
- Invoke(new Action(() => _chooseRegItem = _lstRegItems.Where(a => a?.Name.Contains(NameSearch.Text) == true || a?.ID.ToString().Contains(NameSearch.Text) == true || a?.SpellCode?.Contains(NameSearch.Text) == true).ToList()[0]));
- Invoke(new Action(() => OnGetRegInfo(_chooseRegItem.ID)));
- Invoke(new Action(() => OnGetExamFeeItem(_chooseRegItem.ID, "0")));
- Invoke(new Action(() => OnGetCheckCost(_chooseRegItem.ID)));
+ if (_lstRegItems.Where(a => a?.Name.Contains(NameSearch.Text) == true || a?.ID.ToString().Contains(NameSearch.Text) == true).Count() != 0)
+ {
+ Invoke(new Action(() => _chooseRegItem = _lstRegItems.Where(a => a?.Name.Contains(NameSearch.Text) == true || a?.ID.ToString().Contains(NameSearch.Text) == true || a?.SpellCode?.Contains(NameSearch.Text) == true).ToList()[0]));
+ Invoke(new Action(() => OnGetRegInfo(_chooseRegItem.ID)));
+ Invoke(new Action(() => OnGetExamFeeItem(_chooseRegItem.ID, "0")));
+ Invoke(new Action(() => OnGetCheckCost(_chooseRegItem.ID)));
+ }
+ else
+ {
+ DgcEFeeItem.DataSource = _lstEFeeItem = null;
+ DgcCheckCost.DataSource = _lstCheckCost = null;
+ _chooseRegItem = null;
+ RegDataBinds(_chooseRegItem);
+ }
}
else
{
- DgcEFeeItem.DataSource = _lstEFeeItem = null;
- DgcCheckCost.DataSource = _lstCheckCost = null;
- DgcCopyItem.DataSource = _lstCopyFeeItem = null;
- _chooseRegItem = null;
- RegDataBinds(_chooseRegItem);
+ 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;
}
+
DgvRegItem.ExpandAllGroups();
- Invoke(new Action(() => DgvRegItem.BestFitColumns()));
+ Invoke(new Action(() => { DgvRegItem.BestFitColumns(); DgvRegItem2.BestFitColumns(); }));
}
- protected virtual void OnGetRegItems()
+ protected virtual void OnGetRegItems(int code)
{
dynamic searchData = new ExpandoObject();
searchData.begDate = BegDate.Value.ToShortDateString();
searchData.endDate = EndDate.Value.ToShortDateString();
- searchData.name = NameSearch.Text;
+ searchData.name = code == 0 ? NameSearch.Text : NameSearch2.Text;
+ searchData.code = code;
GetRegItems?.Invoke(this, new Args()
{
Item = searchData
diff --git a/PEIS/View/Enrollment/EnrollmentPersonForm.resx b/PEIS/View/Enrollment/EnrollmentPersonForm.resx
index e9565df..57b6c07 100644
--- a/PEIS/View/Enrollment/EnrollmentPersonForm.resx
+++ b/PEIS/View/Enrollment/EnrollmentPersonForm.resx
@@ -250,7 +250,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAERSURBVDhPrZDbSgJRGIXnpewd6jXsjSQvIrwoI0RQMChU
0iiDPCGiE3ZCRkvR8VzTeBhnyR5/ccaZNnPhB4t9sdf6Ln5hb8QeathNJFVFKF5C8DqL4ksDVHWGDf7j
LHyPg6NjviSaFqlu5yQYR+KpupaIkrMknCxT3Y7v/NYYb0ITK1c3BarbWWhLQ7IR0cTKReyZ6lZ0XYei
ztHpK4bAc+h1FgQijzSxMptrGIxVSO0xX3AaStFki7bUMVFmaMm/eJMGfIH/MkGzLep0AXn4h/r3CJV3
@@ -261,7 +261,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJHSURBVDhPxZBdSNNhFMb/F110ZZEVhVBgeeHNICiiuggp
olAUyyxI0oSaH1QYC3N+tKnp5ubm1JUua5uuqdNKMwr7kApFItTUkWZqVhSVYmao5Nevvy7UoYR3HXh4
4XCe33nOKyy3lAY7l9RWMo0O/raWXxEyo5spVYTNvOGyfIRPfW+ptOkXqaPl6T83hcRmExSdgzAz3NVm
YWyoYla/B+1M9JtxWLPpaH22JORIjI6gKAMB0jyEimIdo4OlbuaprwVMOOMovammpDADc34qppwUrmnl
@@ -277,7 +277,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIySURBVDhPrZLfS5NRGMfff6H7boIuuq2pMZyL1eAt11CW
DcOKsB9vpFmaLtNExco0av6CbIVLJ61Wk3BSkT/AFCkRZSpZmrmiJQ41xSaCwdfznL15XEUX0Reem5f3
8znnec4j/Zc8fxYGla91CS3eRTx0z6OpMYS7jmnU1X6B/VYA18snUVoyjsKCt8jLHcH5c36ouCQR2NUJ
1Nas4G9ZXlmFKbULh1Kf8lJxSfI+WeCCyopv6q+/h+DQ/DJ2WV5Ao1FgPegRAveDOS4oLfmq/h6dn/DH
@@ -293,7 +293,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAIpSURBVDhPtZL/T1JRGMb5p1itrVZbbRpqZbawnBENV1I0
jGlByTSyJTXJwq2oKZQb1KAv6JCYWSxvBrkkZUq4CeQEiRABFeLL072Xa0zRra31bO8v57zP5znnPYf1
X+TxhWF6O7VtGYcnwbSWijKPOLzYrPSvLPwLS3huGUMlT7o9wGD9grVUBj+icdid03S9tDmgNxNwTgVQ
J+rA8XNtWwM+uuZATMwxmQVRycuJFNyzIRitDlScugKzjSgFRGJJaIwEsrk8AsHIhnSL/Ssck37UNipQ
@@ -308,7 +308,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAGCSURBVDhPnZK9S0JRGMb9F1xb2gqaq6mhwCGDtvYIIyLI
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGCSURBVDhPnZK9S0JRGMb9F1xb2gqaq6mhwCGDtvYIIyLI
cJOE1paoIYpMKUjFRDH87lpoakGlIZF9DA2hZJEQhJXl1xPn3HPV29WQfvBwOfA+P95zuDJ39A6/4wyl
YOOSMHvOcHGThuwvSKEVRvsR+pQqWD3R1pK98DUbl7Jm5hA8SfESd6S5xH5wycalrO4E0D8yWQuriLH6
E2xcSqlcoRJBxCpiTO5TNi4m/ZgDF4nDsOulsfujyGRzUsmWM8YqdcggKbveS3A88bEkslRye58RSzZt
@@ -321,7 +321,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGDSURBVDhPrZFNSwJRGIX9NYGbFoUlFElY1EJQKEYhCJsi
LaVsERnRF5iCaSZJO1toCDVGFkgoFpWQWWRR2aIvUxm1BKN1wSnHCFw4TOCzue+9nPNw4eVVnav4Izzb
QfxeGZ5TWaxT/rK3irzmC7CsusvC1G4IkbNLboIiDieF4GGUKeTeClDpppF8eeEu2PIfwfrzizSdw3Hk
EnKlFpkMzV2wH77AosOFTV8A+vkl9CiHuJeLJNNZjM8tYWB0FkTvMAwmy/8ERTR6CwjlGAi1Ccence6C
@@ -334,7 +334,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAHkSURBVDhPvZHfS1NhHIf3p5QypLr2D4goMwoMCi/qIugH
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHkSURBVDhPvZHfS1NhHIf3p5QypLr2D4goMwoMCi/qIugH
Xe1Cr7qKDIMkZixwNhfWLGWbnuki0kXKzLU023KubBNPJrbRdOzocm6e2dPOO21mMS+CHvjcvOf9PF++
79H9M+7RT2iRRsIi9sEAXe43yAvf2LpSHq28G9uAnytNT4jMLewtcQ2Ht2pF8ps/aOt+gccX5lxD694S
+1BQFD1RkN5DSFa4Z3uONKbgHE3h8KZ4OJTC1J8UiSzmfhd2uf1CoJHbyKOsZokl0kKwm+aeJaov+wjO
@@ -348,7 +348,7 @@
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAAHYcAAB2HAY/l8WUAAAJSSURBVDhPtZJrSJNRGMdf6IN9KbpQn/pUEH2JIoLqQ0Zh
+ YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJSSURBVDhPtZJrSJNRGMdf6IN9KbpQn/pUEH2JIoLqQ0Zh
FqYZRmJG1iKmUqKyLB2pqSm6vC1Nm5GXoeatEsVJ0RASR3eNzegikRq5lrV3857Fr/d9ddlICoL+8OfA
Oef/e57zcIT/os7WLMw302muSGJ2689qqi7A44q8IzjtNYzarzHQm8tZtT8FmRqu6LToMxN+B8qhCbGR
KVcDE85ajKUaxoaryEuL4UVXIudPB5Ko2oy98xjDptXERuz3hsgAOTzlqqMk6yjdllzE90UM9Wp5azlB
diff --git a/PEIS/View/Enrollment/IEnrollmentPersonView.cs b/PEIS/View/Enrollment/IEnrollmentPersonView.cs
index c5869d2..99b5fc2 100644
--- a/PEIS/View/Enrollment/IEnrollmentPersonView.cs
+++ b/PEIS/View/Enrollment/IEnrollmentPersonView.cs
@@ -28,7 +28,7 @@ namespace PEIS.View.Enrollment
{
// 获取登记列表
event EventHandler> GetRegItems;
- void ShowRegItems(List items);
+ void ShowRegItems(List items, int code);
// 获取登记信息
event EventHandler> GetRegInfo;
diff --git a/PEIS/View/Exam/ITotalView.cs b/PEIS/View/Exam/ITotalView.cs
index 4e63055..a9c550d 100644
--- a/PEIS/View/Exam/ITotalView.cs
+++ b/PEIS/View/Exam/ITotalView.cs
@@ -55,7 +55,7 @@ namespace PEIS.View.Exam
///
event EventHandler> Finish;
- void ShowFinish(bool status);
+ void ShowFinish(int status);
///
/// 修改是否允许微信查看报告
diff --git a/PEIS/View/Exam/PartForm.cs b/PEIS/View/Exam/PartForm.cs
index 03f7955..725d429 100644
--- a/PEIS/View/Exam/PartForm.cs
+++ b/PEIS/View/Exam/PartForm.cs
@@ -1323,7 +1323,7 @@ namespace PEIS.View.Exam
{
if (_examPart.VerifyTime != null || _examPart.GiveUpTime != null || _examPart.ID <= 0) return;
if (_patient.FinishTime != null || _patient.ID <= 0) return;
- _conclusion.Add(new ExamConclusion()
+ _conclusion.Insert(0, new ExamConclusion()
{
PID = _examPart.ID,
EID = _examPart.EID,
diff --git a/PEIS/View/Exam/TotalForm.cs b/PEIS/View/Exam/TotalForm.cs
index 46d502b..cb05fe8 100644
--- a/PEIS/View/Exam/TotalForm.cs
+++ b/PEIS/View/Exam/TotalForm.cs
@@ -584,9 +584,9 @@ namespace PEIS.View.Exam
///
public event EventHandler> Finish;
- public void ShowFinish(bool status)
+ public void ShowFinish(int status)
{
- Global.MsgInfo(status ? @"完结成功!" : "完结失败,请重试!");
+ Global.MsgInfo(status == 1 ? @"完结成功!" : status == -1 ? "取消完结成功!" : "操作失败,请重试!");
if (DgvPatient.GetFocusedRow() is EnrollmentPatient selected)
{
GetPatient?.Invoke(this, new Args