From 95e004d1202ca74f5852f8be5d03c77c7616d0d6 Mon Sep 17 00:00:00 2001 From: leomo Date: Wed, 21 Sep 2022 22:34:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E7=8F=AD=E4=BA=BA=E5=91=98=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=20=E6=94=B6=E8=B4=B9=E5=8A=9F=E8=83=BD=E7=95=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AIMS/AIMS.csproj | 25 +- AIMS/AIMS.xml | 2 +- .../frmAnasRecordBillNew.Designer.cs | 54 +- .../AnasRecordBill/frmAnasRecordBillNew.cs | 15 +- .../oldSystemCode/frmChargRecordPrint.cs | 57 + .../frmChargRecordPrint.designer.cs | 1259 ++++++++++++++++ .../oldSystemCode/frmChargRecordPrint.resx | 1313 +++++++++++++++++ .../UI/frmOperationSchedulePlan.cs | 12 +- .../PrescriptionDocument.Designer.cs | 1147 ++++++++++++++ AIMS/OremrUserControl/PrescriptionDocument.cs | 62 + .../PrescriptionDocument.resx | 120 ++ AIMS/OremrUserControl/UText.cs | 218 +++ AIMS/ReportManager/ReportDataHelper.cs | 4 +- .../ReportTemplate/OperationPlanReport.rdlc | 7 +- AIMSEntity/OldEntity/BLL/Person.cs | 26 + 15 files changed, 4292 insertions(+), 29 deletions(-) create mode 100644 AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.cs create mode 100644 AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.designer.cs create mode 100644 AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.resx create mode 100644 AIMS/OremrUserControl/PrescriptionDocument.Designer.cs create mode 100644 AIMS/OremrUserControl/PrescriptionDocument.cs create mode 100644 AIMS/OremrUserControl/PrescriptionDocument.resx create mode 100644 AIMS/OremrUserControl/UText.cs diff --git a/AIMS/AIMS.csproj b/AIMS/AIMS.csproj index 2830d20..27e0282 100644 --- a/AIMS/AIMS.csproj +++ b/AIMS/AIMS.csproj @@ -348,6 +348,12 @@ frmAnasRecordHistory.cs + + Form + + + frmChargRecordPrint.cs + Form @@ -408,6 +414,12 @@ frmTR.cs + + UserControl + + + PrescriptionDocument.cs + Component @@ -507,6 +519,9 @@ frmFactOutputLiquidsNew.cs + + Component + Form @@ -1140,6 +1155,9 @@ frmAnasRecordHistory.cs + + frmChargRecordPrint.cs + frmGoodsBillRecord.cs @@ -1170,6 +1188,9 @@ frmTR.cs + + PrescriptionDocument.cs + frmSchedulePlan2.cs @@ -1433,9 +1454,7 @@ Settings.settings True - - PreserveNewest - + diff --git a/AIMS/AIMS.xml b/AIMS/AIMS.xml index 9d8902e..4da87c0 100644 --- a/AIMS/AIMS.xml +++ b/AIMS/AIMS.xml @@ -2,6 +2,6 @@ Data Source=.;Initial Catalog=AIMSDB_SXTLYY;User ID=sa;Password=Test2020; - Data Source=.;Initial Catalog=AIMSDB_DATA;User ID=sa;Password=123456; + Data Source=.;Initial Catalog=AIMSDB_DATA;User ID=sa;Password=Test2020; Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.7)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl2))));Persist Security Info=True;User ID=smview;Password=i39; diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.Designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.Designer.cs index 13efc7c..da55c80 100644 --- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.Designer.cs +++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.Designer.cs @@ -46,6 +46,7 @@ this.btnOperationInfo = new System.Windows.Forms.Button(); this.btnSelectPatient = new System.Windows.Forms.Button(); this.panel4 = new System.Windows.Forms.Panel(); + this.btnChage = new System.Windows.Forms.Button(); this.lblSpo2 = new System.Windows.Forms.Label(); this.lblRESP = new System.Windows.Forms.Label(); this.lblDia = new System.Windows.Forms.Label(); @@ -440,6 +441,7 @@ // panel4 // this.panel4.BackColor = System.Drawing.Color.White; + this.panel4.Controls.Add(this.btnChage); this.panel4.Controls.Add(this.lblSpo2); this.panel4.Controls.Add(this.lblRESP); this.panel4.Controls.Add(this.lblDia); @@ -469,12 +471,33 @@ this.panel4.Size = new System.Drawing.Size(160, 859); this.panel4.TabIndex = 3; // + // btnChage + // + this.btnChage.BackColor = System.Drawing.Color.Transparent; + this.btnChage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.btnChage.Cursor = System.Windows.Forms.Cursors.Hand; + this.btnChage.Dock = System.Windows.Forms.DockStyle.Bottom; + this.btnChage.FlatAppearance.BorderSize = 0; + this.btnChage.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnChage.Font = new System.Drawing.Font("微软雅黑", 11F); + this.btnChage.ForeColor = System.Drawing.Color.DimGray; + this.btnChage.Image = global::AIMS.Properties.Resources.麻醉医嘱; + this.btnChage.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnChage.Location = new System.Drawing.Point(0, 459); + this.btnChage.Name = "btnChage"; + this.btnChage.Size = new System.Drawing.Size(160, 50); + this.btnChage.TabIndex = 24; + this.btnChage.Text = " 收费记录"; + this.btnChage.UseVisualStyleBackColor = false; + this.btnChage.Visible = false; + this.btnChage.Click += new System.EventHandler(this.btnChage_Click); + // // lblSpo2 // this.lblSpo2.AutoSize = true; this.lblSpo2.Font = new System.Drawing.Font("微软雅黑", 23F); this.lblSpo2.ForeColor = System.Drawing.Color.Teal; - this.lblSpo2.Location = new System.Drawing.Point(63, 408); + this.lblSpo2.Location = new System.Drawing.Point(63, 399); this.lblSpo2.Name = "lblSpo2"; this.lblSpo2.Size = new System.Drawing.Size(43, 40); this.lblSpo2.TabIndex = 9; @@ -485,7 +508,7 @@ this.lblRESP.AutoSize = true; this.lblRESP.Font = new System.Drawing.Font("微软雅黑", 23F); this.lblRESP.ForeColor = System.Drawing.Color.Teal; - this.lblRESP.Location = new System.Drawing.Point(63, 317); + this.lblRESP.Location = new System.Drawing.Point(63, 308); this.lblRESP.Name = "lblRESP"; this.lblRESP.Size = new System.Drawing.Size(43, 40); this.lblRESP.TabIndex = 7; @@ -496,7 +519,7 @@ this.lblDia.AutoSize = true; this.lblDia.Font = new System.Drawing.Font("微软雅黑", 23F); this.lblDia.ForeColor = System.Drawing.Color.Teal; - this.lblDia.Location = new System.Drawing.Point(43, 226); + this.lblDia.Location = new System.Drawing.Point(43, 217); this.lblDia.Name = "lblDia"; this.lblDia.Size = new System.Drawing.Size(82, 40); this.lblDia.TabIndex = 5; @@ -507,7 +530,7 @@ this.lblPR.AutoSize = true; this.lblPR.Font = new System.Drawing.Font("微软雅黑", 23F); this.lblPR.ForeColor = System.Drawing.Color.Teal; - this.lblPR.Location = new System.Drawing.Point(63, 135); + this.lblPR.Location = new System.Drawing.Point(63, 126); this.lblPR.Name = "lblPR"; this.lblPR.Size = new System.Drawing.Size(43, 40); this.lblPR.TabIndex = 3; @@ -518,7 +541,7 @@ this.lblHR.AutoSize = true; this.lblHR.Font = new System.Drawing.Font("微软雅黑", 23F); this.lblHR.ForeColor = System.Drawing.Color.Teal; - this.lblHR.Location = new System.Drawing.Point(63, 44); + this.lblHR.Location = new System.Drawing.Point(63, 35); this.lblHR.Name = "lblHR"; this.lblHR.Size = new System.Drawing.Size(43, 40); this.lblHR.TabIndex = 1; @@ -670,7 +693,7 @@ this.label9.BackColor = System.Drawing.Color.White; this.label9.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label9.ForeColor = System.Drawing.Color.DimGray; - this.label9.Location = new System.Drawing.Point(37, 382); + this.label9.Location = new System.Drawing.Point(37, 376); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(95, 24); this.label9.TabIndex = 10; @@ -682,7 +705,7 @@ this.label8.BackColor = System.Drawing.Color.White; this.label8.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label8.ForeColor = System.Drawing.Color.DimGray; - this.label8.Location = new System.Drawing.Point(29, 291); + this.label8.Location = new System.Drawing.Point(29, 285); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(110, 24); this.label8.TabIndex = 8; @@ -694,7 +717,7 @@ this.label6.BackColor = System.Drawing.Color.White; this.label6.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label6.ForeColor = System.Drawing.Color.DimGray; - this.label6.Location = new System.Drawing.Point(21, 200); + this.label6.Location = new System.Drawing.Point(21, 194); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(127, 24); this.label6.TabIndex = 4; @@ -706,7 +729,7 @@ this.label10.BackColor = System.Drawing.Color.White; this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label10.ForeColor = System.Drawing.Color.DimGray; - this.label10.Location = new System.Drawing.Point(49, 450); + this.label10.Location = new System.Drawing.Point(49, 441); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(70, 17); this.label10.TabIndex = 2; @@ -718,7 +741,7 @@ this.label7.BackColor = System.Drawing.Color.White; this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label7.ForeColor = System.Drawing.Color.DimGray; - this.label7.Location = new System.Drawing.Point(47, 359); + this.label7.Location = new System.Drawing.Point(47, 350); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(74, 17); this.label7.TabIndex = 2; @@ -730,7 +753,7 @@ this.label5.BackColor = System.Drawing.Color.White; this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label5.ForeColor = System.Drawing.Color.DimGray; - this.label5.Location = new System.Drawing.Point(39, 268); + this.label5.Location = new System.Drawing.Point(39, 259); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(91, 17); this.label5.TabIndex = 2; @@ -742,7 +765,7 @@ this.label3.BackColor = System.Drawing.Color.White; this.label3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label3.ForeColor = System.Drawing.Color.DimGray; - this.label3.Location = new System.Drawing.Point(44, 177); + this.label3.Location = new System.Drawing.Point(44, 168); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(81, 17); this.label3.TabIndex = 2; @@ -754,7 +777,7 @@ this.label2.BackColor = System.Drawing.Color.White; this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label2.ForeColor = System.Drawing.Color.DimGray; - this.label2.Location = new System.Drawing.Point(44, 86); + this.label2.Location = new System.Drawing.Point(44, 77); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(81, 17); this.label2.TabIndex = 2; @@ -766,7 +789,7 @@ this.label4.BackColor = System.Drawing.Color.White; this.label4.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label4.ForeColor = System.Drawing.Color.DimGray; - this.label4.Location = new System.Drawing.Point(29, 109); + this.label4.Location = new System.Drawing.Point(29, 103); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(110, 24); this.label4.TabIndex = 2; @@ -778,7 +801,7 @@ this.label1.BackColor = System.Drawing.Color.White; this.label1.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.label1.ForeColor = System.Drawing.Color.DimGray; - this.label1.Location = new System.Drawing.Point(29, 18); + this.label1.Location = new System.Drawing.Point(29, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(110, 24); this.label1.TabIndex = 0; @@ -1921,5 +1944,6 @@ private System.Windows.Forms.Label label7; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label3; + private System.Windows.Forms.Button btnChage; } } \ No newline at end of file diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.cs index 14c5416..d8eaed7 100644 --- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.cs +++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBillNew.cs @@ -74,6 +74,12 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI private void frmAnasRecordBillNew_Load(object sender, EventArgs e) { + //系统演示 收费功能 + if (PublicMethod.OperatorNo=="admin") + { + btnChage.Visible = true; + } + labOperatorName.Text = "(" + AIMSExtension.PublicMethod.OperatorNo + ")" + " " + AIMSExtension.PublicMethod.OperatorName; if (NowRoom != null) lblRoom.Text = NowRoom.Name; circularProgress1.Location = new Point((panel8.Width - circularProgress1.Width) / 2, (panel8.Height - circularProgress1.Height) / 2); @@ -1874,7 +1880,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI private void btnsjzx_Click(object sender, EventArgs e) { - MessageBox.Show("该功能正在维护 。。。", "系统提示"); + MessageBox.Show("未连接到服务器 请联系管理员或稍后再试!", "系统提示"); } private void btnqxqd_Click(object sender, EventArgs e) { @@ -1887,6 +1893,13 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI frm.BringToFront(); } } + private void btnChage_Click(object sender, EventArgs e) + { + frmChargRecordPrint frmchargRecord = new frmChargRecordPrint(_record); + frmchargRecord.TemplateType = "麻醉"; + frmchargRecord.Show(); + frmchargRecord.BringToFront(); + } #endregion } diff --git a/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.cs b/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.cs new file mode 100644 index 0000000..1e23370 --- /dev/null +++ b/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.cs @@ -0,0 +1,57 @@ +using AIMS.PublicUI.BLL; +using DevComponents.DotNetBar; +using DrawGraph; +using System; +using System.Collections.Generic; +using System.Data; +using System.Diagnostics; +using System.Drawing; +using System.Drawing.Printing; +using System.Linq; +using System.Windows.Forms; + +namespace AIMS.OperationDoing.AnasRecordBill +{ + public partial class frmChargRecordPrint : Form + { + #region 公共成员 + public OperationRecord _operationRecord; + public Person _worker; + public string TemplateType; + public string DeptId; + public string OpDrugs; + public DateTime? OperatorTime; + #endregion + + public frmChargRecordPrint(OperationRecord operationRecord) + { + InitializeComponent(); + _operationRecord = operationRecord; + } + + private void frmChargRecordPrint_Load(object sender, EventArgs e) + { + + lblName.Text = _operationRecord.Name; + lblInHospitalNo.Text = _operationRecord.InHospitalNo; + labsex.Text = _operationRecord.Sex; + } + + private void buttonX2_Click(object sender, EventArgs e) + { + dgvOrders.ClearSelection(); + PrescriptionDocument doc = new PrescriptionDocument(_operationRecord, dgvtEMPOperationInfos.CurrentRow); + doc.Location = new Point(15, 0); + panelAnescost.Controls.Add(doc); + dgvChargsRecord.Visible = false; + } + + private void btnClose_Click(object sender, EventArgs e) + { + label113.Text = "麻醉收费"; + dgvOrders.Tag = null; + dgvOrders.DataSource = null; + dgvChargsRecord.Visible = true; + } + } +} diff --git a/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.designer.cs b/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.designer.cs new file mode 100644 index 0000000..8259afa --- /dev/null +++ b/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.designer.cs @@ -0,0 +1,1259 @@ +using System.Windows.Forms; +namespace AIMS.OperationDoing.AnasRecordBill +{ + partial class frmChargRecordPrint + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChargRecordPrint)); + this.panel2 = new System.Windows.Forms.Panel(); + this.panel3 = new System.Windows.Forms.Panel(); + this.label6 = new System.Windows.Forms.Label(); + this.labsex = new System.Windows.Forms.Label(); + this.TxtJLName = new DevComponents.DotNetBar.Controls.TextBoxX(); + this.TxtOperatorName = new DevComponents.DotNetBar.Controls.TextBoxX(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.lblInHospitalNo = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.lblName = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.lblOperatorTime = new System.Windows.Forms.Label(); + this.btnShowHistoryLog = new DevComponents.DotNetBar.ButtonX(); + this.btnUploadFees = new DevComponents.DotNetBar.ButtonX(); + this.btndel = new DevComponents.DotNetBar.ButtonX(); + this.btnUpLoadHis = new DevComponents.DotNetBar.ButtonX(); + this.buttonX2 = new DevComponents.DotNetBar.ButtonX(); + this.buttonX3 = new DevComponents.DotNetBar.ButtonX(); + this.panel1 = new System.Windows.Forms.Panel(); + this.paneloperation = new System.Windows.Forms.Panel(); + this.paneloperationcost = new System.Windows.Forms.Panel(); + this.dgvtEMPOperationInfos = new System.Windows.Forms.DataGridView(); + this.DId = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.DUnit = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.usage = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Drugmoney = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.groupno = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.xzyy = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.panelAnescost = new System.Windows.Forms.Panel(); + this.dgvChargsRecord = new System.Windows.Forms.DataGridView(); + this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Code = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.ChargName = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Unit = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.number = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.price = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.money = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.ordersn = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.execDept = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.kaidept = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.收费单据号 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.btnClose = new DevComponents.DotNetBar.ButtonX(); + this.btndelorder = new DevComponents.DotNetBar.ButtonX(); + this.btnAdd = new DevComponents.DotNetBar.ButtonX(); + this.btnPrint = new DevComponents.DotNetBar.ButtonX(); + this.buttonX4 = new DevComponents.DotNetBar.ButtonX(); + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.dgvOrders = new System.Windows.Forms.DataGridView(); + this.orderno = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.panel51 = new System.Windows.Forms.Panel(); + this.panel68 = new System.Windows.Forms.Panel(); + this.label36 = new System.Windows.Forms.Label(); + this.btnUploadFeesDrug = new DevComponents.DotNetBar.ButtonX(); + this.btnCancelDrugFees = new DevComponents.DotNetBar.ButtonX(); + this.lblDrugs = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.buttonX5 = new DevComponents.DotNetBar.ButtonX(); + this.panel391 = new System.Windows.Forms.Panel(); + this.label4 = new System.Windows.Forms.Label(); + this.label113 = new System.Windows.Forms.Label(); + this.btnUploadFeesCharg = new DevComponents.DotNetBar.ButtonX(); + this.btnCancelOpeFees = new DevComponents.DotNetBar.ButtonX(); + this.lblCharg = new System.Windows.Forms.Label(); + this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.panel2.SuspendLayout(); + this.panel3.SuspendLayout(); + this.panel1.SuspendLayout(); + this.paneloperation.SuspendLayout(); + this.paneloperationcost.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvtEMPOperationInfos)).BeginInit(); + this.panelAnescost.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvChargsRecord)).BeginInit(); + this.groupBox1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dgvOrders)).BeginInit(); + this.panel51.SuspendLayout(); + this.panel68.SuspendLayout(); + this.panel391.SuspendLayout(); + this.SuspendLayout(); + // + // panel2 + // + this.panel2.BackColor = System.Drawing.Color.White; + this.panel2.Controls.Add(this.panel3); + this.panel2.Controls.Add(this.btnShowHistoryLog); + this.panel2.Controls.Add(this.btnUploadFees); + this.panel2.Controls.Add(this.btndel); + this.panel2.Controls.Add(this.btnUpLoadHis); + this.panel2.Dock = System.Windows.Forms.DockStyle.Top; + this.panel2.Location = new System.Drawing.Point(0, 0); + this.panel2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(1484, 38); + this.panel2.TabIndex = 1; + // + // panel3 + // + this.panel3.Controls.Add(this.label6); + this.panel3.Controls.Add(this.labsex); + this.panel3.Controls.Add(this.TxtJLName); + this.panel3.Controls.Add(this.TxtOperatorName); + this.panel3.Controls.Add(this.label2); + this.panel3.Controls.Add(this.label3); + this.panel3.Controls.Add(this.label8); + this.panel3.Controls.Add(this.lblInHospitalNo); + this.panel3.Controls.Add(this.label7); + this.panel3.Controls.Add(this.lblName); + this.panel3.Controls.Add(this.label1); + this.panel3.Controls.Add(this.lblOperatorTime); + this.panel3.Location = new System.Drawing.Point(12, 5); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(723, 28); + this.panel3.TabIndex = 16; + // + // label6 + // + this.label6.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(233, 5); + this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(41, 19); + this.label6.TabIndex = 23; + this.label6.Text = "性别:"; + // + // labsex + // + this.labsex.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labsex.AutoSize = true; + this.labsex.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labsex.ForeColor = System.Drawing.Color.Blue; + this.labsex.Location = new System.Drawing.Point(276, 5); + this.labsex.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.labsex.Name = "labsex"; + this.labsex.Size = new System.Drawing.Size(0, 19); + this.labsex.TabIndex = 24; + // + // TxtJLName + // + // + // + // + this.TxtJLName.Border.BackColor = System.Drawing.SystemColors.Desktop; + this.TxtJLName.Border.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtJLName.Border.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(227)))), ((int)(((byte)(231))))); + this.TxtJLName.Border.BorderBottomWidth = 1; + this.TxtJLName.Border.BorderColor = System.Drawing.SystemColors.Desktop; + this.TxtJLName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtJLName.Border.BorderLeftWidth = 1; + this.TxtJLName.Border.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtJLName.Border.BorderRightWidth = 1; + this.TxtJLName.Border.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtJLName.Border.BorderTopWidth = 1; + this.TxtJLName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.TxtJLName.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.TxtJLName.Location = new System.Drawing.Point(773, 4); + this.TxtJLName.Name = "TxtJLName"; + this.TxtJLName.Size = new System.Drawing.Size(110, 22); + this.TxtJLName.TabIndex = 22; + this.TxtJLName.Visible = false; + // + // TxtOperatorName + // + // + // + // + this.TxtOperatorName.Border.BackColor = System.Drawing.SystemColors.Desktop; + this.TxtOperatorName.Border.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtOperatorName.Border.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(227)))), ((int)(((byte)(231))))); + this.TxtOperatorName.Border.BorderBottomWidth = 1; + this.TxtOperatorName.Border.BorderColor = System.Drawing.SystemColors.Desktop; + this.TxtOperatorName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtOperatorName.Border.BorderLeftWidth = 1; + this.TxtOperatorName.Border.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtOperatorName.Border.BorderRightWidth = 1; + this.TxtOperatorName.Border.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.TxtOperatorName.Border.BorderTopWidth = 1; + this.TxtOperatorName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.TxtOperatorName.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.TxtOperatorName.Location = new System.Drawing.Point(597, 4); + this.TxtOperatorName.Name = "TxtOperatorName"; + this.TxtOperatorName.Size = new System.Drawing.Size(110, 22); + this.TxtOperatorName.TabIndex = 22; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label2.Location = new System.Drawing.Point(718, 6); + this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(54, 20); + this.label2.TabIndex = 0; + this.label2.Text = "确认人:"; + this.label2.Visible = false; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(542, 6); + this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(54, 20); + this.label3.TabIndex = 0; + this.label3.Text = "开嘱人:"; + // + // label8 + // + this.label8.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(94, 5); + this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(55, 19); + this.label8.TabIndex = 0; + this.label8.Text = "住院号:"; + // + // lblInHospitalNo + // + this.lblInHospitalNo.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.lblInHospitalNo.AutoSize = true; + this.lblInHospitalNo.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblInHospitalNo.ForeColor = System.Drawing.Color.Blue; + this.lblInHospitalNo.Location = new System.Drawing.Point(145, 5); + this.lblInHospitalNo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblInHospitalNo.Name = "lblInHospitalNo"; + this.lblInHospitalNo.Size = new System.Drawing.Size(0, 19); + this.lblInHospitalNo.TabIndex = 0; + // + // label7 + // + this.label7.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(2, 5); + this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(41, 19); + this.label7.TabIndex = 0; + this.label7.Text = "患者:"; + // + // lblName + // + this.lblName.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.lblName.AutoSize = true; + this.lblName.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblName.ForeColor = System.Drawing.Color.Blue; + this.lblName.Location = new System.Drawing.Point(41, 5); + this.lblName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblName.Name = "lblName"; + this.lblName.Size = new System.Drawing.Size(0, 19); + this.lblName.TabIndex = 0; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(341, 5); + this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(72, 20); + this.label1.TabIndex = 0; + this.label1.Text = "记录时间 :"; + // + // lblOperatorTime + // + this.lblOperatorTime.AutoSize = true; + this.lblOperatorTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblOperatorTime.Location = new System.Drawing.Point(412, 5); + this.lblOperatorTime.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblOperatorTime.Name = "lblOperatorTime"; + this.lblOperatorTime.Size = new System.Drawing.Size(0, 20); + this.lblOperatorTime.TabIndex = 0; + // + // btnShowHistoryLog + // + this.btnShowHistoryLog.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnShowHistoryLog.Location = new System.Drawing.Point(1253, 5); + this.btnShowHistoryLog.Name = "btnShowHistoryLog"; + this.btnShowHistoryLog.Size = new System.Drawing.Size(77, 28); + this.btnShowHistoryLog.TabIndex = 15; + this.btnShowHistoryLog.Text = "历史记录"; + // + // btnUploadFees + // + this.btnUploadFees.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnUploadFees.Location = new System.Drawing.Point(975, 7); + this.btnUploadFees.Name = "btnUploadFees"; + this.btnUploadFees.Size = new System.Drawing.Size(77, 28); + this.btnUploadFees.TabIndex = 15; + this.btnUploadFees.Text = "上传收费"; + this.btnUploadFees.Visible = false; + // + // btndel + // + this.btndel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btndel.Location = new System.Drawing.Point(803, 8); + this.btndel.Name = "btndel"; + this.btndel.Size = new System.Drawing.Size(60, 28); + this.btndel.TabIndex = 14; + this.btndel.Text = "删除"; + // + // btnUpLoadHis + // + this.btnUpLoadHis.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnUpLoadHis.Location = new System.Drawing.Point(909, 7); + this.btnUpLoadHis.Name = "btnUpLoadHis"; + this.btnUpLoadHis.Size = new System.Drawing.Size(60, 28); + this.btnUpLoadHis.TabIndex = 10; + this.btnUpLoadHis.Text = "保存"; + // + // buttonX2 + // + this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonX2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.buttonX2.Location = new System.Drawing.Point(311, 3); + this.buttonX2.Name = "buttonX2"; + this.buttonX2.Size = new System.Drawing.Size(77, 28); + this.buttonX2.TabIndex = 15; + this.buttonX2.Text = "打印处方"; + this.buttonX2.Click += new System.EventHandler(this.buttonX2_Click); + // + // buttonX3 + // + this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonX3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.buttonX3.Location = new System.Drawing.Point(637, 3); + this.buttonX3.Name = "buttonX3"; + this.buttonX3.Size = new System.Drawing.Size(77, 28); + this.buttonX3.TabIndex = 14; + this.buttonX3.Text = "费用模板"; + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.White; + this.panel1.Controls.Add(this.paneloperation); + this.panel1.Controls.Add(this.panel51); + this.panel1.Controls.Add(this.panel2); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(1484, 770); + this.panel1.TabIndex = 296; + // + // paneloperation + // + this.paneloperation.Controls.Add(this.paneloperationcost); + this.paneloperation.Controls.Add(this.panelAnescost); + this.paneloperation.Dock = System.Windows.Forms.DockStyle.Fill; + this.paneloperation.Location = new System.Drawing.Point(0, 75); + this.paneloperation.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.paneloperation.Name = "paneloperation"; + this.paneloperation.Size = new System.Drawing.Size(1484, 695); + this.paneloperation.TabIndex = 1380; + // + // paneloperationcost + // + this.paneloperationcost.BackColor = System.Drawing.Color.PaleTurquoise; + this.paneloperationcost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.paneloperationcost.Controls.Add(this.dgvtEMPOperationInfos); + this.paneloperationcost.Dock = System.Windows.Forms.DockStyle.Fill; + this.paneloperationcost.Location = new System.Drawing.Point(824, 0); + this.paneloperationcost.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.paneloperationcost.Name = "paneloperationcost"; + this.paneloperationcost.Size = new System.Drawing.Size(660, 695); + this.paneloperationcost.TabIndex = 12; + // + // dgvtEMPOperationInfos + // + this.dgvtEMPOperationInfos.AllowUserToDeleteRows = false; + this.dgvtEMPOperationInfos.AllowUserToResizeColumns = false; + this.dgvtEMPOperationInfos.AllowUserToResizeRows = false; + this.dgvtEMPOperationInfos.BackgroundColor = System.Drawing.Color.White; + this.dgvtEMPOperationInfos.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.dgvtEMPOperationInfos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dgvtEMPOperationInfos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.DId, + this.dataGridViewTextBoxColumn2, + this.dataGridViewTextBoxColumn3, + this.DUnit, + this.dataGridViewTextBoxColumn4, + this.usage, + this.dataGridViewTextBoxColumn5, + this.Drugmoney, + this.groupno, + this.xzyy}); + dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 10F); + dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.LightCyan; + dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvtEMPOperationInfos.DefaultCellStyle = dataGridViewCellStyle7; + this.dgvtEMPOperationInfos.Dock = System.Windows.Forms.DockStyle.Fill; + this.dgvtEMPOperationInfos.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter; + this.dgvtEMPOperationInfos.GridColor = System.Drawing.Color.Black; + this.dgvtEMPOperationInfos.Location = new System.Drawing.Point(0, 0); + this.dgvtEMPOperationInfos.MultiSelect = false; + this.dgvtEMPOperationInfos.Name = "dgvtEMPOperationInfos"; + this.dgvtEMPOperationInfos.RowHeadersWidth = 15; + this.dgvtEMPOperationInfos.RowTemplate.Height = 23; + this.dgvtEMPOperationInfos.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.dgvtEMPOperationInfos.ShowCellErrors = false; + this.dgvtEMPOperationInfos.Size = new System.Drawing.Size(658, 693); + this.dgvtEMPOperationInfos.TabIndex = 1; + // + // DId + // + this.DId.HeaderText = "id"; + this.DId.MinimumWidth = 6; + this.DId.Name = "DId"; + this.DId.Visible = false; + this.DId.Width = 50; + // + // dataGridViewTextBoxColumn2 + // + this.dataGridViewTextBoxColumn2.DataPropertyName = "XMBH"; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.Gainsboro; + this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle1; + this.dataGridViewTextBoxColumn2.HeaderText = "编码"; + this.dataGridViewTextBoxColumn2.MinimumWidth = 6; + this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; + this.dataGridViewTextBoxColumn2.ReadOnly = true; + this.dataGridViewTextBoxColumn2.Width = 60; + // + // dataGridViewTextBoxColumn3 + // + this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + this.dataGridViewTextBoxColumn3.DataPropertyName = "DrugName"; + this.dataGridViewTextBoxColumn3.HeaderText = "药品名称"; + this.dataGridViewTextBoxColumn3.MinimumWidth = 6; + this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; + // + // DUnit + // + this.DUnit.HeaderText = "单位"; + this.DUnit.MinimumWidth = 6; + this.DUnit.Name = "DUnit"; + this.DUnit.Width = 50; + // + // dataGridViewTextBoxColumn4 + // + this.dataGridViewTextBoxColumn4.DataPropertyName = "XMSL"; + dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 9F); + this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle2; + this.dataGridViewTextBoxColumn4.HeaderText = "数量"; + this.dataGridViewTextBoxColumn4.MinimumWidth = 6; + this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; + this.dataGridViewTextBoxColumn4.Width = 40; + // + // usage + // + dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9F); + this.usage.DefaultCellStyle = dataGridViewCellStyle3; + this.usage.HeaderText = "用法"; + this.usage.MinimumWidth = 6; + this.usage.Name = "usage"; + this.usage.Width = 60; + // + // dataGridViewTextBoxColumn5 + // + this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.dataGridViewTextBoxColumn5.DataPropertyName = "DrugPrice"; + dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 9F); + this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle4; + this.dataGridViewTextBoxColumn5.HeaderText = "单价"; + this.dataGridViewTextBoxColumn5.MinimumWidth = 6; + this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; + this.dataGridViewTextBoxColumn5.ReadOnly = true; + this.dataGridViewTextBoxColumn5.Width = 50; + // + // Drugmoney + // + this.Drugmoney.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 9F); + this.Drugmoney.DefaultCellStyle = dataGridViewCellStyle5; + this.Drugmoney.HeaderText = "金额"; + this.Drugmoney.MinimumWidth = 6; + this.Drugmoney.Name = "Drugmoney"; + this.Drugmoney.Width = 50; + // + // groupno + // + dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 9F); + this.groupno.DefaultCellStyle = dataGridViewCellStyle6; + this.groupno.HeaderText = "单号"; + this.groupno.MinimumWidth = 6; + this.groupno.Name = "groupno"; + this.groupno.Width = 70; + // + // xzyy + // + this.xzyy.HeaderText = "限制"; + this.xzyy.MinimumWidth = 6; + this.xzyy.Name = "xzyy"; + this.xzyy.ReadOnly = true; + this.xzyy.Width = 60; + // + // panelAnescost + // + this.panelAnescost.BackColor = System.Drawing.Color.White; + this.panelAnescost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panelAnescost.Controls.Add(this.dgvChargsRecord); + this.panelAnescost.Controls.Add(this.btnClose); + this.panelAnescost.Controls.Add(this.btndelorder); + this.panelAnescost.Controls.Add(this.btnAdd); + this.panelAnescost.Controls.Add(this.btnPrint); + this.panelAnescost.Controls.Add(this.buttonX4); + this.panelAnescost.Controls.Add(this.groupBox1); + this.panelAnescost.Dock = System.Windows.Forms.DockStyle.Left; + this.panelAnescost.Location = new System.Drawing.Point(0, 0); + this.panelAnescost.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.panelAnescost.Name = "panelAnescost"; + this.panelAnescost.Size = new System.Drawing.Size(824, 695); + this.panelAnescost.TabIndex = 10; + // + // dgvChargsRecord + // + this.dgvChargsRecord.AllowUserToDeleteRows = false; + this.dgvChargsRecord.AllowUserToResizeColumns = false; + this.dgvChargsRecord.AllowUserToResizeRows = false; + this.dgvChargsRecord.BackgroundColor = System.Drawing.Color.White; + this.dgvChargsRecord.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.dgvChargsRecord.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dgvChargsRecord.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.Id, + this.Code, + this.ChargName, + this.Unit, + this.number, + this.price, + this.money, + this.ordersn, + this.execDept, + this.kaidept, + this.收费单据号}); + dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Window; + dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 10F); + dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.LightCyan; + dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dgvChargsRecord.DefaultCellStyle = dataGridViewCellStyle9; + this.dgvChargsRecord.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter; + this.dgvChargsRecord.GridColor = System.Drawing.Color.Black; + this.dgvChargsRecord.Location = new System.Drawing.Point(0, 0); + this.dgvChargsRecord.MultiSelect = false; + this.dgvChargsRecord.Name = "dgvChargsRecord"; + this.dgvChargsRecord.RowHeadersWidth = 15; + this.dgvChargsRecord.RowTemplate.Height = 23; + this.dgvChargsRecord.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.dgvChargsRecord.ShowCellErrors = false; + this.dgvChargsRecord.Size = new System.Drawing.Size(823, 710); + this.dgvChargsRecord.TabIndex = 0; + // + // Id + // + this.Id.HeaderText = "Id"; + this.Id.MinimumWidth = 6; + this.Id.Name = "Id"; + this.Id.Visible = false; + this.Id.Width = 125; + // + // Code + // + dataGridViewCellStyle8.BackColor = System.Drawing.Color.Gainsboro; + this.Code.DefaultCellStyle = dataGridViewCellStyle8; + this.Code.HeaderText = "编码"; + this.Code.MinimumWidth = 6; + this.Code.Name = "Code"; + this.Code.ReadOnly = true; + this.Code.Width = 65; + // + // ChargName + // + this.ChargName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + this.ChargName.HeaderText = "收费名称"; + this.ChargName.MinimumWidth = 6; + this.ChargName.Name = "ChargName"; + this.ChargName.Resizable = System.Windows.Forms.DataGridViewTriState.True; + // + // Unit + // + this.Unit.HeaderText = "单位"; + this.Unit.MinimumWidth = 6; + this.Unit.Name = "Unit"; + this.Unit.Width = 50; + // + // number + // + this.number.HeaderText = "数量"; + this.number.MinimumWidth = 6; + this.number.Name = "number"; + this.number.Width = 50; + // + // price + // + this.price.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.price.HeaderText = "单价"; + this.price.MinimumWidth = 6; + this.price.Name = "price"; + this.price.ReadOnly = true; + this.price.Width = 60; + // + // money + // + this.money.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.money.HeaderText = "金额"; + this.money.MinimumWidth = 6; + this.money.Name = "money"; + this.money.Width = 60; + // + // ordersn + // + this.ordersn.HeaderText = "医嘱号"; + this.ordersn.MinimumWidth = 6; + this.ordersn.Name = "ordersn"; + this.ordersn.Width = 80; + // + // execDept + // + this.execDept.HeaderText = "执行科室"; + this.execDept.MinimumWidth = 6; + this.execDept.Name = "execDept"; + this.execDept.Width = 90; + // + // kaidept + // + this.kaidept.HeaderText = "开单科室"; + this.kaidept.MinimumWidth = 6; + this.kaidept.Name = "kaidept"; + this.kaidept.Width = 90; + // + // 收费单据号 + // + this.收费单据号.HeaderText = "收费单据号"; + this.收费单据号.MinimumWidth = 6; + this.收费单据号.Name = "收费单据号"; + this.收费单据号.ReadOnly = true; + this.收费单据号.Visible = false; + this.收费单据号.Width = 125; + // + // btnClose + // + this.btnClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnClose.Location = new System.Drawing.Point(563, 397); + this.btnClose.Name = "btnClose"; + this.btnClose.Size = new System.Drawing.Size(151, 53); + this.btnClose.TabIndex = 22; + this.btnClose.Text = "关闭"; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // btndelorder + // + this.btndelorder.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btndelorder.Location = new System.Drawing.Point(639, 253); + this.btndelorder.Name = "btndelorder"; + this.btndelorder.Size = new System.Drawing.Size(70, 66); + this.btndelorder.TabIndex = 23; + this.btndelorder.Text = "删除"; + // + // btnAdd + // + this.btnAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnAdd.Location = new System.Drawing.Point(563, 253); + this.btnAdd.Name = "btnAdd"; + this.btnAdd.Size = new System.Drawing.Size(70, 66); + this.btnAdd.TabIndex = 24; + this.btnAdd.Text = "新增"; + // + // btnPrint + // + this.btnPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnPrint.Location = new System.Drawing.Point(563, 325); + this.btnPrint.Name = "btnPrint"; + this.btnPrint.Size = new System.Drawing.Size(70, 66); + this.btnPrint.TabIndex = 25; + this.btnPrint.Text = "保存"; + // + // buttonX4 + // + this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonX4.Location = new System.Drawing.Point(639, 325); + this.buttonX4.Name = "buttonX4"; + this.buttonX4.Size = new System.Drawing.Size(70, 66); + this.buttonX4.TabIndex = 26; + this.buttonX4.Text = "打印"; + // + // groupBox1 + // + this.groupBox1.Controls.Add(this.dgvOrders); + this.groupBox1.Location = new System.Drawing.Point(553, 6); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Size = new System.Drawing.Size(161, 232); + this.groupBox1.TabIndex = 27; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "处方单列表"; + // + // dgvOrders + // + this.dgvOrders.AllowUserToAddRows = false; + this.dgvOrders.AllowUserToDeleteRows = false; + this.dgvOrders.AllowUserToResizeColumns = false; + this.dgvOrders.AllowUserToResizeRows = false; + this.dgvOrders.BackgroundColor = System.Drawing.Color.White; + this.dgvOrders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dgvOrders.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.orderno}); + this.dgvOrders.Location = new System.Drawing.Point(4, 25); + this.dgvOrders.Name = "dgvOrders"; + this.dgvOrders.ReadOnly = true; + this.dgvOrders.RowHeadersWidth = 51; + this.dgvOrders.RowTemplate.Height = 23; + this.dgvOrders.Size = new System.Drawing.Size(157, 201); + this.dgvOrders.TabIndex = 0; + // + // orderno + // + this.orderno.DataPropertyName = "orderNo"; + this.orderno.HeaderText = "处方号"; + this.orderno.MinimumWidth = 6; + this.orderno.Name = "orderno"; + this.orderno.ReadOnly = true; + this.orderno.Width = 125; + // + // panel51 + // + this.panel51.Controls.Add(this.panel68); + this.panel51.Controls.Add(this.panel391); + this.panel51.Dock = System.Windows.Forms.DockStyle.Top; + this.panel51.Location = new System.Drawing.Point(0, 38); + this.panel51.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.panel51.Name = "panel51"; + this.panel51.Size = new System.Drawing.Size(1484, 37); + this.panel51.TabIndex = 1379; + // + // panel68 + // + this.panel68.BackColor = System.Drawing.Color.White; + this.panel68.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel68.Controls.Add(this.label36); + this.panel68.Controls.Add(this.btnUploadFeesDrug); + this.panel68.Controls.Add(this.buttonX2); + this.panel68.Controls.Add(this.btnCancelDrugFees); + this.panel68.Controls.Add(this.lblDrugs); + this.panel68.Controls.Add(this.label5); + this.panel68.Controls.Add(this.buttonX5); + this.panel68.Dock = System.Windows.Forms.DockStyle.Left; + this.panel68.Location = new System.Drawing.Point(824, 0); + this.panel68.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.panel68.Name = "panel68"; + this.panel68.Size = new System.Drawing.Size(659, 37); + this.panel68.TabIndex = 298; + // + // label36 + // + this.label36.AutoSize = true; + this.label36.Font = new System.Drawing.Font("微软雅黑", 13F); + this.label36.Location = new System.Drawing.Point(4, 5); + this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label36.Name = "label36"; + this.label36.Size = new System.Drawing.Size(82, 24); + this.label36.TabIndex = 0; + this.label36.Text = "药品收费"; + // + // btnUploadFeesDrug + // + this.btnUploadFeesDrug.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnUploadFeesDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnUploadFeesDrug.Location = new System.Drawing.Point(395, 3); + this.btnUploadFeesDrug.Name = "btnUploadFeesDrug"; + this.btnUploadFeesDrug.Size = new System.Drawing.Size(94, 28); + this.btnUploadFeesDrug.TabIndex = 15; + this.btnUploadFeesDrug.Text = "药品上传收费"; + // + // btnCancelDrugFees + // + this.btnCancelDrugFees.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnCancelDrugFees.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnCancelDrugFees.Location = new System.Drawing.Point(538, 3); + this.btnCancelDrugFees.Name = "btnCancelDrugFees"; + this.btnCancelDrugFees.Size = new System.Drawing.Size(63, 28); + this.btnCancelDrugFees.TabIndex = 15; + this.btnCancelDrugFees.Text = "撤销收费"; + // + // lblDrugs + // + this.lblDrugs.AutoSize = true; + this.lblDrugs.Font = new System.Drawing.Font("微软雅黑", 13F); + this.lblDrugs.ForeColor = System.Drawing.Color.Red; + this.lblDrugs.Location = new System.Drawing.Point(105, 5); + this.lblDrugs.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblDrugs.Name = "lblDrugs"; + this.lblDrugs.Size = new System.Drawing.Size(0, 24); + this.lblDrugs.TabIndex = 0; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 13F); + this.label5.Location = new System.Drawing.Point(81, 5); + this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(14, 24); + this.label5.TabIndex = 0; + this.label5.Text = ":"; + // + // buttonX5 + // + this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.buttonX5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.buttonX5.Location = new System.Drawing.Point(492, 3); + this.buttonX5.Name = "buttonX5"; + this.buttonX5.Size = new System.Drawing.Size(42, 28); + this.buttonX5.TabIndex = 15; + this.buttonX5.Text = "刷新"; + // + // panel391 + // + this.panel391.BackColor = System.Drawing.Color.White; + this.panel391.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel391.Controls.Add(this.label4); + this.panel391.Controls.Add(this.label113); + this.panel391.Controls.Add(this.btnUploadFeesCharg); + this.panel391.Controls.Add(this.btnCancelOpeFees); + this.panel391.Controls.Add(this.buttonX3); + this.panel391.Controls.Add(this.lblCharg); + this.panel391.Dock = System.Windows.Forms.DockStyle.Left; + this.panel391.Location = new System.Drawing.Point(0, 0); + this.panel391.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.panel391.Name = "panel391"; + this.panel391.Size = new System.Drawing.Size(824, 37); + this.panel391.TabIndex = 0; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("微软雅黑", 13F); + this.label4.Location = new System.Drawing.Point(80, 6); + this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(14, 24); + this.label4.TabIndex = 16; + this.label4.Text = ":"; + // + // label113 + // + this.label113.AutoSize = true; + this.label113.Font = new System.Drawing.Font("微软雅黑", 13F); + this.label113.Location = new System.Drawing.Point(1, 6); + this.label113.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label113.Name = "label113"; + this.label113.Size = new System.Drawing.Size(82, 24); + this.label113.TabIndex = 0; + this.label113.Text = "手术收费"; + // + // btnUploadFeesCharg + // + this.btnUploadFeesCharg.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnUploadFeesCharg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnUploadFeesCharg.Location = new System.Drawing.Point(534, 3); + this.btnUploadFeesCharg.Name = "btnUploadFeesCharg"; + this.btnUploadFeesCharg.Size = new System.Drawing.Size(93, 28); + this.btnUploadFeesCharg.TabIndex = 15; + this.btnUploadFeesCharg.Text = "治疗上传收费"; + this.btnUploadFeesCharg.Visible = false; + // + // btnCancelOpeFees + // + this.btnCancelOpeFees.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnCancelOpeFees.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnCancelOpeFees.Location = new System.Drawing.Point(724, 3); + this.btnCancelOpeFees.Name = "btnCancelOpeFees"; + this.btnCancelOpeFees.Size = new System.Drawing.Size(77, 28); + this.btnCancelOpeFees.TabIndex = 15; + this.btnCancelOpeFees.Text = "撤销收费"; + // + // lblCharg + // + this.lblCharg.AutoSize = true; + this.lblCharg.Font = new System.Drawing.Font("微软雅黑", 13F); + this.lblCharg.ForeColor = System.Drawing.Color.Red; + this.lblCharg.Location = new System.Drawing.Point(92, 6); + this.lblCharg.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblCharg.Name = "lblCharg"; + this.lblCharg.Size = new System.Drawing.Size(0, 24); + this.lblCharg.TabIndex = 0; + // + // dataGridViewTextBoxColumn1 + // + this.dataGridViewTextBoxColumn1.HeaderText = "id"; + this.dataGridViewTextBoxColumn1.MinimumWidth = 6; + this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; + this.dataGridViewTextBoxColumn1.Visible = false; + this.dataGridViewTextBoxColumn1.Width = 60; + // + // dataGridViewTextBoxColumn6 + // + this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.dataGridViewTextBoxColumn6.DataPropertyName = "DrugPrice"; + dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 9F); + this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle10; + this.dataGridViewTextBoxColumn6.HeaderText = "Id"; + this.dataGridViewTextBoxColumn6.MinimumWidth = 6; + this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; + this.dataGridViewTextBoxColumn6.ReadOnly = true; + this.dataGridViewTextBoxColumn6.Visible = false; + this.dataGridViewTextBoxColumn6.Width = 80; + // + // dataGridViewTextBoxColumn7 + // + this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.dataGridViewTextBoxColumn7.DataPropertyName = "DrugPrice"; + dataGridViewCellStyle11.Font = new System.Drawing.Font("微软雅黑", 9F); + this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle11; + this.dataGridViewTextBoxColumn7.HeaderText = "编码"; + this.dataGridViewTextBoxColumn7.MinimumWidth = 6; + this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; + this.dataGridViewTextBoxColumn7.ReadOnly = true; + this.dataGridViewTextBoxColumn7.Visible = false; + this.dataGridViewTextBoxColumn7.Width = 110; + // + // dataGridViewTextBoxColumn8 + // + this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 9F); + this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle12; + this.dataGridViewTextBoxColumn8.HeaderText = "收费名称"; + this.dataGridViewTextBoxColumn8.MinimumWidth = 6; + this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8"; + this.dataGridViewTextBoxColumn8.ReadOnly = true; + this.dataGridViewTextBoxColumn8.Resizable = System.Windows.Forms.DataGridViewTriState.True; + this.dataGridViewTextBoxColumn8.Visible = false; + this.dataGridViewTextBoxColumn8.Width = 330; + // + // dataGridViewTextBoxColumn9 + // + dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 9F); + this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle13; + this.dataGridViewTextBoxColumn9.HeaderText = "数量"; + this.dataGridViewTextBoxColumn9.MinimumWidth = 6; + this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9"; + this.dataGridViewTextBoxColumn9.ReadOnly = true; + this.dataGridViewTextBoxColumn9.Resizable = System.Windows.Forms.DataGridViewTriState.True; + this.dataGridViewTextBoxColumn9.Visible = false; + this.dataGridViewTextBoxColumn9.Width = 80; + // + // dataGridViewTextBoxColumn10 + // + this.dataGridViewTextBoxColumn10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + this.dataGridViewTextBoxColumn10.HeaderText = "单价"; + this.dataGridViewTextBoxColumn10.MinimumWidth = 6; + this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10"; + this.dataGridViewTextBoxColumn10.ReadOnly = true; + this.dataGridViewTextBoxColumn10.Resizable = System.Windows.Forms.DataGridViewTriState.True; + this.dataGridViewTextBoxColumn10.Visible = false; + // + // dataGridViewTextBoxColumn11 + // + this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + dataGridViewCellStyle14.BackColor = System.Drawing.Color.Gainsboro; + this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle14; + this.dataGridViewTextBoxColumn11.HeaderText = "单位"; + this.dataGridViewTextBoxColumn11.MinimumWidth = 6; + this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11"; + this.dataGridViewTextBoxColumn11.ReadOnly = true; + this.dataGridViewTextBoxColumn11.Resizable = System.Windows.Forms.DataGridViewTriState.True; + this.dataGridViewTextBoxColumn11.Visible = false; + // + // dataGridViewTextBoxColumn12 + // + this.dataGridViewTextBoxColumn12.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + dataGridViewCellStyle15.BackColor = System.Drawing.Color.Gainsboro; + this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle15; + this.dataGridViewTextBoxColumn12.HeaderText = "单价"; + this.dataGridViewTextBoxColumn12.MinimumWidth = 6; + this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12"; + this.dataGridViewTextBoxColumn12.ReadOnly = true; + this.dataGridViewTextBoxColumn12.Resizable = System.Windows.Forms.DataGridViewTriState.True; + // + // dataGridViewTextBoxColumn13 + // + this.dataGridViewTextBoxColumn13.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + this.dataGridViewTextBoxColumn13.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn13.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn13.MinimumWidth = 6; + this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13"; + this.dataGridViewTextBoxColumn13.ReadOnly = true; + this.dataGridViewTextBoxColumn13.Resizable = System.Windows.Forms.DataGridViewTriState.True; + // + // dataGridViewTextBoxColumn14 + // + this.dataGridViewTextBoxColumn14.HeaderText = "医嘱号"; + this.dataGridViewTextBoxColumn14.MinimumWidth = 6; + this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14"; + this.dataGridViewTextBoxColumn14.ReadOnly = true; + this.dataGridViewTextBoxColumn14.Width = 80; + // + // dataGridViewTextBoxColumn15 + // + this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.dataGridViewTextBoxColumn15.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn15.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn15.MinimumWidth = 6; + this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15"; + this.dataGridViewTextBoxColumn15.ReadOnly = true; + this.dataGridViewTextBoxColumn15.Width = 90; + // + // dataGridViewTextBoxColumn16 + // + this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.dataGridViewTextBoxColumn16.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn16.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn16.MinimumWidth = 6; + this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16"; + this.dataGridViewTextBoxColumn16.ReadOnly = true; + this.dataGridViewTextBoxColumn16.Width = 90; + // + // dataGridViewTextBoxColumn17 + // + this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + this.dataGridViewTextBoxColumn17.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn17.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn17.MinimumWidth = 6; + this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17"; + this.dataGridViewTextBoxColumn17.ReadOnly = true; + this.dataGridViewTextBoxColumn17.Width = 80; + // + // dataGridViewTextBoxColumn18 + // + this.dataGridViewTextBoxColumn18.HeaderText = "执行科室"; + this.dataGridViewTextBoxColumn18.MinimumWidth = 6; + this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18"; + this.dataGridViewTextBoxColumn18.Width = 90; + // + // dataGridViewTextBoxColumn19 + // + this.dataGridViewTextBoxColumn19.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn19.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn19.MinimumWidth = 6; + this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19"; + this.dataGridViewTextBoxColumn19.Width = 90; + // + // dataGridViewTextBoxColumn20 + // + this.dataGridViewTextBoxColumn20.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn20.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn20.MinimumWidth = 6; + this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20"; + this.dataGridViewTextBoxColumn20.Width = 90; + // + // dataGridViewTextBoxColumn21 + // + this.dataGridViewTextBoxColumn21.DataPropertyName = "orderNo"; + this.dataGridViewTextBoxColumn21.HeaderText = "处方号"; + this.dataGridViewTextBoxColumn21.MinimumWidth = 6; + this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21"; + this.dataGridViewTextBoxColumn21.ReadOnly = true; + this.dataGridViewTextBoxColumn21.Width = 125; + // + // frmChargRecordPrint + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoScroll = true; + this.BackColor = System.Drawing.SystemColors.AppWorkspace; + this.ClientSize = new System.Drawing.Size(1484, 770); + this.Controls.Add(this.panel1); + this.DoubleBuffered = true; + this.Font = new System.Drawing.Font("微软雅黑", 10F); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4); + this.Name = "frmChargRecordPrint"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "费用清单"; + this.Load += new System.EventHandler(this.frmChargRecordPrint_Load); + this.panel2.ResumeLayout(false); + this.panel3.ResumeLayout(false); + this.panel3.PerformLayout(); + this.panel1.ResumeLayout(false); + this.paneloperation.ResumeLayout(false); + this.paneloperationcost.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.dgvtEMPOperationInfos)).EndInit(); + this.panelAnescost.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.dgvChargsRecord)).EndInit(); + this.groupBox1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.dgvOrders)).EndInit(); + this.panel51.ResumeLayout(false); + this.panel68.ResumeLayout(false); + this.panel68.PerformLayout(); + this.panel391.ResumeLayout(false); + this.panel391.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.Panel panel2; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Panel panel51; + private System.Windows.Forms.Panel panel68; + private System.Windows.Forms.Label label36; + private System.Windows.Forms.Panel panel391; + private System.Windows.Forms.Label label113; + private System.Windows.Forms.Panel paneloperation; + private System.Windows.Forms.Panel panelAnescost; + private DevComponents.DotNetBar.ButtonX btndel; + private DevComponents.DotNetBar.ButtonX btnUpLoadHis; + private DevComponents.DotNetBar.ButtonX buttonX3; + private DataGridView dgvChargsRecord; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9; + private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; + private Panel panel3; + private Label label3; + private Label label1; + private Label lblOperatorTime; + private DevComponents.DotNetBar.Controls.TextBoxX TxtOperatorName; + private DevComponents.DotNetBar.ButtonX buttonX2; + private Panel paneloperationcost; + private DataGridView dgvtEMPOperationInfos; + private DevComponents.DotNetBar.ButtonX buttonX5; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn11; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn12; + public DevComponents.DotNetBar.ButtonX btnUploadFees; + private DevComponents.DotNetBar.ButtonX btnCancelDrugFees; + private DevComponents.DotNetBar.ButtonX btnCancelOpeFees; + private DevComponents.DotNetBar.ButtonX btnClose; + private DevComponents.DotNetBar.ButtonX btndelorder; + private DevComponents.DotNetBar.ButtonX btnAdd; + private DevComponents.DotNetBar.ButtonX btnPrint; + private DevComponents.DotNetBar.ButtonX buttonX4; + private GroupBox groupBox1; + private DataGridView dgvOrders; + private DataGridViewTextBoxColumn orderno; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn13; + public DevComponents.DotNetBar.ButtonX btnShowHistoryLog; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn14; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn15; + private DevComponents.DotNetBar.Controls.TextBoxX TxtJLName; + private Label label2; + private Label lblDrugs; + private Label label5; + private Label lblCharg; + private Label label4; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn16; + private Label label7; + private Label lblName; + public DevComponents.DotNetBar.ButtonX btnUploadFeesCharg; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn17; + private DevComponents.DotNetBar.ButtonX btnUploadFeesDrug; + private Label label8; + private Label lblInHospitalNo; + private Label label6; + private Label labsex; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn18; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn19; + private DataGridViewTextBoxColumn DId; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; + private DataGridViewTextBoxColumn DUnit; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; + private DataGridViewTextBoxColumn usage; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; + private DataGridViewTextBoxColumn Drugmoney; + private DataGridViewTextBoxColumn groupno; + private DataGridViewTextBoxColumn xzyy; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn20; + private DataGridViewTextBoxColumn dataGridViewTextBoxColumn21; + private DataGridViewTextBoxColumn Id; + private DataGridViewTextBoxColumn Code; + private DataGridViewTextBoxColumn ChargName; + private DataGridViewTextBoxColumn Unit; + private DataGridViewTextBoxColumn number; + private DataGridViewTextBoxColumn price; + private DataGridViewTextBoxColumn money; + private DataGridViewTextBoxColumn ordersn; + private DataGridViewTextBoxColumn execDept; + private DataGridViewTextBoxColumn kaidept; + private DataGridViewTextBoxColumn 收费单据号; + } +} \ No newline at end of file diff --git a/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.resx b/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.resx new file mode 100644 index 0000000..44be917 --- /dev/null +++ b/AIMS/OperationDoing/oldSystemCode/frmChargRecordPrint.resx @@ -0,0 +1,1313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + 25 + + + + + AAABAAEAgIAAAAEAIAAoCAEAFgAAACgAAACAAAAAAAEAAAEAIAAAAAAAAAABACUWAAAlFgAAAAAAAAAA + AAAAAAAAAAAAAAAAAAD///8A////AP///wD///8B////D////0v///+J////vf///9/////1/////v// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////+////9f///9////+9////if// + /0v///8P////Af///wD///8A////AAAAAAAAAAAAAAAAAAAAAAD///8A////AP///wD///8A////Ff// + /0n///+J////tP///9H////l////8v////v////+//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////7////7////8v///+X////R////tP///4n///9J////Ff///wD///8A////AP// + /wAAAAAAAAAAAP///wD///8A////A////yf///9n////sf///+7///////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////7v///7L///9o////KP///wP///8A////AAAAAAD///8A////AP///wP///8i////hv// + /9n//////////v////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////+/////////9r///+H////Iv// + /wP///8A////AP///wD///8A////Jf///4D////b/////f////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////f///9v///+A////Jf///wD///8A////AP///xX///9n////1v// + //z///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////////////P// + /9b///9n////Ff///wD///8B////S////7T///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////7T///9M////Af///w////+N////8/// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////9P///47///8Q////S////7X///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////tv///0z///+J////0f// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////R////iv///7r////k//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////+X///+9////2f// + //D///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////8////+D////t////+P////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////7////9P// + //r////9//////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////7////9//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/v3//fz7//v5+P/79/X/+vf1//v49//8+/n//v38/////v////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////+//37+v/59PH/9e3o//Ln + 4P/y59//8+rk//fx7P/7+Pb//v39//////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////v///v3/+/f0//Tq4//u3NH/6tPE/+nSwv/s2cz/8eTa//jy7f/9+/r///7+//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////v7+//79/P/58uz/8d3P/+jI + sv/lu5//5bqd/+fDqv/r0b//9Ojf//v49v/+/f3///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/f3/+/r5//bq4v/u0Lv/5baV/+Opgf/jqH//5bCN/+jApf/w283/+PHt//z6 + +f/+/v7///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////7+//38+//59fP/8uLW/+vE + qf/kqH//451t/+Odbf/jo3j/5rGO/+zNuv/z5t//+fTy//79/f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/f3//Pn4//bv6//v2Mr/6LqZ/+Sebv/jlWD/45Zh/+Oaaf/kpXv/58Cn/+3c + 0f/17+v//fz7//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////39/f/7+Pb/8unk/+vR + wP/ms5D/45lm/+OTXP/jlF3/45di/+Ofcf/jt5j/6NLD//Lp4//9+/r///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////f39//r29P/w5N3/6Mu3/+Wviv/jl2P/45Jb/+OTXP/jlmD/45xr/+Gv + jf/lybb/8eTc//z6+f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////9/Pz/+vTy/+7f + 1v/lxa//46uF/+OWYv/jklv/45Nc/+OVXv/immj/4KqE/+XDq//w4NT//Pn3//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////38+//58/D/7NvQ/+PAqP/iqID/45Zh/+OSW//jk1z/45Re/+OY + Zv/hpXz/5b2h//Dczf/79vT///7////+/v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////v///fv7//ny + 7v/q18r/4ruh/+GlfP/jlmH/45Jb/+OTXP/jlF7/45hk/+Ojdv/nuJj/79bE//fw7P/8+/v//v7+//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////9+/v/+PHt/+rUxf/huJv/4aN5/+OVYP/jk1v/45Nc/+OT + Xf/jl2L/5KBw/+eyjf/szbf/8+ff//n29P/+/fz///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////37 + +v/48Or/6tG//+G0lP/hoXX/45Vg/+OTW//jk1z/45Nd/+OVYP/km2n/5qqB/+nDqP/t3dH/9vHs//38 + +/////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////7//fv5//jv6P/qzrn/4rGO/+Gfcv/jlV//45Nb/+OT + XP/jk1z/45Re/+SXYv/ko3X/5bma/+jSwv/z6+T//Pv5//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////+ + /v/9+vj/+e7m/+3Ls//lrof/455u/+OVX//jk1v/45Nc/+OTXP/jk13/45Rf/+Odbv/isY7/5cm1//Hl + 3f/8+ff///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////v79//z49f/46uD/7sar/+eqgP/knGr/45Re/+OT + XP/jk1z/45Nc/+KSXP/jk13/4ppp/+Krhf/lwan/8eHV//z49f///v7///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///9/Pv/+fPw//Tj1//sv6D/5qR2/+SZZf/jlF3/45Nc/+OTXP/iklv/4ZFb/+KSXP/imGb/46Z9/+a7 + nv/x3M7/+/by//79/f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////7///7+///+/v///v7///7+///+ + /v///v7///7+///+/v////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////z6+f/27ur/8NvO/+m4lf/lnm3/45Vg/+OT + XP/jk1z/4pJb/+CRWv/gkFn/4ZFa/+OXY//konX/57WS//DWxP/58uz//Pv6///+/v////////////// + //////////////////////////////////////////////////////////////////////////////// + ///+/v7//v39//38+v/8+ff//Pj2//z39f/89/T//Pf1//z49v/8+ff//Pv5//39/P/+/v7///////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////v7/+vf2//Pp4//s1MT/57GM/+SaZ//jlF3/4pNc/+KSW//hkVv/35Ba/96PWf/gkFn/4pVf/+Sd + bP/mrIP/7My0//Po4P/59vT//v39//////////////////////////////////////////////////// + //////////////////////////////////////////////38/P/7+Pb/9/Ds//Pn4P/y49n/8uHW//Hg + 1f/x4db/8ePZ//Ln3//17un/+ff1//z7+//+/v7///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////+/v/59fP/8OTc/+jNuv/krIb/45hl/+OT + XP/iklv/4ZFb/+CQWv/ej1n/3Y5Y/96PWf/hklz/45hl/+Wkd//owKT/7dzQ//Xv6//9/Pv///////// + //////////////////////////////////////////////////////////////////////////////7+ + /v/9/Pr/+vXy//br5f/v3tL/6dC+/+jJtP/oxq//58Wt/+fGr//nybT/6M+8/+3azP/06eD/+fPu//z6 + +P/+/v3///7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////7+//n08f/u39b/5May/+Opgv/jmGT/45Nc/+KSW//hklv/35Fa/96PWv/cj1n/3o9a/+GR + XP/ilWH/5J5v/+S2lv/p0cH/8+ni//37+f////////////////////////////////////////////// + ///////////////////////////////////+/v3//Pv5//n07//z597/7tfI/+nHsP/luZv/5LKQ/+Sw + jP/kr4v/47CM/+OykP/kt5f/6cGm/+/Svf/z4dT/9+/p//v49//+/f3///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////+/v///v7/+PLu/+3b0P/iwar/4aZ9/+OX + Y//jk1z/4pNc/+CTXv/flF//3pNf/92TX//fk17/4ZNd/+KVX//im2r/4q6J/+bIs//x49n//Pn4//// + ///////////////////////////////////////////////////////////////////////////+//79 + +//59fL/8+jh/+3Wxv/owqj/5LGN/+Olev/ioHL/4p5v/+Kebv/in2//4qBx/+Ojdv/lq4L/6rqX/+7N + tv/y4dX/9/Ht//z6+v///v7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////7+//79/v/38Oz/69fK/+C8ov/hpHn/45Zi/+OTXf/ilWD/4Jpq/96fcv/fonf/4KJ3/+Ke + b//jmWb/45dj/+OaaP/hqID/5cCm//He0v/8+fb///////////////////////////////////////// + /////////////////////////////////////////fz6//Xu6P/r2cv/58Oq/+Svi//ioXT/4plo/+KX + Y//ilmH/4pZh/+KWYf/il2P/45hm/+SdbP/mp3r/6bmX/+zOuf/y5Nn/+vf0//7+/f////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////+/v/+/fz//fr5//z59v/99/T//ffz//338//99/P//ffz//338//99/P//ffz//33 + 8//99/P//ffz//338//99/P//ffz//338//99/P//ffz//338//99/P//ff0//349f/9+vj//v38///+ + /v///////////////////////////////////////////////////v7//v7+//bv6v/q1MT/4Lea/+Ch + df/jlmL/45Re/+KYZf/go3r/4K+N/+K2l//luJn/5q2G/+Whc//kmmj/45pn/+Kkef/mu5z/8drL//v2 + 8////////////////////v7//fz6//z59//8+PX//ffz//338//99/P//ffz//338//99/P//ffz//33 + 8v/68uv/8eHV/+bJs//js5L/4qF2/+KYZf/jlWD/45Re/+OUXf/jlF3/45Rd/+OUXv/jlV//45Zi/+Sb + af/lqH7/57qb/+3TwP/37uj//Pn4//7+/v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////+/v7//fz8//r28//16+T/9OTZ//Xf + 0P/23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//bc + y//23Mv/9tzM//bczP/13s7/9eHU//Xn3v/69PD//fv7//7+/v////////////////////////////// + ///////////////+/v/+/v3/9+7n/+rQvv/hspL/4Z9y/+KWYf/jlWD/45tr/+Kui//kwaj/6cu3/+zO + uP/pu5z/5ad+/+Odbf/jmWb/46Jz/+e3lP/v1cL/+PHs//z9/P/+/v3///79//37+v/48ev/9OXb//Tg + 0v/13c3/9tzL//bcy//23Mv/9tzL//bcy//23Mv/9tzL//TZxf/tzbX/5rmb/+Opgf/im2r/4pRf/+OT + Xf/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXf/jlF3/45Zh/+Oebv/kq4T/6cKn//Hg1f/38e3//Pv6//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////7+/f/8+vj/9+7p/+3bzv/rzbn/7MSo/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+6/ + n//uv5//7r+f/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+6/n//uv5//7r+f/+3CpP/sx67/7dLA//Xp + 4f/79vT//fz8//////////////////////////////////////////////7+//7+/v/37eX/7M25/+Ku + i//hnW7/4pZh/+OXY//koHL/5rqd/+rSwv/v39T/8uDU/+vIsP/kroj/4p9x/+OZZf/kn27/6LKM/+3O + uP/06uL/+vj3//78/P/9/Pv/+vbz//Lj2P/rz7v/68Ws/+3Aov/uv5//7r+f/+6/n//uv5//7r+f/+6/ + n//uv57/7b6c/+q3k//mrIX/5KFz/+OXY//jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jlF3/4pdj/+OfcP/ls5D/6tLB//Ln4f/79/b///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////v79//z59v/06uP/59DB/+W+ + ov/msIr/6Kl8/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ip + ff/oqX3/6Kl9/+ipff/oqX3/56uB/+axjP/ovaH/7tnL//Xt5//7+Pb////+//////////////////// + /////////////////////v7///7+//js4//uy7T/5KuE/+Kba//jl2L/5Jto/+eoff/rx67/8OHX//Xt + 5//36+T/7NC9/+Oykf/ioXX/45hk/+SaZ//mqn//6cSp/+7f0//28e7//Pr5//r39f/27Ob/7tXE/+e9 + oP/msYz/56qA/+ipfP/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipfP/nqHv/5qZ4/+Whcv/km2j/45Vf/+OT + W//jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jlF7/4pln/+Oqg//lx7L/7uDW//n1 + 8v////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////+/v3/+/j2//Po4f/lzLv/4raY/+Ome//lnWr/5Z1r/+Wda//lnWv/5Z1r/+Wd + a//lnWv/5Z1r/+Wda//lnWv/5Z1r/+Wda//lnWv/5Z1r/+Wda//lnWv/5Z1q/+Wcaf/knWv/5KJ0/+Wu + iP/oyrX/7+HY//jz7////v7////////////////////////////////////////+/v/+/fz/+Org/+/J + r//mqX//45po/+SYZP/mn27/6a+H//DRvf/27Ob/+vXy//nw6//s1cX/4ria/+Gkev/jl2P/45Zg/+Si + dP/muZr/6dLD//Pq5P/69vT/9vDs//Dh1v/qyLD/5rCL/+Wlef/ln27/5Z1q/+Wda//lnWv/5Z1r/+Wd + a//lnWv/5Z1r/+Wdav/lnWr/5Jto/+OYY//jlF7/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jk1z/45Nc/+OTXP/imGT/4ad+/+LBqv/s3NH/+PPw//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////79/f/7+Pb/8+jh/+XL + uf/itpj/5KZ8/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+We + bP/lnmz/5Z5s/+WdbP/lnGn/5Jhj/+OXYv/jm2j/46Z7/+S/pf/r2Mv/9u7p//7+/f////////////// + //////////////////////7//f38//r59//15dn/7saq/+eofP/kmmf/5Jll/+ehcv/qs43/8tjE//ny + 7f/8+ff/+fPv/+3bzf/jvqT/4ah//+OYY//jlF3/451t/+Owjv/myLT/8eXc//jz7v/z6OD/6tTE/+a7 + nf/lp3z/5aBx/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnmz/5Z5s/+WebP/lnWr/5Jlk/+OV + Xv/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OXY//hp37/4cGr/+vc + 0f/48/D///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////v79//v49v/z6eP/59C//+W9ov/nsIr/6Kl8/+ipff/oqX3/6Kl9/+ip + ff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqX3/6Kl9/+ipff/oqHv/56V4/+agcf/kmGT/45Vf/+OX + Y//ioXP/4raY/+nRwP/16uP//v79//////////////////////////////////7+/v/8+/r/9/Pw//Hf + 0v/swaT/56Z5/+WaZf/kmWX/5qN0/+u2kf/028r/+/by//38+//69vL/7uDW/+XGr//irYf/45pm/+OT + XP/jmmj/4qqD/+TAp//w39T/9+/q/+/g1f/lyLL/4q+L/+Sgcf/ln23/56Jy/+ileP/oqHz/6Kl9/+ip + ff/oqX3/6Kl9/+ipff/oqHz/56Z5/+ajc//knGn/45Zg/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jk1z/45Nc/+OTXP/jlF3/45lm/+Kpgf/jxbD/7d7V//j08f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////+/v7//Pr5//fw + 6//u39P/7dO//+/KsP/wxaf/8Mao//DGqP/wxqj/8Mao//DGqP/wxqj/8Mao//DGqP/wxqj/8Mao//DF + qP/wxaj/8MWn/+2/oP/otpP/5KqC/+Obav/jlF//45Zg/+Kebv/hsI7/6Mu3//To3//+/v3///////// + /////////////////////////v39//v49//07ej/7dfH/+m7mv/moXL/5Jhi/+SZZf/lpXf/6rmV//Xe + zf/8+PT//v38//v49v/x6OH/6dC+/+W2lP/kn2//45Zg/+OZZv/jpnv/5rqb//Lczf/47eb/7trN/+O+ + pP/gp3//45xq/+afbf/oqHr/7LWQ/+/Bov/wxaf/8Mao//DGqP/wxqj/8MWn/+7CpP/quZf/5auD/+Of + cf/jlmH/45Jb/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OWYf/knm3/5K+L/+bM + uv/v49v/+fb0//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////7+///+/fz/+/j2//fw6v/26+H/9+fa//jl1//45df/+OXX//jl + 1//45df/+OXX//jl1//45df/+OXX//jl1//45df/+OXX//jk1v/449X/8tnI/+rKs//kt5f/46Fz/+OX + Yv/jlmH/45xr/+Kshv/pxq7/9OXa//78+//////////////////////////////////9/f3/+/b1//Hn + 4P/pz7z/5rOQ/+Sbaf/jlV//45lm/+Smev/ou5n/9N/Q//z49f/+/v3//Pr5//Xv6//u283/6MCj/+Sm + e//jmWb/45ll/+Wjdv/ptpL/89fE//fo3v/u1ML/47eY/+Gidv/jmmf/5qBv/+mtg//wxqn/9t3M//jk + 1v/45df/+OXX//jl1//35Nb/9eDQ/+3Puf/kt5n/4qZ9/+KZZ//jlF3/45Nc/+OTXP/jk1z/45Nc/+OT + XP/jk1z/45Nc/+OTXP/jlV//5Jtq/+WmfP/mupz/6tbI//Lp5P/7+Pb///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////7+ + /v/9/Pv//Pj2//v28v/89e///PTu//z07v/89O7//PTu//z07v/89O7//PTu//z07v/89O7//PTu//z0 + 7v/89O7//PPu//zz7P/26N7/7dfI/+fCqf/lqX//5Jtp/+SXY//jm2n/46h//+nCpf/y4NL/+/j1//79 + /P////7///////////////////////38/P/69fL/7uHY/+bIsv/krYj/45hk/+OTXf/jmWj/46d+/+a9 + n//z4NP//fj2///+/v/9/Pv/+fXz//Lk2v/qyK//5KyF/+Kca//jmWX/5aJy/+mxiv/vzbf/8tvN/+zJ + s//ksI3/4p9w/+OZZv/loXL/6LCL//HPuP/66+H/+/Ps//z07v/89O7//PTu//zz7v/57+f/8t/S/+jI + sv/ks5P/4qJ2/+KYZf/jlV//45Nd/+OTXP/jk1z/45Nc/+OTXP/jlF3/5JZg/+WbaP/kpXn/5bOQ/+nI + sf/w4tj/9/Ht//z7+v////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////+/v/+/v3//v38//79/P/+/Pv//vz7//78 + +//+/Pv//vz7//78+//+/Pv//vz7//78+//+/Pv//vz7//78+//+/Pv//vz6//jz7f/x49j/6s66/+ey + jP/loHH/5Jlm/+OaZv/lpXf/6ryc//DZyP/48u7//Pv6//7+/v///////////////////////fz7//nz + 8P/s3NH/5MGp/+Opgf/jlmL/45Nd/+Kaaf/iqYP/5L+m//Li1//9+ff///////7+/v/8+/r/9uzk/+zP + u//jso//4Z9x/+OZZv/ln2//6KuC/+vApP/syrX/6b2f/+Wqgf/jnGv/45lm/+Sidv/ntJP/8dXC//vz + 7v/++/r//v38//78+//+/fv//vz7//z59v/27eb/7dnM/+jErP/kr4z/4qB0/+KZZv/ilmH/45Vg/+OV + X//jlV//4pVg/+OXY//knGr/5qR4/+axjv/mwqj/69fI//Xt6P/7+Pb//v39//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////+/n2//Xt5v/u2cn/6LmY/+Slef/jmmj/45hj/+Wfbv/otJD/7dC8//Pq + 5P/69/b//v39///////////////////+///9+/r/+PLt/+rXyf/iu6D/4aV8/+OVYf/jklz/4ptr/+Gs + iP/kxK3/8uTb//359/////////7+//7+/f/48Ov/7dTE/+K3mf/gonb/45ll/+SbaP/monX/56+K/+e1 + k//mrYb/5aJz/+SZZf/jmWb/46V8/+W5nP/w2sv/+/bz///+/v///////////////////////v39//r2 + 8//06eL/7tfI/+nErP/kspH/4aV7/+Gfcv/inGz/4ptp/+Kbav/hnW//4aJ2/+Oqg//nt5b/6sau/+3W + xv/y59//+vb0//38/P///v7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////9/Pv/+fTv//Li + 1v/nv6P/46iA/+Kbav/jlmD/5Jlm/+WshP/oxq//7uHY//jz8f/+/fz///////////////////7///37 + +v/48Or/6dLB/+G2mP/honj/45Vg/+OTXP/inW7/4rGP/+TKt//y6N///fr4/////////v7///7///nz + 7//t2cz/4r2k/+Gmff/jmWb/45Zi/+OZZv/jnm//46F0/+Oebv/kmmf/5JZh/+ObaP/jq4X/5cKq//Df + 1P/8+PX///7+/////////////////////////v7//fv6//r18v/16uL/8NvP/+nKtv/juZ3/4rGP/+Os + hv/kqoL/5aqC/+Ouiv/itZb/5cCn/+rOvP/w3dD/9erj//r08f/9+/r///7+//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////79/f/79/T/9Ofd/+fErP/irIf/4p1t/+OVX//jl2H/5KZ8/+W+ + pf/q2c7/9/Dt//78+/////////////////////7//fv5//jv6P/qzrv/4rKR/+Ggc//jlWD/45Nd/+Of + cf/jt5f/59HB//Pr5f/8+/n/////////////////+vXy/+/f1f/lxrL/462K/+Scbf/jlmL/4pVg/+GX + Y//hmGX/4pdj/+SXYv/kmGP/5aJy/+a3lv/pz77/8ujh//z69////v7////////////////////////+ + /v///f3//fr6//r08f/27Ob/8eDV/+zTwv/rzLf/7Mmx/+3Hrf/tx63/68u0/+vQvf/t2Mr/8eLZ//Xs + 5v/59PL//Pv6//7+/f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////////v7+//z5 + 9//26+L/58q1/+Gwjv/hn3H/45Rf/+OVX//jonb/47ib/+jSw//27ej//fz7//////////////////// + /v/9+/j/+O7m/+vLtf/jr4r/4p5w/+OVYP/jlF7/5KN2/+a9oP/r2c3/9u/r//38+/////////////// + ///79/b/8ubf/+nRwf/mt5j/5KJ2/+KYZf/hk13/4JJc/+GTXf/ilF7/45Zg/+SbaP/nqX7/6sOo/+/e + 0v/28e7//fv7///////////////////////////////////////+/v7//fz6//v49v/58u7/9uvk//bn + 3v/25tv/9uXZ//bl2f/259z/9erh//bu6P/48/D/+/f2//37+//+/v7///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////v7//fr4//bt5//nz77/4bWW/+GhdP/jlF7/45Re/+Kf + cv/is5P/58u5//Xr5P/9+/r////////////////////+//37+P/57eX/7cmw/+WshP/jnW3/45Zh/+SY + ZP/nqn//68eu//Dk2//49fP//v38//////////////////z6+f/37ur/793S/+nApv/kp37/4ppp/+GT + Xf/hkVr/4pJb/+KTXP/jlmH/5J5t/+evif/tzbb/9Oni//r4+P/+/f3///////////////////////// + //////////////////////7//v79//37+//8+ff//Pf1//z39P/89/P//Pfz//z39P/8+Pb//Pr5//38 + +//+/f3///7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////+ + /v/9+vn/9+/q/+nVyP/ju5//46R6/+OVYP/jlF7/4p1u/+Kui//mxrD/9eff//36+P////////////// + /////v7//fr3//ns4v/vx6v/56qA/+Sca//kmGP/5Z1r/+myi//w0bz/9u7o//v6+f/+/v7///////// + /////////v39//v28//16OH/68mz/+Osh//hnG7/4ZRf/+KSW//ik1z/45Nd/+OXYv/ioHP/5bST/+/T + wf/48ev//f39//7+/v///////////////////////////////////////////////////v////7+//79 + /P/+/fz//vz8//78/P/+/Pz//vz8//79/P/+/v3//v7+///+/v////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////+//38+v/48u7/7NzS/+fErP/lrIT/5Zpn/+OW + YP/jnGv/5KqE/+jBp//z49j/+/f0//79/f////////////79/P/79vP/9+fd/+7Ep//nqX7/5Z1q/+SZ + ZP/moHD/67eT//LXxP/59PD//f39//7+/v/////////////////+/v7//Pr4//ju6P/sz7z/47CP/+Gf + c//ilWD/4pNb/+OTXP/jk17/45hk/+Kkev/kup7/79jJ//r18P////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////7//vz7//n18v/x5d3/6826/+e0kf/loHD/45hj/+Obaf/lp33/6Lyd//Hez//48+7//Pv6//// + /////////Pv6//jy7f/z4dT/7MCh/+ene//lnGn/5Jll/+WidP/qupj/89vK//z49f/+//////////// + ///////////////////9/Pv/+fLt/+3Vxf/itpj/4aN5/+KWYv/jklv/45Nc/+OVX//jmmj/4amD/+TA + qv/v3tL/+/f0//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////+/f3/+/j3//bt6f/v18j/6bye/+Sk + eP/jmWb/45lm/+WidP/otJD/7tXD//Ts5f/6+Pb///7+///////7+Pf/9ezm/+7Zyf/puZf/5qN0/+Sa + Zv/jmWb/46N3/+m8nP/z3c3//fr3//////////////////////////////////79+//69PD/7drN/+O9 + o//hp3//45dj/+OSW//jlF7/5Jhj/+SfcP/jsZD/5sq4//Hj2//8+ff///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////+/v/++/v/+vbz//Pg1P/pw6j/4qiA/+Kaaf/jl2L/5Jxq/+aqgv/pyrT/8OPa//jz + 8P/+/v3///7+//r28//x5t3/6dC9/+axi//knWv/5Jdi/+OZZv/ipXv/576h//Le0P/9+vj///////// + /////////////////////////v38//r28v/v4Nf/5caw/+Osh//jmWX/45Nb/+OWYP/lnGr/5qh9/+e9 + of/r1sn/8+rl//z6+f////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////+//79/P/8+vj/9OXb/+nI + sf/hrIj/4pxs/+OWYf/jmWX/5KV5/+XCqP/s28//9vDr//7+/P////7/+PPw/+7g1f/lx7L/46qD/+OZ + Zv/jlmD/4ppo/+Cof//mwab/8uDT//37+f/////////////////////////////////+/f3/+/j1//Ho + 4f/p0L//5raU/+Wfbv/klV//45di/+SgcP/mr4j/68mx//Hi2f/38u///fz8//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////v79//38+v/06eD/6M25/+CxkP/hnm//45Zg/+OXYv/joXT/4rqd/+nU + xf/07OX//v38//7+/v/38e3/7NrN/+K/p//hpXz/45dj/+OVYP/im2n/4KqF/+XErP/x4tb//fv5//// + //////////////////////////////7+/v/8+/n/9fDr/+7bzv/pwKP/5qd6/+SaZ//jm2j/5KV6/+a2 + lv/u08H/9u7o//v49//+/v7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////////////////v7//v37//Xs + 5f/p0sH/4LaY/+Kgcv/jlmH/45Zh/+KfcP/gs5T/5868//Tp4f/+/Pv//v7+//bv6f/q1MX/4Lic/+Gi + dv/jlmL/45Vg/+Kca//grYr/5cey//Hk2v/9+/r///////////////////////////////////////38 + +//59vT/8+bc/+vLtP/lsYz/4qN3/+Kid//jrov/58Gp//De0f/69fL//vz8//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////+/v/+/fz/9u7p/+vYyf/ivqL/46R3/+OXYv/jlmH/4p1t/+Cv + i//nybP/8+bc//77+v/+/v7/9u3m/+rQvv/gspT/4Z9y/+OWYf/jlWD/4p1t/+Cxkf/mzLr/8ubf//37 + +v///////////////////////////////////////v79//37+v/37+n/7dfI/+S/pf/hsZL/4rKS/+W/ + pv/q0cL/8+jh//z59////v3///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////+//79 + /P/48u7/7t/U/+bHsf/lq4L/5Jxp/+SXY//jnGv/4qqE/+fEq//y4db//Pn3//79/f/26+T/6824/+Gv + jP/hnW7/45Vg/+OVYf/jnnD/47eZ/+jTxP/z6uT//fz7//////////////////////////////////// + //////7//v79//v28//z5t3/7NXG/+nMuP/qzbj/7dbG//Hj2v/48e3//fz7/////v////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////7//v7+//n18//y5t7/69HA/+ezj//loXL/5Jlm/+Oa + aP/jpnz/6L6h//Dczv/59fL//fv6//fq4f/sy7P/46yF/+Kca//jlWD/45dj/+SidP/mv6T/7NvP//Xv + 6v/+/fz///////////////////////////////////////////////7//fv6//nz7//16+X/9Ofe//Xn + 3v/27OX/+PPu//v59//+/v3///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///+////+/n3//bu6P/w287/6buc/+Wlev/jm2n/45hk/+Ogcf/nt5X/7tTD//Xu6f/7+Pb/+One/+7J + r//lqoD/45tp/+OWYf/kmmj/5qh9/+vJsf/x5dz/+PXx//7+/f////////////////////////////// + ///////////////////+/v3//fz7//z6+P/8+Pb//Pj2//z6+P/9/Pr//v39//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////+/Pv/+vTx//Tj2f/owaf/46mC/+Kc + a//jlmH/45ln/+athv/qybP/8OTc//jy7f/35dn/78er/+eofP/kmmf/5Jhk/+agb//qsYn/8dTB//fv + 6f/8+vj///7+///////////////////////////////////////////////////////+/v7//v38//79 + /P/+/fz//v39//7+/v/+//7///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////7+/f/7+PX/9eng/+fHsP/irYn/4p1v/+OVX//jlmH/5KV7/+a9of/q1MX/8eHV//LY + xf/tv5//56Z4/+SaZv/kmWb/5aJ1/+q1kv/z2sn/+/Tv//79/P////////////////////////////// + ///////////////////////////////////////////+//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////////v7+//z5+P/27OX/58y4/+Gy + kf/hn3L/45Rf/+OUX//jn3H/47CO/+TBqv/qy7f/7Mar/+q1kP/mo3T/5Jll/+OZZ//kpHn/6bmY//Tf + z//89/T///7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////v///fr5//fu6P/o0cH/4beZ/+Gidv/jlF7/45Nd/+KZaf/go3v/4a2M/+W1 + lP/nso3/5qh+/+Sdbf/jl2P/45pp/+Omff/nvJ7/9OHT//359v////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////+/v/9+/r/9/Hs/+rY + y//jvqP/4qZ8/+OVX//iklz/4ZRh/+CYaP/fnG//4qBy/+OgcP/im2n/4ZZi/+KUX//immn/46mC/+a+ + o//z4tb//fn3//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////+//38+//49PD/7uHX/+jIsv/lroj/5Jln/+KUX//hkl7/4JNf/9+V + Yv/gl2P/4ZZi/+CUYP/gk13/4ZNd/+Kba//iq4f/5cKq//Pk2v/9+ff///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////7//v38//r4 + 9f/y6+T/7NPB/+i3lv/koHH/45Zi/+KTXP/gkVv/35Fc/9+SXP/fklz/35Fb/+CSW//hk13/4Zxt/+Gu + jP/lxrH/8+bd//36+P////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////+/v3//Pv5//fz7//w3c7/6cCi/+Slev/jmWb/4pNd/+CR + Wv/fkFr/35Ba/9+QWv/fkFr/4JJb/+GTXf/inW//4rKR/+XLuf/z6eH//fv5//////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /v/+/fz/+/n2//Pk2P/pxaz/4qmB/+Kbaf/hk17/4JBa/96PWf/fkFr/35Ba/+CQWv/gkVz/4ZNe/+Kg + c//jtpj/5tDB//Pr5f/9+/n///////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////79/f/8+/r/9Off/+nKtP/grYn/4Zxt/+KU + X//gkFr/349Z/9+PWf/fkFn/4JBb/+GSXv/jl2T/5KZ7/+a9ov/p18v/9e7q//37+v////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////v7+//38/P/16uP/6c68/+Cykv/hnnH/4pRg/+GRW//gkFr/349Z/96PWf/fkVv/4ZRg/+Sc + a//mrYX/6cat/+3f1f/38u///fz7//////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////v7//v39//bt5//q08T/4bic/+Gh + dP/ilWH/4pJc/+GRW//fkFr/35Ba/+CRXP/ilmL/5aBw/+i0j//tz7n/8ujh//n29f/+/f3///////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////+/v/+/f3/9/Dr/+zazf/kwKf/46V6/+OWYv/jk1z/4pJc/+GRW//hkVv/4pNd/+OY + ZP/lonP/6rmW//HXxf/58+///fz7//7+/v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////79/v/48/H/8OLY/+jL + tv/mrYb/5Jtp/+OVX//jk1z/4pJc/+KSXP/jlF7/45ll/+Wjdv/qu5v/89zM//z49f/+//////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////v7+//r39f/06uT/7tbG/+i2lP/lonP/5Jhj/+OTXf/jk1z/45Nc/+OU + Xv/jmWb/46V6/+m+oP/z39D//fr4//////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////+/v///Pv5//jx + 7f/y4NT/6b+h/+WnfP/jm2j/45Rd/+OTXP/jk1z/45Vf/+OaaP/ip3//58Cm//Pg1P/9+/r///////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////+/fz/+/fz//Xn3v/oxav/4quF/+KcbP/jlF3/45Nc/+OT + XP/jlV//4ptp/+CqhP/mw6z/8uLX//37+v////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////+ + /v/8+ff/9uvj/+jKtf/hsI3/4Z5w/+OUXv/jk1v/45Nc/+OVYP/inGv/4K2K/+bHsv/y5Nr//fz6//// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////7+//36+f/27ef/6M++/+G0lf/hoXX/45Re/+OT + W//jk1z/45Vh/+Kdbv/hsZH/5su5//Lm3v/9/Pv///////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////v7//fv6//fw6//p1cf/4rqf/+Kkev/jlF//45Nb/+OTXP/jlmH/455w/+K1l//o0MD/8+nj//38 + +/////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////v/9/Pr/+PPv/+zc0f/lwqn/46h//+OV + X//jk1v/45Nc/+OWYf/joHL/47ue/+nWyP/07ef//v38//////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////79/P/69vP/8OXe/+rMuP/msIv/5Jpn/+OVXv/jlV//5Jpm/+Wme//mwqn/7NzR//Xw + 7P/+/f3///////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////39//z59//27ur/79jI/+m6 + mv/loHL/45dj/+OXY//ln27/566G/+rLtf/v49v/9/Pw//7+/f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////v7//vz7//r39P/z4dX/68On/+SnfP/jmmj/45pn/+Skdf/otZH/7dTC//Tr + 5f/69/X//v7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////+/fz//Pr5//Xn + 3f/qyLH/4auG/+KcbP/im2r/46d9/+a7nP/w3M7/+fPv//38+/////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////+/f/9/Pv/9u3m/+zTw//jup7/4qqE/+Kogf/js5L/58au//Pl + 2v/7+PX//v7+//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////7+//7+ + /f/58+//8OLY/+nPvv/kwKb/472i/+XFr//q1cX/9uzm//37+f////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////v////v59//27+r/8OTb/+vYyv/p1cb/69rO/+/k + 3P/48/D//v38//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////v38//v59v/59PD/9u7o//Xt5v/27+r/+PTw//z6+f/+/v7///////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////////////////////////v7//v38//38+v/8+vj//Pn3//z6 + +P/9+/r//v39//////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////v7//v7+//7+/v///v3//v79//7+/v////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////8/////v// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////+/////f////P////6//////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////v////0////4P// + //P///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////8////+D///+8////5P////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////l////vf// + /4n////R//////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////////9H///+K////S////7X///////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////tf// + /0z///8P////jf////P///////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////T///+O////D////wH///9L////tP////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////tP// + /0v///8B////AP///xX///9m////1v////z///////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + /////////////////////////////P///9b///9m////Ff///wD///8A////AP///yT///9/////2v// + //z///////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////z////a////f/// + /yT///8A////AP///wD///8A////A////yD///9/////1v/////////+//////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////7/////////1v///3////8g////A////wD///8AAAAAAP///wD///8A////A/// + /yT///9l////sP///+7///////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////7v///7H///9l////JP// + /wP///8A////AAAAAAAAAAAA////AP///wD///8A////AP///xT///9I////iP///7L////P////4/// + //L////7/////v////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////9////+P// + /+/////i////z////7L///+I////SP///xT///8A////AP///wD///8AAAAAAAAAAAAAAAAAAAAAAP// + /wD///8A////AP///wH///8O////R////4P///+4////3/////T////9//////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////r////t////1////7b///+D////Rv///w7///8B////AP// + /wD///8AAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAB4AAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAA + AAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAABgAAAAAAA + AAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAc= + + + \ No newline at end of file diff --git a/AIMS/OperationFront/UI/frmOperationSchedulePlan.cs b/AIMS/OperationFront/UI/frmOperationSchedulePlan.cs index 7daaba7..3ac8ce0 100644 --- a/AIMS/OperationFront/UI/frmOperationSchedulePlan.cs +++ b/AIMS/OperationFront/UI/frmOperationSchedulePlan.cs @@ -3914,7 +3914,7 @@ namespace AIMS.OperationFront.UI } public void ClearSelectDoctor() { - if (RoomCardManage.SelectIds.Count > 0) + if (RoomCardManage.SelectIds != null && RoomCardManage.SelectIds.Count > 0) for (int i = 0; i < RoomCardManage.SelectDgv.Rows.Count;) { DataGridViewRow row = RoomCardManage.SelectDgv.Rows[i]; @@ -4063,8 +4063,8 @@ namespace AIMS.OperationFront.UI } } - - + + private void ToolStripItem2_Click(object sender, EventArgs e) { if (selApply == null || selApply == "") return; @@ -4132,7 +4132,7 @@ namespace AIMS.OperationFront.UI { FrmScheduling2 fw = new FrmScheduling2(); fw.Show(); - } + } #endregion #region ѡԱ @@ -4267,12 +4267,12 @@ namespace AIMS.OperationFront.UI } if (_workerType == workerType.AnesthesiaDoctor) { - SchedulingTable = AIMS.PublicUI.BLL.Person.GetPersonDataTableByDepId(MZKDept[0].Id.Value, "", "ҽ"); + SchedulingTable = AIMS.PublicUI.BLL.Person.GetSchedulingForSelect(dtpSearchTime.Value, "ҽ");//MZKDept[0].Id.Value RoomCardManage.SelectDgv.DataSource = SchedulingTable; } else { - SchedulingTable = AIMS.PublicUI.BLL.Person.GetPersonDataTableByDepId(SSSDept[0].Id.Value, "", "ʿ"); + SchedulingTable = AIMS.PublicUI.BLL.Person.GetSchedulingForSelect(dtpSearchTime.Value, "ʿ");//SSSDept[0].Id.Value RoomCardManage.SelectDgv.DataSource = SchedulingTable; } } diff --git a/AIMS/OremrUserControl/PrescriptionDocument.Designer.cs b/AIMS/OremrUserControl/PrescriptionDocument.Designer.cs new file mode 100644 index 0000000..87b1063 --- /dev/null +++ b/AIMS/OremrUserControl/PrescriptionDocument.Designer.cs @@ -0,0 +1,1147 @@ +namespace AIMS.OperationDoing.AnasRecordBill +{ + partial class PrescriptionDocument + { + /// + /// 必需的设计器变量。 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 清理所有正在使用的资源。 + /// + /// 如果应释放托管资源,为 true;否则为 false。 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region 组件设计器生成的代码 + + /// + /// 设计器支持所需的方法 - 不要 + /// 使用代码编辑器修改此方法的内容。 + /// + private void InitializeComponent() + { + this.panel1 = new System.Windows.Forms.Panel(); + this.label23 = new System.Windows.Forms.Label(); + this.labDoctorName = new AIMS.OremrUserControl.UText(); + this.uText4 = new AIMS.OremrUserControl.UText(); + this.uText3 = new AIMS.OremrUserControl.UText(); + this.uText2 = new AIMS.OremrUserControl.UText(); + this.label30 = new System.Windows.Forms.Label(); + this.line5 = new DevComponents.DotNetBar.Controls.Line(); + this.label22 = new System.Windows.Forms.Label(); + this.labPatientDesa = new AIMS.OremrUserControl.UText(); + this.label19 = new AIMS.OremrUserControl.UText(); + this.uText5 = new AIMS.OremrUserControl.UText(); + this.txtAgentIdentity = new AIMS.OremrUserControl.UText(); + this.txtOrderNo = new AIMS.OremrUserControl.UText(); + this.label29 = new AIMS.OremrUserControl.UText(); + this.labAge = new AIMS.OremrUserControl.UText(); + this.labSex = new AIMS.OremrUserControl.UText(); + this.labPatientName = new AIMS.OremrUserControl.UText(); + this.labDate = new AIMS.OremrUserControl.UText(); + this.uText9 = new AIMS.OremrUserControl.UText(); + this.txtAgent = new AIMS.OremrUserControl.UText(); + this.labID = new System.Windows.Forms.Label(); + this.panel6 = new System.Windows.Forms.Panel(); + this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); + this.panel3 = new System.Windows.Forms.Panel(); + this.labDoctorOrderName = new System.Windows.Forms.Label(); + this.utxtCount = new AIMS.OremrUserControl.UText(); + this.panel4 = new System.Windows.Forms.Panel(); + this.uText1 = new AIMS.OremrUserControl.UText(); + this.labSpecifications1 = new AIMS.OremrUserControl.UText(); + this.uTextUse = new AIMS.OremrUserControl.UText(); + this.labWay = new AIMS.OremrUserControl.UText(); + this.label5 = new System.Windows.Forms.Label(); + this.labCount1 = new System.Windows.Forms.Label(); + this.panel5 = new System.Windows.Forms.Panel(); + this.uText7 = new AIMS.OremrUserControl.UText(); + this.label7 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.txtDose = new AIMS.OremrUserControl.UText(); + this.myPanel1 = new System.Windows.Forms.Panel(); + this.label6 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.labDepartName = new System.Windows.Forms.Label(); + this.labMzh = new System.Windows.Forms.Label(); + this.line7 = new DevComponents.DotNetBar.Controls.Line(); + this.line10 = new DevComponents.DotNetBar.Controls.Line(); + this.line8 = new DevComponents.DotNetBar.Controls.Line(); + this.line3 = new DevComponents.DotNetBar.Controls.Line(); + this.line15 = new DevComponents.DotNetBar.Controls.Line(); + this.line6 = new DevComponents.DotNetBar.Controls.Line(); + this.line2 = new DevComponents.DotNetBar.Controls.Line(); + this.line1 = new DevComponents.DotNetBar.Controls.Line(); + this.label21 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.label32 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label24 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.labNumber = new System.Windows.Forms.Label(); + this.label27 = new System.Windows.Forms.Label(); + this.label26 = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); + this.label12 = new System.Windows.Forms.Label(); + this.label13 = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.label18 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.label10 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.panel1.SuspendLayout(); + this.flowLayoutPanel1.SuspendLayout(); + this.panel3.SuspendLayout(); + this.panel4.SuspendLayout(); + this.panel5.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.White; + this.panel1.Controls.Add(this.label23); + this.panel1.Controls.Add(this.labDoctorName); + this.panel1.Controls.Add(this.uText4); + this.panel1.Controls.Add(this.uText3); + this.panel1.Controls.Add(this.uText2); + this.panel1.Controls.Add(this.label30); + this.panel1.Controls.Add(this.line5); + this.panel1.Controls.Add(this.label22); + this.panel1.Controls.Add(this.labPatientDesa); + this.panel1.Controls.Add(this.label19); + this.panel1.Controls.Add(this.uText5); + this.panel1.Controls.Add(this.txtAgentIdentity); + this.panel1.Controls.Add(this.txtOrderNo); + this.panel1.Controls.Add(this.label29); + this.panel1.Controls.Add(this.labAge); + this.panel1.Controls.Add(this.labSex); + this.panel1.Controls.Add(this.labPatientName); + this.panel1.Controls.Add(this.labDate); + this.panel1.Controls.Add(this.uText9); + this.panel1.Controls.Add(this.txtAgent); + this.panel1.Controls.Add(this.labID); + this.panel1.Controls.Add(this.panel6); + this.panel1.Controls.Add(this.flowLayoutPanel1); + this.panel1.Controls.Add(this.label6); + this.panel1.Controls.Add(this.label17); + this.panel1.Controls.Add(this.label9); + this.panel1.Controls.Add(this.labDepartName); + this.panel1.Controls.Add(this.labMzh); + this.panel1.Controls.Add(this.line7); + this.panel1.Controls.Add(this.line10); + this.panel1.Controls.Add(this.line8); + this.panel1.Controls.Add(this.line3); + this.panel1.Controls.Add(this.line15); + this.panel1.Controls.Add(this.line6); + this.panel1.Controls.Add(this.line2); + this.panel1.Controls.Add(this.line1); + this.panel1.Controls.Add(this.label21); + this.panel1.Controls.Add(this.label20); + this.panel1.Controls.Add(this.label32); + this.panel1.Controls.Add(this.label16); + this.panel1.Controls.Add(this.label24); + this.panel1.Controls.Add(this.label4); + this.panel1.Controls.Add(this.label28); + this.panel1.Controls.Add(this.label2); + this.panel1.Controls.Add(this.labNumber); + this.panel1.Controls.Add(this.label27); + this.panel1.Controls.Add(this.label26); + this.panel1.Controls.Add(this.label25); + this.panel1.Controls.Add(this.label12); + this.panel1.Controls.Add(this.label13); + this.panel1.Controls.Add(this.label11); + this.panel1.Controls.Add(this.label18); + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.label3); + this.panel1.Controls.Add(this.label14); + this.panel1.Controls.Add(this.label10); + this.panel1.Controls.Add(this.label8); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Margin = new System.Windows.Forms.Padding(2); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(517, 716); + this.panel1.TabIndex = 1; + // + // label23 + // + this.label23.AutoSize = true; + this.label23.Font = new System.Drawing.Font("宋体", 40F, System.Drawing.FontStyle.Bold); + this.label23.Location = new System.Drawing.Point(11, 307); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(51, 54); + this.label23.TabIndex = 5; + this.label23.Text = "R"; + // + // labDoctorName + // + this.labDoctorName.BackColor = System.Drawing.Color.White; + this.labDoctorName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.labDoctorName.Font = new System.Drawing.Font("微软雅黑", 10.5F); + this.labDoctorName.Location = new System.Drawing.Point(327, 548); + this.labDoctorName.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5); + this.labDoctorName.Name = "labDoctorName"; + this.labDoctorName.Size = new System.Drawing.Size(155, 35); + this.labDoctorName.TabIndex = 1605; + this.labDoctorName.Tag = "处方单签字"; + // + // uText4 + // + this.uText4.BackColor = System.Drawing.Color.White; + this.uText4.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText4.DictionaryKey = ""; + this.uText4.Font = new System.Drawing.Font("宋体", 10.5F); + this.uText4.IsFindDictionray = false; + this.uText4.IsUpdateDictionary = false; + this.uText4.Location = new System.Drawing.Point(411, 615); + this.uText4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText4.Name = "uText4"; + this.uText4.Size = new System.Drawing.Size(80, 16); + this.uText4.TabIndex = 1326; + this.uText4.Tag = ""; + // + // uText3 + // + this.uText3.BackColor = System.Drawing.Color.White; + this.uText3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText3.DictionaryKey = ""; + this.uText3.Font = new System.Drawing.Font("宋体", 10.5F); + this.uText3.IsFindDictionray = false; + this.uText3.IsUpdateDictionary = false; + this.uText3.Location = new System.Drawing.Point(218, 615); + this.uText3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText3.Name = "uText3"; + this.uText3.Size = new System.Drawing.Size(80, 16); + this.uText3.TabIndex = 1326; + this.uText3.Tag = ""; + // + // uText2 + // + this.uText2.BackColor = System.Drawing.Color.White; + this.uText2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText2.DictionaryKey = ""; + this.uText2.Font = new System.Drawing.Font("宋体", 10.5F); + this.uText2.IsFindDictionray = false; + this.uText2.IsUpdateDictionary = false; + this.uText2.Location = new System.Drawing.Point(114, 615); + this.uText2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText2.Name = "uText2"; + this.uText2.Size = new System.Drawing.Size(56, 16); + this.uText2.TabIndex = 1326; + this.uText2.Tag = ""; + // + // label30 + // + this.label30.AutoSize = true; + this.label30.Font = new System.Drawing.Font("宋体", 33F, System.Drawing.FontStyle.Bold); + this.label30.Location = new System.Drawing.Point(424, 48); + this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(65, 44); + this.label30.TabIndex = 1333; + this.label30.Text = "麻"; + // + // line5 + // + this.line5.Font = new System.Drawing.Font("宋体", 10.5F); + this.line5.Location = new System.Drawing.Point(7, 609); + this.line5.Margin = new System.Windows.Forms.Padding(2); + this.line5.Name = "line5"; + this.line5.Size = new System.Drawing.Size(488, 2); + this.line5.TabIndex = 1332; + this.line5.Text = "line1"; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Font = new System.Drawing.Font("宋体", 17.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label22.Location = new System.Drawing.Point(223, 64); + this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(178, 23); + this.label22.TabIndex = 1330; + this.label22.Text = "麻醉药品处方笺"; + // + // labPatientDesa + // + this.labPatientDesa.BackColor = System.Drawing.Color.White; + this.labPatientDesa.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labPatientDesa.DictionaryKey = ""; + this.labPatientDesa.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labPatientDesa.IsFindDictionray = false; + this.labPatientDesa.IsUpdateDictionary = false; + this.labPatientDesa.Location = new System.Drawing.Point(81, 284); + this.labPatientDesa.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labPatientDesa.Name = "labPatientDesa"; + this.labPatientDesa.Size = new System.Drawing.Size(410, 16); + this.labPatientDesa.TabIndex = 1328; + this.labPatientDesa.Tag = ""; + // + // label19 + // + this.label19.BackColor = System.Drawing.Color.White; + this.label19.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.label19.DictionaryKey = ""; + this.label19.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label19.IsFindDictionray = false; + this.label19.IsUpdateDictionary = false; + this.label19.Location = new System.Drawing.Point(73, 206); + this.label19.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(420, 16); + this.label19.TabIndex = 1328; + this.label19.Tag = ""; + // + // uText5 + // + this.uText5.BackColor = System.Drawing.Color.White; + this.uText5.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText5.DictionaryKey = ""; + this.uText5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.uText5.IsFindDictionray = false; + this.uText5.IsUpdateDictionary = false; + this.uText5.Location = new System.Drawing.Point(53, 180); + this.uText5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText5.Name = "uText5"; + this.uText5.Size = new System.Drawing.Size(440, 16); + this.uText5.TabIndex = 1328; + this.uText5.Tag = ""; + // + // txtAgentIdentity + // + this.txtAgentIdentity.BackColor = System.Drawing.Color.White; + this.txtAgentIdentity.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.txtAgentIdentity.DictionaryKey = ""; + this.txtAgentIdentity.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtAgentIdentity.IsFindDictionray = false; + this.txtAgentIdentity.IsUpdateDictionary = false; + this.txtAgentIdentity.Location = new System.Drawing.Point(151, 256); + this.txtAgentIdentity.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.txtAgentIdentity.Name = "txtAgentIdentity"; + this.txtAgentIdentity.Size = new System.Drawing.Size(345, 16); + this.txtAgentIdentity.TabIndex = 1328; + this.txtAgentIdentity.Tag = ""; + // + // txtOrderNo + // + this.txtOrderNo.BackColor = System.Drawing.Color.White; + this.txtOrderNo.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.txtOrderNo.DictionaryKey = ""; + this.txtOrderNo.Font = new System.Drawing.Font("宋体", 10.5F); + this.txtOrderNo.IsFindDictionray = false; + this.txtOrderNo.IsUpdateDictionary = false; + this.txtOrderNo.Location = new System.Drawing.Point(374, 153); + this.txtOrderNo.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.txtOrderNo.Name = "txtOrderNo"; + this.txtOrderNo.Size = new System.Drawing.Size(120, 16); + this.txtOrderNo.TabIndex = 1327; + this.txtOrderNo.Tag = ""; + this.txtOrderNo.DoubleClick += new System.EventHandler(this.txtOrderNo_DoubleClick); + // + // label29 + // + this.label29.BackColor = System.Drawing.Color.White; + this.label29.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.label29.DictionaryKey = ""; + this.label29.Font = new System.Drawing.Font("宋体", 10.5F); + this.label29.IsFindDictionray = false; + this.label29.IsUpdateDictionary = false; + this.label29.Location = new System.Drawing.Point(58, 567); + this.label29.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(160, 16); + this.label29.TabIndex = 1327; + this.label29.Tag = ""; + // + // labAge + // + this.labAge.BackColor = System.Drawing.Color.White; + this.labAge.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labAge.DictionaryKey = ""; + this.labAge.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labAge.IsFindDictionray = false; + this.labAge.IsUpdateDictionary = false; + this.labAge.Location = new System.Drawing.Point(283, 153); + this.labAge.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labAge.Name = "labAge"; + this.labAge.Size = new System.Drawing.Size(50, 16); + this.labAge.TabIndex = 1327; + this.labAge.Tag = ""; + // + // labSex + // + this.labSex.BackColor = System.Drawing.Color.White; + this.labSex.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labSex.DictionaryKey = ""; + this.labSex.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labSex.IsFindDictionray = false; + this.labSex.IsUpdateDictionary = false; + this.labSex.Location = new System.Drawing.Point(194, 153); + this.labSex.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labSex.Name = "labSex"; + this.labSex.Size = new System.Drawing.Size(50, 16); + this.labSex.TabIndex = 1327; + this.labSex.Tag = ""; + // + // labPatientName + // + this.labPatientName.BackColor = System.Drawing.Color.White; + this.labPatientName.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labPatientName.DictionaryKey = ""; + this.labPatientName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labPatientName.IsFindDictionray = false; + this.labPatientName.IsUpdateDictionary = false; + this.labPatientName.Location = new System.Drawing.Point(53, 153); + this.labPatientName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labPatientName.Name = "labPatientName"; + this.labPatientName.Size = new System.Drawing.Size(100, 16); + this.labPatientName.TabIndex = 1327; + this.labPatientName.Tag = ""; + // + // labDate + // + this.labDate.BackColor = System.Drawing.Color.White; + this.labDate.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labDate.DictionaryKey = ""; + this.labDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labDate.IsFindDictionray = false; + this.labDate.IsUpdateDictionary = false; + this.labDate.Location = new System.Drawing.Point(357, 102); + this.labDate.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labDate.Name = "labDate"; + this.labDate.Size = new System.Drawing.Size(125, 16); + this.labDate.TabIndex = 1327; + this.labDate.Tag = ""; + this.labDate.DoubleClick += new System.EventHandler(this.labDate_DoubleClick); + // + // uText9 + // + this.uText9.BackColor = System.Drawing.Color.White; + this.uText9.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText9.DictionaryKey = ""; + this.uText9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.uText9.IsFindDictionray = false; + this.uText9.IsUpdateDictionary = false; + this.uText9.Location = new System.Drawing.Point(370, 229); + this.uText9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText9.Name = "uText9"; + this.uText9.Size = new System.Drawing.Size(125, 16); + this.uText9.TabIndex = 1327; + this.uText9.Tag = ""; + // + // txtAgent + // + this.txtAgent.BackColor = System.Drawing.Color.White; + this.txtAgent.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.txtAgent.DictionaryKey = ""; + this.txtAgent.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.txtAgent.IsFindDictionray = false; + this.txtAgent.IsUpdateDictionary = false; + this.txtAgent.Location = new System.Drawing.Point(146, 229); + this.txtAgent.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.txtAgent.Name = "txtAgent"; + this.txtAgent.Size = new System.Drawing.Size(140, 16); + this.txtAgent.TabIndex = 1327; + this.txtAgent.Tag = ""; + // + // labID + // + this.labID.AutoSize = true; + this.labID.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labID.Location = new System.Drawing.Point(368, 656); + this.labID.Name = "labID"; + this.labID.Size = new System.Drawing.Size(0, 17); + this.labID.TabIndex = 0; + this.labID.Visible = false; + // + // panel6 + // + this.panel6.Location = new System.Drawing.Point(8, 303); + this.panel6.Margin = new System.Windows.Forms.Padding(2); + this.panel6.Name = "panel6"; + this.panel6.Size = new System.Drawing.Size(489, 10); + this.panel6.TabIndex = 16; + // + // flowLayoutPanel1 + // + this.flowLayoutPanel1.Controls.Add(this.panel3); + this.flowLayoutPanel1.Controls.Add(this.panel4); + this.flowLayoutPanel1.Controls.Add(this.panel5); + this.flowLayoutPanel1.Controls.Add(this.myPanel1); + this.flowLayoutPanel1.Location = new System.Drawing.Point(53, 315); + this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0); + this.flowLayoutPanel1.Name = "flowLayoutPanel1"; + this.flowLayoutPanel1.Size = new System.Drawing.Size(444, 228); + this.flowLayoutPanel1.TabIndex = 15; + this.flowLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.flowLayoutPanel1_Paint); + // + // panel3 + // + this.panel3.Controls.Add(this.labDoctorOrderName); + this.panel3.Controls.Add(this.utxtCount); + this.panel3.Dock = System.Windows.Forms.DockStyle.Top; + this.panel3.Location = new System.Drawing.Point(2, 2); + this.panel3.Margin = new System.Windows.Forms.Padding(2); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(489, 24); + this.panel3.TabIndex = 1; + // + // labDoctorOrderName + // + this.labDoctorOrderName.AutoSize = true; + this.labDoctorOrderName.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labDoctorOrderName.Location = new System.Drawing.Point(7, 3); + this.labDoctorOrderName.Name = "labDoctorOrderName"; + this.labDoctorOrderName.Size = new System.Drawing.Size(0, 20); + this.labDoctorOrderName.TabIndex = 9; + // + // utxtCount + // + this.utxtCount.BackColor = System.Drawing.Color.White; + this.utxtCount.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.utxtCount.DictionaryKey = ""; + this.utxtCount.Font = new System.Drawing.Font("宋体", 10.5F); + this.utxtCount.IsFindDictionray = false; + this.utxtCount.IsUpdateDictionary = false; + this.utxtCount.Location = new System.Drawing.Point(264, 6); + this.utxtCount.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.utxtCount.Name = "utxtCount"; + this.utxtCount.ReadOnly = true; + this.utxtCount.Size = new System.Drawing.Size(175, 16); + this.utxtCount.TabIndex = 1326; + this.utxtCount.Tag = ""; + // + // panel4 + // + this.panel4.Controls.Add(this.uText1); + this.panel4.Controls.Add(this.labSpecifications1); + this.panel4.Controls.Add(this.uTextUse); + this.panel4.Controls.Add(this.labWay); + this.panel4.Controls.Add(this.label5); + this.panel4.Controls.Add(this.labCount1); + this.panel4.Dock = System.Windows.Forms.DockStyle.Top; + this.panel4.Location = new System.Drawing.Point(2, 30); + this.panel4.Margin = new System.Windows.Forms.Padding(2); + this.panel4.Name = "panel4"; + this.panel4.Size = new System.Drawing.Size(489, 24); + this.panel4.TabIndex = 2; + // + // uText1 + // + this.uText1.BackColor = System.Drawing.Color.White; + this.uText1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText1.DictionaryKey = ""; + this.uText1.Font = new System.Drawing.Font("宋体", 10.5F); + this.uText1.IsFindDictionray = false; + this.uText1.IsUpdateDictionary = false; + this.uText1.Location = new System.Drawing.Point(51, 6); + this.uText1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText1.Name = "uText1"; + this.uText1.Size = new System.Drawing.Size(30, 16); + this.uText1.TabIndex = 1326; + this.uText1.Tag = ""; + this.uText1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // labSpecifications1 + // + this.labSpecifications1.BackColor = System.Drawing.Color.White; + this.labSpecifications1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labSpecifications1.DictionaryKey = ""; + this.labSpecifications1.Font = new System.Drawing.Font("宋体", 10.5F); + this.labSpecifications1.IsFindDictionray = false; + this.labSpecifications1.IsUpdateDictionary = false; + this.labSpecifications1.Location = new System.Drawing.Point(83, 6); + this.labSpecifications1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labSpecifications1.Name = "labSpecifications1"; + this.labSpecifications1.Size = new System.Drawing.Size(56, 16); + this.labSpecifications1.TabIndex = 1326; + this.labSpecifications1.Tag = ""; + // + // uTextUse + // + this.uTextUse.BackColor = System.Drawing.Color.White; + this.uTextUse.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uTextUse.DictionaryKey = ""; + this.uTextUse.Font = new System.Drawing.Font("宋体", 10.5F); + this.uTextUse.IsFindDictionray = false; + this.uTextUse.IsUpdateDictionary = false; + this.uTextUse.Location = new System.Drawing.Point(171, 6); + this.uTextUse.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uTextUse.Name = "uTextUse"; + this.uTextUse.Size = new System.Drawing.Size(56, 16); + this.uTextUse.TabIndex = 1326; + this.uTextUse.Tag = ""; + // + // labWay + // + this.labWay.BackColor = System.Drawing.Color.White; + this.labWay.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.labWay.DictionaryKey = ""; + this.labWay.Font = new System.Drawing.Font("宋体", 10.5F); + this.labWay.IsFindDictionray = false; + this.labWay.IsUpdateDictionary = false; + this.labWay.Location = new System.Drawing.Point(262, 6); + this.labWay.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.labWay.Name = "labWay"; + this.labWay.Size = new System.Drawing.Size(175, 16); + this.labWay.TabIndex = 1326; + this.labWay.Tag = ""; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label5.Location = new System.Drawing.Point(7, 2); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(40, 20); + this.label5.TabIndex = 10; + this.label5.Text = "用法:"; + // + // labCount1 + // + this.labCount1.AutoSize = true; + this.labCount1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labCount1.Location = new System.Drawing.Point(497, 2); + this.labCount1.Name = "labCount1"; + this.labCount1.Size = new System.Drawing.Size(0, 20); + this.labCount1.TabIndex = 9; + // + // panel5 + // + this.panel5.Controls.Add(this.uText7); + this.panel5.Controls.Add(this.label7); + this.panel5.Controls.Add(this.label15); + this.panel5.Controls.Add(this.txtDose); + this.panel5.Dock = System.Windows.Forms.DockStyle.Top; + this.panel5.Location = new System.Drawing.Point(2, 58); + this.panel5.Margin = new System.Windows.Forms.Padding(2); + this.panel5.Name = "panel5"; + this.panel5.Size = new System.Drawing.Size(489, 24); + this.panel5.TabIndex = 3; + // + // uText7 + // + this.uText7.BackColor = System.Drawing.Color.White; + this.uText7.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.uText7.DictionaryKey = ""; + this.uText7.Font = new System.Drawing.Font("宋体", 10.5F); + this.uText7.IsFindDictionray = false; + this.uText7.IsUpdateDictionary = false; + this.uText7.Location = new System.Drawing.Point(53, 6); + this.uText7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.uText7.Name = "uText7"; + this.uText7.Size = new System.Drawing.Size(200, 16); + this.uText7.TabIndex = 1326; + this.uText7.Tag = ""; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label7.Location = new System.Drawing.Point(447, 2); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(0, 20); + this.label7.TabIndex = 9; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("宋体", 10.5F); + this.label15.Location = new System.Drawing.Point(264, 6); + this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(35, 14); + this.label15.TabIndex = 4; + this.label15.Text = "弃量"; + // + // txtDose + // + this.txtDose.BackColor = System.Drawing.Color.White; + this.txtDose.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.txtDose.DictionaryKey = ""; + this.txtDose.Font = new System.Drawing.Font("宋体", 10.5F); + this.txtDose.IsFindDictionray = false; + this.txtDose.IsUpdateDictionary = false; + this.txtDose.Location = new System.Drawing.Point(303, 6); + this.txtDose.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); + this.txtDose.Name = "txtDose"; + this.txtDose.Size = new System.Drawing.Size(65, 16); + this.txtDose.TabIndex = 1326; + this.txtDose.Tag = ""; + // + // myPanel1 + // + this.myPanel1.Location = new System.Drawing.Point(3, 87); + this.myPanel1.Name = "myPanel1"; + this.myPanel1.Size = new System.Drawing.Size(8, 8); + this.myPanel1.TabIndex = 4; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label6.Location = new System.Drawing.Point(9, 103); + this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(35, 14); + this.label6.TabIndex = 8; + this.label6.Text = "科别"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label17.Location = new System.Drawing.Point(316, 103); + this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(35, 14); + this.label17.TabIndex = 8; + this.label17.Text = "日期"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label9.Location = new System.Drawing.Point(316, 125); + this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(49, 14); + this.label9.TabIndex = 8; + this.label9.Text = "门诊号"; + // + // labDepartName + // + this.labDepartName.AutoSize = true; + this.labDepartName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labDepartName.Location = new System.Drawing.Point(48, 103); + this.labDepartName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.labDepartName.Name = "labDepartName"; + this.labDepartName.Size = new System.Drawing.Size(0, 14); + this.labDepartName.TabIndex = 5; + // + // labMzh + // + this.labMzh.AutoSize = true; + this.labMzh.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labMzh.Location = new System.Drawing.Point(368, 125); + this.labMzh.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.labMzh.Name = "labMzh"; + this.labMzh.Size = new System.Drawing.Size(0, 14); + this.labMzh.TabIndex = 5; + // + // line7 + // + this.line7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line7.Location = new System.Drawing.Point(8, 300); + this.line7.Margin = new System.Windows.Forms.Padding(2); + this.line7.Name = "line7"; + this.line7.Size = new System.Drawing.Size(488, 2); + this.line7.TabIndex = 9; + this.line7.Text = "line1"; + // + // line10 + // + this.line10.Font = new System.Drawing.Font("宋体", 10.5F); + this.line10.Location = new System.Drawing.Point(8, 583); + this.line10.Margin = new System.Windows.Forms.Padding(2); + this.line10.Name = "line10"; + this.line10.Size = new System.Drawing.Size(488, 2); + this.line10.TabIndex = 9; + this.line10.Text = "line1"; + // + // line8 + // + this.line8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line8.Location = new System.Drawing.Point(8, 272); + this.line8.Margin = new System.Windows.Forms.Padding(2); + this.line8.Name = "line8"; + this.line8.Size = new System.Drawing.Size(488, 2); + this.line8.TabIndex = 9; + this.line8.Text = "line1"; + // + // line3 + // + this.line3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line3.Location = new System.Drawing.Point(6, 222); + this.line3.Margin = new System.Windows.Forms.Padding(2); + this.line3.Name = "line3"; + this.line3.Size = new System.Drawing.Size(488, 2); + this.line3.TabIndex = 9; + this.line3.Text = "line1"; + // + // line15 + // + this.line15.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line15.Location = new System.Drawing.Point(8, 245); + this.line15.Margin = new System.Windows.Forms.Padding(2); + this.line15.Name = "line15"; + this.line15.Size = new System.Drawing.Size(488, 2); + this.line15.TabIndex = 9; + this.line15.Text = "line1"; + // + // line6 + // + this.line6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line6.Location = new System.Drawing.Point(8, 196); + this.line6.Margin = new System.Windows.Forms.Padding(2); + this.line6.Name = "line6"; + this.line6.Size = new System.Drawing.Size(488, 2); + this.line6.TabIndex = 9; + this.line6.Text = "line1"; + // + // line2 + // + this.line2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line2.Location = new System.Drawing.Point(8, 169); + this.line2.Name = "line2"; + this.line2.Size = new System.Drawing.Size(488, 2); + this.line2.TabIndex = 9; + this.line2.Text = "line1"; + // + // line1 + // + this.line1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.line1.Location = new System.Drawing.Point(8, 142); + this.line1.Name = "line1"; + this.line1.Size = new System.Drawing.Size(488, 2); + this.line1.TabIndex = 9; + this.line1.Text = "line1"; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label21.Location = new System.Drawing.Point(9, 253); + this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(140, 14); + this.label21.TabIndex = 5; + this.label21.Text = "工号/代办人身份证号"; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("宋体", 10.5F); + this.label20.Location = new System.Drawing.Point(335, 151); + this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(35, 14); + this.label20.TabIndex = 4; + this.label20.Text = "单号"; + // + // label32 + // + this.label32.AutoSize = true; + this.label32.Font = new System.Drawing.Font("宋体", 10.5F); + this.label32.Location = new System.Drawing.Point(6, 657); + this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(63, 14); + this.label32.TabIndex = 4; + this.label32.Text = "处方编号"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("宋体", 10.5F); + this.label16.Location = new System.Drawing.Point(6, 636); + this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(119, 14); + this.label16.TabIndex = 4; + this.label16.Text = "注:处方当日有效"; + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Font = new System.Drawing.Font("宋体", 10.5F); + this.label24.Location = new System.Drawing.Point(318, 615); + this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(91, 14); + this.label24.TabIndex = 4; + this.label24.Text = "本次发出批号\r\n"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("宋体", 10.5F); + this.label4.Location = new System.Drawing.Point(178, 615); + this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(35, 14); + this.label4.TabIndex = 4; + this.label4.Text = "批号"; + // + // label28 + // + this.label28.AutoSize = true; + this.label28.Font = new System.Drawing.Font("宋体", 10.5F); + this.label28.Location = new System.Drawing.Point(6, 615); + this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(126, 14); + this.label28.TabIndex = 4; + this.label28.Text = "交回空安瓿/贴数量"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("宋体", 10.5F); + this.label2.Location = new System.Drawing.Point(11, 590); + this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(399, 14); + this.label2.TabIndex = 4; + this.label2.Text = "审核 调配 复核/发药"; + // + // labNumber + // + this.labNumber.AutoSize = true; + this.labNumber.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.labNumber.Location = new System.Drawing.Point(9, 125); + this.labNumber.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.labNumber.Name = "labNumber"; + this.labNumber.Size = new System.Drawing.Size(154, 14); + this.labNumber.TabIndex = 4; + this.labNumber.Text = "疼痛专用病历号/住院号"; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.Font = new System.Drawing.Font("宋体", 10.5F); + this.label27.Location = new System.Drawing.Point(11, 565); + this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(35, 14); + this.label27.TabIndex = 6; + this.label27.Text = "药费"; + // + // label26 + // + this.label26.AutoSize = true; + this.label26.Font = new System.Drawing.Font("宋体", 10.5F); + this.label26.Location = new System.Drawing.Point(43, 565); + this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(0, 14); + this.label26.TabIndex = 6; + // + // label25 + // + this.label25.AutoSize = true; + this.label25.Font = new System.Drawing.Font("宋体", 10.5F); + this.label25.Location = new System.Drawing.Point(257, 565); + this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(63, 14); + this.label25.TabIndex = 6; + this.label25.Text = "医生签字"; + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label12.Location = new System.Drawing.Point(287, 226); + this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(77, 14); + this.label12.TabIndex = 6; + this.label12.Text = "代办人电话"; + // + // label13 + // + this.label13.AutoSize = true; + this.label13.BackColor = System.Drawing.Color.Transparent; + this.label13.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label13.Location = new System.Drawing.Point(246, 149); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(35, 14); + this.label13.TabIndex = 7; + this.label13.Text = "年龄"; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label11.Location = new System.Drawing.Point(157, 150); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(35, 14); + this.label11.TabIndex = 7; + this.label11.Text = "性别"; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label18.Location = new System.Drawing.Point(9, 226); + this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(126, 14); + this.label18.TabIndex = 8; + this.label18.Text = "领药人/代办人姓名"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label1.Location = new System.Drawing.Point(9, 204); + this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(63, 14); + this.label1.TabIndex = 8; + this.label1.Text = "身份证号"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label3.Location = new System.Drawing.Point(9, 177); + this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(42, 14); + this.label3.TabIndex = 8; + this.label3.Text = "住 址"; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label14.Location = new System.Drawing.Point(8, 281); + this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(63, 14); + this.label14.TabIndex = 8; + this.label14.Text = "临床诊断"; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label10.Location = new System.Drawing.Point(9, 150); + this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(42, 14); + this.label10.TabIndex = 8; + this.label10.Text = "姓 名"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.label8.Location = new System.Drawing.Point(163, 125); + this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(0, 14); + this.label8.TabIndex = 7; + // + // PrescriptionDocument + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.Controls.Add(this.panel1); + this.Name = "PrescriptionDocument"; + this.Size = new System.Drawing.Size(517, 716); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.flowLayoutPanel1.ResumeLayout(false); + this.panel3.ResumeLayout(false); + this.panel3.PerformLayout(); + this.panel4.ResumeLayout(false); + this.panel4.PerformLayout(); + this.panel5.ResumeLayout(false); + this.panel5.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Panel panel6; + private System.Windows.Forms.Label label23; + private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; + private DevComponents.DotNetBar.Controls.Line line7; + private DevComponents.DotNetBar.Controls.Line line10; + private DevComponents.DotNetBar.Controls.Line line6; + private DevComponents.DotNetBar.Controls.Line line2; + private DevComponents.DotNetBar.Controls.Line line1; + private System.Windows.Forms.Label labNumber; + private System.Windows.Forms.Label labMzh; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.Label label9; + private DevComponents.DotNetBar.Controls.Line line8; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label27; + private System.Windows.Forms.Label label26; + private System.Windows.Forms.Label label25; + private System.Windows.Forms.Label labID; + private AIMS.OremrUserControl.UText txtAgentIdentity; + private AIMS.OremrUserControl.UText txtAgent; + private AIMS.OremrUserControl.UText uText5; + private AIMS.OremrUserControl.UText labPatientDesa; + private AIMS.OremrUserControl.UText label19; + private AIMS.OremrUserControl.UText label29; + private AIMS.OremrUserControl.UText labSex; + private AIMS.OremrUserControl.UText labAge; + private AIMS.OremrUserControl.UText labPatientName; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Panel panel3; + public System.Windows.Forms.Label labDoctorOrderName; + private System.Windows.Forms.Panel panel4; + public AIMS.OremrUserControl.UText labSpecifications1; + public AIMS.OremrUserControl.UText uTextUse; + public AIMS.OremrUserControl.UText labWay; + public System.Windows.Forms.Label label5; + public System.Windows.Forms.Label labCount1; + private System.Windows.Forms.Panel panel5; + public AIMS.OremrUserControl.UText uText7; + public System.Windows.Forms.Label label7; + public AIMS.OremrUserControl.UText utxtCount; + public AIMS.OremrUserControl.UText uText1; + private System.Windows.Forms.Panel myPanel1; + private System.Windows.Forms.Label label13; + private AIMS.OremrUserControl.UText uText9; + private DevComponents.DotNetBar.Controls.Line line15; + private System.Windows.Forms.Label label12; + private System.Windows.Forms.Label label22; + private DevComponents.DotNetBar.Controls.Line line5; + private System.Windows.Forms.Label label28; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label labDepartName; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label16; + private AIMS.OremrUserControl.UText labDate; + private AIMS.OremrUserControl.UText txtOrderNo; + public AIMS.OremrUserControl.UText uText4; + public AIMS.OremrUserControl.UText uText3; + public AIMS.OremrUserControl.UText uText2; + private AIMS.OremrUserControl.UText labDoctorName; + private System.Windows.Forms.Label label24; + private System.Windows.Forms.Label label4; + private DevComponents.DotNetBar.Controls.Line line3; + private System.Windows.Forms.Label label1; + public AIMS.OremrUserControl.UText txtDose; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label label32; + } +} diff --git a/AIMS/OremrUserControl/PrescriptionDocument.cs b/AIMS/OremrUserControl/PrescriptionDocument.cs new file mode 100644 index 0000000..d7c0b9c --- /dev/null +++ b/AIMS/OremrUserControl/PrescriptionDocument.cs @@ -0,0 +1,62 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using System.Drawing.Printing; +using Newtonsoft.Json; +using System.IO; +using DrawGraph; +using AIMS.PublicUI.BLL; +using AIMSModel; + +namespace AIMS.OperationDoing.AnasRecordBill +{ + public partial class PrescriptionDocument : UserControl + { + public string type; + public Drugs Drug; + public OperationRecord _operationRecord; + public List list; + public DataGridViewRow CurrentRow; + public int DrugCount; + + public PrescriptionDocument(OperationRecord operationRecord, DataGridViewRow _CurrentRow ) + { + InitializeComponent(); + _operationRecord = operationRecord; + + CurrentRow = _CurrentRow; + InitializeData(); + + } + + /// + /// 赋值 + /// + private void InitializeData() + { + } + private void flowLayoutPanel1_Paint(object sender, PaintEventArgs e) + { + Pen pen = new Pen(Color.Black); + PointF rowPt1 = new PointF(310, 75); + PointF rowPt2 = new PointF(150, 150); + e.Graphics.DrawLine(pen, rowPt1, rowPt2); + } + + + private void labDate_DoubleClick(object sender, EventArgs e) + { + labDate.Text = DateTime.Now.ToString("yyyy年MM月dd日"); + } + + private void txtOrderNo_DoubleClick(object sender, EventArgs e) + { + + } + } +} diff --git a/AIMS/OremrUserControl/PrescriptionDocument.resx b/AIMS/OremrUserControl/PrescriptionDocument.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/AIMS/OremrUserControl/PrescriptionDocument.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/AIMS/OremrUserControl/UText.cs b/AIMS/OremrUserControl/UText.cs new file mode 100644 index 0000000..3c01e30 --- /dev/null +++ b/AIMS/OremrUserControl/UText.cs @@ -0,0 +1,218 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Windows.Forms; + +namespace AIMS.OremrUserControl +{ + + public class UText : TextBox + { + private const int WM_PAINT = 15; + + private const int WM_CTLCOLOREDIT = 307; + + private const int WM_SETFOCUS = 7; + + private IContainer components = null; + + private CheckedListBox checkedListBox1 = null; + + private TextBox textBox1; + + private Button button1; + + private Button button2; + + private string dictionaryKey = ""; + + private bool isUpdateDictionary = false; + + private bool isFindDictionray = false; + + public bool IsFindDictionray + { + get + { + return isFindDictionray; + } + set + { + isFindDictionray = value; + } + } + + public string DictionaryKey + { + get + { + return dictionaryKey; + } + set + { + dictionaryKey = value; + } + } + + public bool IsUpdateDictionary + { + get + { + return isUpdateDictionary; + } + set + { + isUpdateDictionary = value; + } + } + + + public CheckedListBox GetListBox() + { + return checkedListBox1; + } + + public TextBox GetTestBox() + { + return textBox1; + } + + [DllImport("User32.dll")] + public static extern IntPtr GetWindowDC(IntPtr hWnd); + + [DllImport("User32.dll")] + public static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC); + + public UText() + { + InitializeComponent(); + base.BorderStyle = BorderStyle.None; + BackColor = SystemColors.Control; + base.DoubleClick += this_DoubleClick; + checkedListBox1 = new CheckedListBox(); + checkedListBox1.FormattingEnabled = true; + checkedListBox1.HorizontalScrollbar = true; + checkedListBox1.ScrollAlwaysVisible = true; + checkedListBox1.Items.AddRange(new object[0]); + checkedListBox1.Name = "checkedListBox1"; + checkedListBox1.TabIndex = 6; + checkedListBox1.CheckOnClick = true; + textBox1 = new TextBox(); + textBox1.Name = "textBox1"; + textBox1.TabIndex = 7; + button2 = new Button(); + button2.Name = "button1"; + button2.TabIndex = 8; + button2.Text = "确定"; + button2.UseVisualStyleBackColor = true; + button2.Font = new Font("宋体", 9f); + button2.Click += button2_Click; + button1 = new Button(); + button1.Name = "button1"; + button1.TabIndex = 8; + button1.Text = "+"; + button1.UseVisualStyleBackColor = true; + button1.Font = new Font("宋体", 13f); + button1.Click += button_Click; + contVisible(isVisible: false); + } + + private void button_Click(object sender, EventArgs e) + { + } + + protected override void WndProc(ref Message m) + { + base.WndProc(ref m); + int msg = m.Msg; + if (msg != 15 && msg != 307) + { + return; + } + + IntPtr windowDC = GetWindowDC(base.Handle); + if (windowDC.ToInt32() != 0) + { + Graphics g = Graphics.FromHdc(windowDC); + drawBottomLine(g); + } + + m.Result = IntPtr.Zero; + ReleaseDC(m.HWnd, windowDC); + } + + private void drawBottomLine(Graphics g) + { + Pen pen = new Pen(BackColor, 2f); + g.DrawRectangle(pen, -1, -1, base.Width, base.Height); + pen = new Pen(Color.FromArgb(0, 0, 0), 1f); + g.DrawLine(pen, 0, base.Height - 1, base.Width, base.Height - 1); + base.Parent.Controls.Add(button2); + button2.Location = new Point(base.Left + base.Width - 46, base.Top + base.Height + 2); + button2.Size = new Size(47, 26); + button2.BringToFront(); + base.Parent.Controls.Add(checkedListBox1); + checkedListBox1.Size = new Size(base.Width, 176); + checkedListBox1.Location = new Point(base.Left, base.Top + base.Height + textBox1.Height + 2); + checkedListBox1.BringToFront(); + base.Parent.Controls.Add(textBox1); + textBox1.Location = new Point(base.Left, base.Top + base.Height + 2); + textBox1.Size = new Size(base.Width - 67, 21); + textBox1.BringToFront(); + base.Parent.Controls.Add(button1); + button1.Location = new Point(textBox1.Left + textBox1.Width, base.Top + base.Height + 2); + button1.Size = new Size(23, 26); + button1.BringToFront(); + } + + protected override void Dispose(bool disposing) + { + if (disposing && components != null) + { + components.Dispose(); + } + + base.Dispose(disposing); + } + + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + } + + private void this_DoubleClick(object sender, EventArgs e) + { + if (IsFindDictionray && !checkedListBox1.Visible) + { + contVisible(isVisible: true); + } + } + + private void button2_Click(object sender, EventArgs e) + { + string text = ""; + for (int i = 0; i < checkedListBox1.Items.Count; i++) + { + if (checkedListBox1.GetItemChecked(i)) + { + text = text + checkedListBox1.GetItemText(checkedListBox1.Items[i]) + "\u3000"; + } + } + + base.Text += text; + contVisible(isVisible: false); + } + + private void contVisible(bool isVisible) + { + checkedListBox1.Visible = isVisible; + textBox1.Visible = isVisible; + button1.Visible = isVisible; + button2.Visible = isVisible; + } + } +} diff --git a/AIMS/ReportManager/ReportDataHelper.cs b/AIMS/ReportManager/ReportDataHelper.cs index 49abe04..72546ac 100644 --- a/AIMS/ReportManager/ReportDataHelper.cs +++ b/AIMS/ReportManager/ReportDataHelper.cs @@ -10,7 +10,7 @@ namespace AIMS.ReportManager public static DataTable GetOperationPlanDataTable(DateTime BeginDate,DateTime EndDate,string DepName) { string strSql = "SELECT of1.OperationRoom, of1.ApplyDepName,of1.SickBed, of1.Contagion, of1.MdrecNo, of1.PatientName, of1.Sex, of1.BirthDay, "+ - " of1.PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor,"+ + " of1.OrderOperationTime PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," + " of1.AnaesthesiaMethodName , (of1.AnesthesiaDoctor + ' ' +of1.AnesthesiaDoctorSucceed) AS AnesthesiaDoctor,"+ " (of1.InstrumentNurse +' '+ of1.InstrumentNurseSucceed) AS InstrumentNurse,(of1.TourNurse + ' '+of1.TourNurseSucceed) AS TourNurse, of1.Remark "+ " FROM V_OperationFront of1 WHERE of1.PlanOperationTime>='" + BeginDate + "' AND of1.PlanOperationTime<'" + EndDate + "' AND of1.ApplyDepName LIKE '%%'"; @@ -19,7 +19,7 @@ namespace AIMS.ReportManager public static DataTable GetOperationPlanDataTable(string ApplyId) { string strSql = "SELECT of1.OperationRoom, of1.ApplyDepName,of1.SickBed, of1.Contagion, of1.MdrecNo, of1.PatientName, of1.Sex, of1.BirthDay, " + - " of1.PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," + + " of1.OrderOperationTime PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," + " of1.AnaesthesiaMethodName , (of1.AnesthesiaDoctor + ' ' +of1.AnesthesiaDoctorSucceed) AS AnesthesiaDoctor," + " (of1.InstrumentNurse +' '+ of1.InstrumentNurseSucceed) AS InstrumentNurse,(of1.TourNurse + ' '+of1.TourNurseSucceed) AS TourNurse, of1.Remark " + " FROM V_OperationFront of1 WHERE " + ApplyId + " "; diff --git a/AIMS/ReportManager/ReportTemplate/OperationPlanReport.rdlc b/AIMS/ReportManager/ReportTemplate/OperationPlanReport.rdlc index b473fb7..e6b29c1 100644 --- a/AIMS/ReportManager/ReportTemplate/OperationPlanReport.rdlc +++ b/AIMS/ReportManager/ReportTemplate/OperationPlanReport.rdlc @@ -107,6 +107,7 @@ 手术排程表 @@ -120,6 +121,7 @@ @@ -153,7 +155,10 @@ =Parameters!PlanCount.Value -