diff --git a/AIMS/AIMS.csproj b/AIMS/AIMS.csproj
index 1ec2e10..b089b93 100644
--- a/AIMS/AIMS.csproj
+++ b/AIMS/AIMS.csproj
@@ -371,12 +371,6 @@
frmRecoverPatient.cs
-
- Form
-
-
- frmChargRecordPrint.cs
-
Form
@@ -452,12 +446,6 @@
-
- UserControl
-
-
- PrescriptionDocument.cs
-
Form
@@ -979,9 +967,6 @@
frmRecoverPatient.cs
-
- frmChargRecordPrint.cs
-
frmHemodynamics.cs
@@ -1018,9 +1003,6 @@
frmPersonSchedulKeep.cs
-
- PrescriptionDocument.cs
-
frmPrintingArrangemen.cs
diff --git a/AIMS/OperationAanesthesia/frmAanesthesiaRecover.cs b/AIMS/OperationAanesthesia/frmAanesthesiaRecover.cs
index ac41d79..c1ed38a 100644
--- a/AIMS/OperationAanesthesia/frmAanesthesiaRecover.cs
+++ b/AIMS/OperationAanesthesia/frmAanesthesiaRecover.cs
@@ -828,7 +828,7 @@ namespace AIMS.OperationAanesthesia
templateManage.Bind("SapManage");
templateManage.Bind("RemarkManage");
}
- }
+ }
private void btnCancelOperation_Click(object sender, EventArgs e)
{
if (PatientId == 0)
@@ -1056,9 +1056,9 @@ namespace AIMS.OperationAanesthesia
else
{
templateManage.Bind("DrugsManage");
- templateManage.Bind("SapManage");
+ templateManage.Bind("SapManage");
DrawEvent();
- }
+ }
}
catch (Exception)
{
@@ -1609,8 +1609,7 @@ namespace AIMS.OperationAanesthesia
}
private void btnChage_Click(object sender, EventArgs e)
{
- frmChargRecordPrint frmchargRecord = new frmChargRecordPrint(_record);
- frmchargRecord.TemplateType = "麻醉";
+ frmFeesRecord frmchargRecord = new frmFeesRecord(_record, "恢复室");
frmchargRecord.Show();
frmchargRecord.BringToFront();
}
diff --git a/AIMS/OperationAanesthesia/frmFactDrugNew.cs b/AIMS/OperationAanesthesia/frmFactDrugNew.cs
index 5d42b2d..a4d58dd 100644
--- a/AIMS/OperationAanesthesia/frmFactDrugNew.cs
+++ b/AIMS/OperationAanesthesia/frmFactDrugNew.cs
@@ -1,9 +1,9 @@
using AIMSBLL;
+using AIMSExtension;
using AIMSModel;
using DevComponents.DotNetBar;
using DevComponents.DotNetBar.Controls;
using DrawGraph;
-using AIMSExtension;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -11,8 +11,6 @@ using System.Data;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
-using DCSoftDotfuscate;
-using AIMS.OperationAanesthesia.oldSystemCode;
namespace AIMS.PublicUI.UI
{
diff --git a/AIMS/OperationAanesthesia/frmFeesRecord.Designer.cs b/AIMS/OperationAanesthesia/frmFeesRecord.Designer.cs
index a9c7346..6e82191 100644
--- a/AIMS/OperationAanesthesia/frmFeesRecord.Designer.cs
+++ b/AIMS/OperationAanesthesia/frmFeesRecord.Designer.cs
@@ -267,6 +267,7 @@
this.dgvDrugs.ShowCellToolTips = false;
this.dgvDrugs.Size = new System.Drawing.Size(865, 604);
this.dgvDrugs.TabIndex = 16;
+ this.dgvDrugs.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDrugs_CellDoubleClick);
this.dgvDrugs.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dgvDrugs_DataError);
this.dgvDrugs.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
//
@@ -471,7 +472,7 @@
this.P3.AttachedControl = this.superTabControlPanel4;
this.P3.GlobalItem = false;
this.P3.Name = "P3";
- this.P3.Text = "麻醉技术耗材列表";
+ this.P3.Text = "技术耗材列表";
//
// superTabControlPanel1
//
diff --git a/AIMS/OperationAanesthesia/frmFeesRecord.cs b/AIMS/OperationAanesthesia/frmFeesRecord.cs
index cc9414f..d140274 100644
--- a/AIMS/OperationAanesthesia/frmFeesRecord.cs
+++ b/AIMS/OperationAanesthesia/frmFeesRecord.cs
@@ -1,9 +1,11 @@
-using AIMSBLL;
+using AIMS.OperationAanesthesia;
+using AIMSBLL;
using AIMSExtension;
using AIMSModel;
using AxNsoOfficeLib;
using DCSoftDotfuscate;
using DevComponents.DotNetBar;
+using DocumentManagement;
using DrawGraph;
using System;
using System.Collections.Generic;
@@ -43,6 +45,8 @@ namespace AIMS.PublicUI.UI
SetDGVNotSort();
BindAnaesthesiaEvents();
FullALLDGV();
+ if (FeeType == "护士")
+ tabDrugs.SelectedTabIndex = 1;
}
#endregion
@@ -58,7 +62,8 @@ namespace AIMS.PublicUI.UI
}
else
{
- LoadRecordDrugs();
+ if (FeeType == "麻醉")
+ LoadRecordDrugs();
}
SetChargDrugPrice();
AddNewNullRows();
@@ -104,6 +109,10 @@ namespace AIMS.PublicUI.UI
_dataGridView.Rows[index].Cells[5].Value = item.UnitPrice;
_dataGridView.Rows[index].Cells[7].Value = item.FeeNum;
_dataGridView.Rows[index].Cells[8].Value = item.ChargePrice;
+
+ _dataGridView.Rows[index].Cells[5].Tag = item.Extend3;
+ _dataGridView.Rows[index].Cells[6].Tag = item.Extend1;
+ _dataGridView.Rows[index].Cells[7].Tag = item.Extend2;
}
if (item.BillingWorkId != null && item.BillingWorkId != "")
{
@@ -130,6 +139,10 @@ namespace AIMS.PublicUI.UI
dgvChargsRecord.Rows[index].Cells[5].Value = item.UnitPrice;
dgvChargsRecord.Rows[index].Cells[7].Value = item.FeeNum;
dgvChargsRecord.Rows[index].Cells[8].Value = item.ChargePrice;
+
+ _dataGridView.Rows[index].Cells[5].Tag = item.Extend3;
+ _dataGridView.Rows[index].Cells[6].Tag = item.Extend1;
+ _dataGridView.Rows[index].Cells[7].Tag = item.Extend2;
}
if (item.BillingWorkId != null && item.BillingWorkId != "")
{
@@ -170,8 +183,12 @@ namespace AIMS.PublicUI.UI
dr.Cells[4].Value = drug.Stand;
dr.Cells[5].Value = drug.Price;
dr.Cells[6].Value = drug.Unit;
- dr.Cells[7].Value = GetDrugsNum(drug);
- //dr.Cells[7].Value = CalculateDrugDose(drug);
+ double doses = 0; string doseunit = ""; string rote = "";
+ dr.Cells[7].Value = GetDrugsNum(drug, ref doses, ref doseunit, ref rote);
+
+ dr.Cells[5].Tag = rote;
+ dr.Cells[6].Tag = doseunit;
+ dr.Cells[7].Tag = doses;
if (_dataGridView.Rows.Count != 0 && _dataGridView.Rows[_dataGridView.Rows.Count - 1].Cells[3].EditedFormattedValue.ToString() == "")
{
@@ -189,7 +206,7 @@ namespace AIMS.PublicUI.UI
///
///
///
- public decimal GetDrugsNum(Drugs drug)
+ public decimal GetDrugsNum(Drugs drug, ref double doses, ref string doseunit, ref string rote)
{
decimal XMSL = 1;
List drugsRecords = _record.FactDrugList.Where(a => a.DrugId == drug.Id).ToList();
@@ -212,6 +229,9 @@ namespace AIMS.PublicUI.UI
}
}
XMSL = Math.Ceiling(dose);
+ rote = "吸入";
+ doseunit = "ml";
+ doses = double.Parse(dose.ToString());
}
else
{
@@ -222,6 +242,7 @@ namespace AIMS.PublicUI.UI
decimal dose = 0;
foreach (var item in drugsRecords)
{
+ rote = item.DrugChannel;
if (drug.Dosage != null && drug.Dosage != "")
DOSEPER = decimal.Parse(drug.Dosage);
if (drug.DosageUnit != null && drug.DosageUnit != "")
@@ -259,6 +280,8 @@ namespace AIMS.PublicUI.UI
}
}
//总剂量计算方式 根据规格单位得到换算完的总量 除以最小剂量
+ doses = double.Parse(dose.ToString());
+ doseunit = DOSEPERUNIT;
XMSL = Math.Ceiling(dose / DOSEPER);
if (XMSL < 1) XMSL = 1;
}
@@ -572,7 +595,11 @@ namespace AIMS.PublicUI.UI
continue;
//实例化FeesRecord对象
FeesRecord feesR = new FeesRecord();
- feesR.PatientId = _record.PatientId;
+ if (dr.Tag != null)
+ {
+ feesR = dr.Tag as FeesRecord;
+ }
+ feesR.PatientId = _record.PatientId;
feesR.ApplyId = _record.OperationApplyId;
feesR.OperationRecordId = _record.Id;
feesR.ApplyOrderNo = "";
@@ -585,11 +612,17 @@ namespace AIMS.PublicUI.UI
Drugs drug = dr.Cells[3].Tag as Drugs;
feesR.FeeId = drug.Id.ToString();
feesR.DrugType = drug.DrugKind;
+ feesR.Extend1 = dr.Cells[6].Tag.ToString();//剂量
+ feesR.Extend2 = dr.Cells[7].Tag.ToString();//途径
+ feesR.Extend3 = dr.Cells[5].Tag.ToString();//是否打印处方单
}
else
{
Charges drug = dr.Cells[3].Tag as Charges;
feesR.FeeId = drug.Id.ToString();
+ feesR.Extend1 = "";//剂量
+ feesR.Extend2 = "";//途径
+ feesR.Extend3 = "";//是否打印处方单
}
feesR.FeeCode = dr.Cells[2].EditedFormattedValue.ToString();
feesR.FeeSerial = dr.Cells[2].EditedFormattedValue.ToString();
@@ -623,28 +656,25 @@ namespace AIMS.PublicUI.UI
feesR.OperatorNo = PublicMethod.OperatorNo;
feesR.OperatorName = PublicMethod.OperatorName;
- feesR.DrugSite = "";
- feesR.FeeId2 = "";
- feesR.BillCode = "";
- feesR.GroupID = "";
- feesR.Valuer = "";
- feesR.Remark = "";
- feesR.EmergencyFlag = "";
- feesR.OrderNo = "";
- feesR.OrderState = "";
- feesR.Conclusion = "";
- feesR.IsInsure = "";
- feesR.InsureNO = "";
- feesR.LimitDrug = "";
- feesR.Extend1 = "";
- feesR.Extend2 = "";
- feesR.Extend3 = "";
- feesR.Extend4 = "";
- feesR.Extend5 = "";
-
-
if (dr.Tag == null)
{
+ feesR.DrugSite = "";
+ feesR.FeeId2 = "";
+ feesR.BillCode = "";
+ feesR.GroupID = "";
+ feesR.Valuer = "";
+ feesR.Remark = "";
+ feesR.EmergencyFlag = "";
+ feesR.OrderNo = "";
+ feesR.OrderState = "";
+ feesR.Conclusion = "";
+ feesR.IsInsure = "";
+ feesR.InsureNO = "";
+ feesR.LimitDrug = "";
+ feesR.Extend4 = "";
+ feesR.Extend5 = "";
+
+
feesR.Id = BFeesRecord.Insert(feesR);
dr.Tag = feesR;
dr.Cells[0].Value = feesR.Id;
@@ -684,8 +714,16 @@ namespace AIMS.PublicUI.UI
if (_dataGridView.CurrentRow.Tag != null)
{
FeesRecord record = _dataGridView.CurrentRow.Tag as FeesRecord;
- BFeesRecord.Delete(record);
+ PrintDocument DModel = DocumentDAL.GetDocumentbyName("第二类精神药品处方笺", _record.PatientId.Value, record.Id.Value);
+ if (DModel != null && DModel.Id > 0)
+ {
+ DialogResult dialogResult = MessageBox.Show("该药品已存在处方单 是否删除?", "系统提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
+ if (dialogResult == DialogResult.No) return;
+ else
+ DocumentDAL.DeletePrintDocument2(DModel);
+ }
+ BFeesRecord.Delete(record);
_dataGridView.Rows.Remove(_dataGridView.CurrentRow);
_lineNumber = 0;
@@ -1452,8 +1490,9 @@ namespace AIMS.PublicUI.UI
if (dialogResult == DialogResult.Yes)
{
dgvDrugs.Rows.Clear();
- FeesRecordList = BFeesRecord.Select(" FeeType='" + FeeType + "' and OperationRecordId=" + _record.Id, null, RecursiveType.None, 0);
+ FeesRecordList = BFeesRecord.Select(" FeeType='" + FeeType + "' and OperationRecordId=" + _record.Id, null, RecursiveType.None, 0);
BFeesRecord.Delete(" FeeIsDrug =1 and FeeType='" + FeeType + "' and OperationRecordId=" + _record.Id, null);
+ DocumentDAL.DeletePrintDocument3("第二类精神药品处方笺", _record.PatientId.Value, PublicMethod.OperatorNo);
LoadRecordDrugs();
}
}
@@ -1465,5 +1504,23 @@ namespace AIMS.PublicUI.UI
SetChargDrugPrice();
AddNewNullRows();
}
+
+ private void dgvDrugs_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
+ {
+ if (dgvDrugs.CurrentRow.Cells[3].Value == null || dgvDrugs.CurrentRow.Cells[3].Value.ToString() == "")//药品名称
+ return;
+ if (dgvDrugs.CurrentRow.Cells[7].Value == null || dgvDrugs.CurrentRow.Cells[7].Value.ToString() == "")//药品名称
+ return;
+ FeesRecord drug = dgvDrugs.CurrentRow.Tag as FeesRecord;
+ if (drug == null)
+ {
+ MessageBox.Show("请先保存后再打印处方单!", "系统提示");
+ return;
+ }
+ frmPrescriptionDocument document = new frmPrescriptionDocument();
+ document.PatientId = _record.PatientId.Value;
+ document.fee = drug;
+ document.ShowDialog();
+ }
}
}
diff --git a/AIMS/OperationAanesthesia/frmFeesRecord.resx b/AIMS/OperationAanesthesia/frmFeesRecord.resx
index 5c537d8..04981be 100644
--- a/AIMS/OperationAanesthesia/frmFeesRecord.resx
+++ b/AIMS/OperationAanesthesia/frmFeesRecord.resx
@@ -146,7 +146,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAa
- CAAAAk1TRnQBSQFMAgEBAgEAAagBBwGoAQcBFAEAARQBAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFQ
+ CAAAAk1TRnQBSQFMAgEBAgEAAbgBBwG4AQcBFAEAARQBAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAFQ
AwABFAMAAQEBAAEgBgABGS4AA1UBrwOAAf4DKwH8AysB/AGZAYsBQAH9AaEBkgEAAf8BkwGCAQAB/wGW
AYcBQAH9AaMBlAEAAf8BowGUAQAB/wGjAZQBAAH/AysB/ANgAej/AA0AAZMBggEAAf8DYgH2A20B9wNt
AfcDXAH4A4AB/gGXAYYBAAH/A20B9wHsAecB5AH/AewB5wHkAf8B7AHnAeQB/wNtAfcBkwGCAQAB//8A
diff --git a/AIMS/OperationAanesthesia/frmInstrumentRecord.cs b/AIMS/OperationAanesthesia/frmInstrumentRecord.cs
index 13270ae..b33c0b8 100644
--- a/AIMS/OperationAanesthesia/frmInstrumentRecord.cs
+++ b/AIMS/OperationAanesthesia/frmInstrumentRecord.cs
@@ -1360,7 +1360,7 @@ namespace AIMS.OperationAanesthesia
}
}
_appliance2 = newDataTable;
- FullUcControlsToPanel(panelQXList2, _appliance2, _record.InstrumentList2, ref i1, ref j1);
+ FullUcControlsToPanel(panelQXList2, _appliance2, _record.InstrumentList2, ref i2, ref j2);
}
}
#endregion
diff --git a/AIMS/OperationAanesthesia/frmInstrumentRecord2.Designer.cs b/AIMS/OperationAanesthesia/frmInstrumentRecord2.Designer.cs
index 4e8333c..d14ad76 100644
--- a/AIMS/OperationAanesthesia/frmInstrumentRecord2.Designer.cs
+++ b/AIMS/OperationAanesthesia/frmInstrumentRecord2.Designer.cs
@@ -72,11 +72,8 @@
this.superTabMain = new DevComponents.DotNetBar.SuperTabControl();
this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
this.panelExZKZB = new DevComponents.DotNetBar.PanelEx();
- this.panel8 = new AIMS.PublicUI.UI.DrawPanel();
- this.myEditControl = new DCSoft.Writer.Controls.WriterControl();
this.spTabQXQDD = new DevComponents.DotNetBar.SuperTabItem();
this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
- this.panel9 = new AIMS.PublicUI.UI.DrawPanel();
this.spTabQXQDD2 = new DevComponents.DotNetBar.SuperTabItem();
this.panel7 = new System.Windows.Forms.Panel();
this.panel21 = new System.Windows.Forms.Panel();
@@ -108,6 +105,9 @@
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.writerCommandControler1 = new DCSoft.Writer.Commands.WriterCommandControler(this.components);
+ this.panel8 = new AIMS.PublicUI.UI.DrawPanel();
+ this.myEditControl = new DCSoft.Writer.Controls.WriterControl();
+ this.panel9 = new AIMS.PublicUI.UI.DrawPanel();
this.panel3.SuspendLayout();
this.panel14.SuspendLayout();
this.panel4.SuspendLayout();
@@ -117,7 +117,6 @@
this.superTabMain.SuspendLayout();
this.superTabControlPanel1.SuspendLayout();
this.panelExZKZB.SuspendLayout();
- this.panel8.SuspendLayout();
this.superTabControlPanel2.SuspendLayout();
this.panel7.SuspendLayout();
this.panel21.SuspendLayout();
@@ -135,6 +134,7 @@
((System.ComponentModel.ISupportInitialize)(this.txtInRoom)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picInRoom)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.writerCommandControler1)).BeginInit();
+ this.panel8.SuspendLayout();
this.SuspendLayout();
//
// panel2
@@ -842,26 +842,6 @@
this.panelExZKZB.Style.GradientAngle = 90;
this.panelExZKZB.TabIndex = 0;
//
- // panel8
- //
- this.panel8.AutoScroll = true;
- this.panel8.BackColor = System.Drawing.Color.White;
- this.panel8.Controls.Add(this.myEditControl);
- this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel8.Location = new System.Drawing.Point(0, 0);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(1389, 803);
- this.panel8.TabIndex = 2;
- this.panel8.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel8_Scroll);
- //
- // myEditControl
- //
- this.myEditControl.Dock = System.Windows.Forms.DockStyle.Fill;
- this.myEditControl.Location = new System.Drawing.Point(0, 0);
- this.myEditControl.Name = "myEditControl";
- this.myEditControl.Size = new System.Drawing.Size(1389, 803);
- this.myEditControl.TabIndex = 6;
- //
// spTabQXQDD
//
this.spTabQXQDD.AttachedControl = this.superTabControlPanel1;
@@ -879,16 +859,6 @@
this.superTabControlPanel2.TabIndex = 0;
this.superTabControlPanel2.TabItem = this.spTabQXQDD2;
//
- // panel9
- //
- this.panel9.AutoScroll = true;
- this.panel9.BackColor = System.Drawing.Color.White;
- this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel9.Location = new System.Drawing.Point(0, 0);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(1389, 803);
- this.panel9.TabIndex = 3;
- //
// spTabQXQDD2
//
this.spTabQXQDD2.AttachedControl = this.superTabControlPanel2;
@@ -944,7 +914,7 @@
this.PanelSave.Name = "PanelSave";
this.PanelSave.Size = new System.Drawing.Size(28, 28);
this.PanelSave.TabIndex = 3;
- this.toolTip1.SetToolTip(this.PanelSave, "保存");
+ this.toolTip1.SetToolTip(this.PanelSave, "保存");
this.PanelSave.Click += new System.EventHandler(this.PanelSave_Click);
//
// plPrint
@@ -1403,6 +1373,36 @@
this.flowLayoutPanel1.Size = new System.Drawing.Size(147, 71);
this.flowLayoutPanel1.TabIndex = 0;
//
+ // panel8
+ //
+ this.panel8.AutoScroll = true;
+ this.panel8.BackColor = System.Drawing.Color.White;
+ this.panel8.Controls.Add(this.myEditControl);
+ this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel8.Location = new System.Drawing.Point(0, 0);
+ this.panel8.Name = "panel8";
+ this.panel8.Size = new System.Drawing.Size(1389, 803);
+ this.panel8.TabIndex = 2;
+ this.panel8.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel8_Scroll);
+ //
+ // myEditControl
+ //
+ this.myEditControl.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.myEditControl.Location = new System.Drawing.Point(0, 0);
+ this.myEditControl.Name = "myEditControl";
+ this.myEditControl.Size = new System.Drawing.Size(1389, 803);
+ this.myEditControl.TabIndex = 6;
+ //
+ // panel9
+ //
+ this.panel9.AutoScroll = true;
+ this.panel9.BackColor = System.Drawing.Color.White;
+ this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel9.Location = new System.Drawing.Point(0, 0);
+ this.panel9.Name = "panel9";
+ this.panel9.Size = new System.Drawing.Size(1389, 803);
+ this.panel9.TabIndex = 3;
+ //
// frmInstrumentRecord2
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
@@ -1425,7 +1425,6 @@
this.superTabMain.ResumeLayout(false);
this.superTabControlPanel1.ResumeLayout(false);
this.panelExZKZB.ResumeLayout(false);
- this.panel8.ResumeLayout(false);
this.superTabControlPanel2.ResumeLayout(false);
this.panel7.ResumeLayout(false);
this.panel7.PerformLayout();
@@ -1444,6 +1443,7 @@
((System.ComponentModel.ISupportInitialize)(this.txtInRoom)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picInRoom)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.writerCommandControler1)).EndInit();
+ this.panel8.ResumeLayout(false);
this.ResumeLayout(false);
}
diff --git a/AIMS/OperationAanesthesia/frmInstrumentRecord2.cs b/AIMS/OperationAanesthesia/frmInstrumentRecord2.cs
index f1f4b8e..d63a277 100644
--- a/AIMS/OperationAanesthesia/frmInstrumentRecord2.cs
+++ b/AIMS/OperationAanesthesia/frmInstrumentRecord2.cs
@@ -690,7 +690,7 @@ namespace AIMS.OperationAanesthesia
ReturnApply._SelectApplianceUseType = _applianceUseType;
DialogResult ddr = ReturnApply.ShowDialog();
_appliance = ReturnApply._appliance;
- if (ddr == System.Windows.Forms.DialogResult.OK && _appliance != null)
+ if (ddr == System.Windows.Forms.DialogResult.OK && _appliance != null && _applianceUseType[0].Id != 1)
{
FullUcControlsToPanel(QXList, _appliance, _record.InstrumentList, ref i1, ref j1);
//if (_appliance.Rows.Count > 60)
@@ -705,7 +705,7 @@ namespace AIMS.OperationAanesthesia
ReturnApply._SelectApplianceUseType = _applianceUseType2;
DialogResult ddr = ReturnApply.ShowDialog();
_appliance2 = ReturnApply._appliance;
- if (ddr == System.Windows.Forms.DialogResult.OK && _appliance2 != null)
+ if (ddr == System.Windows.Forms.DialogResult.OK && _appliance2 != null && _applianceUseType[0].Id != 1)
{
//FullUcControlsToPanel(panelQXList2, _appliance2, _record.InstrumentList2, ref i2, ref j2);
//if (_appliance.Rows.Count > 60)
@@ -1665,47 +1665,7 @@ namespace AIMS.OperationAanesthesia
i++;
}
return applianceRecordList;
- }
- //private List GetApplianceRecord2()
- //{
- // List applianceRecordList = new List();
- // //foreach (Control ctl in panelQXList2.Controls)
- // //{
- // // ApplianceRecord applianceRecord = new ApplianceRecord();
- // // if (ctl is UCOperationGoodsBill5)
- // // {
- // // UCOperationGoodsBill5 UCOperationGoodsBill5 = ctl as UCOperationGoodsBill5;
- // // if (UCOperationGoodsBill5.Id != null)
- // // {
- // // applianceRecord.Id = UCOperationGoodsBill5.Id;
- // // }
- // // applianceRecord.OperationRecordId = this._record.Id;
- // // applianceRecord.ApplianceId = UCOperationGoodsBill5.GoodsId;
- // // applianceRecord.ApplianceName = UCOperationGoodsBill5.GoodsName;
- // // if (_record.InstrumentList2 != null && _record.InstrumentList2.Id != null)
- // // {
- // // applianceRecord.OperationGoodsBillRecord = _record.InstrumentList2.Id;
- // // }
- // // if (UCOperationGoodsBill5.txtFront.Text != "")
- // // applianceRecord.OpeFront = UCOperationGoodsBill5.OpeFront;
- // // else applianceRecord.OpeFront = null;
- // // if (UCOperationGoodsBill5.txtDoing.Text != "")
- // // applianceRecord.OpeDoing = UCOperationGoodsBill5.OpeDoing;
- // // else applianceRecord.OpeDoing = null;
- // // if (UCOperationGoodsBill5.txtCloseFront.Text != "")
- // // applianceRecord.CloseFront = UCOperationGoodsBill5.CloseFront;
- // // else applianceRecord.CloseFront = null;
- // // if (UCOperationGoodsBill5.txtCloseLast.Text != "")
- // // applianceRecord.CloseLast = UCOperationGoodsBill5.CloseLast;
- // // else applianceRecord.CloseLast = null;
- // // if (UCOperationGoodsBill5.txtSkinCloseLast.Text != "")
- // // applianceRecord.SkinCloseLast = UCOperationGoodsBill5.SkinCloseLast;
- // // else applianceRecord.SkinCloseLast = null;
- // // applianceRecordList.Add(applianceRecord);
- // // }
- // //}
- // return applianceRecordList;
- //}
+ }
#endregion
#endregion
@@ -1741,29 +1701,35 @@ namespace AIMS.OperationAanesthesia
private void TextBoxAddEventSources(List _panel, string TextValue)
{
- for (int i = 0; i < _panel.Count; i++)
+ var BillText = myEditControl.Document.Fields.ToArray().ToList();
+ foreach (var item in BillText)
{
- var BillText = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i]).FirstOrDefault();
- if (BillText != null && BillText.Text == "")
- BillText.Text = TextValue;
- var BillText2 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i] + "A").FirstOrDefault();
- if (BillText2 != null && BillText2.Text == "")
- BillText2.Text = TextValue;
- var BillText3 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i] + "B").FirstOrDefault();
- if (BillText3 != null && BillText3.Text == "")
- BillText3.Text = TextValue;
- var BillText4 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
- if (BillText4 != null && BillText4.Text == "")
- BillText4.Text = TextValue;
- var BillText5 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
- if (BillText5 != null && BillText5.Text == "")
- BillText5.Text = TextValue;
+ if (item.Text == "")
+ item.Text = TextValue;
}
+ //for (int i = 0; i < _panel.Count; i++)
+ //{
+ // var BillText = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ // && (x as XTextInputFieldElement).Name == QXList[i]).FirstOrDefault();
+ // if (BillText != null && BillText.Text == "")
+ // BillText.Text = TextValue;
+ // var BillText2 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ // && (x as XTextInputFieldElement).Name == QXList[i] + "A").FirstOrDefault();
+ // if (BillText2 != null && BillText2.Text == "")
+ // BillText2.Text = TextValue;
+ // var BillText3 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ // && (x as XTextInputFieldElement).Name == QXList[i] + "B").FirstOrDefault();
+ // if (BillText3 != null && BillText3.Text == "")
+ // BillText3.Text = TextValue;
+ // var BillText4 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ // && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
+ // if (BillText4 != null && BillText4.Text == "")
+ // BillText4.Text = TextValue;
+ // var BillText5 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ // && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
+ // if (BillText5 != null && BillText5.Text == "")
+ // BillText5.Text = TextValue;
+ //}
}
private void btnChage_Click(object sender, EventArgs e)
@@ -1772,7 +1738,7 @@ namespace AIMS.OperationAanesthesia
frmchargRecord.Show();
frmchargRecord.BringToFront();
}
-
+
private void frmAnasRecordInstrument_VisibleChanged(object sender, EventArgs e)
{
if (this.Visible == false)
diff --git a/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.cs b/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.cs
deleted file mode 100644
index 3418d98..0000000
--- a/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-using AIMSModel;
-using DrawGraph;
-using System;
-using System.Drawing;
-using System.Windows.Forms;
-
-namespace AIMS.OperationAanesthesia
-{
- 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/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.designer.cs b/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.designer.cs
deleted file mode 100644
index 2c2f838..0000000
--- a/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.designer.cs
+++ /dev/null
@@ -1,1259 +0,0 @@
-using System.Windows.Forms;
-namespace AIMS.OperationAanesthesia
-{
- 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/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.resx b/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.resx
deleted file mode 100644
index 44be917..0000000
--- a/AIMS/OperationAanesthesia/oldSystemCode/frmChargRecordPrint.resx
+++ /dev/null
@@ -1,1313 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.Designer.cs b/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.Designer.cs
index 7e67e55..10f6cd4 100644
--- a/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.Designer.cs
+++ b/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.Designer.cs
@@ -1,4 +1,4 @@
-namespace AIMS.OperationAanesthesia.oldSystemCode
+namespace AIMS.OperationAanesthesia
{
partial class frmPrescriptionDocument
{
@@ -28,14 +28,19 @@
///
private void InitializeComponent()
{
+ this.components = new System.ComponentModel.Container();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
- this.tsbAdd = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tsbSava = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+ this.tsbAdd = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.tsbExit = new System.Windows.Forms.ToolStripButton();
this.panel1 = new System.Windows.Forms.Panel();
+ this.myEditControl = new DCSoft.Writer.Controls.WriterControl();
+ this.writerCommandControler1 = new DCSoft.Writer.Commands.WriterCommandControler(this.components);
this.toolStrip1.SuspendLayout();
+ this.panel1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.writerCommandControler1)).BeginInit();
this.SuspendLayout();
//
// toolStrip1
@@ -50,25 +55,10 @@
this.tsbExit});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
- this.toolStrip1.Size = new System.Drawing.Size(544, 49);
+ this.toolStrip1.Size = new System.Drawing.Size(624, 49);
this.toolStrip1.TabIndex = 9;
this.toolStrip1.Text = "toolStrip1";
//
- // tsbAdd
- //
- this.tsbAdd.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.tsbAdd.Image = global::AIMS.Properties.Resources.图标_打印;
- this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Transparent;
- this.tsbAdd.Name = "tsbAdd";
- this.tsbAdd.Size = new System.Drawing.Size(44, 46);
- this.tsbAdd.Text = " 打印";
- this.tsbAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
- //
- // toolStripSeparator1
- //
- this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(6, 49);
- //
// tsbSava
//
this.tsbSava.Font = new System.Drawing.Font("微软雅黑", 9F);
@@ -78,6 +68,23 @@
this.tsbSava.Size = new System.Drawing.Size(52, 46);
this.tsbSava.Text = " 保存 ";
this.tsbSava.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.tsbSava.Click += new System.EventHandler(this.tsbSava_Click);
+ //
+ // toolStripSeparator1
+ //
+ this.toolStripSeparator1.Name = "toolStripSeparator1";
+ this.toolStripSeparator1.Size = new System.Drawing.Size(6, 49);
+ //
+ // tsbAdd
+ //
+ this.tsbAdd.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.tsbAdd.Image = global::AIMS.Properties.Resources.图标_打印;
+ this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Transparent;
+ this.tsbAdd.Name = "tsbAdd";
+ this.tsbAdd.Size = new System.Drawing.Size(44, 46);
+ this.tsbAdd.Text = " 打印";
+ this.tsbAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
//
// toolStripSeparator4
//
@@ -93,20 +100,30 @@
this.tsbExit.Size = new System.Drawing.Size(52, 46);
this.tsbExit.Text = " 关闭 ";
this.tsbExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
+ this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
//
// panel1
//
+ this.panel1.Controls.Add(this.myEditControl);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 49);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(544, 712);
+ this.panel1.Size = new System.Drawing.Size(624, 832);
this.panel1.TabIndex = 10;
//
+ // myEditControl
+ //
+ this.myEditControl.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.myEditControl.Location = new System.Drawing.Point(0, 0);
+ this.myEditControl.Name = "myEditControl";
+ this.myEditControl.Size = new System.Drawing.Size(624, 832);
+ this.myEditControl.TabIndex = 7;
+ //
// frmPrescriptionDocument
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(544, 761);
+ this.ClientSize = new System.Drawing.Size(624, 881);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.Name = "frmPrescriptionDocument";
@@ -116,6 +133,8 @@
this.Load += new System.EventHandler(this.frmPrescriptionDocument_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
+ this.panel1.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.writerCommandControler1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
@@ -130,5 +149,7 @@
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
public System.Windows.Forms.ToolStripButton tsbExit;
private System.Windows.Forms.Panel panel1;
+ private DCSoft.Writer.Controls.WriterControl myEditControl;
+ private DCSoft.Writer.Commands.WriterCommandControler writerCommandControler1;
}
}
\ No newline at end of file
diff --git a/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.cs b/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.cs
index 280c7c5..ee5b34a 100644
--- a/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.cs
+++ b/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.cs
@@ -1,29 +1,285 @@
-using DrawGraph;
+using AIMSBLL;
+using AIMSModel;
+using DCSoft.Writer;
+using DCSoft.Writer.Data;
+using DCSoft.Writer.Dom;
+using DocumentManagement;
+using DrawGraph;
using System;
using System.Collections.Generic;
-using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
-using System.Text;
+using System.Reflection;
+using System.Runtime.InteropServices;
using System.Windows.Forms;
+using System.Xml;
-namespace AIMS.OperationAanesthesia.oldSystemCode
+namespace AIMS.OperationAanesthesia
{
public partial class frmPrescriptionDocument : Form
{
- public OperationRecord _operationRecord;
- public DataGridViewRow CurrentRow ;
+ public int PatientId;
+ public FeesRecord fee;
+ //模板Model
+ private PrintTemplate TModel = new PrintTemplate();
+ //文档Model
+ private PrintDocument DModel = new PrintDocument();
+ //患者Id
+ public PatientRecord Patient = new PatientRecord();
+ //容器tab
+ //public TabItem Tb;
+ //文档事件
+ private EventCodeCompilerBill codeCompiler;
+ private string strClick, strContentChanged;
+
+
public frmPrescriptionDocument()
{
InitializeComponent();
}
private void frmPrescriptionDocument_Load(object sender, EventArgs e)
- {
- PrescriptionDocument doc = new PrescriptionDocument(_operationRecord, CurrentRow);
- doc.Location = new Point(15, 0);
- panel1.Controls.Add(doc);
+ {
+ //myEditControl初始化
+ myEditControl.MoveFocusHotKey = MoveFocusHotKeys.Tab;
+ myEditControl.HeaderFooterReadonly = true;
+ myEditControl.CommandControler = this.writerCommandControler1;
+ writerCommandControler1.Start();
+ //表单视图模式
+ myEditControl.FormView = DCSoft.Writer.Controls.FormViewMode.Strict;
+ //加载知识库
+ //DocumentDAL.LoadKBLibaray();
+ myEditControl.ExecuteCommand("LoadKBLibrary", false, DocumentDAL.Lib);
+ // 注册自定义的输入域下拉列表提供者
+ myEditControl.AppHost.Services.AddService(
+ typeof(IListItemsProvider),
+ new MyListItemsProvider());
+ //// 设置文档处于调试模式
+ //myEditControl.DocumentOptions.BehaviorOptions.DebugMode = true;
+ //myEditControl.DocumentOptions.BehaviorOptions.InsertCommentBindingUserTrack = true;
+ //启用逻辑删除、权限控制
+ myEditControl.Document.Options.SecurityOptions.EnablePermission = true;
+ myEditControl.Document.Options.SecurityOptions.EnableLogicDelete = true;
+ myEditControl.Document.Options.SecurityOptions.ShowLogicDeletedContent = true;
+ myEditControl.Document.Options.SecurityOptions.ShowPermissionMark = true;
+ myEditControl.Document.Options.SecurityOptions.ShowPermissionTip = true;
+
+
+
+ Patient = PatientRecord.GetPatientRecord(PatientId);
+ DModel = DocumentDAL.GetDocumentbyName("第二类精神药品处方笺", Patient.PatientId, fee.Id.Value);
+ LoadDocument();
}
+
+ #region 文书控件事件
+ private void LoadDocument()
+ {
+ if (DModel.Id > 0)
+ {
+ //加载文档
+ DModel = DocumentDAL.GetDocumentbyId(DModel.Id);
+ myEditControl.LoadDocumentFromString(DModel.XmlFile, "xml");
+
+ //患者基本信息二次赋值
+ var query = from XTextElement in myEditControl.Document.Fields.ToArray()
+ where XTextElement is XTextInputFieldElement
+ && (XTextElement as XTextInputFieldElement).FieldSettings != null
+ && (XTextElement as XTextInputFieldElement).FieldSettings.EditStyle != InputFieldEditStyle.Date
+ && (XTextElement as XTextInputFieldElement).FieldSettings.ListSource != null
+ select XTextElement as XTextInputFieldElement;
+ DataRow[] dr = DocumentDAL.GetReflectionList("V_OperationRecordALL").Select("KB_SEQ <> '' and Reload=1");
+ var p = typeof(PatientRecord).GetProperties();
+ for (int i = 0; i < dr.Count(); i++)
+ {
+ var name = dr[i].ItemArray[0].ToString();
+ var value = dr[i].ItemArray[1].ToString();
+ XTextInputFieldElement element = query.Where(x => x.FieldSettings.ListSource.SourceName == value).FirstOrDefault();
+ PropertyInfo info = p.Where(px => px.Name == name).FirstOrDefault();
+ if (element != null && info != null)
+ {
+ element.Text = info.GetValue(Patient, null).ToString();
+ }
+ }
+ }
+ else
+ {
+ fee.Extend4 = BFeesRecord.GetOrderNum().ToString();
+ //无文档则加载模板
+ TModel = DocumentDAL.GetTemplatebyId(DModel.TemplateId);
+ if (TModel.XmlFile == null || TModel.XmlFile.Trim().Equals(string.Empty))
+ {
+ myEditControl.ExecuteCommand("FileNew", true, null);
+ }
+ else
+ {
+ myEditControl.LoadDocumentFromString(TModel.XmlFile, "xml");
+ }
+ DModel.XmlFileName = TModel.XmlFileName;
+ DModel.TemplateId = TModel.Id;
+ //患者基本信息赋值
+ var query = from XTextElement in myEditControl.Document.Fields.ToArray()
+ where XTextElement is XTextInputFieldElement
+ && (XTextElement as XTextInputFieldElement).FieldSettings != null
+ && (XTextElement as XTextInputFieldElement).FieldSettings.EditStyle != InputFieldEditStyle.Date
+ && (XTextElement as XTextInputFieldElement).FieldSettings.ListSource != null
+ select XTextElement as XTextInputFieldElement;
+ DataRow[] dr = DocumentDAL.GetReflectionList("V_OperationRecordALL").Select("KB_SEQ <> ''");
+ var p = typeof(PatientRecord).GetProperties();
+ for (int i = 0; i < dr.Count(); i++)
+ {
+ var name = dr[i].ItemArray[0].ToString();
+ var value = dr[i].ItemArray[1].ToString();
+ XTextInputFieldElement element = query.Where(x => x.FieldSettings.ListSource.SourceName == value).FirstOrDefault();
+ PropertyInfo info = p.Where(px => px.Name == name).FirstOrDefault();
+ if (element != null && info != null)
+ {
+ element.Text = info.GetValue(Patient, null).ToString();
+ }
+ }
+
+ var Text = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "开方日期").FirstOrDefault();
+ if (Text != null && fee.ExecTime != null)
+ Text.Text = " " + fee.ExecTime.Value.ToString("yyyy年MM月dd日");
+ var Text1 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "药品名称").FirstOrDefault();
+ if (Text1 != null)
+ Text1.Text = fee.ChargName;
+ var Text2 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "规格").FirstOrDefault();
+ if (Text2 != null)
+ Text2.Text = fee.ChargSpec + "*" + fee.FeeNum + fee.Unit;
+ var Text3 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "剂量").FirstOrDefault();
+ if (Text3 != null)
+ Text3.Text = fee.Extend2;
+ var Text4 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "单位").FirstOrDefault();
+ if (Text4 != null)
+ Text4.Text = fee.Extend1;
+ var Text5 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "途径").FirstOrDefault();
+ if (Text5 != null)
+ Text5.Text = fee.Extend3;
+ var Text6 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "药价").FirstOrDefault();
+ if (Text6 != null)
+ Text6.Text = fee.ChargePrice;
+ var Text7 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "医师").FirstOrDefault();
+ if (Text7 != null)
+ Text7.Text = fee.ExecWork;
+ var Text8 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "处方单号").FirstOrDefault();
+ if (Text8 != null)
+ Text8.Text = "000" + fee.Extend4;
+ DocumentExtension.SetDocumentDefaultValue(TModel.XmlFileName, myEditControl.Document, Patient);
+ }
+ string xmlStatic = DocumentDAL.GetEventXml(DModel.TemplateId);
+ if (xmlStatic != string.Empty)
+ {
+ XmlDocument doc = new XmlDocument();
+ doc.LoadXml(xmlStatic);
+ strClick = doc.GetElementsByTagName("ClickEvent")[0].InnerText;
+ strContentChanged = doc.GetElementsByTagName("ContentChangedEnvent")[0].InnerText;
+ }
+ //codeCompiler = new EventCodeCompilerBill(ref this.myEditControl, strClick, strContentChanged, QXList);
+
+ //文档用户信息
+ myEditControl.UserLoginByParameter(
+ AIMSExtension.PublicMethod.OperatorNo,
+ AIMSExtension.PublicMethod.OperatorName,
+ AIMSExtension.PublicMethod.PermissionLevel);
+ //隐藏痕迹先
+ myEditControl.ExecuteCommand(StandardCommandNames.CleanViewMode, false, true);
+
+ }
+ #endregion
+ private void tsbAdd_Click(object sender, EventArgs e)
+ {
+ tsbSava_Click(null, null);
+ myEditControl.ExecuteCommand("FilePrint", true, null);
+
+
+ }
+ private void tsbExit_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+
+ private void tsbSava_Click(object sender, EventArgs e)
+ {
+ if (DModel.Id == 0)
+ {
+ int orderno = BFeesRecord.GetOrderNum();
+ if (int.Parse(fee.Extend4) < orderno)
+ {
+ fee.Extend4 = orderno.ToString();
+ var Text8 = myEditControl.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == "处方单号").FirstOrDefault();
+ if (Text8 != null)
+ Text8.Text = "000" + fee.Extend4;
+ }
+ }
+ BFeesRecord.Update(fee);
+ ValueValidateResultList listR = myEditControl.Document.ValueValidate();
+ string vMsg = "";
+ foreach (var item in listR)
+ {
+ vMsg += item.Message + System.Environment.NewLine;
+ }
+ if (vMsg.Length > 0)
+ {
+ throw new Exception(vMsg);
+ }
+ //model赋值
+ DModel.XmlFile = myEditControl.Document.XMLText;
+ DModel.PatientId = this.Patient.PatientId;
+ DModel.OperatorNo = AIMSExtension.PublicMethod.OperatorNo;
+ DModel.RecordId = fee.Id.Value.ToString();
+ DModel.Remark = fee.ChargName;
+ XmlDocument doc = new XmlDocument();
+ XmlElement rootNode = doc.CreateElement("Root");
+ doc.AppendChild(rootNode);
+ var query = from XTextElement in myEditControl.Document.Fields.ToArray()
+ where (XTextElement is XTextInputFieldElement && (XTextElement as XTextInputFieldElement).ToolTip != "")
+ || XTextElement is XTextCheckBoxElement && ((XTextElement as XTextCheckBoxElement).ToolTip != "")
+ select XTextElement;
+ foreach (var element in query)
+ {
+ XmlElement itemNode = doc.CreateElement("Item");
+
+ if (element is XTextInputFieldElement)
+ {
+ itemNode.SetAttribute("Name", (element as XTextInputFieldElement).ToolTip);
+ itemNode.InnerText = element.Text;
+ rootNode.AppendChild(itemNode);
+ }
+ else if (element is XTextCheckBoxElement)
+ {
+ itemNode.SetAttribute("Name", (element as XTextCheckBoxElement).ToolTip);
+ itemNode.SetAttribute("Checked", ((XTextCheckBoxElement)element).Checked == true ? "1" : "0");
+ itemNode.InnerText = (element as XTextCheckBoxElement).Value;
+ rootNode.AppendChild(itemNode);
+ }
+ }
+ DModel.XmlStatic = doc.OuterXml;
+ if (DModel.Id > 0)
+ {
+ DocumentDAL.UpdatePrintDocument2(this.DModel);
+ //MessageBox.Show("修改成功!");
+ }
+ else
+ {
+ DocumentDAL.InsertPrintDocument2(this.DModel);
+ //new frmMessageBox().Show();
+ }
+ myEditControl.Document.Modified = false;
+
+ new frmMessageBox().Show();
+
+ }
+
}
}
diff --git a/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.resx b/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.resx
index 5da7a24..6af526c 100644
--- a/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.resx
+++ b/AIMS/OperationAanesthesia/oldSystemCode/frmPrescriptionDocument.resx
@@ -120,4 +120,7 @@
17, 17
+
+ 563, 17
+
\ No newline at end of file
diff --git a/AIMS/OperationAfter/frmOperationCharg2.cs b/AIMS/OperationAfter/frmOperationCharg2.cs
index 438b54b..d026638 100644
--- a/AIMS/OperationAfter/frmOperationCharg2.cs
+++ b/AIMS/OperationAfter/frmOperationCharg2.cs
@@ -1,4 +1,6 @@
-using AIMSBLL;
+using AIMS.OperationAanesthesia;
+using AIMS.PublicUI.UI;
+using AIMSBLL;
using AIMSExtension;
using AIMSModel;
using DrawGraph;
@@ -201,8 +203,17 @@ namespace AIMS.OperationAfter.UI
// return;
//}
//DataGridViewToExcel.DataToExcel(dgvOperation);
- frmOperationCharg4 charg4 = new frmOperationCharg4();
- charg4.ShowDialog();
+ //frmOperationCharg4 charg4 = new frmOperationCharg4();
+ //charg4.ShowDialog();
+
+ if (dgvOperation.CurrentRow == null)//药品名称
+ return;
+ int PatientId = int.Parse(dgvOperation.CurrentRow.Cells[2].Value.ToString());
+ OperationRecord _record = new OperationRecord();
+ BOperationRecord.getRecord(_record, PatientId, 1);
+ frmFeesRecord frmchargRecord = new frmFeesRecord(_record, rdoZQ.Checked == true ? "麻醉" : "护士");
+ frmchargRecord.Show();
+ frmchargRecord.BringToFront();
}
private void cboRoom_SelectedIndexChanged(object sender, EventArgs e)
@@ -236,8 +247,8 @@ namespace AIMS.OperationAfter.UI
{
int index = dgvtEMPOperationInfos.Rows.Add();
dgvtEMPOperationInfos.Rows[index].Cells[0].Value = item.Id;// 编号
- dgvtEMPOperationInfos.Rows[index].Cells[1].Value = item.BillCode;
- dgvtEMPOperationInfos.Rows[index].Cells[2].Value = item.ChargName += " " + item.ChargSpec;
+ dgvtEMPOperationInfos.Rows[index].Cells[1].Value = item.BillCode;
+ dgvtEMPOperationInfos.Rows[index].Cells[2].Value = item.ChargName += " " + item.ChargSpec;
dgvtEMPOperationInfos.Rows[index].Cells[3].Value = item.Unit;
dgvtEMPOperationInfos.Rows[index].Cells[4].Value = item.FeeNum;
dgvtEMPOperationInfos.Rows[index].Cells[5].Value = item.UnitPrice;
@@ -272,7 +283,7 @@ namespace AIMS.OperationAfter.UI
{
SolidBrush b = new SolidBrush(dgvtEMPOperationInfos.RowHeadersDefaultCellStyle.ForeColor);
e.Graphics.DrawString((maxOrder + e.RowIndex + 1).ToString(System.Globalization.CultureInfo.CurrentUICulture), this.dgvtEMPOperationInfos.DefaultCellStyle.Font, b, e.RowBounds.Location.X + 20, e.RowBounds.Location.Y + 4);
-
+
//隔行换色
this.dgvtEMPOperationInfos.RowsDefaultCellStyle.BackColor = Color.White;//设置背景为白色
this.dgvtEMPOperationInfos.AlternatingRowsDefaultCellStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(242)))), (((int)(((byte)242)))));//青色
@@ -290,5 +301,21 @@ namespace AIMS.OperationAfter.UI
}
return bResult;
}
+
+ private void dgvtEMPOperationInfos_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
+ {
+ if (dgvtEMPOperationInfos.CurrentRow == null)//药品名称
+ return;
+ int FeesRecordId = int.Parse(dgvtEMPOperationInfos.CurrentRow.Cells[0].Value.ToString());
+ FeesRecord drug = BFeesRecord.SelectSingle(FeesRecordId);
+ if (drug == null)
+ {
+ return;
+ }
+ frmPrescriptionDocument document = new frmPrescriptionDocument();
+ document.PatientId = drug.PatientId.Value;
+ document.fee = drug;
+ document.ShowDialog();
+ }
}
}
diff --git a/AIMS/OperationAfter/frmOperationCharg2.designer.cs b/AIMS/OperationAfter/frmOperationCharg2.designer.cs
index a62a4b7..761e09a 100644
--- a/AIMS/OperationAfter/frmOperationCharg2.designer.cs
+++ b/AIMS/OperationAfter/frmOperationCharg2.designer.cs
@@ -185,7 +185,7 @@
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(112, 45);
this.button1.TabIndex = 16;
- this.button1.Text = "收费记录统计";
+ this.button1.Text = "收费记录";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
@@ -741,6 +741,7 @@
this.dgvtEMPOperationInfos.ShowCellToolTips = false;
this.dgvtEMPOperationInfos.Size = new System.Drawing.Size(1048, 431);
this.dgvtEMPOperationInfos.TabIndex = 389;
+ this.dgvtEMPOperationInfos.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvtEMPOperationInfos_CellDoubleClick);
this.dgvtEMPOperationInfos.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgvtEMPOperationInfos_RowPostPaint);
//
// DId
diff --git a/AIMS/OremrUserControl/EventCodeCompilerBill.cs b/AIMS/OremrUserControl/EventCodeCompilerBill.cs
index ac846b8..241cdcd 100644
--- a/AIMS/OremrUserControl/EventCodeCompilerBill.cs
+++ b/AIMS/OremrUserControl/EventCodeCompilerBill.cs
@@ -81,19 +81,47 @@ namespace AIMS
return;
for (int i = 0; i < QXList.Count; i++)
{
- if (element.Name == QXList[i] + "A" || element.Name == QXList[i] + "B")
+ if (element.Name == QXList[i] + "A")
{
try
{
SelElement = element;
SelElementName = element.Name;
SelElementValue = element.Text;
- var hf3 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
- if (hf3 != null) hf3.Text = SelElementValue;
- var hf2 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
- && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
- if (hf2 != null) hf2.Text = SelElementValue;
+ var hf1 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "B").FirstOrDefault();
+ if (SelElementValue != "" && hf1.Text != "")
+ {
+ double value = 0, font = 0, doing = 0;
+ if (double.TryParse(SelElementValue, out font) == true && double.TryParse(hf1.Text, out doing) == true)
+ {
+ value = font + doing;
+ var hf3 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
+ if (hf3 != null) hf3.Text = value.ToString();
+ var hf2 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
+ if (hf2 != null) hf2.Text = value.ToString();
+ }
+ else
+ {
+ var hf3 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
+ if (hf3 != null) hf3.Text = SelElementValue;
+ var hf2 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
+ if (hf2 != null) hf2.Text = SelElementValue;
+ }
+ }
+ else if (SelElementValue != "")
+ {
+ var hf3 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
+ if (hf3 != null) hf3.Text = SelElementValue;
+ var hf2 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
+ if (hf2 != null) hf2.Text = SelElementValue;
+ }
}
catch (Exception)
{
@@ -106,12 +134,60 @@ namespace AIMS
}
break;
}
+ else if (element.Name == QXList[i] + "B")
+ {
+ try
+ {
+ SelElement = element;
+ SelElementName = element.Name;
+ SelElementValue = element.Text;
+ var hf1 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "A").FirstOrDefault();
+ if (SelElementValue != "" && hf1.Text != null)
+ {
+ double value = 0, font = 0, doing = 0;
+ if (double.TryParse(SelElementValue, out font) == true && double.TryParse(hf1.Text, out doing) == true)
+ {
+ value = font + doing;
+ var hf3 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
+ if (hf3 != null) hf3.Text = value.ToString();
+ var hf2 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
+ if (hf2 != null) hf2.Text = value.ToString();
+ }
+ }
+ }
+ catch (Exception)
+ {
+ var hf = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "C").FirstOrDefault();
+ if (hf != null) hf.Text = SelElementValue;
+ var hf2 = args.Document.Fields.ToArray().Where(x => x is XTextInputFieldElement
+ && (x as XTextInputFieldElement).Name == QXList[i] + "D").FirstOrDefault();
+ if (hf2 != null) hf2.Text = SelElementValue;
+ }
+ break;
+
+ }
}
}
}
void eetChk_MouseClick(object eventSender, ElementMouseEventArgs args)
{
+ if (args.Element is XTextInputFieldElement && IsLoad == true)
+ {
+ var element = args.Element as XTextInputFieldElement;
+ for (int i = 0; i < QXList.Count; i++)
+ {
+ if ((element.Name == QXList[i] + "A"|| element.Name == QXList[i] + "B") && element.Text == "0")
+ {
+ element.Text = "";
+ break;
+ }
+ }
+ }
}
void frmOperation_FormClosed(object sender, FormClosedEventArgs e)
diff --git a/AIMS/OremrUserControl/PrescriptionDocument.Designer.cs b/AIMS/OremrUserControl/PrescriptionDocument.Designer.cs
deleted file mode 100644
index d507690..0000000
--- a/AIMS/OremrUserControl/PrescriptionDocument.Designer.cs
+++ /dev/null
@@ -1,1146 +0,0 @@
-namespace AIMS.OperationAanesthesia
-{
- 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 = "";
- //
- // 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
deleted file mode 100644
index d1958ad..0000000
--- a/AIMS/OremrUserControl/PrescriptionDocument.cs
+++ /dev/null
@@ -1,81 +0,0 @@
-using AIMSBLL;
-using AIMSExtension;
-using AIMSModel;
-using DCSoftDotfuscate;
-using DrawGraph;
-using System;
-using System.Collections.Generic;
-using System.Data;
-using System.Drawing;
-using System.Windows.Forms;
-
-namespace AIMS.OperationAanesthesia
-{
- public partial class PrescriptionDocument : UserControl
- {
- public string type;
- public Drugs Drug;
- public OperationRecord _operationRecord;
- public DataGridViewRow CurrentRow;
- public int DrugCount;
-
- public PrescriptionDocument(OperationRecord operationRecord, DataGridViewRow _CurrentRow)
- {
- InitializeComponent();
- _operationRecord = operationRecord;
- CurrentRow = _CurrentRow;
- Drug = BDrugs.SelectSingle(int.Parse(CurrentRow.Cells[2].Tag.ToString()));
- InitializeData();
-
- }
-
- ///
- /// 赋值
- ///
- private void InitializeData()
- {
- labID.Text = _operationRecord.Id.ToString();
- if (_operationRecord.PatientType == "门诊")
- labMzh.Text = _operationRecord.InHospitalNo;
- else
- label8.Text = _operationRecord.MedicalHistoryNo;
- labPatientName.Text = _operationRecord.Name;
- string birth = _operationRecord.Age.ToString();
- labAge.Text = birth;
- labSex.Text = _operationRecord.Sex;
- try
- {
- labPatientDesa.Text = DBManage.GetDictionaryValuesById(_operationRecord.Operation, "手术");
- labDepartName.Text = _operationRecord.ApplyDepartmentName;
- label19.Text = _operationRecord.Identity;
- //uText5.Text = _operationRecord.Remark;// 地址
- labDate.Text = DateTime.Now.ToString("yyyy年MM月dd日");
- labDoctorName.Text = PublicMethod.OperatorName;
- this.labDoctorOrderName.Text = Drug.Name;
- this.utxtCount.Text = Drug.Stand;
- this.uTextUse.Text = "术中";
- this.labWay.Text = CurrentRow.Cells[5].EditedFormattedValue.ToString();
- this.labSpecifications1.Text += Drug.DosageUnit.Trim();
- }
- catch (Exception ex)
- {
- PublicMethod.WriteLog(ex);
- }
- }
-
- 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日");
- }
-
- }
-}
diff --git a/AIMS/OremrUserControl/PrescriptionDocument.resx b/AIMS/OremrUserControl/PrescriptionDocument.resx
deleted file mode 100644
index 1af7de1..0000000
--- a/AIMS/OremrUserControl/PrescriptionDocument.resx
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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/PublicUI/frmDrugSel.cs b/AIMS/PublicUI/frmDrugSel.cs
index 86b99d9..17c00e4 100644
--- a/AIMS/PublicUI/frmDrugSel.cs
+++ b/AIMS/PublicUI/frmDrugSel.cs
@@ -1,18 +1,14 @@
using AIMSBLL;
+using AIMSExtension;
using AIMSModel;
using DevComponents.DotNetBar;
using DevComponents.DotNetBar.Controls;
using DrawGraph;
-using AIMSExtension;
using System;
using System.Collections.Generic;
-using System.ComponentModel;
using System.Data;
using System.Drawing;
-using System.Linq;
using System.Windows.Forms;
-using DCSoftDotfuscate;
-using AIMS.OperationAanesthesia.oldSystemCode;
namespace AIMS.PublicUI.UI
{
diff --git a/AIMSEntity/BLL/Extension/BFeesRecord.cs b/AIMSEntity/BLL/Extension/BFeesRecord.cs
index d8059bb..b3bdc7f 100644
--- a/AIMSEntity/BLL/Extension/BFeesRecord.cs
+++ b/AIMSEntity/BLL/Extension/BFeesRecord.cs
@@ -4,9 +4,25 @@ using AIMSModel;
using AIMSObjectQuery;
using System.Collections;
using System.Collections.Generic;
+using HelperDB;
+
namespace AIMSBLL
{
public partial class BFeesRecord
{
+ public static int GetOrderNum()
+ {
+ int num = 0;
+ string sql = "select max(Extend4) from FeesRecord";
+ string nums = DBHelper.ExecuteScalar(sql).ToString();
+ if (nums != null && nums != "")
+ num = int.Parse(nums);
+ if (num == 0)
+ num = 3520;
+ else
+ num++;
+ return num;
+
+ }
}
}
diff --git a/AIMSEntity/BLL/Extension/BOperationRecord.cs b/AIMSEntity/BLL/Extension/BOperationRecord.cs
index 9a11342..4261e02 100644
--- a/AIMSEntity/BLL/Extension/BOperationRecord.cs
+++ b/AIMSEntity/BLL/Extension/BOperationRecord.cs
@@ -85,7 +85,7 @@ namespace AIMSBLL
_record.Sex = OperationFrontdt.Rows[0]["Sex"].ToString();
_record.Age = OperationFrontdt.Rows[0]["Age"].ToString();
_record.Identity = OperationFrontdt.Rows[0]["IdentityCard"].ToString();
- //_record.Address = OperationFrontdt.Rows[0]["Address"].ToString();
+ _record.FareType = OperationFrontdt.Rows[0]["PatientKind"].ToString();
if (OperationFrontdt.Rows[0]["Height"].ToString() != "")
{
double Height = 0;
diff --git a/DocumentManagement/DocumentEntity/DocumentDAL.cs b/DocumentManagement/DocumentEntity/DocumentDAL.cs
index b272cc0..f4a7232 100644
--- a/DocumentManagement/DocumentEntity/DocumentDAL.cs
+++ b/DocumentManagement/DocumentEntity/DocumentDAL.cs
@@ -354,7 +354,7 @@ namespace DocumentManagement
public static DataTable GetPatientDoc(string PatientId)
{
StringBuilder strSql = new StringBuilder();
- strSql.Append(" SELECT * FROM [AIMSDB_QHDSGRYY].[dbo].[PrintDocument] where PatientId='" + PatientId + "' ");
+ strSql.Append(" SELECT * FROM [dbo].[PrintDocument] where PatientId='" + PatientId + "' ");
DataTable dt = DbHelperSQL.GetDataTable(strSql.ToString());
return dt;
@@ -613,7 +613,6 @@ namespace DocumentManagement
return model;
}
-
public static void InsertTemplate(PrintTemplate model)
{
try
@@ -680,7 +679,6 @@ namespace DocumentManagement
throw ex;
}
}
-
public static void UpdateTemplate(PrintTemplate model)
{
try
@@ -742,6 +740,7 @@ namespace DocumentManagement
}
}
+
public static void DeleteTemplate(PrintTemplate model)
{
try
@@ -881,6 +880,165 @@ namespace DocumentManagement
}
}
return Value;
- }
+ }
+
+
+ public static PrintDocument GetDocumentbyName(string tempName, int patientId, int RecordId)
+ {
+ PrintDocument model = new PrintDocument();
+ string result = string.Empty;
+ try
+ {
+ StringBuilder sb = new StringBuilder();
+ sb.Append("select ");
+ sb.Append(" pd.Id,");
+ sb.Append(" pd.PatientId,");
+ sb.Append(" pd.TemplateId,");
+ sb.Append(" pd.XmlFileName,");
+ sb.Append(" pd.XmlFile,");
+ sb.Append(" pd.XmlStatic,");
+ sb.Append(" pd.IsValid,");
+ sb.Append(" pd.OperatorNo,");
+ sb.Append(" pd.OperatorDate,");
+ sb.Append(" pd.RecordId,");
+ sb.Append(" pd.Remark");
+ sb.Append(" from PrintDocument pd");
+ sb.Append(" where ");
+ sb.Append(" pd.PatientId = " + patientId);
+ sb.Append(" and pd.XmlFileName = '" + tempName + "'");
+ sb.Append(" and pd.RecordId = '" + RecordId + "'");
+ sb.Append(" and pd.IsValid = 1");
+ sb.Append(" union all");
+ sb.Append(" select ");
+ sb.Append(" 0,");
+ sb.Append(" 0,");
+ sb.Append(" Id,");
+ sb.Append(" pt.XmlFileName,");
+ sb.Append(" pt.XmlFile,");
+ sb.Append(" null,");
+ sb.Append(" '',");
+ sb.Append(" null,");
+ sb.Append(" null,");
+ sb.Append(" null,");
+ sb.Append(" null");
+ sb.Append(" from PrintTemplate pt");
+ sb.Append(" where pt.IsValid = 1");
+ sb.Append(" and pt.XmlFileName = '" + tempName + "'");
+ DataTable dt = DbHelperSQL.GetDataTable(sb.ToString());
+ if (dt.Rows.Count > 0)
+ {
+ model.Id = int.Parse(dt.Rows[0]["Id"].ToString());
+ model.PatientId = int.Parse(dt.Rows[0]["PatientId"].ToString());
+ model.TemplateId = int.Parse(dt.Rows[0]["TemplateId"].ToString());
+ model.XmlFileName = dt.Rows[0]["XmlFileName"].ToString();
+ model.XmlFile = dt.Rows[0]["XmlFile"].ToString();
+ model.XmlStatic = dt.Rows[0]["XmlStatic"].ToString();
+ model.OperatorNo = dt.Rows[0]["OperatorNo"].ToString();
+ //model.OperatorDate = DateTime.Parse(dt.Rows[0]["OperatorDate"].ToString(""));
+ model.RecordId = dt.Rows[0]["RecordId"].ToString();
+ model.Remark = dt.Rows[0]["Remark"].ToString();
+ }
+ }
+ catch (Exception ex)
+ {
+ throw ex;
+ }
+ return model;
+ }
+
+ public static void InsertPrintDocument2(PrintDocument model)
+ {
+ try
+ {
+ StringBuilder strSql = new StringBuilder();
+ strSql.Append("insert into [PrintDocument](");
+ strSql.Append("[PatientId],TemplateId,[XmlFileName],[XmlFile],[XmlStatic],");
+ strSql.Append(" [IsValid],[OperatorNo],[OperatorDate],[RecordId],[Remark]");
+ strSql.Append(")");
+ strSql.Append(" values (");
+ strSql.Append("" + model.PatientId + ",");
+ strSql.Append("" + model.TemplateId + ",");
+ strSql.Append("'" + model.XmlFileName + "',");
+ strSql.Append("'" + model.XmlFile + "',");
+ strSql.Append("'" + model.XmlStatic + "',");
+ strSql.Append(" 1,");
+ strSql.Append("'" + model.OperatorNo + "',");
+ strSql.Append(" getdate(), ");
+ strSql.Append("'" + model.RecordId + "',");
+ strSql.Append("'" + model.Remark + "'");
+ strSql.Append(")");
+ strSql.Append(" select Id from [PrintDocument] where Id = @@Identity");
+ DataTable dt = DbHelperSQL.GetDataTable(strSql.ToString());
+ if (dt.Rows.Count > 0)
+ {
+ model.Id = int.Parse(dt.Rows[0]["Id"].ToString());
+ }
+ }
+ catch (Exception ex)
+ {
+ throw ex;
+ }
+ }
+
+ public static void UpdatePrintDocument2(PrintDocument model)
+ {
+ try
+ {
+ StringBuilder strSql = new StringBuilder();
+ strSql.Append("update [PrintDocument] set");
+ strSql.Append(" PatientId=" + model.PatientId + ",");
+ strSql.Append(" TemplateId=" + model.TemplateId + ",");
+ strSql.Append(" XmlFileName='" + model.XmlFileName + "',");
+ strSql.Append(" XmlFile='" + model.XmlFile + "',");
+ strSql.Append(" XmlStatic='" + model.XmlStatic + "',");
+ strSql.Append(" OperatorNo='" + model.OperatorNo + "',");
+ strSql.Append(" OperatorDate= getdate(),");
+ strSql.Append(" RecordId='" + model.RecordId + "',");
+ strSql.Append(" Remark='" + model.Remark + "'");
+ strSql.Append(" where Id=" + model.Id + " ");
+ DbHelperSQL.ExecNonQuery(strSql.ToString());
+ }
+ catch (Exception ex)
+ {
+ throw ex;
+ }
+ }
+
+ public static void DeletePrintDocument2(PrintDocument model)
+ {
+ try
+ {
+ StringBuilder strSql = new StringBuilder();
+ strSql.Append("update [PrintDocument] set");
+ strSql.Append(" isvalid = 0,");
+ strSql.Append(" OperatorNo='" + model.OperatorNo + "',");
+ strSql.Append(" OperatorDate= getdate()");
+ strSql.Append(" where Id=" + model.Id);
+ DbHelperSQL.ExecNonQuery(strSql.ToString());
+ }
+ catch (Exception ex)
+ {
+ throw ex;
+ }
+ }
+ public static void DeletePrintDocument3(string FileName, int PatientId, string OperatorNo)
+ {
+ try
+ {
+ StringBuilder strSql = new StringBuilder();
+ strSql.Append("update [PrintDocument] set");
+ strSql.Append(" isvalid = 0,");
+ strSql.Append(" OperatorNo='" + OperatorNo + "',");
+ strSql.Append(" OperatorDate= getdate()");
+ strSql.Append(" where PatientId=" + PatientId);
+ strSql.Append(" and XmlFileName='" + FileName + "'");
+ DbHelperSQL.ExecNonQuery(strSql.ToString());
+ }
+ catch (Exception ex)
+ {
+ throw ex;
+ }
+ }
+
}
}
diff --git a/DocumentManagement/DocumentEntity/PatientRecord.cs b/DocumentManagement/DocumentEntity/PatientRecord.cs
index fcb5007..ec5080d 100644
--- a/DocumentManagement/DocumentEntity/PatientRecord.cs
+++ b/DocumentManagement/DocumentEntity/PatientRecord.cs
@@ -26,6 +26,7 @@ namespace DocumentManagement
public String Sex { get; set; }
public String BirthDay { get; set; }
public String Age { get; set; }
+ public String IdentityCard { get; set; }
public String BMI { get; set; }
public String Height { get; set; }
public String Weight { get; set; }
@@ -148,6 +149,7 @@ namespace DocumentManagement
{
}
patient.BirthDay = dt.Rows[0]["BirthDay"].ToString();
+ patient.IdentityCard = dt.Rows[0]["IdentityCard"].ToString();
patient.BloodType = dt.Rows[0]["BloodType"].ToString();
patient.SickBed = dt.Rows[0]["SickBed"].ToString();
patient.OperationType = dt.Rows[0]["OperationType"].ToString();
diff --git a/DocumentManagement/UI/frmTemplate.cs b/DocumentManagement/UI/frmTemplate.cs
index d591c0a..ee816e9 100644
--- a/DocumentManagement/UI/frmTemplate.cs
+++ b/DocumentManagement/UI/frmTemplate.cs
@@ -2144,5 +2144,7 @@ namespace DocumentManagement
public int IsValid { get; set; }
public string OperatorNo { get; set; }
public DateTime OperatorDate { get; set; }
+ public string RecordId { get; set; }
+ public string Remark { get; set; }
}
}
\ No newline at end of file
diff --git a/DrawGraph/AreaManage/InstrumentDataManage.cs b/DrawGraph/AreaManage/InstrumentDataManage.cs
index 88f5954..9d42b9d 100644
--- a/DrawGraph/AreaManage/InstrumentDataManage.cs
+++ b/DrawGraph/AreaManage/InstrumentDataManage.cs
@@ -101,7 +101,7 @@ namespace DrawGraph
if (index < ApplianceRecordList.Count)
ZUtil.DrawText(ApplianceRecordList[index].ApplianceName, tablePackObj.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordList" + index, Color.Black, fontsize, false);
else
- ZUtil.DrawLine(tablePackObj.X + tablePackObj.RealX, y + chaY, (tablePackObj1.EndX - tablePackObj1.X) / Columns * 1 + tablePackObj1.X + span, y, ZedControl, "ApplianceRecordList" + index, Color.Black);
+ ZUtil.DrawLine(tablePackObj.X + tablePackObj.RealX, y + chaY, tablePackObj1.X + span, y, ZedControl, "ApplianceRecordList" + index, Color.Black);
if (index < ApplianceRecordList.Count && ApplianceRecordList[index].OpeFront != null && ApplianceRecordList[index].OpeFront != "" && ApplianceRecordList[index].OpeFront != @"/")