diff --git a/AIMS/AIMS.csproj b/AIMS/AIMS.csproj
index 12bca6c..0671097 100644
--- a/AIMS/AIMS.csproj
+++ b/AIMS/AIMS.csproj
@@ -233,6 +233,12 @@
frmAnasRecordInstrument.cs
+
+ Form
+
+
+ frmAnasRecordInstrument2.cs
+
Form
@@ -365,6 +371,12 @@
frmSelectApplianceUseType.cs
+
+ Form
+
+
+ frmSelectPatientGoodsBill2.cs
+
Form
@@ -425,6 +437,12 @@
Component
+
+ UserControl
+
+
+ UCOperationGoodsBill5.cs
+
UserControl
@@ -939,6 +957,10 @@
frmAnasRecordInstrument.cs
Designer
+
+ frmAnasRecordInstrument2.cs
+ Designer
+
frmBloodGasAnalysisNew.cs
@@ -1006,6 +1028,9 @@
frmSelectApplianceUseType.cs
+
+ frmSelectPatientGoodsBill2.cs
+
frmSelectPatientGoodsBill.cs
@@ -1030,6 +1055,9 @@
frmSelectiveOperationsPrint.cs
+
+ UCOperationGoodsBill5.cs
+
UCOperationGoodsBill.cs
diff --git a/AIMS/DocManager/PatientRecord.cs b/AIMS/DocManager/PatientRecord.cs
index d5edba7..0f67fbb 100644
--- a/AIMS/DocManager/PatientRecord.cs
+++ b/AIMS/DocManager/PatientRecord.cs
@@ -17,6 +17,7 @@ namespace AIMS.DocManager
public String ArchivesNo { get; set; }
public String PatientName { get; set; }
public String PatientName1 { get; set; }
+ public String PatientDepName { get; set; }
public String ApplyDepName { get; set; }
public String PatientKind { get; set; }
public String Sex { get; set; }
@@ -69,6 +70,8 @@ namespace AIMS.DocManager
public String OutRoomTime { get; set; }
public String OperationBeginTime { get; set; }
public String OperationEndTime { get; set; }
+ public String AnesthesiaBeginTime { get; set; }
+ public String AnesthesiaEndTime { get; set; }
public String OperationLevelName { get; set; }
public String OpeAfterMode { get; set; }
public String SpecialSituation { get; set; }
@@ -114,6 +117,7 @@ namespace AIMS.DocManager
patient.PatientKind = dt.Rows[0]["PatientKind"].ToString();
patient.Sex = dt.Rows[0]["Sex"].ToString();
patient.ApplyDepName = dt.Rows[0]["ApplyDepName"].ToString();
+ patient.PatientDepName = dt.Rows[0]["PatientDepName"].ToString();
patient.Age = dt.Rows[0]["Age"].ToString();
patient.BirthDay = dt.Rows[0]["BirthDay"].ToString();
patient.Height = dt.Rows[0]["Height"].ToString();
@@ -161,6 +165,8 @@ namespace AIMS.DocManager
patient.OutRoomTime = dt.Rows[0]["OutRoomTime"].ToString();
patient.OperationBeginTime = dt.Rows[0]["OperationBeginTime"].ToString();
patient.OperationEndTime = dt.Rows[0]["OperationEndTime"].ToString();
+ patient.AnesthesiaBeginTime = dt.Rows[0]["AnesthesiaBeginTime"].ToString();
+ patient.AnesthesiaEndTime = dt.Rows[0]["AnesthesiaEndTime"].ToString();
patient.OperationLevelName = dt.Rows[0]["OperationLevelName"].ToString();
patient.SpecialSituation = dt.Rows[0]["SpecialSituation"].ToString();
patient.AnaesthesiaPlane = dt.Rows[0]["AnaesthesiaPlane"].ToString();
diff --git a/AIMS/OperationDoing/AnasRecordBill/DrawAnasReordBill.cs b/AIMS/OperationDoing/AnasRecordBill/DrawAnasReordBill.cs
index fb0e413..fd05fa2 100644
--- a/AIMS/OperationDoing/AnasRecordBill/DrawAnasReordBill.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/DrawAnasReordBill.cs
@@ -114,6 +114,43 @@ namespace AIMS.OperationDoing.AnasRecordBill
}
}
+ public static void IniDrawAnasReordBill4(OperationRecord _record, ZedGraphControl Zgc, ref TemplateManage templateManage)
+ {
+ try
+ {
+ string jsonStr = DBHelper.ExecuteScalar("SELECT [JsonDate] FROM [dbo].[OperationRecordTemplate] where id=20").ToString();
+ if (jsonStr != null && jsonStr != "")
+ {
+ templateManage = JsonConvert.DeserializeObject(jsonStr);
+ templateManage.ZedControl = Zgc;
+ templateManage.Id = 20;
+ templateManage.OpeRecord = BOperationRecord.getRecord(_record, -1, 2);
+ bool reVal = templateManage.Load();
+ if (reVal)
+ {
+ templateManage.DrawArea();
+
+ templateManage.ZedControl.Width = templateManage.ZedControl.Parent.Width - 54;
+ templateManage.ZedControl.Height = (templateManage.ZedControl.Parent.Width - 54) / 8 * 11;
+
+ TextPackObj janCePack = templateManage.GetPackObjectOTag("BaseInfoTopManage_TextPackObj_912");
+ int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * janCePack.RealEndY);
+ templateManage.LocationY = LocationY;
+ templateManage.SetPYL();
+ templateManage.ZedControl.AxisChange();
+ templateManage.ZedControl.Refresh();
+ }
+ else
+ {
+ MessageBox.Show(templateManage.MsgStr);
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show(ex.Message);
+ }
+ }
public static void IniDrawAnasReordBill4(OperationRecord _record, ZedGraphControl Zgc, ZedGraphControl Zgc2, ref TemplateManage templateManage, ref TemplateManage templateManage2)
{
try
@@ -199,7 +236,7 @@ namespace AIMS.OperationDoing.AnasRecordBill
{
templateManage.DrawArea();
DrawGraph.Util.DrawText(AIMSExtension.PublicMethod.GetHospitalName(), 0.385, 0.018, Zgc, DrawGraph.Util.Font16);
- DrawGraph.Util.DrawText(" 麻醉记录单", 0.4, 0.04, Zgc, DrawGraph.Util.Font16);
+ DrawGraph.Util.DrawText(" 麻 醉 记 录", 0.42, 0.04, Zgc, DrawGraph.Util.Font14);
#region 设置界面自适应
//在此处可随时设置板子的属性
@@ -207,8 +244,7 @@ namespace AIMS.OperationDoing.AnasRecordBill
templateManage.ZedControl.Height = (templateManage.ZedControl.Parent.Width - 54) / 8 * 11;
- TextPackObj janCePack = templateManage.GetPackObjectOTag("BaseInfoTopManage_TextPackObj_2");
- int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * janCePack.RealY);
+ int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * 0.04);
templateManage.LocationY = LocationY;
templateManage.SetPYL();
templateManage.ZedControl.AxisChange();
@@ -246,9 +282,12 @@ namespace AIMS.OperationDoing.AnasRecordBill
if (reVal)
{
templateManage2.DrawArea();
+ DrawGraph.Util.DrawText(AIMSExtension.PublicMethod.GetHospitalName(), 0.385, 0.038, Zgc2, DrawGraph.Util.Font16);
+ DrawGraph.Util.DrawText(" 麻 醉 记 录", 0.42, 0.065, Zgc2, DrawGraph.Util.Font14);
templateManage2.ZedControl.Width = templateManage.ZedControl.Width;
templateManage2.ZedControl.Height = templateManage.ZedControl.Height;
- templateManage2.LocationY = 0;
+ int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * 0.065);
+ templateManage2.LocationY = LocationY;
templateManage2.SetPYL();
templateManage2.ZedControl.AxisChange();
templateManage2.ZedControl.Refresh();
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill.cs
index 6d30e73..7d68a7f 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill.cs
@@ -510,38 +510,44 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
_record.AnesthesiaBeginTime = null;
this.picAnesBegin.BackgroundImage = global::AIMS.Properties.Resources.麻醉开始;
+ BOperationRecord.Update("AnesthesiaBeginTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术开始")
{
_record.OperationBeginTime = null;
this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ BOperationRecord.Update(" OperationBeginTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术结束")
{
_record.OperationEndTime = null;
this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
+ BOperationRecord.Update(" OperationEndTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "麻醉完成")
{
_record.AnesthesiaEndTime = null;
this.picAnesEnd.BackgroundImage = global::AIMS.Properties.Resources.麻醉结束;
+ BOperationRecord.Update(" AnesthesiaEndTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == cmbCGType.Text)
{
_record.InCGType = "";
- _record.InCGTime = null;
+ _record.SpileInTime = null;
this.picCG.BackgroundImage = global::AIMS.Properties.Resources.置管;
+ BOperationRecord.Update(" SpileInTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "拔管")
{
- _record.OutCGTime = null;
+ _record.SpileOutTime = null;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管;
+ BOperationRecord.Update(" SpileOutTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
- if (Inevent != null)
- {
- BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
- }
+ //if (Inevent != null)
+ //{
+ // BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ //}
}
}
///
@@ -604,47 +610,55 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
_record.InRoomTime = Inevent.EventBeginTime;
this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室_select;
+ BOperationRecord.Update("InRoomTime=@InRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "麻醉开始" && _record.AnesthesiaBeginTime != Inevent.EventBeginTime)
{
_record.AnesthesiaBeginTime = Inevent.EventBeginTime;
this.picAnesBegin.BackgroundImage = global::AIMS.Properties.Resources.麻醉开始_select;
+ BOperationRecord.Update("AnesthesiaBeginTime=@AnesthesiaBeginTime where Id=@id ", new AIMSModel.ParameterList("@AnesthesiaBeginTime", _record.AnesthesiaBeginTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术开始" && _record.OperationBeginTime != Inevent.EventBeginTime)
{
_record.OperationBeginTime = Inevent.EventBeginTime;
this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始_select;
+ BOperationRecord.Update("OperationBeginTime=@OperationBegin where Id=@id ", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
- if (Inevent != null && Inevent.EventName == cmbCGType.Text && _record.InCGTime != Inevent.EventBeginTime)
+ if (Inevent != null && Inevent.EventName == cmbCGType.Text && _record.SpileInTime != Inevent.EventBeginTime)
{
_record.InCGType = cmbCGType.Text;
- _record.InCGTime = Inevent.EventBeginTime;
+ _record.SpileInTime = Inevent.EventBeginTime;
this.picCG.BackgroundImage = global::AIMS.Properties.Resources.置管_select;
+ BOperationRecord.Update(" SpileInTime=@SpileIn where Id=@id ", new AIMSModel.ParameterList("@SpileIn", _record.SpileInTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
- if (Inevent != null && Inevent.EventName == "拔管" && _record.OutCGTime != Inevent.EventBeginTime)
+ if (Inevent != null && Inevent.EventName == "拔管" && _record.SpileOutTime != Inevent.EventBeginTime)
{
- _record.OutCGTime = Inevent.EventBeginTime;
+ _record.SpileOutTime = Inevent.EventBeginTime;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管_select;
+ BOperationRecord.Update(" SpileOutTime=@SpileOut where Id=@id ", new AIMSModel.ParameterList("@SpileOut", _record.SpileOutTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术结束" && _record.OperationEndTime != Inevent.EventBeginTime)
{
_record.OperationEndTime = Inevent.EventBeginTime;
this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束_select;
+ BOperationRecord.Update("OperationEndTime=@OperationEnd where Id=@id ", new AIMSModel.ParameterList("@OperationEnd", _record.OperationEndTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "麻醉完成" && _record.AnesthesiaEndTime != Inevent.EventBeginTime)
{
_record.AnesthesiaEndTime = Inevent.EventBeginTime;
this.picAnesEnd.BackgroundImage = global::AIMS.Properties.Resources.麻醉结束_select;
+ BOperationRecord.Update("AnesthesiaEndTime=@AnesthesiaEndTime where Id=@id ", new AIMSModel.ParameterList("@AnesthesiaEndTime", _record.AnesthesiaEndTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "出室" && _record.OutRoomTime != Inevent.EventBeginTime)
{
_record.OutRoomTime = Inevent.EventBeginTime;
this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室_select;
+ BOperationRecord.Update("OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@OutRoom", _record.OutRoomTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
- if (Inevent != null)
- {
- BOperationRecord.Update("InRoomTime=@InRoom,AnesthesiaBeginTime=@AnesthesiaBeginTime,OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,AnesthesiaEndTime=@AnesthesiaEndTime,OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.HasValue ? (object)_record.InRoomTime.Value : (object)DateTime.Now, "@AnesthesiaBeginTime", _record.AnesthesiaBeginTime.HasValue ? (object)_record.AnesthesiaBeginTime.Value : (object)DBNull.Value, "@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@AnesthesiaEndTime", _record.AnesthesiaEndTime.HasValue ? (object)_record.AnesthesiaEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
- }
+ //if (Inevent != null)
+ //{
+ // BOperationRecord.Update("InRoomTime=@InRoom,AnesthesiaBeginTime=@AnesthesiaBeginTime,OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,AnesthesiaEndTime=@AnesthesiaEndTime,OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.HasValue ? (object)_record.InRoomTime.Value : (object)DateTime.Now, "@AnesthesiaBeginTime", _record.AnesthesiaBeginTime.HasValue ? (object)_record.AnesthesiaBeginTime.Value : (object)DBNull.Value, "@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@AnesthesiaEndTime", _record.AnesthesiaEndTime.HasValue ? (object)_record.AnesthesiaEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ //}
}
}
///
@@ -773,7 +787,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
_record.OperationApplyId = ApplyId;
_record.PatientId = PatientId;
_record.RecoverId = RecoverId;
- _record.Id = BOperationRecord.AddTitleTime(PatientId, ApplyId, RecoverId, 1, DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd HH:mm:00")), NowRoom.Id.Value);
+ _record.Id = BOperationRecord.AddTitleTime(PatientId, ApplyId, RecoverId, 1, DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd HH:mm:00")), NowRoom.Id.Value);
HelperDB.DbHelperSQL.CommitTrans();
//_record.currentPage = 1;
ClearTimeText();
@@ -1308,14 +1322,14 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
if (key == "自主呼吸")
{
- if (_record.InCGTime != null && _record.OutCGTime != null)
+ if (_record.SpileInTime != null && _record.SpileOutTime != null)
{
- if (time > _record.InCGTime && time < _record.OutCGTime)
+ if (time > _record.SpileInTime && time < _record.SpileOutTime)
b = true;
}
- if (_record.InCGTime != null && _record.OutCGTime == null)
+ if (_record.SpileInTime != null && _record.SpileOutTime == null)
{
- if (time > _record.InCGTime)
+ if (time > _record.SpileInTime)
b = true;
}
}
@@ -1605,19 +1619,19 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
txtAnaesthesiaBegin.Value = _record.AnesthesiaBeginTime.Value;
this.picAnesBegin.BackgroundImage = global::AIMS.Properties.Resources.麻醉开始_select;
}
- if (_record.InCGTime != null)
+ if (_record.SpileInTime != null)
{
cmbCGType.Text = _record.InCGType;
txtCG.CustomFormat = "MM-dd HH:mm";
- txtCG.Tag = _record.InCGTime.Value;
- txtCG.Value = _record.InCGTime.Value;
+ txtCG.Tag = _record.SpileInTime.Value;
+ txtCG.Value = _record.SpileInTime.Value;
this.picCG.BackgroundImage = global::AIMS.Properties.Resources.置管_select;
}
- if (_record.OutCGTime != null)
+ if (_record.SpileOutTime != null)
{
txtBG.CustomFormat = "MM-dd HH:mm";
- txtBG.Tag = _record.OutCGTime.Value;
- txtBG.Value = _record.OutCGTime.Value;
+ txtBG.Tag = _record.SpileOutTime.Value;
+ txtBG.Value = _record.SpileOutTime.Value;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管_select;
}
if (_record.OperationBeginTime != null)
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs
index 1b6a2e3..357a920 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.Designer.cs
@@ -74,12 +74,22 @@
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.circularProgress1 = new DevComponents.DotNetBar.Controls.CircularProgress();
+ this.zgcAnaesRecord = new DrawGraph.ZedGraphControl();
this.spTabQXQDD = new DevComponents.DotNetBar.SuperTabItem();
this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
this.panelExBLSJ = new DevComponents.DotNetBar.PanelEx();
+ this.panel82 = new AIMS.PublicUI.UI.DrawPanel();
+ this.circularProgress2 = new DevComponents.DotNetBar.Controls.CircularProgress();
+ this.zgcAnaesRecord2 = new DrawGraph.ZedGraphControl();
this.spTabBM = new DevComponents.DotNetBar.SuperTabItem();
this.panel7 = new System.Windows.Forms.Panel();
this.panel21 = new System.Windows.Forms.Panel();
+ this.panel17 = new System.Windows.Forms.Panel();
+ this.btnNextPage = new System.Windows.Forms.Panel();
+ this.panel18 = new System.Windows.Forms.Panel();
+ this.btnUpPage = new System.Windows.Forms.Panel();
this.plPrintBrowse = new System.Windows.Forms.Panel();
this.plPrint = new System.Windows.Forms.Panel();
this.plRefresh = new System.Windows.Forms.Panel();
@@ -121,16 +131,6 @@
this.picInRoom = new System.Windows.Forms.PictureBox();
this.txtInRoom1 = new System.Windows.Forms.Button();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
- this.panel8 = new AIMS.PublicUI.UI.DrawPanel();
- this.circularProgress1 = new DevComponents.DotNetBar.Controls.CircularProgress();
- this.zgcAnaesRecord = new DrawGraph.ZedGraphControl();
- this.panel82 = new AIMS.PublicUI.UI.DrawPanel();
- this.circularProgress2 = new DevComponents.DotNetBar.Controls.CircularProgress();
- this.zgcAnaesRecord2 = new DrawGraph.ZedGraphControl();
- this.panel17 = new System.Windows.Forms.Panel();
- this.btnNextPage = new System.Windows.Forms.Panel();
- this.panel18 = new System.Windows.Forms.Panel();
- this.btnUpPage = new System.Windows.Forms.Panel();
this.panel3.SuspendLayout();
this.panel14.SuspendLayout();
this.panel4.SuspendLayout();
@@ -140,8 +140,10 @@
this.superTabMain.SuspendLayout();
this.superTabControlPanel1.SuspendLayout();
this.panelExZKZB.SuspendLayout();
+ this.panel8.SuspendLayout();
this.superTabControlPanel2.SuspendLayout();
this.panelExBLSJ.SuspendLayout();
+ this.panel82.SuspendLayout();
this.panel7.SuspendLayout();
this.panel21.SuspendLayout();
this.plTitleEventTime.SuspendLayout();
@@ -169,8 +171,6 @@
this.panel6.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.txtInRoom)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picInRoom)).BeginInit();
- this.panel8.SuspendLayout();
- this.panel82.SuspendLayout();
this.SuspendLayout();
//
// panel2
@@ -373,6 +373,7 @@
this.btnOperationInfo.TabIndex = 4;
this.btnOperationInfo.Text = " 手术信息";
this.btnOperationInfo.UseVisualStyleBackColor = false;
+ this.btnOperationInfo.Visible = false;
this.btnOperationInfo.Click += new System.EventHandler(this.btnOperationInfo_Click);
//
// btnOutputLiquids
@@ -866,8 +867,8 @@
this.superTabMain.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
this.superTabMain.ControlBox.MenuBox,
this.superTabMain.ControlBox.CloseBox});
- this.superTabMain.Controls.Add(this.superTabControlPanel1);
this.superTabMain.Controls.Add(this.superTabControlPanel2);
+ this.superTabMain.Controls.Add(this.superTabControlPanel1);
this.superTabMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.superTabMain.Location = new System.Drawing.Point(0, 58);
this.superTabMain.Name = "superTabMain";
@@ -880,6 +881,7 @@
this.superTabMain.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
this.spTabQXQDD,
this.spTabBM});
+ this.superTabMain.SelectedTabChanged += new System.EventHandler(this.superTabMain_SelectedTabChanged);
//
// superTabControlPanel1
//
@@ -910,6 +912,60 @@
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.circularProgress1);
+ this.panel8.Controls.Add(this.zgcAnaesRecord);
+ 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(1760, 904);
+ this.panel8.TabIndex = 2;
+ this.panel8.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel8_Scroll);
+ //
+ // circularProgress1
+ //
+ this.circularProgress1.AnimationSpeed = 50;
+ //
+ //
+ //
+ this.circularProgress1.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
+ this.circularProgress1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
+ this.circularProgress1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.circularProgress1.FocusCuesEnabled = false;
+ this.circularProgress1.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.circularProgress1.Location = new System.Drawing.Point(602, 274);
+ this.circularProgress1.Margin = new System.Windows.Forms.Padding(4);
+ this.circularProgress1.Name = "circularProgress1";
+ this.circularProgress1.ProgressColor = System.Drawing.Color.DodgerBlue;
+ this.circularProgress1.Size = new System.Drawing.Size(389, 239);
+ this.circularProgress1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
+ this.circularProgress1.TabIndex = 6;
+ this.circularProgress1.Value = 100;
+ //
+ // zgcAnaesRecord
+ //
+ this.zgcAnaesRecord.Location = new System.Drawing.Point(416, 41);
+ this.zgcAnaesRecord.Name = "zgcAnaesRecord";
+ this.zgcAnaesRecord.ScrollGrace = 0D;
+ this.zgcAnaesRecord.ScrollMaxX = 0D;
+ this.zgcAnaesRecord.ScrollMaxY = 0D;
+ this.zgcAnaesRecord.ScrollMaxY2 = 0D;
+ this.zgcAnaesRecord.ScrollMinX = 0D;
+ this.zgcAnaesRecord.ScrollMinY = 0D;
+ this.zgcAnaesRecord.ScrollMinY2 = 0D;
+ this.zgcAnaesRecord.Size = new System.Drawing.Size(800, 1000);
+ this.zgcAnaesRecord.TabIndex = 0;
+ this.zgcAnaesRecord.Visible = false;
+ this.zgcAnaesRecord.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord_ContextMenuBuilder);
+ this.zgcAnaesRecord.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseDownEvent);
+ this.zgcAnaesRecord.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseUpEvent);
+ this.zgcAnaesRecord.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseMoveEvent);
+ this.zgcAnaesRecord.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord_KeyUp);
+ this.zgcAnaesRecord.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord_MouseDoubleClick);
+ //
// spTabQXQDD
//
this.spTabQXQDD.AttachedControl = this.superTabControlPanel1;
@@ -946,6 +1002,60 @@
this.panelExBLSJ.Style.GradientAngle = 90;
this.panelExBLSJ.TabIndex = 0;
//
+ // panel82
+ //
+ this.panel82.AutoScroll = true;
+ this.panel82.BackColor = System.Drawing.Color.White;
+ this.panel82.Controls.Add(this.circularProgress2);
+ this.panel82.Controls.Add(this.zgcAnaesRecord2);
+ this.panel82.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel82.Location = new System.Drawing.Point(0, 0);
+ this.panel82.Name = "panel82";
+ this.panel82.Size = new System.Drawing.Size(1760, 904);
+ this.panel82.TabIndex = 3;
+ this.panel82.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel82_Scroll);
+ //
+ // circularProgress2
+ //
+ this.circularProgress2.AnimationSpeed = 50;
+ //
+ //
+ //
+ this.circularProgress2.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
+ this.circularProgress2.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
+ this.circularProgress2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.circularProgress2.FocusCuesEnabled = false;
+ this.circularProgress2.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.circularProgress2.Location = new System.Drawing.Point(678, 354);
+ this.circularProgress2.Margin = new System.Windows.Forms.Padding(4);
+ this.circularProgress2.Name = "circularProgress2";
+ this.circularProgress2.ProgressColor = System.Drawing.Color.DodgerBlue;
+ this.circularProgress2.Size = new System.Drawing.Size(389, 239);
+ this.circularProgress2.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
+ this.circularProgress2.TabIndex = 6;
+ this.circularProgress2.Value = 100;
+ //
+ // zgcAnaesRecord2
+ //
+ this.zgcAnaesRecord2.Location = new System.Drawing.Point(416, 41);
+ this.zgcAnaesRecord2.Name = "zgcAnaesRecord2";
+ this.zgcAnaesRecord2.ScrollGrace = 0D;
+ this.zgcAnaesRecord2.ScrollMaxX = 0D;
+ this.zgcAnaesRecord2.ScrollMaxY = 0D;
+ this.zgcAnaesRecord2.ScrollMaxY2 = 0D;
+ this.zgcAnaesRecord2.ScrollMinX = 0D;
+ this.zgcAnaesRecord2.ScrollMinY = 0D;
+ this.zgcAnaesRecord2.ScrollMinY2 = 0D;
+ this.zgcAnaesRecord2.Size = new System.Drawing.Size(800, 1000);
+ this.zgcAnaesRecord2.TabIndex = 0;
+ this.zgcAnaesRecord2.Visible = false;
+ this.zgcAnaesRecord2.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord2_ContextMenuBuilder);
+ this.zgcAnaesRecord2.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseDownEvent);
+ this.zgcAnaesRecord2.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseUpEvent);
+ this.zgcAnaesRecord2.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseMoveEvent);
+ this.zgcAnaesRecord2.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord2_KeyUp);
+ this.zgcAnaesRecord2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord2_MouseDoubleClick);
+ //
// spTabBM
//
this.spTabBM.AttachedControl = this.superTabControlPanel2;
@@ -982,6 +1092,54 @@
this.panel21.Size = new System.Drawing.Size(354, 40);
this.panel21.TabIndex = 10;
//
+ // panel17
+ //
+ this.panel17.BackgroundImage = global::AIMS.Properties.Resources.图标_末尾页;
+ this.panel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.panel17.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.panel17.Location = new System.Drawing.Point(124, 4);
+ this.panel17.Name = "panel17";
+ this.panel17.Size = new System.Drawing.Size(28, 28);
+ this.panel17.TabIndex = 7;
+ this.panel17.Tag = "下一页";
+ this.panel17.Click += new System.EventHandler(this.btnNextEndPage_Click);
+ //
+ // btnNextPage
+ //
+ this.btnNextPage.BackgroundImage = global::AIMS.Properties.Resources.图标_后一页;
+ this.btnNextPage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.btnNextPage.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnNextPage.Location = new System.Drawing.Point(83, 4);
+ this.btnNextPage.Name = "btnNextPage";
+ this.btnNextPage.Size = new System.Drawing.Size(28, 28);
+ this.btnNextPage.TabIndex = 8;
+ this.btnNextPage.Tag = "下一页";
+ this.btnNextPage.Click += new System.EventHandler(this.btnNextPage_Click);
+ //
+ // panel18
+ //
+ this.panel18.BackgroundImage = global::AIMS.Properties.Resources.图标_第一页;
+ this.panel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.panel18.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.panel18.Location = new System.Drawing.Point(1, 4);
+ this.panel18.Name = "panel18";
+ this.panel18.Size = new System.Drawing.Size(28, 28);
+ this.panel18.TabIndex = 5;
+ this.panel18.Tag = "上一页";
+ this.panel18.Click += new System.EventHandler(this.btnUpFsPage_Click);
+ //
+ // btnUpPage
+ //
+ this.btnUpPage.BackgroundImage = global::AIMS.Properties.Resources.图标_前一页;
+ this.btnUpPage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.btnUpPage.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnUpPage.Location = new System.Drawing.Point(42, 4);
+ this.btnUpPage.Name = "btnUpPage";
+ this.btnUpPage.Size = new System.Drawing.Size(28, 28);
+ this.btnUpPage.TabIndex = 6;
+ this.btnUpPage.Tag = "上一页";
+ this.btnUpPage.Click += new System.EventHandler(this.btnUpPage_Click);
+ //
// plPrintBrowse
//
this.plPrintBrowse.BackgroundImage = global::AIMS.Properties.Resources.图标_预览;
@@ -1820,162 +1978,6 @@
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.circularProgress1);
- this.panel8.Controls.Add(this.zgcAnaesRecord);
- 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(1760, 904);
- this.panel8.TabIndex = 2;
- this.panel8.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel8_Scroll);
- //
- // circularProgress1
- //
- this.circularProgress1.AnimationSpeed = 50;
- //
- //
- //
- this.circularProgress1.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
- this.circularProgress1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
- this.circularProgress1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.circularProgress1.FocusCuesEnabled = false;
- this.circularProgress1.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.circularProgress1.Location = new System.Drawing.Point(602, 274);
- this.circularProgress1.Margin = new System.Windows.Forms.Padding(4);
- this.circularProgress1.Name = "circularProgress1";
- this.circularProgress1.ProgressColor = System.Drawing.Color.DodgerBlue;
- this.circularProgress1.Size = new System.Drawing.Size(389, 239);
- this.circularProgress1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
- this.circularProgress1.TabIndex = 6;
- this.circularProgress1.Value = 100;
- //
- // zgcAnaesRecord
- //
- this.zgcAnaesRecord.Location = new System.Drawing.Point(416, 41);
- this.zgcAnaesRecord.Name = "zgcAnaesRecord";
- this.zgcAnaesRecord.ScrollGrace = 0D;
- this.zgcAnaesRecord.ScrollMaxX = 0D;
- this.zgcAnaesRecord.ScrollMaxY = 0D;
- this.zgcAnaesRecord.ScrollMaxY2 = 0D;
- this.zgcAnaesRecord.ScrollMinX = 0D;
- this.zgcAnaesRecord.ScrollMinY = 0D;
- this.zgcAnaesRecord.ScrollMinY2 = 0D;
- this.zgcAnaesRecord.Size = new System.Drawing.Size(800, 1000);
- this.zgcAnaesRecord.TabIndex = 0;
- this.zgcAnaesRecord.Visible = false;
- this.zgcAnaesRecord.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord_ContextMenuBuilder);
- this.zgcAnaesRecord.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseDownEvent);
- this.zgcAnaesRecord.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseUpEvent);
- this.zgcAnaesRecord.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseMoveEvent);
- this.zgcAnaesRecord.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord_KeyUp);
- this.zgcAnaesRecord.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord_MouseDoubleClick);
- //
- // panel82
- //
- this.panel82.AutoScroll = true;
- this.panel82.BackColor = System.Drawing.Color.White;
- this.panel82.Controls.Add(this.circularProgress2);
- this.panel82.Controls.Add(this.zgcAnaesRecord2);
- this.panel82.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel82.Location = new System.Drawing.Point(0, 0);
- this.panel82.Name = "panel82";
- this.panel82.Size = new System.Drawing.Size(1760, 904);
- this.panel82.TabIndex = 3;
- this.panel82.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel82_Scroll);
- //
- // circularProgress2
- //
- this.circularProgress2.AnimationSpeed = 50;
- //
- //
- //
- this.circularProgress2.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
- this.circularProgress2.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
- this.circularProgress2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.circularProgress2.FocusCuesEnabled = false;
- this.circularProgress2.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.circularProgress2.Location = new System.Drawing.Point(678, 354);
- this.circularProgress2.Margin = new System.Windows.Forms.Padding(4);
- this.circularProgress2.Name = "circularProgress2";
- this.circularProgress2.ProgressColor = System.Drawing.Color.DodgerBlue;
- this.circularProgress2.Size = new System.Drawing.Size(389, 239);
- this.circularProgress2.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
- this.circularProgress2.TabIndex = 6;
- this.circularProgress2.Value = 100;
- //
- // zgcAnaesRecord2
- //
- this.zgcAnaesRecord2.Location = new System.Drawing.Point(416, 41);
- this.zgcAnaesRecord2.Name = "zgcAnaesRecord2";
- this.zgcAnaesRecord2.ScrollGrace = 0D;
- this.zgcAnaesRecord2.ScrollMaxX = 0D;
- this.zgcAnaesRecord2.ScrollMaxY = 0D;
- this.zgcAnaesRecord2.ScrollMaxY2 = 0D;
- this.zgcAnaesRecord2.ScrollMinX = 0D;
- this.zgcAnaesRecord2.ScrollMinY = 0D;
- this.zgcAnaesRecord2.ScrollMinY2 = 0D;
- this.zgcAnaesRecord2.Size = new System.Drawing.Size(800, 1000);
- this.zgcAnaesRecord2.TabIndex = 0;
- this.zgcAnaesRecord2.Visible = false;
- this.zgcAnaesRecord2.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord2_ContextMenuBuilder);
- this.zgcAnaesRecord2.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseDownEvent);
- this.zgcAnaesRecord2.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseUpEvent);
- this.zgcAnaesRecord2.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseMoveEvent);
- this.zgcAnaesRecord2.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord2_KeyUp);
- this.zgcAnaesRecord2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord2_MouseDoubleClick);
- //
- // panel17
- //
- this.panel17.BackgroundImage = global::AIMS.Properties.Resources.图标_末尾页;
- this.panel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.panel17.Cursor = System.Windows.Forms.Cursors.Hand;
- this.panel17.Location = new System.Drawing.Point(124, 4);
- this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(28, 28);
- this.panel17.TabIndex = 7;
- this.panel17.Tag = "下一页";
- this.panel17.Click += new System.EventHandler(this.btnNextEndPage_Click);
- //
- // btnNextPage
- //
- this.btnNextPage.BackgroundImage = global::AIMS.Properties.Resources.图标_后一页;
- this.btnNextPage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.btnNextPage.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnNextPage.Location = new System.Drawing.Point(83, 4);
- this.btnNextPage.Name = "btnNextPage";
- this.btnNextPage.Size = new System.Drawing.Size(28, 28);
- this.btnNextPage.TabIndex = 8;
- this.btnNextPage.Tag = "下一页";
- this.btnNextPage.Click += new System.EventHandler(this.btnNextPage_Click);
- //
- // panel18
- //
- this.panel18.BackgroundImage = global::AIMS.Properties.Resources.图标_第一页;
- this.panel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.panel18.Cursor = System.Windows.Forms.Cursors.Hand;
- this.panel18.Location = new System.Drawing.Point(1, 4);
- this.panel18.Name = "panel18";
- this.panel18.Size = new System.Drawing.Size(28, 28);
- this.panel18.TabIndex = 5;
- this.panel18.Tag = "上一页";
- this.panel18.Click += new System.EventHandler(this.btnUpFsPage_Click);
- //
- // btnUpPage
- //
- this.btnUpPage.BackgroundImage = global::AIMS.Properties.Resources.图标_前一页;
- this.btnUpPage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.btnUpPage.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnUpPage.Location = new System.Drawing.Point(42, 4);
- this.btnUpPage.Name = "btnUpPage";
- this.btnUpPage.Size = new System.Drawing.Size(28, 28);
- this.btnUpPage.TabIndex = 6;
- this.btnUpPage.Tag = "上一页";
- this.btnUpPage.Click += new System.EventHandler(this.btnUpPage_Click);
- //
// frmAnasRecordBill2
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
@@ -1997,8 +1999,10 @@
this.superTabMain.ResumeLayout(false);
this.superTabControlPanel1.ResumeLayout(false);
this.panelExZKZB.ResumeLayout(false);
+ this.panel8.ResumeLayout(false);
this.superTabControlPanel2.ResumeLayout(false);
this.panelExBLSJ.ResumeLayout(false);
+ this.panel82.ResumeLayout(false);
this.panel7.ResumeLayout(false);
this.panel7.PerformLayout();
this.panel21.ResumeLayout(false);
@@ -2027,8 +2031,6 @@
this.panel6.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.txtInRoom)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picInRoom)).EndInit();
- this.panel8.ResumeLayout(false);
- this.panel82.ResumeLayout(false);
this.ResumeLayout(false);
}
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs
index a3820fb..5cfdf36 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordBill2.cs
@@ -176,6 +176,12 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
zgcAnaesRecord.Focus();
}
+
+ Panel panel = zgcAnaesRecord.Parent as Panel;
+ panel.VerticalScroll.Value = 0;
+ Panel panel2 = zgcAnaesRecord2.Parent as Panel;
+ panel2.VerticalScroll.Value = 0;
+ //panel.HorizontalScroll.Value = 0;
mPanes = new List();
UpPanes = new List();
PrintDocPage(null, null);
@@ -246,12 +252,12 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
private void PrintDocPane(PrintPageEventArgs e, ZedGraphControl zedGraph, TemplateManage template, bool InitChart)
{
- if (InitChart == false)
- foreach (AreaManageBase area in template.ManageList)
- {
- area.setPrint(false);
- area.BindTempData();
- }
+ //if (InitChart == false)
+ // foreach (AreaManageBase area in template.ManageList)
+ // {
+ // area.setPrint(false);
+ // area.BindTempData();
+ // }
int zedGraphMainWidth = zedGraph.Size.Width;
int zedGraphMainHeight = zedGraph.Size.Height;
@@ -272,8 +278,6 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
}
TipBox.Hidden();
- Panel panel = zedGraph.Parent as Panel;
- panel.VerticalScroll.Value = 0;
MasterPane mPane = zedGraph.MasterPane; //this.MasterPane;
mPane.Border.IsVisible = false;
@@ -304,11 +308,11 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
pp.reSetCurveSpo2();
}
}
- if (InitChart == false)
- foreach (AreaManageBase area in template.ManageList)
- {
- area.setPrint(true);
- }
+ //if (InitChart == false)
+ // foreach (AreaManageBase area in template.ManageList)
+ // {
+ // area.setPrint(true);
+ // }
}
private void plPrint_Click(object sender, EventArgs e)
@@ -318,6 +322,10 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
zgcAnaesRecord.Focus();
}
+ Panel panel = zgcAnaesRecord.Parent as Panel;
+ panel.VerticalScroll.Value = 0;
+ Panel panel2 = zgcAnaesRecord2.Parent as Panel;
+ panel2.VerticalScroll.Value = 0;
if (_record.StateName == "手术中")
{
if (txtOperationEnd.CustomFormat == " " && txtOutRoom.CustomFormat == " ")
@@ -620,37 +628,38 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
_record.AnesthesiaBeginTime = null;
this.picAnesBegin.BackgroundImage = global::AIMS.Properties.Resources.麻醉开始;
+ BOperationRecord.Update("AnesthesiaBeginTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术开始")
{
_record.OperationBeginTime = null;
this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ BOperationRecord.Update(" OperationBeginTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术结束")
{
_record.OperationEndTime = null;
this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
+ BOperationRecord.Update(" OperationEndTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "麻醉完成")
{
_record.AnesthesiaEndTime = null;
this.picAnesEnd.BackgroundImage = global::AIMS.Properties.Resources.麻醉结束;
+ BOperationRecord.Update(" AnesthesiaEndTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == cmbCGType.Text)
{
_record.InCGType = "";
- _record.InCGTime = null;
+ _record.SpileInTime = null;
this.picCG.BackgroundImage = global::AIMS.Properties.Resources.置管;
+ BOperationRecord.Update(" SpileInTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "拔管")
{
- _record.OutCGTime = null;
+ _record.SpileOutTime = null;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管;
- }
-
- if (Inevent != null)
- {
- BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ BOperationRecord.Update(" SpileOutTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
}
}
@@ -714,46 +723,50 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
_record.InRoomTime = Inevent.EventBeginTime;
this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室_select;
+ BOperationRecord.Update("InRoomTime=@InRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "麻醉开始" && _record.AnesthesiaBeginTime != Inevent.EventBeginTime)
{
_record.AnesthesiaBeginTime = Inevent.EventBeginTime;
this.picAnesBegin.BackgroundImage = global::AIMS.Properties.Resources.麻醉开始_select;
+ BOperationRecord.Update("AnesthesiaBeginTime=@AnesthesiaBeginTime where Id=@id ", new AIMSModel.ParameterList("@AnesthesiaBeginTime", _record.AnesthesiaBeginTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术开始" && _record.OperationBeginTime != Inevent.EventBeginTime)
{
_record.OperationBeginTime = Inevent.EventBeginTime;
this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始_select;
+ BOperationRecord.Update("OperationBeginTime=@OperationBegin where Id=@id ", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
- if (Inevent != null && Inevent.EventName == cmbCGType.Text && _record.InCGTime != Inevent.EventBeginTime)
+ if (Inevent != null && Inevent.EventName == cmbCGType.Text && _record.SpileInTime != Inevent.EventBeginTime)
{
_record.InCGType = cmbCGType.Text;
- _record.InCGTime = Inevent.EventBeginTime;
+ _record.SpileInTime = Inevent.EventBeginTime;
this.picCG.BackgroundImage = global::AIMS.Properties.Resources.置管_select;
+ BOperationRecord.Update(" SpileInTime=@SpileIn where Id=@id ", new AIMSModel.ParameterList("@SpileIn", _record.SpileInTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
- if (Inevent != null && Inevent.EventName == "拔管" && _record.OutCGTime != Inevent.EventBeginTime)
+ if (Inevent != null && Inevent.EventName == "拔管" && _record.SpileOutTime != Inevent.EventBeginTime)
{
- _record.OutCGTime = Inevent.EventBeginTime;
+ _record.SpileOutTime = Inevent.EventBeginTime;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管_select;
+ BOperationRecord.Update(" SpileOutTime=@SpileOut where Id=@id ", new AIMSModel.ParameterList("@SpileOut", _record.SpileOutTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术结束" && _record.OperationEndTime != Inevent.EventBeginTime)
{
_record.OperationEndTime = Inevent.EventBeginTime;
this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束_select;
+ BOperationRecord.Update("OperationEndTime=@OperationEnd where Id=@id ", new AIMSModel.ParameterList("@OperationEnd", _record.OperationEndTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "麻醉完成" && _record.AnesthesiaEndTime != Inevent.EventBeginTime)
{
_record.AnesthesiaEndTime = Inevent.EventBeginTime;
this.picAnesEnd.BackgroundImage = global::AIMS.Properties.Resources.麻醉结束_select;
+ BOperationRecord.Update("AnesthesiaEndTime=@AnesthesiaEndTime where Id=@id ", new AIMSModel.ParameterList("@AnesthesiaEndTime", _record.AnesthesiaEndTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "出室" && _record.OutRoomTime != Inevent.EventBeginTime)
{
_record.OutRoomTime = Inevent.EventBeginTime;
this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室_select;
- }
- if (Inevent != null)
- {
- BOperationRecord.Update("InRoomTime=@InRoom,AnesthesiaBeginTime=@AnesthesiaBeginTime,OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,AnesthesiaEndTime=@AnesthesiaEndTime,OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.HasValue ? (object)_record.InRoomTime.Value : (object)DateTime.Now, "@AnesthesiaBeginTime", _record.AnesthesiaBeginTime.HasValue ? (object)_record.AnesthesiaBeginTime.Value : (object)DBNull.Value, "@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@AnesthesiaEndTime", _record.AnesthesiaEndTime.HasValue ? (object)_record.AnesthesiaEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ BOperationRecord.Update("OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@OutRoom", _record.OutRoomTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
}
}
}
@@ -964,7 +977,6 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
plRefresh_Click(null, null);
if (_record.MedicalRecord != null && _record.MedicalRecord != "")
{
- btnOperationInfo.Enabled = false;
btnOutputLiquids.Enabled = false;
btnDrug.Enabled = false;
btnAddEvents.Enabled = false;
@@ -1455,14 +1467,14 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
if (key == "自主呼吸")
{
- if (_record.InCGTime != null && _record.OutCGTime != null)
+ if (_record.SpileInTime != null && _record.SpileOutTime != null)
{
- if (time > _record.InCGTime && time < _record.OutCGTime)
+ if (time > _record.SpileInTime && time < _record.SpileOutTime)
b = true;
}
- if (_record.InCGTime != null && _record.OutCGTime == null)
+ if (_record.SpileInTime != null && _record.SpileOutTime == null)
{
- if (time > _record.InCGTime)
+ if (time > _record.SpileInTime)
b = true;
}
}
@@ -1813,19 +1825,19 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
txtAnaesthesiaBegin.Value = _record.AnesthesiaBeginTime.Value;
this.picAnesBegin.BackgroundImage = global::AIMS.Properties.Resources.麻醉开始_select;
}
- if (_record.InCGTime != null)
+ if (_record.SpileInTime != null)
{
cmbCGType.Text = _record.InCGType;
txtCG.CustomFormat = "MM-dd HH:mm";
- txtCG.Tag = _record.InCGTime.Value;
- txtCG.Value = _record.InCGTime.Value;
+ txtCG.Tag = _record.SpileInTime.Value;
+ txtCG.Value = _record.SpileInTime.Value;
this.picCG.BackgroundImage = global::AIMS.Properties.Resources.置管_select;
}
- if (_record.OutCGTime != null)
+ if (_record.SpileOutTime != null)
{
txtBG.CustomFormat = "MM-dd HH:mm";
- txtBG.Tag = _record.OutCGTime.Value;
- txtBG.Value = _record.OutCGTime.Value;
+ txtBG.Tag = _record.SpileOutTime.Value;
+ txtBG.Value = _record.SpileOutTime.Value;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管_select;
}
if (_record.OperationBeginTime != null)
@@ -1939,16 +1951,16 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
isTrue = false;
}
- if (_record.OpeRecordInfo.StewardNumber == null || _record.OpeRecordInfo.StewardNumber.ToString().Trim() == "")
- {
- message = "请与手术信息选择患者Steward评分!";
- isTrue = false;
- }
- if (_record.OpeRecordInfo.Whereabouts == null || _record.OpeRecordInfo.Whereabouts.ToString().Trim() == "")
- {
- message = "请与手术信息选择患者去向!";
- isTrue = false;
- }
+ //if (_record.OpeRecordInfo.StewardNumber == null || _record.OpeRecordInfo.StewardNumber.ToString().Trim() == "")
+ //{
+ // message = "请与手术信息选择患者Steward评分!";
+ // isTrue = false;
+ //}
+ //if (_record.OpeRecordInfo.Whereabouts == null || _record.OpeRecordInfo.Whereabouts.ToString().Trim() == "")
+ //{
+ // message = "请与手术信息选择患者去向!";
+ // isTrue = false;
+ //}
if (_record.AnesthesiaDoctor != null && _record.AnesthesiaDoctor.Trim() != "")
if (_record.ASALevel == null || _record.ASALevel == null)
@@ -2085,5 +2097,22 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
#endregion
+ private void superTabMain_SelectedTabChanged(object sender, DevComponents.DotNetBar.SuperTabStripSelectedTabChangedEventArgs e)
+ {
+ //int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * 0.08);
+ //templateManage2.LocationY = 0;
+ if (superTabMain.SelectedTab.Name == "spTabQXQDD")
+ {
+ int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * 0.04);
+ templateManage.LocationY = LocationY;
+ templateManage.SetPYL();
+ }
+ else
+ {
+ int LocationY = Convert.ToInt32(templateManage.ZedControl.Height * 0.065);
+ templateManage2.LocationY = LocationY;
+ templateManage2.SetPYL();
+ }
+ }
}
}
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.Designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.Designer.cs
index 0fae68d..895d4d9 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.Designer.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.Designer.cs
@@ -69,78 +69,6 @@
this.panel1 = new System.Windows.Forms.Panel();
this.panel5 = new System.Windows.Forms.Panel();
this.superTabMain = new DevComponents.DotNetBar.SuperTabControl();
- this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
- this.panelExBLSJ = new DevComponents.DotNetBar.PanelEx();
- this.panel82 = new AIMS.PublicUI.UI.DrawPanel();
- this.panel18 = new System.Windows.Forms.Panel();
- this.panel19 = new System.Windows.Forms.Panel();
- this.label46 = new System.Windows.Forms.Label();
- this.label47 = new System.Windows.Forms.Label();
- this.uText21 = new System.Windows.Forms.TextBox();
- this.uText22 = new System.Windows.Forms.TextBox();
- this.label48 = new System.Windows.Forms.Label();
- this.label49 = new System.Windows.Forms.Label();
- this.uText23 = new System.Windows.Forms.TextBox();
- this.uText24 = new System.Windows.Forms.TextBox();
- this.label50 = new System.Windows.Forms.Label();
- this.uText25 = new System.Windows.Forms.TextBox();
- this.label51 = new System.Windows.Forms.Label();
- this.uText26 = new System.Windows.Forms.TextBox();
- this.panel20 = new System.Windows.Forms.Panel();
- this.label37 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.uText15 = new System.Windows.Forms.TextBox();
- this.uText16 = new System.Windows.Forms.TextBox();
- this.label42 = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.uText17 = new System.Windows.Forms.TextBox();
- this.uText18 = new System.Windows.Forms.TextBox();
- this.label44 = new System.Windows.Forms.Label();
- this.uText19 = new System.Windows.Forms.TextBox();
- this.label45 = new System.Windows.Forms.Label();
- this.uText20 = new System.Windows.Forms.TextBox();
- this.panel22 = new System.Windows.Forms.Panel();
- this.label29 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.uText9 = new System.Windows.Forms.TextBox();
- this.uText10 = new System.Windows.Forms.TextBox();
- this.label31 = new System.Windows.Forms.Label();
- this.label32 = new System.Windows.Forms.Label();
- this.uText11 = new System.Windows.Forms.TextBox();
- this.uText12 = new System.Windows.Forms.TextBox();
- this.label33 = new System.Windows.Forms.Label();
- this.uText13 = new System.Windows.Forms.TextBox();
- this.label34 = new System.Windows.Forms.Label();
- this.uText14 = new System.Windows.Forms.TextBox();
- this.panel23 = new System.Windows.Forms.Panel();
- this.label27 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.uText8 = new System.Windows.Forms.TextBox();
- this.uText4 = new System.Windows.Forms.TextBox();
- this.label25 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.uText7 = new System.Windows.Forms.TextBox();
- this.uText1 = new System.Windows.Forms.TextBox();
- this.label28 = new System.Windows.Forms.Label();
- this.uText5 = new System.Windows.Forms.TextBox();
- this.label35 = new System.Windows.Forms.Label();
- this.uText6 = new System.Windows.Forms.TextBox();
- this.panel25 = new System.Windows.Forms.Panel();
- this.label36 = new System.Windows.Forms.Label();
- this.panel12 = new System.Windows.Forms.Panel();
- this.panel17 = new System.Windows.Forms.Panel();
- this.panel24 = new System.Windows.Forms.Panel();
- this.button4 = new System.Windows.Forms.Button();
- this.radioButton4 = new System.Windows.Forms.RadioButton();
- this.radioButton5 = new System.Windows.Forms.RadioButton();
- this.radioButton3 = new System.Windows.Forms.RadioButton();
- this.radioButton2 = new System.Windows.Forms.RadioButton();
- this.label23 = new System.Windows.Forms.Label();
- this.radioButton1 = new System.Windows.Forms.RadioButton();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.circularProgress2 = new DevComponents.DotNetBar.Controls.CircularProgress();
- this.zgcAnaesRecord2 = new DrawGraph.ZedGraphControl();
- this.spTabBM = new DevComponents.DotNetBar.SuperTabItem();
this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
this.panelExZKZB = new DevComponents.DotNetBar.PanelEx();
this.panel8 = new AIMS.PublicUI.UI.DrawPanel();
@@ -148,19 +76,12 @@
this.plBottom = new System.Windows.Forms.Panel();
this.panel32 = new System.Windows.Forms.Panel();
this.plTital = new System.Windows.Forms.Panel();
- this.panel9 = new System.Windows.Forms.Panel();
- this.label16 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
this.panel15 = new System.Windows.Forms.Panel();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
- this.label53 = new System.Windows.Forms.Label();
this.panel16 = new System.Windows.Forms.Panel();
this.label65 = new System.Windows.Forms.Label();
this.label57 = new System.Windows.Forms.Label();
@@ -199,6 +120,8 @@
this.picInRoom = new System.Windows.Forms.PictureBox();
this.txtInRoom1 = new System.Windows.Forms.Button();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
+ this.label16 = new System.Windows.Forms.Label();
+ this.label17 = new System.Windows.Forms.Label();
this.panel3.SuspendLayout();
this.panel14.SuspendLayout();
this.panel4.SuspendLayout();
@@ -206,26 +129,12 @@
this.panel5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.superTabMain)).BeginInit();
this.superTabMain.SuspendLayout();
- this.superTabControlPanel2.SuspendLayout();
- this.panelExBLSJ.SuspendLayout();
- this.panel82.SuspendLayout();
- this.panel18.SuspendLayout();
- this.panel19.SuspendLayout();
- this.panel20.SuspendLayout();
- this.panel22.SuspendLayout();
- this.panel23.SuspendLayout();
- this.panel25.SuspendLayout();
- this.panel12.SuspendLayout();
- this.panel17.SuspendLayout();
- this.panel24.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.superTabControlPanel1.SuspendLayout();
this.panelExZKZB.SuspendLayout();
this.panel8.SuspendLayout();
this.panelQX.SuspendLayout();
this.plBottom.SuspendLayout();
this.plTital.SuspendLayout();
- this.panel9.SuspendLayout();
this.panel15.SuspendLayout();
this.panel16.SuspendLayout();
this.panel7.SuspendLayout();
@@ -879,7 +788,6 @@
this.superTabMain.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
this.superTabMain.ControlBox.MenuBox,
this.superTabMain.ControlBox.CloseBox});
- this.superTabMain.Controls.Add(this.superTabControlPanel2);
this.superTabMain.Controls.Add(this.superTabControlPanel1);
this.superTabMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.superTabMain.Location = new System.Drawing.Point(0, 58);
@@ -891,877 +799,9 @@
this.superTabMain.TabFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.superTabMain.TabIndex = 14;
this.superTabMain.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.spTabQXQDD,
- this.spTabBM});
+ this.spTabQXQDD});
this.superTabMain.SelectedTabChanged += new System.EventHandler(this.superTabMain_SelectedTabChanged);
//
- // superTabControlPanel2
- //
- this.superTabControlPanel2.Controls.Add(this.panelExBLSJ);
- this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.superTabControlPanel2.Location = new System.Drawing.Point(0, 28);
- this.superTabControlPanel2.Name = "superTabControlPanel2";
- this.superTabControlPanel2.Size = new System.Drawing.Size(1760, 904);
- this.superTabControlPanel2.TabIndex = 0;
- this.superTabControlPanel2.TabItem = this.spTabBM;
- //
- // panelExBLSJ
- //
- this.panelExBLSJ.CanvasColor = System.Drawing.SystemColors.Control;
- this.panelExBLSJ.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
- this.panelExBLSJ.Controls.Add(this.panel82);
- this.panelExBLSJ.DisabledBackColor = System.Drawing.Color.Empty;
- this.panelExBLSJ.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panelExBLSJ.Location = new System.Drawing.Point(0, 0);
- this.panelExBLSJ.Name = "panelExBLSJ";
- this.panelExBLSJ.Size = new System.Drawing.Size(1760, 904);
- this.panelExBLSJ.Style.Alignment = System.Drawing.StringAlignment.Center;
- this.panelExBLSJ.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
- this.panelExBLSJ.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
- this.panelExBLSJ.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
- this.panelExBLSJ.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
- this.panelExBLSJ.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
- this.panelExBLSJ.Style.GradientAngle = 90;
- this.panelExBLSJ.TabIndex = 0;
- //
- // panel82
- //
- this.panel82.AutoScroll = true;
- this.panel82.BackColor = System.Drawing.Color.White;
- this.panel82.Controls.Add(this.panel18);
- this.panel82.Controls.Add(this.panel12);
- this.panel82.Controls.Add(this.circularProgress2);
- this.panel82.Controls.Add(this.zgcAnaesRecord2);
- this.panel82.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel82.Location = new System.Drawing.Point(0, 0);
- this.panel82.Name = "panel82";
- this.panel82.Size = new System.Drawing.Size(1760, 904);
- this.panel82.TabIndex = 3;
- this.panel82.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel82_Scroll);
- //
- // panel18
- //
- this.panel18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel18.Controls.Add(this.panel19);
- this.panel18.Controls.Add(this.panel20);
- this.panel18.Controls.Add(this.panel22);
- this.panel18.Controls.Add(this.panel23);
- this.panel18.Controls.Add(this.panel25);
- this.panel18.Location = new System.Drawing.Point(285, 552);
- this.panel18.Name = "panel18";
- this.panel18.Size = new System.Drawing.Size(1055, 242);
- this.panel18.TabIndex = 1469;
- //
- // panel19
- //
- this.panel19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel19.Controls.Add(this.label46);
- this.panel19.Controls.Add(this.label47);
- this.panel19.Controls.Add(this.uText21);
- this.panel19.Controls.Add(this.uText22);
- this.panel19.Controls.Add(this.label48);
- this.panel19.Controls.Add(this.label49);
- this.panel19.Controls.Add(this.uText23);
- this.panel19.Controls.Add(this.uText24);
- this.panel19.Controls.Add(this.label50);
- this.panel19.Controls.Add(this.uText25);
- this.panel19.Controls.Add(this.label51);
- this.panel19.Controls.Add(this.uText26);
- this.panel19.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel19.Location = new System.Drawing.Point(54, 183);
- this.panel19.Name = "panel19";
- this.panel19.Size = new System.Drawing.Size(999, 59);
- this.panel19.TabIndex = 1356;
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label46.Location = new System.Drawing.Point(668, 30);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(65, 20);
- this.label46.TabIndex = 1449;
- this.label46.Text = "失效日期";
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label47.Location = new System.Drawing.Point(668, 1);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(79, 20);
- this.label47.TabIndex = 1449;
- this.label47.Text = "灭菌器编号";
- //
- // uText21
- //
- this.uText21.BackColor = System.Drawing.Color.White;
- this.uText21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText21.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText21.Location = new System.Drawing.Point(769, 33);
- this.uText21.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText21.Name = "uText21";
- this.uText21.Size = new System.Drawing.Size(217, 23);
- this.uText21.TabIndex = 1435;
- this.uText21.Tag = "TempDataManage_TextPackObj_616";
- //
- // uText22
- //
- this.uText22.BackColor = System.Drawing.Color.White;
- this.uText22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText22.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText22.Location = new System.Drawing.Point(769, 4);
- this.uText22.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText22.Name = "uText22";
- this.uText22.Size = new System.Drawing.Size(217, 23);
- this.uText22.TabIndex = 1435;
- this.uText22.Tag = "TempDataManage_TextPackObj_615";
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label48.Location = new System.Drawing.Point(367, 30);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(65, 20);
- this.label48.TabIndex = 1449;
- this.label48.Text = "灭菌日期";
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label49.Location = new System.Drawing.Point(367, 1);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(51, 20);
- this.label49.TabIndex = 1449;
- this.label49.Text = "包装者";
- //
- // uText23
- //
- this.uText23.BackColor = System.Drawing.Color.White;
- this.uText23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText23.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText23.Location = new System.Drawing.Point(451, 33);
- this.uText23.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText23.Name = "uText23";
- this.uText23.Size = new System.Drawing.Size(200, 23);
- this.uText23.TabIndex = 1435;
- this.uText23.Tag = "TempDataManage_TextPackObj_614";
- //
- // uText24
- //
- this.uText24.BackColor = System.Drawing.Color.White;
- this.uText24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText24.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText24.Location = new System.Drawing.Point(451, 4);
- this.uText24.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText24.Name = "uText24";
- this.uText24.Size = new System.Drawing.Size(200, 23);
- this.uText24.TabIndex = 1435;
- this.uText24.Tag = "TempDataManage_TextPackObj_613";
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label50.Location = new System.Drawing.Point(22, 30);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(65, 20);
- this.label50.TabIndex = 1449;
- this.label50.Text = "灭菌批次";
- //
- // uText25
- //
- this.uText25.BackColor = System.Drawing.Color.White;
- this.uText25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText25.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText25.Location = new System.Drawing.Point(106, 33);
- this.uText25.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText25.Name = "uText25";
- this.uText25.Size = new System.Drawing.Size(255, 23);
- this.uText25.TabIndex = 1435;
- this.uText25.Tag = "TempDataManage_TextPackObj_612";
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label51.Location = new System.Drawing.Point(22, 1);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(65, 20);
- this.label51.TabIndex = 1449;
- this.label51.Text = "物品名称";
- //
- // uText26
- //
- this.uText26.BackColor = System.Drawing.Color.White;
- this.uText26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText26.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText26.Location = new System.Drawing.Point(106, 4);
- this.uText26.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText26.Name = "uText26";
- this.uText26.Size = new System.Drawing.Size(255, 23);
- this.uText26.TabIndex = 1435;
- this.uText26.Tag = "TempDataManage_TextPackObj_611";
- //
- // panel20
- //
- this.panel20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel20.Controls.Add(this.label37);
- this.panel20.Controls.Add(this.label38);
- this.panel20.Controls.Add(this.uText15);
- this.panel20.Controls.Add(this.uText16);
- this.panel20.Controls.Add(this.label42);
- this.panel20.Controls.Add(this.label43);
- this.panel20.Controls.Add(this.uText17);
- this.panel20.Controls.Add(this.uText18);
- this.panel20.Controls.Add(this.label44);
- this.panel20.Controls.Add(this.uText19);
- this.panel20.Controls.Add(this.label45);
- this.panel20.Controls.Add(this.uText20);
- this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel20.Location = new System.Drawing.Point(54, 120);
- this.panel20.Name = "panel20";
- this.panel20.Size = new System.Drawing.Size(999, 63);
- this.panel20.TabIndex = 1355;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label37.Location = new System.Drawing.Point(668, 31);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(65, 20);
- this.label37.TabIndex = 1449;
- this.label37.Text = "失效日期";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label38.Location = new System.Drawing.Point(668, 2);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(79, 20);
- this.label38.TabIndex = 1449;
- this.label38.Text = "灭菌器编号";
- //
- // uText15
- //
- this.uText15.BackColor = System.Drawing.Color.White;
- this.uText15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText15.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText15.Location = new System.Drawing.Point(769, 34);
- this.uText15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText15.Name = "uText15";
- this.uText15.Size = new System.Drawing.Size(217, 23);
- this.uText15.TabIndex = 1435;
- this.uText15.Tag = "TempDataManage_TextPackObj_610";
- //
- // uText16
- //
- this.uText16.BackColor = System.Drawing.Color.White;
- this.uText16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText16.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText16.Location = new System.Drawing.Point(769, 5);
- this.uText16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText16.Name = "uText16";
- this.uText16.Size = new System.Drawing.Size(217, 23);
- this.uText16.TabIndex = 1435;
- this.uText16.Tag = "TempDataManage_TextPackObj_609";
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label42.Location = new System.Drawing.Point(367, 31);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(65, 20);
- this.label42.TabIndex = 1449;
- this.label42.Text = "灭菌日期";
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label43.Location = new System.Drawing.Point(367, 2);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(51, 20);
- this.label43.TabIndex = 1449;
- this.label43.Text = "包装者";
- //
- // uText17
- //
- this.uText17.BackColor = System.Drawing.Color.White;
- this.uText17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText17.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText17.Location = new System.Drawing.Point(451, 34);
- this.uText17.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText17.Name = "uText17";
- this.uText17.Size = new System.Drawing.Size(200, 23);
- this.uText17.TabIndex = 1435;
- this.uText17.Tag = "TempDataManage_TextPackObj_608";
- //
- // uText18
- //
- this.uText18.BackColor = System.Drawing.Color.White;
- this.uText18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText18.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText18.Location = new System.Drawing.Point(451, 5);
- this.uText18.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText18.Name = "uText18";
- this.uText18.Size = new System.Drawing.Size(200, 23);
- this.uText18.TabIndex = 1435;
- this.uText18.Tag = "TempDataManage_TextPackObj_607";
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label44.Location = new System.Drawing.Point(22, 31);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(65, 20);
- this.label44.TabIndex = 1449;
- this.label44.Text = "灭菌批次";
- //
- // uText19
- //
- this.uText19.BackColor = System.Drawing.Color.White;
- this.uText19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText19.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText19.Location = new System.Drawing.Point(106, 34);
- this.uText19.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText19.Name = "uText19";
- this.uText19.Size = new System.Drawing.Size(255, 23);
- this.uText19.TabIndex = 1435;
- this.uText19.Tag = "TempDataManage_TextPackObj_606";
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label45.Location = new System.Drawing.Point(22, 2);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(65, 20);
- this.label45.TabIndex = 1449;
- this.label45.Text = "物品名称";
- //
- // uText20
- //
- this.uText20.BackColor = System.Drawing.Color.White;
- this.uText20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText20.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText20.Location = new System.Drawing.Point(106, 5);
- this.uText20.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText20.Name = "uText20";
- this.uText20.Size = new System.Drawing.Size(255, 23);
- this.uText20.TabIndex = 1435;
- this.uText20.Tag = "TempDataManage_TextPackObj_605";
- //
- // panel22
- //
- this.panel22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel22.Controls.Add(this.label29);
- this.panel22.Controls.Add(this.label30);
- this.panel22.Controls.Add(this.uText9);
- this.panel22.Controls.Add(this.uText10);
- this.panel22.Controls.Add(this.label31);
- this.panel22.Controls.Add(this.label32);
- this.panel22.Controls.Add(this.uText11);
- this.panel22.Controls.Add(this.uText12);
- this.panel22.Controls.Add(this.label33);
- this.panel22.Controls.Add(this.uText13);
- this.panel22.Controls.Add(this.label34);
- this.panel22.Controls.Add(this.uText14);
- this.panel22.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel22.Location = new System.Drawing.Point(54, 63);
- this.panel22.Name = "panel22";
- this.panel22.Size = new System.Drawing.Size(999, 57);
- this.panel22.TabIndex = 1354;
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label29.Location = new System.Drawing.Point(668, 25);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(65, 20);
- this.label29.TabIndex = 1449;
- this.label29.Text = "失效日期";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label30.Location = new System.Drawing.Point(668, 0);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(79, 20);
- this.label30.TabIndex = 1449;
- this.label30.Text = "灭菌器编号";
- //
- // uText9
- //
- this.uText9.BackColor = System.Drawing.Color.White;
- this.uText9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText9.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText9.Location = new System.Drawing.Point(769, 28);
- this.uText9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText9.Name = "uText9";
- this.uText9.Size = new System.Drawing.Size(217, 23);
- this.uText9.TabIndex = 1435;
- this.uText9.Tag = "TempDataManage_TextPackObj_603";
- //
- // uText10
- //
- this.uText10.BackColor = System.Drawing.Color.White;
- this.uText10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText10.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText10.Location = new System.Drawing.Point(769, 3);
- this.uText10.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText10.Name = "uText10";
- this.uText10.Size = new System.Drawing.Size(217, 23);
- this.uText10.TabIndex = 1435;
- this.uText10.Tag = "TempDataManage_TextPackObj_602";
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label31.Location = new System.Drawing.Point(367, 25);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(65, 20);
- this.label31.TabIndex = 1449;
- this.label31.Text = "灭菌日期";
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label32.Location = new System.Drawing.Point(367, 0);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(51, 20);
- this.label32.TabIndex = 1449;
- this.label32.Text = "包装者";
- //
- // uText11
- //
- this.uText11.BackColor = System.Drawing.Color.White;
- this.uText11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText11.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText11.Location = new System.Drawing.Point(451, 28);
- this.uText11.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText11.Name = "uText11";
- this.uText11.Size = new System.Drawing.Size(200, 23);
- this.uText11.TabIndex = 1435;
- this.uText11.Tag = "TempDataManage_TextPackObj_601";
- //
- // uText12
- //
- this.uText12.BackColor = System.Drawing.Color.White;
- this.uText12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText12.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText12.Location = new System.Drawing.Point(451, 3);
- this.uText12.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText12.Name = "uText12";
- this.uText12.Size = new System.Drawing.Size(200, 23);
- this.uText12.TabIndex = 1435;
- this.uText12.Tag = "TempDataManage_TextPackObj_600";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label33.Location = new System.Drawing.Point(22, 25);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(65, 20);
- this.label33.TabIndex = 1449;
- this.label33.Text = "灭菌批次";
- //
- // uText13
- //
- this.uText13.BackColor = System.Drawing.Color.White;
- this.uText13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText13.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText13.Location = new System.Drawing.Point(106, 28);
- this.uText13.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText13.Name = "uText13";
- this.uText13.Size = new System.Drawing.Size(255, 23);
- this.uText13.TabIndex = 1435;
- this.uText13.Tag = "TempDataManage_TextPackObj_599";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label34.Location = new System.Drawing.Point(22, 0);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(65, 20);
- this.label34.TabIndex = 1449;
- this.label34.Text = "物品名称";
- //
- // uText14
- //
- this.uText14.BackColor = System.Drawing.Color.White;
- this.uText14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText14.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText14.Location = new System.Drawing.Point(106, 3);
- this.uText14.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText14.Name = "uText14";
- this.uText14.Size = new System.Drawing.Size(255, 23);
- this.uText14.TabIndex = 1435;
- this.uText14.Tag = "TempDataManage_TextPackObj_604";
- //
- // panel23
- //
- this.panel23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel23.Controls.Add(this.label27);
- this.panel23.Controls.Add(this.label24);
- this.panel23.Controls.Add(this.uText8);
- this.panel23.Controls.Add(this.uText4);
- this.panel23.Controls.Add(this.label25);
- this.panel23.Controls.Add(this.label26);
- this.panel23.Controls.Add(this.uText7);
- this.panel23.Controls.Add(this.uText1);
- this.panel23.Controls.Add(this.label28);
- this.panel23.Controls.Add(this.uText5);
- this.panel23.Controls.Add(this.label35);
- this.panel23.Controls.Add(this.uText6);
- this.panel23.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel23.Location = new System.Drawing.Point(54, 0);
- this.panel23.Name = "panel23";
- this.panel23.Size = new System.Drawing.Size(999, 63);
- this.panel23.TabIndex = 1353;
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label27.Location = new System.Drawing.Point(668, 31);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(65, 20);
- this.label27.TabIndex = 1449;
- this.label27.Text = "失效日期";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label24.Location = new System.Drawing.Point(668, 2);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(79, 20);
- this.label24.TabIndex = 1449;
- this.label24.Text = "灭菌器编号";
- //
- // uText8
- //
- this.uText8.BackColor = System.Drawing.Color.White;
- this.uText8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText8.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText8.Location = new System.Drawing.Point(769, 34);
- this.uText8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText8.Name = "uText8";
- this.uText8.Size = new System.Drawing.Size(217, 23);
- this.uText8.TabIndex = 1435;
- this.uText8.Tag = "TempDataManage_TextPackObj_598";
- //
- // uText4
- //
- this.uText4.BackColor = System.Drawing.Color.White;
- this.uText4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText4.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText4.Location = new System.Drawing.Point(769, 5);
- this.uText4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText4.Name = "uText4";
- this.uText4.Size = new System.Drawing.Size(217, 23);
- this.uText4.TabIndex = 1435;
- this.uText4.Tag = "TempDataManage_TextPackObj_597";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label25.Location = new System.Drawing.Point(367, 31);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(65, 20);
- this.label25.TabIndex = 1449;
- this.label25.Text = "灭菌日期";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label26.Location = new System.Drawing.Point(367, 2);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(51, 20);
- this.label26.TabIndex = 1449;
- this.label26.Text = "包装者";
- //
- // uText7
- //
- this.uText7.BackColor = System.Drawing.Color.White;
- this.uText7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText7.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText7.Location = new System.Drawing.Point(451, 34);
- this.uText7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText7.Name = "uText7";
- this.uText7.Size = new System.Drawing.Size(200, 23);
- this.uText7.TabIndex = 1435;
- this.uText7.Tag = "TempDataManage_TextPackObj_596";
- //
- // uText1
- //
- this.uText1.BackColor = System.Drawing.Color.White;
- this.uText1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText1.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText1.Location = new System.Drawing.Point(451, 5);
- this.uText1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText1.Name = "uText1";
- this.uText1.Size = new System.Drawing.Size(200, 23);
- this.uText1.TabIndex = 1435;
- this.uText1.Tag = "TempDataManage_TextPackObj_595";
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label28.Location = new System.Drawing.Point(22, 31);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(65, 20);
- this.label28.TabIndex = 1449;
- this.label28.Text = "灭菌批次";
- //
- // uText5
- //
- this.uText5.BackColor = System.Drawing.Color.White;
- this.uText5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText5.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText5.Location = new System.Drawing.Point(106, 34);
- this.uText5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText5.Name = "uText5";
- this.uText5.Size = new System.Drawing.Size(255, 23);
- this.uText5.TabIndex = 1435;
- this.uText5.Tag = "TempDataManage_TextPackObj_594";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label35.Location = new System.Drawing.Point(22, 2);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(65, 20);
- this.label35.TabIndex = 0;
- this.label35.Text = "物品名称";
- //
- // uText6
- //
- this.uText6.BackColor = System.Drawing.Color.White;
- this.uText6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.uText6.Font = new System.Drawing.Font("宋体", 10.5F);
- this.uText6.Location = new System.Drawing.Point(106, 5);
- this.uText6.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.uText6.Name = "uText6";
- this.uText6.Size = new System.Drawing.Size(255, 23);
- this.uText6.TabIndex = 1;
- this.uText6.Tag = "TempDataManage_TextPackObj_593";
- //
- // panel25
- //
- this.panel25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel25.Controls.Add(this.label36);
- this.panel25.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel25.Location = new System.Drawing.Point(0, 0);
- this.panel25.Name = "panel25";
- this.panel25.Size = new System.Drawing.Size(54, 240);
- this.panel25.TabIndex = 1352;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.label36.Location = new System.Drawing.Point(4, 44);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(37, 140);
- this.label36.TabIndex = 1351;
- this.label36.Text = "灭菌\r\n物品\r\n包外\r\n标识\r\n记录\r\n 或\r\n粘贴";
- //
- // panel12
- //
- this.panel12.BackColor = System.Drawing.Color.White;
- this.panel12.Controls.Add(this.panel17);
- this.panel12.Location = new System.Drawing.Point(699, 355);
- this.panel12.Margin = new System.Windows.Forms.Padding(0);
- this.panel12.Name = "panel12";
- this.panel12.Size = new System.Drawing.Size(345, 194);
- this.panel12.TabIndex = 12;
- //
- // panel17
- //
- this.panel17.Controls.Add(this.panel24);
- this.panel17.Controls.Add(this.pictureBox1);
- this.panel17.Location = new System.Drawing.Point(11, 13);
- this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(321, 169);
- this.panel17.TabIndex = 1464;
- //
- // panel24
- //
- this.panel24.Controls.Add(this.button4);
- this.panel24.Controls.Add(this.radioButton4);
- this.panel24.Controls.Add(this.radioButton5);
- this.panel24.Controls.Add(this.radioButton3);
- this.panel24.Controls.Add(this.radioButton2);
- this.panel24.Controls.Add(this.label23);
- this.panel24.Controls.Add(this.radioButton1);
- this.panel24.Location = new System.Drawing.Point(3, 3);
- this.panel24.Name = "panel24";
- this.panel24.Size = new System.Drawing.Size(144, 158);
- this.panel24.TabIndex = 1;
- //
- // button4
- //
- this.button4.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.button4.Location = new System.Drawing.Point(4, 120);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(122, 30);
- this.button4.TabIndex = 1436;
- this.button4.Text = "清除所有标记";
- this.button4.UseVisualStyleBackColor = true;
- this.button4.Click += new System.EventHandler(this.buttonClear_Click);
- //
- // radioButton4
- //
- this.radioButton4.AutoSize = true;
- this.radioButton4.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.radioButton4.Location = new System.Drawing.Point(4, 59);
- this.radioButton4.Name = "radioButton4";
- this.radioButton4.Size = new System.Drawing.Size(82, 20);
- this.radioButton4.TabIndex = 1435;
- this.radioButton4.TabStop = true;
- this.radioButton4.Text = "V 静脉穿刺";
- this.radioButton4.UseVisualStyleBackColor = true;
- this.radioButton4.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
- //
- // radioButton5
- //
- this.radioButton5.AutoSize = true;
- this.radioButton5.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.radioButton5.Location = new System.Drawing.Point(4, 102);
- this.radioButton5.Name = "radioButton5";
- this.radioButton5.Size = new System.Drawing.Size(72, 20);
- this.radioButton5.TabIndex = 1435;
- this.radioButton5.TabStop = true;
- this.radioButton5.Text = "⊙ 引流管";
- this.radioButton5.UseVisualStyleBackColor = true;
- this.radioButton5.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
- //
- // radioButton3
- //
- this.radioButton3.AutoSize = true;
- this.radioButton3.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.radioButton3.Location = new System.Drawing.Point(4, 81);
- this.radioButton3.Name = "radioButton3";
- this.radioButton3.Size = new System.Drawing.Size(83, 20);
- this.radioButton3.TabIndex = 1435;
- this.radioButton3.TabStop = true;
- this.radioButton3.Text = "A 动脉穿刺";
- this.radioButton3.UseVisualStyleBackColor = true;
- this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
- //
- // radioButton2
- //
- this.radioButton2.AutoSize = true;
- this.radioButton2.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.radioButton2.Location = new System.Drawing.Point(4, 21);
- this.radioButton2.Name = "radioButton2";
- this.radioButton2.Size = new System.Drawing.Size(106, 20);
- this.radioButton2.TabIndex = 1435;
- this.radioButton2.TabStop = true;
- this.radioButton2.Text = "▬ 贴负极板部位";
- this.radioButton2.UseVisualStyleBackColor = true;
- this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label23.Location = new System.Drawing.Point(4, 41);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(62, 16);
- this.label23.TabIndex = 1438;
- this.label23.Text = "穿刺部位:";
- //
- // radioButton1
- //
- this.radioButton1.AutoSize = true;
- this.radioButton1.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.radioButton1.Location = new System.Drawing.Point(4, 0);
- this.radioButton1.Name = "radioButton1";
- this.radioButton1.Size = new System.Drawing.Size(83, 20);
- this.radioButton1.TabIndex = 1435;
- this.radioButton1.TabStop = true;
- this.radioButton1.Text = "卅 切口部位";
- this.radioButton1.UseVisualStyleBackColor = true;
- this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
- //
- // pictureBox1
- //
- this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
- this.pictureBox1.Location = new System.Drawing.Point(150, 3);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(162, 149);
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- this.pictureBox1.Tag = "C79";
- this.pictureBox1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseClick);
- //
- // circularProgress2
- //
- this.circularProgress2.AnimationSpeed = 50;
- //
- //
- //
- this.circularProgress2.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
- this.circularProgress2.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
- this.circularProgress2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.circularProgress2.FocusCuesEnabled = false;
- this.circularProgress2.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.circularProgress2.Location = new System.Drawing.Point(678, 354);
- this.circularProgress2.Margin = new System.Windows.Forms.Padding(4);
- this.circularProgress2.Name = "circularProgress2";
- this.circularProgress2.ProgressColor = System.Drawing.Color.DodgerBlue;
- this.circularProgress2.Size = new System.Drawing.Size(389, 239);
- this.circularProgress2.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
- this.circularProgress2.TabIndex = 6;
- this.circularProgress2.Value = 100;
- //
- // zgcAnaesRecord2
- //
- this.zgcAnaesRecord2.Location = new System.Drawing.Point(416, 41);
- this.zgcAnaesRecord2.Name = "zgcAnaesRecord2";
- this.zgcAnaesRecord2.ScrollGrace = 0D;
- this.zgcAnaesRecord2.ScrollMaxX = 0D;
- this.zgcAnaesRecord2.ScrollMaxY = 0D;
- this.zgcAnaesRecord2.ScrollMaxY2 = 0D;
- this.zgcAnaesRecord2.ScrollMinX = 0D;
- this.zgcAnaesRecord2.ScrollMinY = 0D;
- this.zgcAnaesRecord2.ScrollMinY2 = 0D;
- this.zgcAnaesRecord2.Size = new System.Drawing.Size(800, 1000);
- this.zgcAnaesRecord2.TabIndex = 0;
- this.zgcAnaesRecord2.Visible = false;
- this.zgcAnaesRecord2.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord2_ContextMenuBuilder);
- this.zgcAnaesRecord2.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseDownEvent);
- this.zgcAnaesRecord2.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseUpEvent);
- this.zgcAnaesRecord2.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseMoveEvent);
- this.zgcAnaesRecord2.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord2_KeyUp);
- this.zgcAnaesRecord2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord2_MouseDoubleClick);
- //
- // spTabBM
- //
- this.spTabBM.AttachedControl = this.superTabControlPanel2;
- this.spTabBM.GlobalItem = false;
- this.spTabBM.Name = "spTabBM";
- this.spTabBM.Text = "器械清点单背面";
- //
// superTabControlPanel1
//
this.superTabControlPanel1.Controls.Add(this.panelExZKZB);
@@ -1810,10 +850,10 @@
this.panelQX.BackColor = System.Drawing.Color.White;
this.panelQX.Controls.Add(this.plBottom);
this.panelQX.Controls.Add(this.plTop);
- this.panelQX.Location = new System.Drawing.Point(122, 588);
+ this.panelQX.Location = new System.Drawing.Point(217, 213);
this.panelQX.Margin = new System.Windows.Forms.Padding(0);
this.panelQX.Name = "panelQX";
- this.panelQX.Size = new System.Drawing.Size(1606, 562);
+ this.panelQX.Size = new System.Drawing.Size(1238, 562);
this.panelQX.TabIndex = 12;
this.panelQX.Visible = false;
//
@@ -1828,100 +868,31 @@
this.plBottom.Location = new System.Drawing.Point(0, 2);
this.plBottom.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.plBottom.Name = "plBottom";
- this.plBottom.Size = new System.Drawing.Size(1606, 560);
+ this.plBottom.Size = new System.Drawing.Size(1238, 560);
this.plBottom.TabIndex = 1355;
//
// panel32
//
this.panel32.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel32.Location = new System.Drawing.Point(0, 70);
+ this.panel32.Location = new System.Drawing.Point(0, 47);
this.panel32.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panel32.Name = "panel32";
- this.panel32.Size = new System.Drawing.Size(1604, 488);
+ this.panel32.Size = new System.Drawing.Size(1236, 511);
this.panel32.TabIndex = 1350;
//
// plTital
//
this.plTital.BackColor = System.Drawing.SystemColors.Control;
- this.plTital.Controls.Add(this.panel9);
this.plTital.Controls.Add(this.panel15);
- this.plTital.Controls.Add(this.label53);
this.plTital.Controls.Add(this.panel16);
this.plTital.Dock = System.Windows.Forms.DockStyle.Top;
this.plTital.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.plTital.Location = new System.Drawing.Point(0, 0);
this.plTital.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.plTital.Name = "plTital";
- this.plTital.Size = new System.Drawing.Size(1604, 70);
+ this.plTital.Size = new System.Drawing.Size(1236, 47);
this.plTital.TabIndex = 1349;
//
- // panel9
- //
- this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel9.Controls.Add(this.label16);
- this.panel9.Controls.Add(this.label17);
- this.panel9.Controls.Add(this.label18);
- this.panel9.Controls.Add(this.label20);
- this.panel9.Controls.Add(this.label21);
- this.panel9.Location = new System.Drawing.Point(1050, 30);
- this.panel9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(524, 40);
- this.panel9.TabIndex = 13;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(73, 9);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(32, 17);
- this.label16.TabIndex = 9;
- this.label16.Text = "名称";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(174, 0);
- this.label17.Margin = new System.Windows.Forms.Padding(0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(32, 34);
- this.label17.TabIndex = 10;
- this.label17.Text = "术前\r\n清点";
- this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label18.Location = new System.Drawing.Point(273, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(32, 34);
- this.label18.TabIndex = 12;
- this.label18.Text = "术中\r\n加数";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label20.Location = new System.Drawing.Point(360, 0);
- this.label20.Margin = new System.Windows.Forms.Padding(0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(32, 34);
- this.label20.TabIndex = 8;
- this.label20.Text = "关体\r\n腔前";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label21.Location = new System.Drawing.Point(444, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(32, 34);
- this.label21.TabIndex = 11;
- this.label21.Text = "关体\r\n腔后";
- //
// panel15
//
this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
@@ -1929,28 +900,30 @@
this.panel15.Controls.Add(this.label12);
this.panel15.Controls.Add(this.label13);
this.panel15.Controls.Add(this.label14);
+ this.panel15.Controls.Add(this.label17);
this.panel15.Controls.Add(this.label15);
- this.panel15.Location = new System.Drawing.Point(525, 30);
+ this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel15.Location = new System.Drawing.Point(618, 0);
this.panel15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(524, 40);
+ this.panel15.Size = new System.Drawing.Size(618, 47);
this.panel15.TabIndex = 13;
//
// label11
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label11.Location = new System.Drawing.Point(73, 9);
+ this.label11.Location = new System.Drawing.Point(73, 5);
this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(32, 17);
+ this.label11.Size = new System.Drawing.Size(32, 34);
this.label11.TabIndex = 9;
- this.label11.Text = "名称";
+ this.label11.Text = "器械\r\n名称";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(174, 0);
+ this.label12.Location = new System.Drawing.Point(174, 5);
this.label12.Margin = new System.Windows.Forms.Padding(0);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(32, 34);
@@ -1962,7 +935,7 @@
//
this.label13.AutoSize = true;
this.label13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(273, 0);
+ this.label13.Location = new System.Drawing.Point(273, 5);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(32, 34);
this.label13.TabIndex = 12;
@@ -1972,7 +945,7 @@
//
this.label14.AutoSize = true;
this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(360, 0);
+ this.label14.Location = new System.Drawing.Point(360, 5);
this.label14.Margin = new System.Windows.Forms.Padding(0);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(32, 34);
@@ -1983,51 +956,43 @@
//
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label15.Location = new System.Drawing.Point(444, 0);
+ this.label15.Location = new System.Drawing.Point(444, 5);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(32, 34);
this.label15.TabIndex = 11;
this.label15.Text = "关体\r\n腔后";
//
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
- this.label53.Location = new System.Drawing.Point(763, 1);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(119, 22);
- this.label53.TabIndex = 12;
- this.label53.Text = "器 械 清 点";
- //
// panel16
//
this.panel16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel16.Controls.Add(this.label65);
this.panel16.Controls.Add(this.label57);
this.panel16.Controls.Add(this.label59);
+ this.panel16.Controls.Add(this.label16);
this.panel16.Controls.Add(this.label66);
this.panel16.Controls.Add(this.label58);
- this.panel16.Location = new System.Drawing.Point(0, 30);
+ this.panel16.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel16.Location = new System.Drawing.Point(0, 0);
this.panel16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(524, 40);
+ this.panel16.Size = new System.Drawing.Size(618, 47);
this.panel16.TabIndex = 11;
//
// label65
//
this.label65.AutoSize = true;
this.label65.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label65.Location = new System.Drawing.Point(74, 9);
+ this.label65.Location = new System.Drawing.Point(74, 5);
this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(32, 17);
+ this.label65.Size = new System.Drawing.Size(32, 34);
this.label65.TabIndex = 9;
- this.label65.Text = "名称";
+ this.label65.Text = "器械\r\n名称";
//
// label57
//
this.label57.AutoSize = true;
this.label57.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label57.Location = new System.Drawing.Point(175, 0);
+ this.label57.Location = new System.Drawing.Point(175, 5);
this.label57.Margin = new System.Windows.Forms.Padding(0);
this.label57.Name = "label57";
this.label57.Size = new System.Drawing.Size(32, 34);
@@ -2039,7 +1004,7 @@
//
this.label59.AutoSize = true;
this.label59.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label59.Location = new System.Drawing.Point(355, 0);
+ this.label59.Location = new System.Drawing.Point(355, 5);
this.label59.Margin = new System.Windows.Forms.Padding(0);
this.label59.Name = "label59";
this.label59.Size = new System.Drawing.Size(32, 34);
@@ -2050,7 +1015,7 @@
//
this.label66.AutoSize = true;
this.label66.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label66.Location = new System.Drawing.Point(452, 0);
+ this.label66.Location = new System.Drawing.Point(452, 5);
this.label66.Name = "label66";
this.label66.Size = new System.Drawing.Size(32, 34);
this.label66.TabIndex = 11;
@@ -2060,7 +1025,7 @@
//
this.label58.AutoSize = true;
this.label58.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label58.Location = new System.Drawing.Point(268, 0);
+ this.label58.Location = new System.Drawing.Point(268, 5);
this.label58.Name = "label58";
this.label58.Size = new System.Drawing.Size(32, 34);
this.label58.TabIndex = 12;
@@ -2075,7 +1040,7 @@
this.plTop.Location = new System.Drawing.Point(0, 0);
this.plTop.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.plTop.Name = "plTop";
- this.plTop.Size = new System.Drawing.Size(1606, 2);
+ this.plTop.Size = new System.Drawing.Size(1238, 2);
this.plTop.TabIndex = 22;
//
// circularProgress1
@@ -2628,6 +1593,26 @@
this.flowLayoutPanel1.Size = new System.Drawing.Size(147, 71);
this.flowLayoutPanel1.TabIndex = 0;
//
+ // label16
+ //
+ this.label16.AutoSize = true;
+ this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label16.Location = new System.Drawing.Point(539, 5);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(32, 34);
+ this.label16.TabIndex = 11;
+ this.label16.Text = "缝合\r\n皮后";
+ //
+ // label17
+ //
+ this.label17.AutoSize = true;
+ this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label17.Location = new System.Drawing.Point(532, 5);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(32, 34);
+ this.label17.TabIndex = 11;
+ this.label17.Text = "缝合\r\n皮后";
+ //
// frmAnasRecordInstrument
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
@@ -2647,34 +1632,12 @@
this.panel5.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.superTabMain)).EndInit();
this.superTabMain.ResumeLayout(false);
- this.superTabControlPanel2.ResumeLayout(false);
- this.panelExBLSJ.ResumeLayout(false);
- this.panel82.ResumeLayout(false);
- this.panel18.ResumeLayout(false);
- this.panel19.ResumeLayout(false);
- this.panel19.PerformLayout();
- this.panel20.ResumeLayout(false);
- this.panel20.PerformLayout();
- this.panel22.ResumeLayout(false);
- this.panel22.PerformLayout();
- this.panel23.ResumeLayout(false);
- this.panel23.PerformLayout();
- this.panel25.ResumeLayout(false);
- this.panel25.PerformLayout();
- this.panel12.ResumeLayout(false);
- this.panel17.ResumeLayout(false);
- this.panel24.ResumeLayout(false);
- this.panel24.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.superTabControlPanel1.ResumeLayout(false);
this.panelExZKZB.ResumeLayout(false);
this.panel8.ResumeLayout(false);
this.panelQX.ResumeLayout(false);
this.plBottom.ResumeLayout(false);
this.plTital.ResumeLayout(false);
- this.plTital.PerformLayout();
- this.panel9.ResumeLayout(false);
- this.panel9.PerformLayout();
this.panel15.ResumeLayout(false);
this.panel15.PerformLayout();
this.panel16.ResumeLayout(false);
@@ -2778,7 +1741,6 @@
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label53;
private System.Windows.Forms.Panel panel16;
private System.Windows.Forms.Label label65;
private System.Windows.Forms.Label label57;
@@ -2786,89 +1748,13 @@
private System.Windows.Forms.Label label66;
private System.Windows.Forms.Label label58;
private System.Windows.Forms.Panel plTop;
- private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label21;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Panel PanelSave;
private DevComponents.DotNetBar.SuperTabControl superTabMain;
private DevComponents.DotNetBar.SuperTabControlPanel superTabControlPanel1;
private DevComponents.DotNetBar.PanelEx panelExZKZB;
private DevComponents.DotNetBar.SuperTabItem spTabQXQDD;
- private DevComponents.DotNetBar.SuperTabControlPanel superTabControlPanel2;
- private DevComponents.DotNetBar.PanelEx panelExBLSJ;
- private DevComponents.DotNetBar.SuperTabItem spTabBM;
- private PublicUI.UI.DrawPanel panel82;
- public DevComponents.DotNetBar.Controls.CircularProgress circularProgress2;
- private DrawGraph.ZedGraphControl zgcAnaesRecord2;
- private System.Windows.Forms.Panel panel12;
- private System.Windows.Forms.Panel panel17;
- private System.Windows.Forms.Panel panel24;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.RadioButton radioButton4;
- private System.Windows.Forms.RadioButton radioButton5;
- private System.Windows.Forms.RadioButton radioButton3;
- private System.Windows.Forms.RadioButton radioButton2;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.RadioButton radioButton1;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Panel panel18;
- private System.Windows.Forms.Panel panel19;
- public System.Windows.Forms.Label label46;
- public System.Windows.Forms.Label label47;
- public System.Windows.Forms.TextBox uText21;
- public System.Windows.Forms.TextBox uText22;
- public System.Windows.Forms.Label label48;
- public System.Windows.Forms.Label label49;
- public System.Windows.Forms.TextBox uText23;
- public System.Windows.Forms.TextBox uText24;
- public System.Windows.Forms.Label label50;
- public System.Windows.Forms.TextBox uText25;
- public System.Windows.Forms.Label label51;
- public System.Windows.Forms.TextBox uText26;
- private System.Windows.Forms.Panel panel20;
- public System.Windows.Forms.Label label37;
- public System.Windows.Forms.Label label38;
- public System.Windows.Forms.TextBox uText15;
- public System.Windows.Forms.TextBox uText16;
- public System.Windows.Forms.Label label42;
- public System.Windows.Forms.Label label43;
- public System.Windows.Forms.TextBox uText17;
- public System.Windows.Forms.TextBox uText18;
- public System.Windows.Forms.Label label44;
- public System.Windows.Forms.TextBox uText19;
- public System.Windows.Forms.Label label45;
- public System.Windows.Forms.TextBox uText20;
- private System.Windows.Forms.Panel panel22;
- public System.Windows.Forms.Label label29;
- public System.Windows.Forms.Label label30;
- public System.Windows.Forms.TextBox uText9;
- public System.Windows.Forms.TextBox uText10;
- public System.Windows.Forms.Label label31;
- public System.Windows.Forms.Label label32;
- public System.Windows.Forms.TextBox uText11;
- public System.Windows.Forms.TextBox uText12;
- public System.Windows.Forms.Label label33;
- public System.Windows.Forms.TextBox uText13;
- public System.Windows.Forms.Label label34;
- public System.Windows.Forms.TextBox uText14;
- private System.Windows.Forms.Panel panel23;
- public System.Windows.Forms.Label label27;
- public System.Windows.Forms.Label label24;
- public System.Windows.Forms.TextBox uText8;
- public System.Windows.Forms.TextBox uText4;
- public System.Windows.Forms.Label label25;
- public System.Windows.Forms.Label label26;
- public System.Windows.Forms.TextBox uText7;
- public System.Windows.Forms.TextBox uText1;
- public System.Windows.Forms.Label label28;
- public System.Windows.Forms.TextBox uText5;
- public System.Windows.Forms.Label label35;
- public System.Windows.Forms.TextBox uText6;
- private System.Windows.Forms.Panel panel25;
- public System.Windows.Forms.Label label36;
+ private System.Windows.Forms.Label label17;
+ private System.Windows.Forms.Label label16;
}
}
\ No newline at end of file
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.cs
index ea6d95c..2bddf4d 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.cs
@@ -25,8 +25,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
#region 初始化
public OperationRecord _record;
- public TemplateManage templateManage;
- public TemplateManage templateManage2;
+ public TemplateManage templateManage;
public AIMSModel.OperationRoom NowRoom;
private DataTable _appliance;
private List _applianceUseType;
@@ -282,22 +281,23 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
tb.CustomFormat = " ";
tb.Value = DateTime.Now;
tb.Tag = null;
-
+
if (Inevent != null && Inevent.EventName == "手术开始")
{
_record.OperationBeginTime = null;
this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ BOperationRecord.Update(" OperationBeginTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
}
if (Inevent != null && Inevent.EventName == "手术结束")
{
_record.OperationEndTime = null;
this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
- }
-
- if (Inevent != null)
- {
- BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
- }
+ BOperationRecord.Update(" OperationEndTime=null where Id=@id ", new AIMSModel.ParameterList("@id", _record.Id));
+ }
+ //if (Inevent != null)
+ //{
+ // BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ //}
}
}
///
@@ -355,26 +355,26 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
_record.InRoomTime = Inevent.EventBeginTime;
this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室_select;
- }
+ BOperationRecord.Update("InRoomTime=@InRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
+ }
if (Inevent != null && Inevent.EventName == "手术开始" && _record.OperationBeginTime != Inevent.EventBeginTime)
{
_record.OperationBeginTime = Inevent.EventBeginTime;
this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始_select;
- }
+ BOperationRecord.Update("OperationBeginTime=@OperationBegin where Id=@id ", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
+ }
if (Inevent != null && Inevent.EventName == "手术结束" && _record.OperationEndTime != Inevent.EventBeginTime)
{
_record.OperationEndTime = Inevent.EventBeginTime;
this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束_select;
- }
+ BOperationRecord.Update("OperationEndTime=@OperationEnd where Id=@id ", new AIMSModel.ParameterList("@OperationEnd", _record.OperationEndTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
+ }
if (Inevent != null && Inevent.EventName == "出室" && _record.OutRoomTime != Inevent.EventBeginTime)
{
_record.OutRoomTime = Inevent.EventBeginTime;
this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室_select;
- }
- if (Inevent != null)
- {
- BOperationRecord.Update("InRoomTime=@InRoom,OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.HasValue ? (object)_record.InRoomTime.Value : (object)DateTime.Now, "@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
- }
+ BOperationRecord.Update("OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@OutRoom", _record.OutRoomTime.Value.ToString("yyyy-MM-dd HH:mm:ss"), "@id", _record.Id));
+ }
}
}
///
@@ -400,12 +400,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
private void panel8_Scroll(object sender, ScrollEventArgs e)
{
templateManage.SetPYL();
- }
- private void panel82_Scroll(object sender, ScrollEventArgs e)
- {
- templateManage2.SetPYL();
- }
-
+ }
private void plRefresh_Click(object sender, EventArgs e)
{
@@ -434,11 +429,8 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
public void LoadAnesRescue()
{
circularProgress1.IsRunning = true;
- circularProgress1.Visible = true;
- circularProgress2.IsRunning = true;
- circularProgress2.Visible = true;
- zgcAnaesRecord.Visible = false;
- zgcAnaesRecord2.Visible = false;
+ circularProgress1.Visible = true;
+ zgcAnaesRecord.Visible = false;
timerLoadAnesRescue = new System.Windows.Forms.Timer(components);
timerLoadAnesRescue.Enabled = true;//调试时设置为FALSE ,
timerLoadAnesRescue.Interval = 300;
@@ -462,7 +454,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
HelperDB.DbHelperSQL.CommitTrans();
ClearTimeText();
btnSelectPatient.Enabled = false;
- DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, zgcAnaesRecord2, ref templateManage, ref templateManage2);
+ DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, ref templateManage);
StartTimer();
txtInRoom.MouseDown += new MouseEventHandler(txtDateTime_MouseDown);
@@ -492,12 +484,8 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
if (templateManage != null)
{
templateManage.ControlClear();
- }
- if (templateManage2 != null)
- {
- templateManage2.ControlClear();
- }
- DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, zgcAnaesRecord2, ref templateManage, ref templateManage2);
+ }
+ DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord , ref templateManage );
StartTimer();
}
else if (PatientId > 0 && State == AIMSExtension.EditState.BROWSE)
@@ -510,12 +498,8 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
if (templateManage != null)
{
templateManage.ControlClear();
- }
- if (templateManage2 != null)
- {
- templateManage2.ControlClear();
- }
- DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, zgcAnaesRecord2, ref templateManage, ref templateManage2);
+ }
+ DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord , ref templateManage );
StartTimer();
}
@@ -528,27 +512,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
panelQX.Dock = DockStyle.Fill;
pan.Controls.Add(panelQX);
pan.Size = new System.Drawing.Size(templateManage.ZedControl.Width, (int)(templateManage.ZedControl.Height * 0.4));
- }
- AbleEditPackObj ableEdit2 = templateManage2.GetPackObjectOTag("TempDataManage_AbleEditPackObj_357_OperationRecord_InstrumentList_TagPicturePanel");
- Panel pan2 = ableEdit2.CControl as Panel;
- if (pan2 != null)
- {
- this.panel82.Controls.Remove(this.panel12);
- panel12.Visible = true;
- panel12.Dock = DockStyle.Fill;
- pan2.Controls.Add(panel12);
- //pan.Size = new System.Drawing.Size(templateManage.ZedControl.Width, (int)(templateManage.ZedControl.Height * 0.4));
- }
- AbleEditPackObj ableEdit3 = templateManage2.GetPackObjectOTag("TempDataManage_AbleEditPackObj_397_OperationRecord_InstrumentList_PackPanel");
- Panel pan3 = ableEdit3.CControl as Panel;
- if (pan3 != null)
- {
- this.panel82.Controls.Remove(this.panel18);
- panel18.Visible = true;
- panel18.Dock = DockStyle.Fill;
- pan3.Controls.Add(panel18);
- //pan.Size = new System.Drawing.Size(templateManage.ZedControl.Width, (int)(templateManage.ZedControl.Height * 0.4));
- }
+ }
plRefresh_Click(null, null);
if (_record.MedicalRecord != null && _record.MedicalRecord != "")
{
@@ -567,10 +531,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
circularProgress1.IsRunning = false;
circularProgress1.Visible = false;
- zgcAnaesRecord.Visible = true;
- circularProgress2.IsRunning = false;
- circularProgress2.Visible = false;
- zgcAnaesRecord2.Visible = true;
+ zgcAnaesRecord.Visible = true;
}
@@ -899,14 +860,14 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
if (key == "自主呼吸")
{
- if (_record.InCGTime != null && _record.OutCGTime != null)
+ if (_record.SpileInTime != null && _record.SpileOutTime != null)
{
- if (time > _record.InCGTime && time < _record.OutCGTime)
+ if (time > _record.SpileInTime && time < _record.SpileOutTime)
b = true;
}
- if (_record.InCGTime != null && _record.OutCGTime == null)
+ if (_record.SpileInTime != null && _record.SpileOutTime == null)
{
- if (time > _record.InCGTime)
+ if (time > _record.SpileInTime)
b = true;
}
}
@@ -1004,64 +965,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
menuStrip.Items.Add(ModifyApply);
}
-
- private void zgcAnaesRecord2_KeyUp(object sender, KeyEventArgs e)
- {
- if (templateManage2 != null)
- {
- ZedGraphControl send = sender as ZedGraphControl;
- templateManage2.zedControl_KeyUp(send, e);
- }
- }
-
- private bool zgcAnaesRecord2_MouseDownEvent(ZedGraphControl sender, MouseEventArgs e)
- {
- if (templateManage2 != null && isReadOnly == false)
- {
- SelectWorkerValue.Hidden();
- SelectDictValue.Hidden();
- templateManage2.zedControl_MouseDownEvent(sender, e);
-
- }
- return default(bool);
- }
-
- private bool zgcAnaesRecord2_MouseUpEvent(ZedGraphControl sender, MouseEventArgs e)
- {
- if (templateManage2 != null && isReadOnly == false)
- {
- templateManage2.zedControl_MouseUpEvent(sender, e);
- }
- return default(bool);
- }
-
- private bool zgcAnaesRecord2_MouseMoveEvent(ZedGraphControl sender, MouseEventArgs e)
- {
- if (templateManage2 != null)
- {
- templateManage2.zedControl_MouseMoveEvent(sender, e);
- }
- return default(bool);
- }
-
- private void zgcAnaesRecord2_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- if (templateManage2 != null && isReadOnly == false)
- {
- ZedGraphControl send = sender as ZedGraphControl;
- templateManage2.zedControl_MouseDoubleClick(send, e);
- }
- }
- //public ucStripMenuItem menuItem = new ucStripMenuItem();
- private void zgcAnaesRecord2_ContextMenuBuilder(ZedGraphControl sender, ContextMenuStrip menuStrip, Point mousePt, ZedGraphControl.ContextMenuObjectState objState)
- {
- //添加自定义的新菜单
- ToolStripMenuItem ModifyApply = new ToolStripMenuItem();
- ModifyApply.Text = "手术申请信息";
- ModifyApply.Click += ModifyApply_Click;
- menuStrip.Items.Add(ModifyApply);
-
- }
+
private void ModifyApply_Click(object sender, EventArgs e)
{
if (PatientId == 0) return;
@@ -1091,13 +995,10 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
if (PatientId != 0)
{
- templateManage.OpeRecord = BOperationRecord.getRecord(_record, PatientId, RecoverId);
- templateManage2.OpeRecord = templateManage.OpeRecord;
- templateManage.BindOperationRecordValueAll(templateManage.OpeRecord);
- templateManage2.BindOperationRecordValueAll(templateManage2.OpeRecord);
+ templateManage.OpeRecord = BOperationRecord.getRecord(_record, PatientId, RecoverId);
+ templateManage.BindOperationRecordValueAll(templateManage.OpeRecord);
reDrawEvent();
- templateManage.Bind();
- templateManage2.Bind();
+ templateManage.Bind();
if (_record.InstrumentList != null)
{
@@ -1342,15 +1243,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
if (_appliance != null)
FullUcControlsToPanel(panel32, _appliance);
-
- if (_record.InstrumentList.JsonTextData != null && _record.InstrumentList.JsonTextData != "")
- {
- PublicToDoument.DeserializeControl(panel18, _record.InstrumentList.JsonTextData);
- }
- if (_record.InstrumentList.TagPicture != null && _record.InstrumentList.TagPicture != "")
- {
- pictureBox1.Image = PublicToDoument.BytesToImage(Convert.FromBase64String(_record.InstrumentList.TagPicture));
- }
+
}
#endregion
@@ -1403,7 +1296,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
#region 加载物品控件
int i = 0, j = 0;
int Incount = 0;
- int IncRowsount = 20;
+ int IncRowsount = 25;
///
/// 加载物品控件到指定的Panel
///
@@ -1415,7 +1308,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
panel.Controls.Clear();
foreach (DataRow dr in dt.Rows)
{
- if (Incount >= 60)
+ if (Incount >= 51)
break;
ApplianceRecord applic = null;
if (_record.InstrumentList.ApplianceRecordList != null && _record.InstrumentList.ApplianceRecordList.Count > 0)
@@ -1430,7 +1323,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
}
//if (applic == null) continue;
- UCOperationGoodsBill uc = new UCOperationGoodsBill(applic);
+ UCOperationGoodsBill5 uc = new UCOperationGoodsBill5(applic);
uc.SelectTextBoxEvent += Uc_SelectTextBoxEvent;
uc.OperationRecordId = Convert.ToInt32(_record.Id);
uc.GoodsId = Convert.ToInt32(dr["Id"]);
@@ -1457,7 +1350,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
foreach (ApplianceRecord app in _record.InstrumentList.ApplianceRecordList)
{
- if (Incount >= 60)
+ if (Incount >= 51)
break;
ApplianceRecord applic = null;
if (app.ApplianceId == 0)
@@ -1465,7 +1358,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
applic = app;
}
if (applic == null) continue;
- UCOperationGoodsBill uc = new UCOperationGoodsBill(applic);
+ UCOperationGoodsBill5 uc = new UCOperationGoodsBill5(applic);
uc.SelectTextBoxEvent += Uc_SelectTextBoxEvent;
uc.lblGoodsName.ReadOnly = false;
uc.OperationRecordId = Convert.ToInt32(_record.Id);
@@ -1488,7 +1381,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
ApplianceRecord app = new ApplianceRecord();
app.OperationRecordId = _record.Id.Value;
- UCOperationGoodsBill uc = new UCOperationGoodsBill(app);
+ UCOperationGoodsBill5 uc = new UCOperationGoodsBill5(app);
uc.SelectTextBoxEvent += Uc_SelectTextBoxEvent;
uc.lblGoodsName.ReadOnly = false;
uc.GoodsNumber = "";
@@ -1497,7 +1390,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
if (_record.InstrumentList.ApplianceRecordList != null) _record.InstrumentList.ApplianceRecordList.Add(app);
panel32.Controls.Add(uc);
j++;
- if (j == 14)
+ if (j == 25)
{
j = 0;
i++;
@@ -1541,8 +1434,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
try
{
- SaveImage(pictureBox1);
-
+ btnSelectPatient.Focus();
_record.InstrumentList.OperationRecordId = this._record.Id;
if (_applianceUseType != null)
{
@@ -1553,8 +1445,8 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
_record.InstrumentList.ApplianceUseType = string.Join(",", list.ToArray());
}
- _record.InstrumentList.TagPicture = Convert.ToBase64String(PublicToDoument.ImageToBytes(pictureBox1.Image));
- _record.InstrumentList.JsonTextData = PublicToDoument.SerializeControl(panel18, _record, new List ());
+ _record.InstrumentList.TagPicture = "";// Convert.ToBase64String(PublicToDoument.ImageToBytes(pictureBox1.Image));
+ _record.InstrumentList.JsonTextData = "";// PublicToDoument.SerializeControl(panel18, _record, new List ());
_record.InstrumentList.OperatorNo = PublicMethod.OperatorNo;
_record.InstrumentList.OperatorName = PublicMethod.OperatorName;
_record.InstrumentList.OperateDate = DateTime.Now;
@@ -1567,10 +1459,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
BOperationRecordInstrumentList.Update(_record.InstrumentList);
}
_record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
- BApplianceRecord.InsertListData(_record.InstrumentList.ApplianceRecordList);
- string dirpath = @"C:\temp";
- if (!Directory.Exists(dirpath))
- Directory.CreateDirectory(dirpath);
+ BApplianceRecord.InsertListData(_record.InstrumentList.ApplianceRecordList);
if (templateManage != null)
{
@@ -1601,32 +1490,35 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
foreach (Control ctl in panel32.Controls)
{
ApplianceRecord applianceRecord = new ApplianceRecord();
- if (ctl is UCOperationGoodsBill)
+ if (ctl is UCOperationGoodsBill5)
{
- UCOperationGoodsBill ucOperationGoodsBill = ctl as UCOperationGoodsBill;
- if (ucOperationGoodsBill.Id != null)
+ UCOperationGoodsBill5 UCOperationGoodsBill5 = ctl as UCOperationGoodsBill5;
+ if (UCOperationGoodsBill5.Id != null)
{
- applianceRecord.Id = ucOperationGoodsBill.Id;
+ applianceRecord.Id = UCOperationGoodsBill5.Id;
}
applianceRecord.OperationRecordId = this._record.Id;
- applianceRecord.ApplianceId = ucOperationGoodsBill.GoodsId;
- applianceRecord.ApplianceName = ucOperationGoodsBill.GoodsName;
+ applianceRecord.ApplianceId = UCOperationGoodsBill5.GoodsId;
+ applianceRecord.ApplianceName = UCOperationGoodsBill5.GoodsName;
if (_record.InstrumentList != null)
{
applianceRecord.OperationGoodsBillRecord = _record.InstrumentList.Id;
}
- if (ucOperationGoodsBill.txtFront.Text != "")
- applianceRecord.OpeFront = ucOperationGoodsBill.OpeFront;
+ if (UCOperationGoodsBill5.txtFront.Text != "")
+ applianceRecord.OpeFront = UCOperationGoodsBill5.OpeFront;
else applianceRecord.OpeFront = null;
- if (ucOperationGoodsBill.txtDoing.Text != "")
- applianceRecord.OpeDoing = ucOperationGoodsBill.OpeDoing;
+ if (UCOperationGoodsBill5.txtDoing.Text != "")
+ applianceRecord.OpeDoing = UCOperationGoodsBill5.OpeDoing;
else applianceRecord.OpeDoing = null;
- if (ucOperationGoodsBill.txtCloseFront.Text != "")
- applianceRecord.CloseFront = ucOperationGoodsBill.CloseFront;
+ if (UCOperationGoodsBill5.txtCloseFront.Text != "")
+ applianceRecord.CloseFront = UCOperationGoodsBill5.CloseFront;
else applianceRecord.CloseFront = null;
- if (ucOperationGoodsBill.txtCloseLast.Text != "")
- applianceRecord.CloseLast = ucOperationGoodsBill.CloseLast;
+ 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);
}
}
@@ -1719,8 +1611,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
if (templateManage != null)
{
- _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
- _record.InstrumentList.JsonTextData = PublicToDoument.SerializeControl(panel18, _record, new List());
+ _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
}
mPanes = new List();
UpPanes = new List();
@@ -1772,8 +1663,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
private void PrintDocPage(object sender, PrintPageEventArgs e)
{
- PrintDocPane(e, zgcAnaesRecord, templateManage);
- PrintDocPane(e, zgcAnaesRecord2, templateManage2);
+ PrintDocPane(e, zgcAnaesRecord, templateManage);
}
@@ -1824,8 +1714,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
Panel panel = zedGraph.Parent as Panel;
panel.VerticalScroll.Value = 0;
- templateManage.SetPYL(true);
- templateManage2.SetPYL(true);
+ templateManage.SetPYL(true);
foreach (AreaManageBase area in template.ManageList)
{
area.setPrint(true);
@@ -1842,8 +1731,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
if (templateManage != null)
{
- _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
- _record.InstrumentList.JsonTextData = PublicToDoument.SerializeControl(panel18, _record, new List());
+ _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
}
try
{
@@ -1877,93 +1765,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
PublicMethod.WriteLog(exp, "");
}
}
-
- #region 画小人
-
- string str = null;
- private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
- {
- Point p = e.Location;
- AddLabelControlIntoPicBox(pictureBox1, p);
-
- }
- //在picturebox上添加Label
- private void AddLabelControlIntoPicBox(PictureBox p_PicBox, Point point)
- {
- //Image myimage = p_PicBox.Image;
- //Graphics g = Graphics.FromImage(myimage);
- //g.DrawString(str, new Font("微软雅黑", 5), new SolidBrush(Color.Red), point.X, point.Y);
- //p_PicBox.Image = myimage;
- //g.Dispose();
-
- System.Windows.Forms.Label mylable = new System.Windows.Forms.Label();
- //TextBox mytextbox = new TextBox();
- mylable.Location = new Point(point.X - 8, point.Y - 8);
- mylable.Text = str;
- mylable.Size = new Size(11, 11);
- mylable.ForeColor = Color.Red;
- mylable.BorderStyle = BorderStyle.None;
- mylable.Font = new Font("微软雅黑", 7);
- //mytextbox.BackColor = Color.Transparent;
- //mytextbox.Size = new Size(1,1);
- mylable.MouseDoubleClick += Mytextbox_MouseDoubleClick; ;
- p_PicBox.Controls.Add(mylable);
- // p_PicBox.Controls.Remove(mytextbox);
- }
- //双击清除标记
- private void Mytextbox_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- System.Windows.Forms.Label lbl = sender as System.Windows.Forms.Label;
- pictureBox1.Controls.Remove(lbl);
-
- }
- //遍历picturebox上所有lable,将所有lable标记画在图片上
- private void SaveImage(PictureBox p_PicBox)
- {
- foreach (Control clTemp in p_PicBox.Controls)
- {
-
- if (clTemp is System.Windows.Forms.Label)
- {
- System.Windows.Forms.Label lab = (clTemp as System.Windows.Forms.Label);
- if (lab != null && lab.Text.Trim() != "")
- {
- DrawStringInImage(p_PicBox, lab.Location, lab.Text);
- }
- }
-
- }
- }
-
- private void DrawStringInImage(PictureBox p_PicBox, Point point, String str1)
- {
- Image myimage = p_PicBox.Image;
- Graphics g = Graphics.FromImage(myimage);
- g.DrawString(str1, new Font("微软雅黑", 5), new SolidBrush(Color.Red), point.X, point.Y);
- p_PicBox.Image = myimage;
- g.Dispose();
- }
-
- private void radioButton1_CheckedChanged(object sender, EventArgs e)
- {
- RadioButton rad = sender as RadioButton;
- if (rad.Checked)
- {
- str = rad.Text.Substring(0, 1);
- }
- }
-
- private void buttonClear_Click(object sender, EventArgs e)
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGoodsBillRecord));
- pictureBox1.Controls.Clear();
- pictureBox1.Image = null;
- pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
- }
-
- #endregion
- #endregion
-
+ #endregion
}
}
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.resx b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.resx
index b58911b..35348c8 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.resx
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument.resx
@@ -117,160 +117,10 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- 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
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.Designer.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.Designer.cs
new file mode 100644
index 0000000..28098e4
--- /dev/null
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.Designer.cs
@@ -0,0 +1,2874 @@
+namespace AIMS.OperationDoing.AnasRecordBill.UI
+{
+ partial class frmAnasRecordInstrument2
+ {
+ ///
+ /// 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()
+ {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAnasRecordInstrument2));
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.panel14 = new System.Windows.Forms.Panel();
+ this.button1 = new System.Windows.Forms.Button();
+ this.button8 = new System.Windows.Forms.Button();
+ this.button7 = new System.Windows.Forms.Button();
+ this.btnCancelIn = new System.Windows.Forms.Button();
+ this.btnCancelOperation = new System.Windows.Forms.Button();
+ this.btnBloodGasAnalysis = new System.Windows.Forms.Button();
+ this.button6 = new System.Windows.Forms.Button();
+ this.btnOperationInfo = new System.Windows.Forms.Button();
+ this.btnOutputLiquids = new System.Windows.Forms.Button();
+ this.btnAddEvents = new System.Windows.Forms.Button();
+ this.btnDrug = new System.Windows.Forms.Button();
+ this.btnTemplate = new System.Windows.Forms.Button();
+ this.btnSelectPatient = new System.Windows.Forms.Button();
+ this.panel4 = new System.Windows.Forms.Panel();
+ this.btnChage = new System.Windows.Forms.Button();
+ this.lblSpo2 = new System.Windows.Forms.Label();
+ this.lblRESP = new System.Windows.Forms.Label();
+ this.lblDia = new System.Windows.Forms.Label();
+ this.lblPR = new System.Windows.Forms.Label();
+ this.lblHR = new System.Windows.Forms.Label();
+ this.btnsjzx = new System.Windows.Forms.Button();
+ this.btndptz = new System.Windows.Forms.Button();
+ this.btnsbwh = new System.Windows.Forms.Button();
+ this.label9 = new System.Windows.Forms.Label();
+ this.label8 = new System.Windows.Forms.Label();
+ this.label6 = new System.Windows.Forms.Label();
+ this.label10 = new System.Windows.Forms.Label();
+ this.label7 = new System.Windows.Forms.Label();
+ this.label5 = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label4 = new System.Windows.Forms.Label();
+ this.label1 = new System.Windows.Forms.Label();
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.panel5 = new System.Windows.Forms.Panel();
+ this.superTabMain = new DevComponents.DotNetBar.SuperTabControl();
+ this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
+ this.panelExBLSJ = new DevComponents.DotNetBar.PanelEx();
+ this.panel82 = new AIMS.PublicUI.UI.DrawPanel();
+ this.panel18 = new System.Windows.Forms.Panel();
+ this.panel19 = new System.Windows.Forms.Panel();
+ this.label46 = new System.Windows.Forms.Label();
+ this.label47 = new System.Windows.Forms.Label();
+ this.uText21 = new System.Windows.Forms.TextBox();
+ this.uText22 = new System.Windows.Forms.TextBox();
+ this.label48 = new System.Windows.Forms.Label();
+ this.label49 = new System.Windows.Forms.Label();
+ this.uText23 = new System.Windows.Forms.TextBox();
+ this.uText24 = new System.Windows.Forms.TextBox();
+ this.label50 = new System.Windows.Forms.Label();
+ this.uText25 = new System.Windows.Forms.TextBox();
+ this.label51 = new System.Windows.Forms.Label();
+ this.uText26 = new System.Windows.Forms.TextBox();
+ this.panel20 = new System.Windows.Forms.Panel();
+ this.label37 = new System.Windows.Forms.Label();
+ this.label38 = new System.Windows.Forms.Label();
+ this.uText15 = new System.Windows.Forms.TextBox();
+ this.uText16 = new System.Windows.Forms.TextBox();
+ this.label42 = new System.Windows.Forms.Label();
+ this.label43 = new System.Windows.Forms.Label();
+ this.uText17 = new System.Windows.Forms.TextBox();
+ this.uText18 = new System.Windows.Forms.TextBox();
+ this.label44 = new System.Windows.Forms.Label();
+ this.uText19 = new System.Windows.Forms.TextBox();
+ this.label45 = new System.Windows.Forms.Label();
+ this.uText20 = new System.Windows.Forms.TextBox();
+ this.panel22 = new System.Windows.Forms.Panel();
+ this.label29 = new System.Windows.Forms.Label();
+ this.label30 = new System.Windows.Forms.Label();
+ this.uText9 = new System.Windows.Forms.TextBox();
+ this.uText10 = new System.Windows.Forms.TextBox();
+ this.label31 = new System.Windows.Forms.Label();
+ this.label32 = new System.Windows.Forms.Label();
+ this.uText11 = new System.Windows.Forms.TextBox();
+ this.uText12 = new System.Windows.Forms.TextBox();
+ this.label33 = new System.Windows.Forms.Label();
+ this.uText13 = new System.Windows.Forms.TextBox();
+ this.label34 = new System.Windows.Forms.Label();
+ this.uText14 = new System.Windows.Forms.TextBox();
+ this.panel23 = new System.Windows.Forms.Panel();
+ this.label27 = new System.Windows.Forms.Label();
+ this.label24 = new System.Windows.Forms.Label();
+ this.uText8 = new System.Windows.Forms.TextBox();
+ this.uText4 = new System.Windows.Forms.TextBox();
+ this.label25 = new System.Windows.Forms.Label();
+ this.label26 = new System.Windows.Forms.Label();
+ this.uText7 = new System.Windows.Forms.TextBox();
+ this.uText1 = new System.Windows.Forms.TextBox();
+ this.label28 = new System.Windows.Forms.Label();
+ this.uText5 = new System.Windows.Forms.TextBox();
+ this.label35 = new System.Windows.Forms.Label();
+ this.uText6 = new System.Windows.Forms.TextBox();
+ this.panel25 = new System.Windows.Forms.Panel();
+ this.label36 = new System.Windows.Forms.Label();
+ this.panel12 = new System.Windows.Forms.Panel();
+ this.panel17 = new System.Windows.Forms.Panel();
+ this.panel24 = new System.Windows.Forms.Panel();
+ this.button4 = new System.Windows.Forms.Button();
+ this.radioButton4 = new System.Windows.Forms.RadioButton();
+ this.radioButton5 = new System.Windows.Forms.RadioButton();
+ this.radioButton3 = new System.Windows.Forms.RadioButton();
+ this.radioButton2 = new System.Windows.Forms.RadioButton();
+ this.label23 = new System.Windows.Forms.Label();
+ this.radioButton1 = new System.Windows.Forms.RadioButton();
+ this.pictureBox1 = new System.Windows.Forms.PictureBox();
+ this.circularProgress2 = new DevComponents.DotNetBar.Controls.CircularProgress();
+ this.zgcAnaesRecord2 = new DrawGraph.ZedGraphControl();
+ this.spTabBM = new DevComponents.DotNetBar.SuperTabItem();
+ this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
+ this.panelExZKZB = new DevComponents.DotNetBar.PanelEx();
+ this.panel8 = new AIMS.PublicUI.UI.DrawPanel();
+ this.panelQX = new System.Windows.Forms.Panel();
+ this.plBottom = new System.Windows.Forms.Panel();
+ this.panel32 = new System.Windows.Forms.Panel();
+ this.plTital = new System.Windows.Forms.Panel();
+ this.panel9 = new System.Windows.Forms.Panel();
+ this.label16 = new System.Windows.Forms.Label();
+ this.label17 = new System.Windows.Forms.Label();
+ this.label18 = new System.Windows.Forms.Label();
+ this.label20 = new System.Windows.Forms.Label();
+ this.label21 = new System.Windows.Forms.Label();
+ this.panel15 = new System.Windows.Forms.Panel();
+ this.label11 = new System.Windows.Forms.Label();
+ this.label12 = new System.Windows.Forms.Label();
+ this.label13 = new System.Windows.Forms.Label();
+ this.label14 = new System.Windows.Forms.Label();
+ this.label15 = new System.Windows.Forms.Label();
+ this.label53 = new System.Windows.Forms.Label();
+ this.panel16 = new System.Windows.Forms.Panel();
+ this.label65 = new System.Windows.Forms.Label();
+ this.label57 = new System.Windows.Forms.Label();
+ this.label59 = new System.Windows.Forms.Label();
+ this.label66 = new System.Windows.Forms.Label();
+ this.label58 = new System.Windows.Forms.Label();
+ this.plTop = new System.Windows.Forms.Panel();
+ this.circularProgress1 = new DevComponents.DotNetBar.Controls.CircularProgress();
+ this.zgcAnaesRecord = new DrawGraph.ZedGraphControl();
+ this.spTabQXQDD = new DevComponents.DotNetBar.SuperTabItem();
+ this.panel7 = new System.Windows.Forms.Panel();
+ this.panel21 = new System.Windows.Forms.Panel();
+ this.plPrintBrowse = new System.Windows.Forms.Panel();
+ this.PanelSave = new System.Windows.Forms.Panel();
+ this.plPrint = new System.Windows.Forms.Panel();
+ this.plRefresh = new System.Windows.Forms.Panel();
+ this.lblRoom = new System.Windows.Forms.Label();
+ this.label22 = new System.Windows.Forms.Label();
+ this.labOperatorName = new System.Windows.Forms.Label();
+ this.label19 = new System.Windows.Forms.Label();
+ this.plTitleEventTime = new System.Windows.Forms.Panel();
+ this.panel13 = new System.Windows.Forms.Panel();
+ this.txtOutRoom = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
+ this.picOutRoom = new System.Windows.Forms.PictureBox();
+ this.button5 = new System.Windows.Forms.Button();
+ this.panel10 = new System.Windows.Forms.Panel();
+ this.txtOperationBegin = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
+ this.picOpeBegin = new System.Windows.Forms.PictureBox();
+ this.button2 = new System.Windows.Forms.Button();
+ this.panel11 = new System.Windows.Forms.Panel();
+ this.txtOperationEnd = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
+ this.picOpeEnd = new System.Windows.Forms.PictureBox();
+ this.button3 = new System.Windows.Forms.Button();
+ this.panel6 = new System.Windows.Forms.Panel();
+ this.txtInRoom = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
+ this.picInRoom = new System.Windows.Forms.PictureBox();
+ this.txtInRoom1 = new System.Windows.Forms.Button();
+ this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
+ this.panel3.SuspendLayout();
+ this.panel14.SuspendLayout();
+ this.panel4.SuspendLayout();
+ this.panel1.SuspendLayout();
+ this.panel5.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.superTabMain)).BeginInit();
+ this.superTabMain.SuspendLayout();
+ this.superTabControlPanel2.SuspendLayout();
+ this.panelExBLSJ.SuspendLayout();
+ this.panel82.SuspendLayout();
+ this.panel18.SuspendLayout();
+ this.panel19.SuspendLayout();
+ this.panel20.SuspendLayout();
+ this.panel22.SuspendLayout();
+ this.panel23.SuspendLayout();
+ this.panel25.SuspendLayout();
+ this.panel12.SuspendLayout();
+ this.panel17.SuspendLayout();
+ this.panel24.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
+ this.superTabControlPanel1.SuspendLayout();
+ this.panelExZKZB.SuspendLayout();
+ this.panel8.SuspendLayout();
+ this.panelQX.SuspendLayout();
+ this.plBottom.SuspendLayout();
+ this.plTital.SuspendLayout();
+ this.panel9.SuspendLayout();
+ this.panel15.SuspendLayout();
+ this.panel16.SuspendLayout();
+ this.panel7.SuspendLayout();
+ this.panel21.SuspendLayout();
+ this.plTitleEventTime.SuspendLayout();
+ this.panel13.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.txtOutRoom)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picOutRoom)).BeginInit();
+ this.panel10.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.txtOperationBegin)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picOpeBegin)).BeginInit();
+ this.panel11.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.txtOperationEnd)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picOpeEnd)).BeginInit();
+ this.panel6.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.txtInRoom)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picInRoom)).BeginInit();
+ this.SuspendLayout();
+ //
+ // panel2
+ //
+ this.panel2.BackColor = System.Drawing.Color.AliceBlue;
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel2.Location = new System.Drawing.Point(0, 0);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(2082, 10);
+ this.panel2.TabIndex = 1;
+ this.panel2.Visible = false;
+ //
+ // panel3
+ //
+ this.panel3.BackColor = System.Drawing.Color.SlateGray;
+ this.panel3.Controls.Add(this.panel14);
+ this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel3.Font = new System.Drawing.Font("宋体", 12F);
+ this.panel3.Location = new System.Drawing.Point(0, 10);
+ this.panel3.Name = "panel3";
+ this.panel3.Size = new System.Drawing.Size(160, 1032);
+ this.panel3.TabIndex = 2;
+ //
+ // panel14
+ //
+ this.panel14.BackColor = System.Drawing.Color.White;
+ this.panel14.Controls.Add(this.button1);
+ this.panel14.Controls.Add(this.button8);
+ this.panel14.Controls.Add(this.button7);
+ this.panel14.Controls.Add(this.btnCancelIn);
+ this.panel14.Controls.Add(this.btnCancelOperation);
+ this.panel14.Controls.Add(this.btnBloodGasAnalysis);
+ this.panel14.Controls.Add(this.button6);
+ this.panel14.Controls.Add(this.btnOperationInfo);
+ this.panel14.Controls.Add(this.btnOutputLiquids);
+ this.panel14.Controls.Add(this.btnAddEvents);
+ this.panel14.Controls.Add(this.btnDrug);
+ this.panel14.Controls.Add(this.btnTemplate);
+ this.panel14.Controls.Add(this.btnSelectPatient);
+ this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel14.Location = new System.Drawing.Point(0, 0);
+ this.panel14.Name = "panel14";
+ this.panel14.Size = new System.Drawing.Size(160, 1032);
+ this.panel14.TabIndex = 5;
+ //
+ // button1
+ //
+ this.button1.BackColor = System.Drawing.Color.Transparent;
+ this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.button1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button1.FlatAppearance.BorderSize = 0;
+ this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button1.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.button1.ForeColor = System.Drawing.Color.DimGray;
+ this.button1.Image = global::AIMS.Properties.Resources.添加数据;
+ this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.button1.Location = new System.Drawing.Point(0, 600);
+ this.button1.Name = "button1";
+ this.button1.Size = new System.Drawing.Size(160, 50);
+ this.button1.TabIndex = 16;
+ this.button1.Text = " 新增器械";
+ this.button1.UseVisualStyleBackColor = false;
+ this.button1.Click += new System.EventHandler(this.button1_Click);
+ //
+ // button8
+ //
+ this.button8.BackColor = System.Drawing.Color.Transparent;
+ this.button8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.button8.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.button8.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button8.FlatAppearance.BorderSize = 0;
+ this.button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button8.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.button8.ForeColor = System.Drawing.Color.DimGray;
+ this.button8.Image = global::AIMS.Properties.Resources.系统设置;
+ this.button8.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.button8.Location = new System.Drawing.Point(0, 550);
+ this.button8.Name = "button8";
+ this.button8.Size = new System.Drawing.Size(160, 50);
+ this.button8.TabIndex = 15;
+ this.button8.Text = " 系统设置";
+ this.button8.UseVisualStyleBackColor = false;
+ this.button8.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
+ //
+ // button7
+ //
+ this.button7.BackColor = System.Drawing.Color.Transparent;
+ this.button7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.button7.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.button7.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button7.FlatAppearance.BorderSize = 0;
+ this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button7.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.button7.ForeColor = System.Drawing.Color.DimGray;
+ this.button7.Image = global::AIMS.Properties.Resources.文书编辑;
+ this.button7.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.button7.Location = new System.Drawing.Point(0, 500);
+ this.button7.Name = "button7";
+ this.button7.Size = new System.Drawing.Size(160, 50);
+ this.button7.TabIndex = 14;
+ this.button7.Text = " 文书记录";
+ this.button7.UseVisualStyleBackColor = false;
+ this.button7.Click += new System.EventHandler(this.tsbExePlan_Click);
+ //
+ // btnCancelIn
+ //
+ this.btnCancelIn.BackColor = System.Drawing.Color.Transparent;
+ this.btnCancelIn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnCancelIn.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnCancelIn.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnCancelIn.FlatAppearance.BorderSize = 0;
+ this.btnCancelIn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnCancelIn.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnCancelIn.ForeColor = System.Drawing.Color.DimGray;
+ this.btnCancelIn.Image = global::AIMS.Properties.Resources.显示切换;
+ this.btnCancelIn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnCancelIn.Location = new System.Drawing.Point(0, 450);
+ this.btnCancelIn.Name = "btnCancelIn";
+ this.btnCancelIn.Size = new System.Drawing.Size(160, 50);
+ this.btnCancelIn.TabIndex = 12;
+ this.btnCancelIn.Text = " 取消转入";
+ this.btnCancelIn.UseVisualStyleBackColor = false;
+ this.btnCancelIn.Visible = false;
+ this.btnCancelIn.Click += new System.EventHandler(this.btnCancelIn_Click);
+ //
+ // btnCancelOperation
+ //
+ this.btnCancelOperation.BackColor = System.Drawing.Color.Transparent;
+ this.btnCancelOperation.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnCancelOperation.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnCancelOperation.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnCancelOperation.FlatAppearance.BorderSize = 0;
+ this.btnCancelOperation.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnCancelOperation.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnCancelOperation.ForeColor = System.Drawing.Color.DimGray;
+ this.btnCancelOperation.Image = global::AIMS.Properties.Resources.取消手术;
+ this.btnCancelOperation.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnCancelOperation.Location = new System.Drawing.Point(0, 400);
+ this.btnCancelOperation.Name = "btnCancelOperation";
+ this.btnCancelOperation.Size = new System.Drawing.Size(160, 50);
+ this.btnCancelOperation.TabIndex = 11;
+ this.btnCancelOperation.Text = " 停止手术";
+ this.btnCancelOperation.UseVisualStyleBackColor = false;
+ this.btnCancelOperation.Visible = false;
+ this.btnCancelOperation.Click += new System.EventHandler(this.btnCancelOperation_Click);
+ //
+ // btnBloodGasAnalysis
+ //
+ this.btnBloodGasAnalysis.BackColor = System.Drawing.Color.Transparent;
+ this.btnBloodGasAnalysis.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnBloodGasAnalysis.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnBloodGasAnalysis.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnBloodGasAnalysis.FlatAppearance.BorderSize = 0;
+ this.btnBloodGasAnalysis.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnBloodGasAnalysis.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnBloodGasAnalysis.ForeColor = System.Drawing.Color.DimGray;
+ this.btnBloodGasAnalysis.Image = global::AIMS.Properties.Resources.血气分析;
+ this.btnBloodGasAnalysis.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnBloodGasAnalysis.Location = new System.Drawing.Point(0, 350);
+ this.btnBloodGasAnalysis.Name = "btnBloodGasAnalysis";
+ this.btnBloodGasAnalysis.Size = new System.Drawing.Size(160, 50);
+ this.btnBloodGasAnalysis.TabIndex = 8;
+ this.btnBloodGasAnalysis.Text = " 血气分析";
+ this.btnBloodGasAnalysis.UseVisualStyleBackColor = false;
+ this.btnBloodGasAnalysis.Visible = false;
+ this.btnBloodGasAnalysis.Click += new System.EventHandler(this.btnBloodGasAnalysis_Click);
+ //
+ // button6
+ //
+ this.button6.BackColor = System.Drawing.Color.Transparent;
+ this.button6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.button6.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.button6.Dock = System.Windows.Forms.DockStyle.Top;
+ this.button6.FlatAppearance.BorderSize = 0;
+ this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button6.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.button6.ForeColor = System.Drawing.Color.DimGray;
+ this.button6.Image = global::AIMS.Properties.Resources.不良事件;
+ this.button6.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.button6.Location = new System.Drawing.Point(0, 300);
+ this.button6.Name = "button6";
+ this.button6.Size = new System.Drawing.Size(160, 50);
+ this.button6.TabIndex = 9;
+ this.button6.Text = " 质控指标";
+ this.button6.UseVisualStyleBackColor = false;
+ this.button6.Visible = false;
+ this.button6.Click += new System.EventHandler(this.button6_Click);
+ //
+ // btnOperationInfo
+ //
+ this.btnOperationInfo.BackColor = System.Drawing.Color.Transparent;
+ this.btnOperationInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnOperationInfo.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnOperationInfo.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnOperationInfo.FlatAppearance.BorderSize = 0;
+ this.btnOperationInfo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnOperationInfo.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnOperationInfo.ForeColor = System.Drawing.Color.DimGray;
+ this.btnOperationInfo.Image = global::AIMS.Properties.Resources.文书单;
+ this.btnOperationInfo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnOperationInfo.Location = new System.Drawing.Point(0, 250);
+ this.btnOperationInfo.Name = "btnOperationInfo";
+ this.btnOperationInfo.Size = new System.Drawing.Size(160, 50);
+ this.btnOperationInfo.TabIndex = 4;
+ this.btnOperationInfo.Text = " 手术信息";
+ this.btnOperationInfo.UseVisualStyleBackColor = false;
+ this.btnOperationInfo.Click += new System.EventHandler(this.btnOperationInfo_Click);
+ //
+ // btnOutputLiquids
+ //
+ this.btnOutputLiquids.BackColor = System.Drawing.Color.Transparent;
+ this.btnOutputLiquids.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnOutputLiquids.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnOutputLiquids.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnOutputLiquids.FlatAppearance.BorderSize = 0;
+ this.btnOutputLiquids.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnOutputLiquids.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnOutputLiquids.ForeColor = System.Drawing.Color.DimGray;
+ this.btnOutputLiquids.Image = global::AIMS.Properties.Resources.快捷事件;
+ this.btnOutputLiquids.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnOutputLiquids.Location = new System.Drawing.Point(0, 200);
+ this.btnOutputLiquids.Name = "btnOutputLiquids";
+ this.btnOutputLiquids.Size = new System.Drawing.Size(160, 50);
+ this.btnOutputLiquids.TabIndex = 7;
+ this.btnOutputLiquids.Text = " 出量记录";
+ this.btnOutputLiquids.UseVisualStyleBackColor = false;
+ this.btnOutputLiquids.Click += new System.EventHandler(this.btnOutputLiquids_Click);
+ //
+ // btnAddEvents
+ //
+ this.btnAddEvents.BackColor = System.Drawing.Color.Transparent;
+ this.btnAddEvents.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnAddEvents.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnAddEvents.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnAddEvents.FlatAppearance.BorderSize = 0;
+ this.btnAddEvents.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnAddEvents.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnAddEvents.ForeColor = System.Drawing.Color.DimGray;
+ this.btnAddEvents.Image = global::AIMS.Properties.Resources.事件记录;
+ this.btnAddEvents.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnAddEvents.Location = new System.Drawing.Point(0, 150);
+ this.btnAddEvents.Name = "btnAddEvents";
+ this.btnAddEvents.Size = new System.Drawing.Size(160, 50);
+ this.btnAddEvents.TabIndex = 6;
+ this.btnAddEvents.Text = " 事件记录";
+ this.btnAddEvents.UseVisualStyleBackColor = false;
+ this.btnAddEvents.Click += new System.EventHandler(this.btnAddEvents_Click);
+ //
+ // btnDrug
+ //
+ this.btnDrug.BackColor = System.Drawing.Color.Transparent;
+ this.btnDrug.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnDrug.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnDrug.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnDrug.FlatAppearance.BorderSize = 0;
+ this.btnDrug.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnDrug.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnDrug.ForeColor = System.Drawing.Color.DimGray;
+ this.btnDrug.Image = global::AIMS.Properties.Resources.用药记录;
+ this.btnDrug.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnDrug.Location = new System.Drawing.Point(0, 100);
+ this.btnDrug.Name = "btnDrug";
+ this.btnDrug.Size = new System.Drawing.Size(160, 50);
+ this.btnDrug.TabIndex = 5;
+ this.btnDrug.Text = " 用药记录";
+ this.btnDrug.UseVisualStyleBackColor = false;
+ this.btnDrug.Click += new System.EventHandler(this.btnDrug_Click);
+ //
+ // btnTemplate
+ //
+ this.btnTemplate.BackColor = System.Drawing.Color.Transparent;
+ this.btnTemplate.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnTemplate.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnTemplate.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnTemplate.FlatAppearance.BorderSize = 0;
+ this.btnTemplate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnTemplate.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnTemplate.ForeColor = System.Drawing.Color.DimGray;
+ this.btnTemplate.Image = global::AIMS.Properties.Resources.模板应用;
+ this.btnTemplate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnTemplate.Location = new System.Drawing.Point(0, 50);
+ this.btnTemplate.Name = "btnTemplate";
+ this.btnTemplate.Size = new System.Drawing.Size(160, 50);
+ this.btnTemplate.TabIndex = 10;
+ this.btnTemplate.Text = " 选器械包";
+ this.btnTemplate.UseVisualStyleBackColor = false;
+ this.btnTemplate.Click += new System.EventHandler(this.btnTemplate_Click);
+ //
+ // btnSelectPatient
+ //
+ this.btnSelectPatient.BackColor = System.Drawing.Color.Transparent;
+ this.btnSelectPatient.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
+ this.btnSelectPatient.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnSelectPatient.Dock = System.Windows.Forms.DockStyle.Top;
+ this.btnSelectPatient.FlatAppearance.BorderSize = 0;
+ this.btnSelectPatient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnSelectPatient.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnSelectPatient.ForeColor = System.Drawing.Color.DimGray;
+ this.btnSelectPatient.Image = global::AIMS.Properties.Resources.患者列表;
+ this.btnSelectPatient.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnSelectPatient.Location = new System.Drawing.Point(0, 0);
+ this.btnSelectPatient.Name = "btnSelectPatient";
+ this.btnSelectPatient.Size = new System.Drawing.Size(160, 50);
+ this.btnSelectPatient.TabIndex = 3;
+ this.btnSelectPatient.Text = " 患者列表";
+ this.btnSelectPatient.UseVisualStyleBackColor = false;
+ this.btnSelectPatient.Click += new System.EventHandler(this.btnSelectPatient_Click);
+ //
+ // panel4
+ //
+ this.panel4.BackColor = System.Drawing.Color.White;
+ this.panel4.Controls.Add(this.btnChage);
+ this.panel4.Controls.Add(this.lblSpo2);
+ this.panel4.Controls.Add(this.lblRESP);
+ this.panel4.Controls.Add(this.lblDia);
+ this.panel4.Controls.Add(this.lblPR);
+ this.panel4.Controls.Add(this.lblHR);
+ this.panel4.Controls.Add(this.btnsjzx);
+ this.panel4.Controls.Add(this.btndptz);
+ this.panel4.Controls.Add(this.btnsbwh);
+ this.panel4.Controls.Add(this.label9);
+ this.panel4.Controls.Add(this.label8);
+ this.panel4.Controls.Add(this.label6);
+ this.panel4.Controls.Add(this.label10);
+ this.panel4.Controls.Add(this.label7);
+ this.panel4.Controls.Add(this.label5);
+ this.panel4.Controls.Add(this.label3);
+ this.panel4.Controls.Add(this.label2);
+ this.panel4.Controls.Add(this.label4);
+ this.panel4.Controls.Add(this.label1);
+ this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
+ this.panel4.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.panel4.Location = new System.Drawing.Point(1922, 10);
+ this.panel4.Name = "panel4";
+ this.panel4.Size = new System.Drawing.Size(160, 1032);
+ this.panel4.TabIndex = 3;
+ //
+ // btnChage
+ //
+ this.btnChage.BackColor = System.Drawing.Color.Transparent;
+ this.btnChage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnChage.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnChage.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.btnChage.FlatAppearance.BorderSize = 0;
+ this.btnChage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnChage.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnChage.ForeColor = System.Drawing.Color.DimGray;
+ this.btnChage.Image = global::AIMS.Properties.Resources.麻醉医嘱;
+ this.btnChage.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnChage.Location = new System.Drawing.Point(0, 832);
+ this.btnChage.Name = "btnChage";
+ this.btnChage.Size = new System.Drawing.Size(160, 50);
+ this.btnChage.TabIndex = 24;
+ this.btnChage.Text = " 收费记录";
+ this.btnChage.UseVisualStyleBackColor = false;
+ this.btnChage.Visible = false;
+ this.btnChage.Click += new System.EventHandler(this.btnChage_Click);
+ //
+ // lblSpo2
+ //
+ this.lblSpo2.AutoSize = true;
+ this.lblSpo2.Font = new System.Drawing.Font("微软雅黑", 23F);
+ this.lblSpo2.ForeColor = System.Drawing.Color.Teal;
+ this.lblSpo2.Location = new System.Drawing.Point(63, 399);
+ this.lblSpo2.Name = "lblSpo2";
+ this.lblSpo2.Size = new System.Drawing.Size(43, 40);
+ this.lblSpo2.TabIndex = 9;
+ this.lblSpo2.Text = "--";
+ //
+ // lblRESP
+ //
+ this.lblRESP.AutoSize = true;
+ this.lblRESP.Font = new System.Drawing.Font("微软雅黑", 23F);
+ this.lblRESP.ForeColor = System.Drawing.Color.Teal;
+ this.lblRESP.Location = new System.Drawing.Point(63, 308);
+ this.lblRESP.Name = "lblRESP";
+ this.lblRESP.Size = new System.Drawing.Size(43, 40);
+ this.lblRESP.TabIndex = 7;
+ this.lblRESP.Text = "--";
+ //
+ // lblDia
+ //
+ this.lblDia.AutoSize = true;
+ this.lblDia.Font = new System.Drawing.Font("微软雅黑", 23F);
+ this.lblDia.ForeColor = System.Drawing.Color.Teal;
+ this.lblDia.Location = new System.Drawing.Point(43, 217);
+ this.lblDia.Name = "lblDia";
+ this.lblDia.Size = new System.Drawing.Size(82, 40);
+ this.lblDia.TabIndex = 5;
+ this.lblDia.Text = "--/--";
+ //
+ // lblPR
+ //
+ this.lblPR.AutoSize = true;
+ this.lblPR.Font = new System.Drawing.Font("微软雅黑", 23F);
+ this.lblPR.ForeColor = System.Drawing.Color.Teal;
+ this.lblPR.Location = new System.Drawing.Point(63, 126);
+ this.lblPR.Name = "lblPR";
+ this.lblPR.Size = new System.Drawing.Size(43, 40);
+ this.lblPR.TabIndex = 3;
+ this.lblPR.Text = "--";
+ //
+ // lblHR
+ //
+ this.lblHR.AutoSize = true;
+ this.lblHR.Font = new System.Drawing.Font("微软雅黑", 23F);
+ this.lblHR.ForeColor = System.Drawing.Color.Teal;
+ this.lblHR.Location = new System.Drawing.Point(63, 35);
+ this.lblHR.Name = "lblHR";
+ this.lblHR.Size = new System.Drawing.Size(43, 40);
+ this.lblHR.TabIndex = 1;
+ this.lblHR.Text = "--";
+ //
+ // btnsjzx
+ //
+ this.btnsjzx.BackColor = System.Drawing.Color.Transparent;
+ this.btnsjzx.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnsjzx.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnsjzx.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.btnsjzx.FlatAppearance.BorderSize = 0;
+ this.btnsjzx.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnsjzx.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnsjzx.ForeColor = System.Drawing.Color.DimGray;
+ this.btnsjzx.Image = global::AIMS.Properties.Resources.工作列表;
+ this.btnsjzx.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnsjzx.Location = new System.Drawing.Point(0, 882);
+ this.btnsjzx.Name = "btnsjzx";
+ this.btnsjzx.Size = new System.Drawing.Size(160, 50);
+ this.btnsjzx.TabIndex = 22;
+ this.btnsjzx.Text = " 数据中心";
+ this.btnsjzx.UseVisualStyleBackColor = false;
+ this.btnsjzx.Click += new System.EventHandler(this.btnsjzx_Click);
+ //
+ // btndptz
+ //
+ this.btndptz.BackColor = System.Drawing.Color.Transparent;
+ this.btndptz.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btndptz.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btndptz.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.btndptz.FlatAppearance.BorderSize = 0;
+ this.btndptz.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btndptz.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btndptz.ForeColor = System.Drawing.Color.DimGray;
+ this.btndptz.Image = global::AIMS.Properties.Resources.文书状态;
+ this.btndptz.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btndptz.Location = new System.Drawing.Point(0, 932);
+ this.btndptz.Name = "btndptz";
+ this.btndptz.Size = new System.Drawing.Size(160, 50);
+ this.btndptz.TabIndex = 19;
+ this.btndptz.Text = " 大屏通知";
+ this.btndptz.UseVisualStyleBackColor = false;
+ this.btndptz.Click += new System.EventHandler(this.btndptz_Click);
+ //
+ // btnsbwh
+ //
+ this.btnsbwh.BackColor = System.Drawing.Color.Transparent;
+ this.btnsbwh.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnsbwh.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnsbwh.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.btnsbwh.FlatAppearance.BorderSize = 0;
+ this.btnsbwh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnsbwh.Font = new System.Drawing.Font("微软雅黑", 11F);
+ this.btnsbwh.ForeColor = System.Drawing.Color.DimGray;
+ this.btnsbwh.Image = global::AIMS.Properties.Resources.耗材管理;
+ this.btnsbwh.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ this.btnsbwh.Location = new System.Drawing.Point(0, 982);
+ this.btnsbwh.Name = "btnsbwh";
+ this.btnsbwh.Size = new System.Drawing.Size(160, 50);
+ this.btnsbwh.TabIndex = 16;
+ this.btnsbwh.Text = " 设备维护";
+ this.btnsbwh.UseVisualStyleBackColor = false;
+ this.btnsbwh.Click += new System.EventHandler(this.btnsbwh_Click);
+ //
+ // label9
+ //
+ this.label9.AutoSize = true;
+ this.label9.BackColor = System.Drawing.Color.White;
+ this.label9.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label9.ForeColor = System.Drawing.Color.DimGray;
+ this.label9.Location = new System.Drawing.Point(37, 376);
+ this.label9.Name = "label9";
+ this.label9.Size = new System.Drawing.Size(95, 24);
+ this.label9.TabIndex = 10;
+ this.label9.Text = "SPO2( % )";
+ //
+ // label8
+ //
+ this.label8.AutoSize = true;
+ this.label8.BackColor = System.Drawing.Color.White;
+ this.label8.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label8.ForeColor = System.Drawing.Color.DimGray;
+ this.label8.Location = new System.Drawing.Point(29, 285);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(110, 24);
+ this.label8.TabIndex = 8;
+ this.label8.Text = "呼吸( 次/分 )";
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.BackColor = System.Drawing.Color.White;
+ this.label6.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label6.ForeColor = System.Drawing.Color.DimGray;
+ this.label6.Location = new System.Drawing.Point(21, 194);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(127, 24);
+ this.label6.TabIndex = 4;
+ this.label6.Text = "血压( mmHg )";
+ //
+ // label10
+ //
+ this.label10.AutoSize = true;
+ this.label10.BackColor = System.Drawing.Color.White;
+ this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label10.ForeColor = System.Drawing.Color.DimGray;
+ this.label10.Location = new System.Drawing.Point(49, 441);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(70, 17);
+ this.label10.TabIndex = 2;
+ this.label10.Text = "90%-100%";
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.BackColor = System.Drawing.Color.White;
+ this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label7.ForeColor = System.Drawing.Color.DimGray;
+ this.label7.Location = new System.Drawing.Point(47, 350);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(74, 17);
+ this.label7.TabIndex = 2;
+ this.label7.Text = "16-20 次/分";
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.BackColor = System.Drawing.Color.White;
+ this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label5.ForeColor = System.Drawing.Color.DimGray;
+ this.label5.Location = new System.Drawing.Point(39, 259);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(91, 17);
+ this.label5.TabIndex = 2;
+ this.label5.Text = "60-140 mmHg";
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.BackColor = System.Drawing.Color.White;
+ this.label3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label3.ForeColor = System.Drawing.Color.DimGray;
+ this.label3.Location = new System.Drawing.Point(44, 168);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(81, 17);
+ this.label3.TabIndex = 2;
+ this.label3.Text = "60-100 次/分";
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.BackColor = System.Drawing.Color.White;
+ this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label2.ForeColor = System.Drawing.Color.DimGray;
+ this.label2.Location = new System.Drawing.Point(44, 77);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(81, 17);
+ this.label2.TabIndex = 2;
+ this.label2.Text = "60-100 次/分";
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.BackColor = System.Drawing.Color.White;
+ this.label4.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label4.ForeColor = System.Drawing.Color.DimGray;
+ this.label4.Location = new System.Drawing.Point(29, 103);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(110, 24);
+ this.label4.TabIndex = 2;
+ this.label4.Text = "脉搏( 次/分 )";
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.BackColor = System.Drawing.Color.White;
+ this.label1.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label1.ForeColor = System.Drawing.Color.DimGray;
+ this.label1.Location = new System.Drawing.Point(29, 12);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(110, 24);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "心率( 次/分 )";
+ //
+ // panel1
+ //
+ this.panel1.Controls.Add(this.panel5);
+ this.panel1.Controls.Add(this.panel4);
+ this.panel1.Controls.Add(this.panel3);
+ 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.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(2082, 1042);
+ this.panel1.TabIndex = 0;
+ //
+ // panel5
+ //
+ this.panel5.BackColor = System.Drawing.SystemColors.Control;
+ this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel5.Controls.Add(this.superTabMain);
+ this.panel5.Controls.Add(this.panel7);
+ this.panel5.Controls.Add(this.plTitleEventTime);
+ this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel5.Location = new System.Drawing.Point(160, 10);
+ this.panel5.Name = "panel5";
+ this.panel5.Size = new System.Drawing.Size(1762, 1032);
+ this.panel5.TabIndex = 4;
+ //
+ // superTabMain
+ //
+ //
+ //
+ //
+ //
+ //
+ //
+ this.superTabMain.ControlBox.CloseBox.Name = "";
+ //
+ //
+ //
+ this.superTabMain.ControlBox.MenuBox.Name = "";
+ this.superTabMain.ControlBox.Name = "";
+ this.superTabMain.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.superTabMain.ControlBox.MenuBox,
+ this.superTabMain.ControlBox.CloseBox});
+ this.superTabMain.Controls.Add(this.superTabControlPanel2);
+ this.superTabMain.Controls.Add(this.superTabControlPanel1);
+ this.superTabMain.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.superTabMain.Location = new System.Drawing.Point(0, 58);
+ this.superTabMain.Name = "superTabMain";
+ this.superTabMain.ReorderTabsEnabled = true;
+ this.superTabMain.SelectedTabFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
+ this.superTabMain.SelectedTabIndex = 0;
+ this.superTabMain.Size = new System.Drawing.Size(1760, 932);
+ this.superTabMain.TabFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.superTabMain.TabIndex = 14;
+ this.superTabMain.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.spTabQXQDD,
+ this.spTabBM});
+ this.superTabMain.SelectedTabChanged += new System.EventHandler(this.superTabMain_SelectedTabChanged);
+ //
+ // superTabControlPanel2
+ //
+ this.superTabControlPanel2.Controls.Add(this.panelExBLSJ);
+ this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.superTabControlPanel2.Location = new System.Drawing.Point(0, 28);
+ this.superTabControlPanel2.Name = "superTabControlPanel2";
+ this.superTabControlPanel2.Size = new System.Drawing.Size(1760, 904);
+ this.superTabControlPanel2.TabIndex = 0;
+ this.superTabControlPanel2.TabItem = this.spTabBM;
+ //
+ // panelExBLSJ
+ //
+ this.panelExBLSJ.CanvasColor = System.Drawing.SystemColors.Control;
+ this.panelExBLSJ.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.panelExBLSJ.Controls.Add(this.panel82);
+ this.panelExBLSJ.DisabledBackColor = System.Drawing.Color.Empty;
+ this.panelExBLSJ.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panelExBLSJ.Location = new System.Drawing.Point(0, 0);
+ this.panelExBLSJ.Name = "panelExBLSJ";
+ this.panelExBLSJ.Size = new System.Drawing.Size(1760, 904);
+ this.panelExBLSJ.Style.Alignment = System.Drawing.StringAlignment.Center;
+ this.panelExBLSJ.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
+ this.panelExBLSJ.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
+ this.panelExBLSJ.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
+ this.panelExBLSJ.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
+ this.panelExBLSJ.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
+ this.panelExBLSJ.Style.GradientAngle = 90;
+ this.panelExBLSJ.TabIndex = 0;
+ //
+ // panel82
+ //
+ this.panel82.AutoScroll = true;
+ this.panel82.BackColor = System.Drawing.Color.White;
+ this.panel82.Controls.Add(this.panel18);
+ this.panel82.Controls.Add(this.panel12);
+ this.panel82.Controls.Add(this.circularProgress2);
+ this.panel82.Controls.Add(this.zgcAnaesRecord2);
+ this.panel82.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel82.Location = new System.Drawing.Point(0, 0);
+ this.panel82.Name = "panel82";
+ this.panel82.Size = new System.Drawing.Size(1760, 904);
+ this.panel82.TabIndex = 3;
+ this.panel82.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel82_Scroll);
+ //
+ // panel18
+ //
+ this.panel18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel18.Controls.Add(this.panel19);
+ this.panel18.Controls.Add(this.panel20);
+ this.panel18.Controls.Add(this.panel22);
+ this.panel18.Controls.Add(this.panel23);
+ this.panel18.Controls.Add(this.panel25);
+ this.panel18.Location = new System.Drawing.Point(285, 552);
+ this.panel18.Name = "panel18";
+ this.panel18.Size = new System.Drawing.Size(1055, 242);
+ this.panel18.TabIndex = 1469;
+ //
+ // panel19
+ //
+ this.panel19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel19.Controls.Add(this.label46);
+ this.panel19.Controls.Add(this.label47);
+ this.panel19.Controls.Add(this.uText21);
+ this.panel19.Controls.Add(this.uText22);
+ this.panel19.Controls.Add(this.label48);
+ this.panel19.Controls.Add(this.label49);
+ this.panel19.Controls.Add(this.uText23);
+ this.panel19.Controls.Add(this.uText24);
+ this.panel19.Controls.Add(this.label50);
+ this.panel19.Controls.Add(this.uText25);
+ this.panel19.Controls.Add(this.label51);
+ this.panel19.Controls.Add(this.uText26);
+ this.panel19.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel19.Location = new System.Drawing.Point(54, 183);
+ this.panel19.Name = "panel19";
+ this.panel19.Size = new System.Drawing.Size(999, 59);
+ this.panel19.TabIndex = 1356;
+ //
+ // label46
+ //
+ this.label46.AutoSize = true;
+ this.label46.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label46.Location = new System.Drawing.Point(668, 30);
+ this.label46.Name = "label46";
+ this.label46.Size = new System.Drawing.Size(65, 20);
+ this.label46.TabIndex = 1449;
+ this.label46.Text = "失效日期";
+ //
+ // label47
+ //
+ this.label47.AutoSize = true;
+ this.label47.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label47.Location = new System.Drawing.Point(668, 1);
+ this.label47.Name = "label47";
+ this.label47.Size = new System.Drawing.Size(79, 20);
+ this.label47.TabIndex = 1449;
+ this.label47.Text = "灭菌器编号";
+ //
+ // uText21
+ //
+ this.uText21.BackColor = System.Drawing.Color.White;
+ this.uText21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText21.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText21.Location = new System.Drawing.Point(769, 33);
+ this.uText21.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText21.Name = "uText21";
+ this.uText21.Size = new System.Drawing.Size(217, 23);
+ this.uText21.TabIndex = 1435;
+ this.uText21.Tag = "TempDataManage_TextPackObj_616";
+ //
+ // uText22
+ //
+ this.uText22.BackColor = System.Drawing.Color.White;
+ this.uText22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText22.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText22.Location = new System.Drawing.Point(769, 4);
+ this.uText22.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText22.Name = "uText22";
+ this.uText22.Size = new System.Drawing.Size(217, 23);
+ this.uText22.TabIndex = 1435;
+ this.uText22.Tag = "TempDataManage_TextPackObj_615";
+ //
+ // label48
+ //
+ this.label48.AutoSize = true;
+ this.label48.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label48.Location = new System.Drawing.Point(367, 30);
+ this.label48.Name = "label48";
+ this.label48.Size = new System.Drawing.Size(65, 20);
+ this.label48.TabIndex = 1449;
+ this.label48.Text = "灭菌日期";
+ //
+ // label49
+ //
+ this.label49.AutoSize = true;
+ this.label49.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label49.Location = new System.Drawing.Point(367, 1);
+ this.label49.Name = "label49";
+ this.label49.Size = new System.Drawing.Size(51, 20);
+ this.label49.TabIndex = 1449;
+ this.label49.Text = "包装者";
+ //
+ // uText23
+ //
+ this.uText23.BackColor = System.Drawing.Color.White;
+ this.uText23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText23.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText23.Location = new System.Drawing.Point(451, 33);
+ this.uText23.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText23.Name = "uText23";
+ this.uText23.Size = new System.Drawing.Size(200, 23);
+ this.uText23.TabIndex = 1435;
+ this.uText23.Tag = "TempDataManage_TextPackObj_614";
+ //
+ // uText24
+ //
+ this.uText24.BackColor = System.Drawing.Color.White;
+ this.uText24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText24.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText24.Location = new System.Drawing.Point(451, 4);
+ this.uText24.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText24.Name = "uText24";
+ this.uText24.Size = new System.Drawing.Size(200, 23);
+ this.uText24.TabIndex = 1435;
+ this.uText24.Tag = "TempDataManage_TextPackObj_613";
+ //
+ // label50
+ //
+ this.label50.AutoSize = true;
+ this.label50.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label50.Location = new System.Drawing.Point(22, 30);
+ this.label50.Name = "label50";
+ this.label50.Size = new System.Drawing.Size(65, 20);
+ this.label50.TabIndex = 1449;
+ this.label50.Text = "灭菌批次";
+ //
+ // uText25
+ //
+ this.uText25.BackColor = System.Drawing.Color.White;
+ this.uText25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText25.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText25.Location = new System.Drawing.Point(106, 33);
+ this.uText25.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText25.Name = "uText25";
+ this.uText25.Size = new System.Drawing.Size(255, 23);
+ this.uText25.TabIndex = 1435;
+ this.uText25.Tag = "TempDataManage_TextPackObj_612";
+ //
+ // label51
+ //
+ this.label51.AutoSize = true;
+ this.label51.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label51.Location = new System.Drawing.Point(22, 1);
+ this.label51.Name = "label51";
+ this.label51.Size = new System.Drawing.Size(65, 20);
+ this.label51.TabIndex = 1449;
+ this.label51.Text = "物品名称";
+ //
+ // uText26
+ //
+ this.uText26.BackColor = System.Drawing.Color.White;
+ this.uText26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText26.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText26.Location = new System.Drawing.Point(106, 4);
+ this.uText26.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText26.Name = "uText26";
+ this.uText26.Size = new System.Drawing.Size(255, 23);
+ this.uText26.TabIndex = 1435;
+ this.uText26.Tag = "TempDataManage_TextPackObj_611";
+ //
+ // panel20
+ //
+ this.panel20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel20.Controls.Add(this.label37);
+ this.panel20.Controls.Add(this.label38);
+ this.panel20.Controls.Add(this.uText15);
+ this.panel20.Controls.Add(this.uText16);
+ this.panel20.Controls.Add(this.label42);
+ this.panel20.Controls.Add(this.label43);
+ this.panel20.Controls.Add(this.uText17);
+ this.panel20.Controls.Add(this.uText18);
+ this.panel20.Controls.Add(this.label44);
+ this.panel20.Controls.Add(this.uText19);
+ this.panel20.Controls.Add(this.label45);
+ this.panel20.Controls.Add(this.uText20);
+ this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel20.Location = new System.Drawing.Point(54, 120);
+ this.panel20.Name = "panel20";
+ this.panel20.Size = new System.Drawing.Size(999, 63);
+ this.panel20.TabIndex = 1355;
+ //
+ // label37
+ //
+ this.label37.AutoSize = true;
+ this.label37.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label37.Location = new System.Drawing.Point(668, 31);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(65, 20);
+ this.label37.TabIndex = 1449;
+ this.label37.Text = "失效日期";
+ //
+ // label38
+ //
+ this.label38.AutoSize = true;
+ this.label38.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label38.Location = new System.Drawing.Point(668, 2);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(79, 20);
+ this.label38.TabIndex = 1449;
+ this.label38.Text = "灭菌器编号";
+ //
+ // uText15
+ //
+ this.uText15.BackColor = System.Drawing.Color.White;
+ this.uText15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText15.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText15.Location = new System.Drawing.Point(769, 34);
+ this.uText15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText15.Name = "uText15";
+ this.uText15.Size = new System.Drawing.Size(217, 23);
+ this.uText15.TabIndex = 1435;
+ this.uText15.Tag = "TempDataManage_TextPackObj_610";
+ //
+ // uText16
+ //
+ this.uText16.BackColor = System.Drawing.Color.White;
+ this.uText16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText16.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText16.Location = new System.Drawing.Point(769, 5);
+ this.uText16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText16.Name = "uText16";
+ this.uText16.Size = new System.Drawing.Size(217, 23);
+ this.uText16.TabIndex = 1435;
+ this.uText16.Tag = "TempDataManage_TextPackObj_609";
+ //
+ // label42
+ //
+ this.label42.AutoSize = true;
+ this.label42.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label42.Location = new System.Drawing.Point(367, 31);
+ this.label42.Name = "label42";
+ this.label42.Size = new System.Drawing.Size(65, 20);
+ this.label42.TabIndex = 1449;
+ this.label42.Text = "灭菌日期";
+ //
+ // label43
+ //
+ this.label43.AutoSize = true;
+ this.label43.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label43.Location = new System.Drawing.Point(367, 2);
+ this.label43.Name = "label43";
+ this.label43.Size = new System.Drawing.Size(51, 20);
+ this.label43.TabIndex = 1449;
+ this.label43.Text = "包装者";
+ //
+ // uText17
+ //
+ this.uText17.BackColor = System.Drawing.Color.White;
+ this.uText17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText17.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText17.Location = new System.Drawing.Point(451, 34);
+ this.uText17.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText17.Name = "uText17";
+ this.uText17.Size = new System.Drawing.Size(200, 23);
+ this.uText17.TabIndex = 1435;
+ this.uText17.Tag = "TempDataManage_TextPackObj_608";
+ //
+ // uText18
+ //
+ this.uText18.BackColor = System.Drawing.Color.White;
+ this.uText18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText18.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText18.Location = new System.Drawing.Point(451, 5);
+ this.uText18.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText18.Name = "uText18";
+ this.uText18.Size = new System.Drawing.Size(200, 23);
+ this.uText18.TabIndex = 1435;
+ this.uText18.Tag = "TempDataManage_TextPackObj_607";
+ //
+ // label44
+ //
+ this.label44.AutoSize = true;
+ this.label44.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label44.Location = new System.Drawing.Point(22, 31);
+ this.label44.Name = "label44";
+ this.label44.Size = new System.Drawing.Size(65, 20);
+ this.label44.TabIndex = 1449;
+ this.label44.Text = "灭菌批次";
+ //
+ // uText19
+ //
+ this.uText19.BackColor = System.Drawing.Color.White;
+ this.uText19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText19.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText19.Location = new System.Drawing.Point(106, 34);
+ this.uText19.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText19.Name = "uText19";
+ this.uText19.Size = new System.Drawing.Size(255, 23);
+ this.uText19.TabIndex = 1435;
+ this.uText19.Tag = "TempDataManage_TextPackObj_606";
+ //
+ // label45
+ //
+ this.label45.AutoSize = true;
+ this.label45.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label45.Location = new System.Drawing.Point(22, 2);
+ this.label45.Name = "label45";
+ this.label45.Size = new System.Drawing.Size(65, 20);
+ this.label45.TabIndex = 1449;
+ this.label45.Text = "物品名称";
+ //
+ // uText20
+ //
+ this.uText20.BackColor = System.Drawing.Color.White;
+ this.uText20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText20.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText20.Location = new System.Drawing.Point(106, 5);
+ this.uText20.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText20.Name = "uText20";
+ this.uText20.Size = new System.Drawing.Size(255, 23);
+ this.uText20.TabIndex = 1435;
+ this.uText20.Tag = "TempDataManage_TextPackObj_605";
+ //
+ // panel22
+ //
+ this.panel22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel22.Controls.Add(this.label29);
+ this.panel22.Controls.Add(this.label30);
+ this.panel22.Controls.Add(this.uText9);
+ this.panel22.Controls.Add(this.uText10);
+ this.panel22.Controls.Add(this.label31);
+ this.panel22.Controls.Add(this.label32);
+ this.panel22.Controls.Add(this.uText11);
+ this.panel22.Controls.Add(this.uText12);
+ this.panel22.Controls.Add(this.label33);
+ this.panel22.Controls.Add(this.uText13);
+ this.panel22.Controls.Add(this.label34);
+ this.panel22.Controls.Add(this.uText14);
+ this.panel22.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel22.Location = new System.Drawing.Point(54, 63);
+ this.panel22.Name = "panel22";
+ this.panel22.Size = new System.Drawing.Size(999, 57);
+ this.panel22.TabIndex = 1354;
+ //
+ // label29
+ //
+ this.label29.AutoSize = true;
+ this.label29.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label29.Location = new System.Drawing.Point(668, 25);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(65, 20);
+ this.label29.TabIndex = 1449;
+ this.label29.Text = "失效日期";
+ //
+ // label30
+ //
+ this.label30.AutoSize = true;
+ this.label30.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label30.Location = new System.Drawing.Point(668, 0);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(79, 20);
+ this.label30.TabIndex = 1449;
+ this.label30.Text = "灭菌器编号";
+ //
+ // uText9
+ //
+ this.uText9.BackColor = System.Drawing.Color.White;
+ this.uText9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText9.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText9.Location = new System.Drawing.Point(769, 28);
+ this.uText9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText9.Name = "uText9";
+ this.uText9.Size = new System.Drawing.Size(217, 23);
+ this.uText9.TabIndex = 1435;
+ this.uText9.Tag = "TempDataManage_TextPackObj_603";
+ //
+ // uText10
+ //
+ this.uText10.BackColor = System.Drawing.Color.White;
+ this.uText10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText10.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText10.Location = new System.Drawing.Point(769, 3);
+ this.uText10.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText10.Name = "uText10";
+ this.uText10.Size = new System.Drawing.Size(217, 23);
+ this.uText10.TabIndex = 1435;
+ this.uText10.Tag = "TempDataManage_TextPackObj_602";
+ //
+ // label31
+ //
+ this.label31.AutoSize = true;
+ this.label31.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label31.Location = new System.Drawing.Point(367, 25);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(65, 20);
+ this.label31.TabIndex = 1449;
+ this.label31.Text = "灭菌日期";
+ //
+ // label32
+ //
+ this.label32.AutoSize = true;
+ this.label32.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label32.Location = new System.Drawing.Point(367, 0);
+ this.label32.Name = "label32";
+ this.label32.Size = new System.Drawing.Size(51, 20);
+ this.label32.TabIndex = 1449;
+ this.label32.Text = "包装者";
+ //
+ // uText11
+ //
+ this.uText11.BackColor = System.Drawing.Color.White;
+ this.uText11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText11.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText11.Location = new System.Drawing.Point(451, 28);
+ this.uText11.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText11.Name = "uText11";
+ this.uText11.Size = new System.Drawing.Size(200, 23);
+ this.uText11.TabIndex = 1435;
+ this.uText11.Tag = "TempDataManage_TextPackObj_601";
+ //
+ // uText12
+ //
+ this.uText12.BackColor = System.Drawing.Color.White;
+ this.uText12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText12.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText12.Location = new System.Drawing.Point(451, 3);
+ this.uText12.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText12.Name = "uText12";
+ this.uText12.Size = new System.Drawing.Size(200, 23);
+ this.uText12.TabIndex = 1435;
+ this.uText12.Tag = "TempDataManage_TextPackObj_600";
+ //
+ // label33
+ //
+ this.label33.AutoSize = true;
+ this.label33.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label33.Location = new System.Drawing.Point(22, 25);
+ this.label33.Name = "label33";
+ this.label33.Size = new System.Drawing.Size(65, 20);
+ this.label33.TabIndex = 1449;
+ this.label33.Text = "灭菌批次";
+ //
+ // uText13
+ //
+ this.uText13.BackColor = System.Drawing.Color.White;
+ this.uText13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText13.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText13.Location = new System.Drawing.Point(106, 28);
+ this.uText13.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText13.Name = "uText13";
+ this.uText13.Size = new System.Drawing.Size(255, 23);
+ this.uText13.TabIndex = 1435;
+ this.uText13.Tag = "TempDataManage_TextPackObj_599";
+ //
+ // label34
+ //
+ this.label34.AutoSize = true;
+ this.label34.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label34.Location = new System.Drawing.Point(22, 0);
+ this.label34.Name = "label34";
+ this.label34.Size = new System.Drawing.Size(65, 20);
+ this.label34.TabIndex = 1449;
+ this.label34.Text = "物品名称";
+ //
+ // uText14
+ //
+ this.uText14.BackColor = System.Drawing.Color.White;
+ this.uText14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText14.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText14.Location = new System.Drawing.Point(106, 3);
+ this.uText14.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText14.Name = "uText14";
+ this.uText14.Size = new System.Drawing.Size(255, 23);
+ this.uText14.TabIndex = 1435;
+ this.uText14.Tag = "TempDataManage_TextPackObj_604";
+ //
+ // panel23
+ //
+ this.panel23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel23.Controls.Add(this.label27);
+ this.panel23.Controls.Add(this.label24);
+ this.panel23.Controls.Add(this.uText8);
+ this.panel23.Controls.Add(this.uText4);
+ this.panel23.Controls.Add(this.label25);
+ this.panel23.Controls.Add(this.label26);
+ this.panel23.Controls.Add(this.uText7);
+ this.panel23.Controls.Add(this.uText1);
+ this.panel23.Controls.Add(this.label28);
+ this.panel23.Controls.Add(this.uText5);
+ this.panel23.Controls.Add(this.label35);
+ this.panel23.Controls.Add(this.uText6);
+ this.panel23.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel23.Location = new System.Drawing.Point(54, 0);
+ this.panel23.Name = "panel23";
+ this.panel23.Size = new System.Drawing.Size(999, 63);
+ this.panel23.TabIndex = 1353;
+ //
+ // label27
+ //
+ this.label27.AutoSize = true;
+ this.label27.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label27.Location = new System.Drawing.Point(668, 31);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(65, 20);
+ this.label27.TabIndex = 1449;
+ this.label27.Text = "失效日期";
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label24.Location = new System.Drawing.Point(668, 2);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(79, 20);
+ this.label24.TabIndex = 1449;
+ this.label24.Text = "灭菌器编号";
+ //
+ // uText8
+ //
+ this.uText8.BackColor = System.Drawing.Color.White;
+ this.uText8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText8.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText8.Location = new System.Drawing.Point(769, 34);
+ this.uText8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText8.Name = "uText8";
+ this.uText8.Size = new System.Drawing.Size(217, 23);
+ this.uText8.TabIndex = 1435;
+ this.uText8.Tag = "TempDataManage_TextPackObj_598";
+ //
+ // uText4
+ //
+ this.uText4.BackColor = System.Drawing.Color.White;
+ this.uText4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText4.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText4.Location = new System.Drawing.Point(769, 5);
+ this.uText4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText4.Name = "uText4";
+ this.uText4.Size = new System.Drawing.Size(217, 23);
+ this.uText4.TabIndex = 1435;
+ this.uText4.Tag = "TempDataManage_TextPackObj_597";
+ //
+ // label25
+ //
+ this.label25.AutoSize = true;
+ this.label25.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label25.Location = new System.Drawing.Point(367, 31);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(65, 20);
+ this.label25.TabIndex = 1449;
+ this.label25.Text = "灭菌日期";
+ //
+ // label26
+ //
+ this.label26.AutoSize = true;
+ this.label26.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label26.Location = new System.Drawing.Point(367, 2);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(51, 20);
+ this.label26.TabIndex = 1449;
+ this.label26.Text = "包装者";
+ //
+ // uText7
+ //
+ this.uText7.BackColor = System.Drawing.Color.White;
+ this.uText7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText7.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText7.Location = new System.Drawing.Point(451, 34);
+ this.uText7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText7.Name = "uText7";
+ this.uText7.Size = new System.Drawing.Size(200, 23);
+ this.uText7.TabIndex = 1435;
+ this.uText7.Tag = "TempDataManage_TextPackObj_596";
+ //
+ // uText1
+ //
+ this.uText1.BackColor = System.Drawing.Color.White;
+ this.uText1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText1.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText1.Location = new System.Drawing.Point(451, 5);
+ this.uText1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText1.Name = "uText1";
+ this.uText1.Size = new System.Drawing.Size(200, 23);
+ this.uText1.TabIndex = 1435;
+ this.uText1.Tag = "TempDataManage_TextPackObj_595";
+ //
+ // label28
+ //
+ this.label28.AutoSize = true;
+ this.label28.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label28.Location = new System.Drawing.Point(22, 31);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(65, 20);
+ this.label28.TabIndex = 1449;
+ this.label28.Text = "灭菌批次";
+ //
+ // uText5
+ //
+ this.uText5.BackColor = System.Drawing.Color.White;
+ this.uText5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText5.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText5.Location = new System.Drawing.Point(106, 34);
+ this.uText5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText5.Name = "uText5";
+ this.uText5.Size = new System.Drawing.Size(255, 23);
+ this.uText5.TabIndex = 1435;
+ this.uText5.Tag = "TempDataManage_TextPackObj_594";
+ //
+ // label35
+ //
+ this.label35.AutoSize = true;
+ this.label35.Font = new System.Drawing.Font("微软雅黑", 10F);
+ this.label35.Location = new System.Drawing.Point(22, 2);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(65, 20);
+ this.label35.TabIndex = 0;
+ this.label35.Text = "物品名称";
+ //
+ // uText6
+ //
+ this.uText6.BackColor = System.Drawing.Color.White;
+ this.uText6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.uText6.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.uText6.Location = new System.Drawing.Point(106, 5);
+ this.uText6.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.uText6.Name = "uText6";
+ this.uText6.Size = new System.Drawing.Size(255, 23);
+ this.uText6.TabIndex = 1;
+ this.uText6.Tag = "TempDataManage_TextPackObj_593";
+ //
+ // panel25
+ //
+ this.panel25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel25.Controls.Add(this.label36);
+ this.panel25.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel25.Location = new System.Drawing.Point(0, 0);
+ this.panel25.Name = "panel25";
+ this.panel25.Size = new System.Drawing.Size(54, 240);
+ this.panel25.TabIndex = 1352;
+ //
+ // label36
+ //
+ this.label36.AutoSize = true;
+ this.label36.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.label36.Location = new System.Drawing.Point(4, 44);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(37, 140);
+ this.label36.TabIndex = 1351;
+ this.label36.Text = "灭菌\r\n物品\r\n包外\r\n标识\r\n记录\r\n 或\r\n粘贴";
+ //
+ // panel12
+ //
+ this.panel12.BackColor = System.Drawing.Color.White;
+ this.panel12.Controls.Add(this.panel17);
+ this.panel12.Location = new System.Drawing.Point(699, 355);
+ this.panel12.Margin = new System.Windows.Forms.Padding(0);
+ this.panel12.Name = "panel12";
+ this.panel12.Size = new System.Drawing.Size(345, 194);
+ this.panel12.TabIndex = 12;
+ //
+ // panel17
+ //
+ this.panel17.Controls.Add(this.panel24);
+ this.panel17.Controls.Add(this.pictureBox1);
+ this.panel17.Location = new System.Drawing.Point(11, 13);
+ this.panel17.Name = "panel17";
+ this.panel17.Size = new System.Drawing.Size(321, 169);
+ this.panel17.TabIndex = 1464;
+ //
+ // panel24
+ //
+ this.panel24.Controls.Add(this.button4);
+ this.panel24.Controls.Add(this.radioButton4);
+ this.panel24.Controls.Add(this.radioButton5);
+ this.panel24.Controls.Add(this.radioButton3);
+ this.panel24.Controls.Add(this.radioButton2);
+ this.panel24.Controls.Add(this.label23);
+ this.panel24.Controls.Add(this.radioButton1);
+ this.panel24.Location = new System.Drawing.Point(3, 3);
+ this.panel24.Name = "panel24";
+ this.panel24.Size = new System.Drawing.Size(144, 158);
+ this.panel24.TabIndex = 1;
+ //
+ // button4
+ //
+ this.button4.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.button4.Location = new System.Drawing.Point(4, 120);
+ this.button4.Name = "button4";
+ this.button4.Size = new System.Drawing.Size(122, 30);
+ this.button4.TabIndex = 1436;
+ this.button4.Text = "清除所有标记";
+ this.button4.UseVisualStyleBackColor = true;
+ this.button4.Click += new System.EventHandler(this.buttonClear_Click);
+ //
+ // radioButton4
+ //
+ this.radioButton4.AutoSize = true;
+ this.radioButton4.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.radioButton4.Location = new System.Drawing.Point(4, 59);
+ this.radioButton4.Name = "radioButton4";
+ this.radioButton4.Size = new System.Drawing.Size(82, 20);
+ this.radioButton4.TabIndex = 1435;
+ this.radioButton4.TabStop = true;
+ this.radioButton4.Text = "V 静脉穿刺";
+ this.radioButton4.UseVisualStyleBackColor = true;
+ this.radioButton4.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
+ //
+ // radioButton5
+ //
+ this.radioButton5.AutoSize = true;
+ this.radioButton5.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.radioButton5.Location = new System.Drawing.Point(4, 102);
+ this.radioButton5.Name = "radioButton5";
+ this.radioButton5.Size = new System.Drawing.Size(72, 20);
+ this.radioButton5.TabIndex = 1435;
+ this.radioButton5.TabStop = true;
+ this.radioButton5.Text = "⊙ 引流管";
+ this.radioButton5.UseVisualStyleBackColor = true;
+ this.radioButton5.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
+ //
+ // radioButton3
+ //
+ this.radioButton3.AutoSize = true;
+ this.radioButton3.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.radioButton3.Location = new System.Drawing.Point(4, 81);
+ this.radioButton3.Name = "radioButton3";
+ this.radioButton3.Size = new System.Drawing.Size(83, 20);
+ this.radioButton3.TabIndex = 1435;
+ this.radioButton3.TabStop = true;
+ this.radioButton3.Text = "A 动脉穿刺";
+ this.radioButton3.UseVisualStyleBackColor = true;
+ this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
+ //
+ // radioButton2
+ //
+ this.radioButton2.AutoSize = true;
+ this.radioButton2.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.radioButton2.Location = new System.Drawing.Point(4, 21);
+ this.radioButton2.Name = "radioButton2";
+ this.radioButton2.Size = new System.Drawing.Size(106, 20);
+ this.radioButton2.TabIndex = 1435;
+ this.radioButton2.TabStop = true;
+ this.radioButton2.Text = "▬ 贴负极板部位";
+ this.radioButton2.UseVisualStyleBackColor = true;
+ this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label23.Location = new System.Drawing.Point(4, 41);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(62, 16);
+ this.label23.TabIndex = 1438;
+ this.label23.Text = "穿刺部位:";
+ //
+ // radioButton1
+ //
+ this.radioButton1.AutoSize = true;
+ this.radioButton1.Font = new System.Drawing.Font("微软雅黑", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.radioButton1.Location = new System.Drawing.Point(4, 0);
+ this.radioButton1.Name = "radioButton1";
+ this.radioButton1.Size = new System.Drawing.Size(83, 20);
+ this.radioButton1.TabIndex = 1435;
+ this.radioButton1.TabStop = true;
+ this.radioButton1.Text = "卅 切口部位";
+ this.radioButton1.UseVisualStyleBackColor = true;
+ this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
+ //
+ // pictureBox1
+ //
+ this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
+ this.pictureBox1.Location = new System.Drawing.Point(150, 3);
+ this.pictureBox1.Name = "pictureBox1";
+ this.pictureBox1.Size = new System.Drawing.Size(162, 149);
+ this.pictureBox1.TabIndex = 0;
+ this.pictureBox1.TabStop = false;
+ this.pictureBox1.Tag = "C79";
+ this.pictureBox1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseClick);
+ //
+ // circularProgress2
+ //
+ this.circularProgress2.AnimationSpeed = 50;
+ //
+ //
+ //
+ this.circularProgress2.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
+ this.circularProgress2.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
+ this.circularProgress2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.circularProgress2.FocusCuesEnabled = false;
+ this.circularProgress2.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.circularProgress2.Location = new System.Drawing.Point(678, 354);
+ this.circularProgress2.Margin = new System.Windows.Forms.Padding(4);
+ this.circularProgress2.Name = "circularProgress2";
+ this.circularProgress2.ProgressColor = System.Drawing.Color.DodgerBlue;
+ this.circularProgress2.Size = new System.Drawing.Size(389, 239);
+ this.circularProgress2.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
+ this.circularProgress2.TabIndex = 6;
+ this.circularProgress2.Value = 100;
+ //
+ // zgcAnaesRecord2
+ //
+ this.zgcAnaesRecord2.Location = new System.Drawing.Point(416, 41);
+ this.zgcAnaesRecord2.Name = "zgcAnaesRecord2";
+ this.zgcAnaesRecord2.ScrollGrace = 0D;
+ this.zgcAnaesRecord2.ScrollMaxX = 0D;
+ this.zgcAnaesRecord2.ScrollMaxY = 0D;
+ this.zgcAnaesRecord2.ScrollMaxY2 = 0D;
+ this.zgcAnaesRecord2.ScrollMinX = 0D;
+ this.zgcAnaesRecord2.ScrollMinY = 0D;
+ this.zgcAnaesRecord2.ScrollMinY2 = 0D;
+ this.zgcAnaesRecord2.Size = new System.Drawing.Size(800, 1000);
+ this.zgcAnaesRecord2.TabIndex = 0;
+ this.zgcAnaesRecord2.Visible = false;
+ this.zgcAnaesRecord2.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord2_ContextMenuBuilder);
+ this.zgcAnaesRecord2.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseDownEvent);
+ this.zgcAnaesRecord2.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseUpEvent);
+ this.zgcAnaesRecord2.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord2_MouseMoveEvent);
+ this.zgcAnaesRecord2.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord2_KeyUp);
+ this.zgcAnaesRecord2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord2_MouseDoubleClick);
+ //
+ // spTabBM
+ //
+ this.spTabBM.AttachedControl = this.superTabControlPanel2;
+ this.spTabBM.GlobalItem = false;
+ this.spTabBM.Name = "spTabBM";
+ this.spTabBM.Text = "器械清点单背面";
+ //
+ // superTabControlPanel1
+ //
+ this.superTabControlPanel1.Controls.Add(this.panelExZKZB);
+ this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.superTabControlPanel1.Location = new System.Drawing.Point(0, 28);
+ this.superTabControlPanel1.Name = "superTabControlPanel1";
+ this.superTabControlPanel1.Size = new System.Drawing.Size(1760, 904);
+ this.superTabControlPanel1.TabIndex = 1;
+ this.superTabControlPanel1.TabItem = this.spTabQXQDD;
+ //
+ // panelExZKZB
+ //
+ this.panelExZKZB.CanvasColor = System.Drawing.SystemColors.Control;
+ this.panelExZKZB.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.panelExZKZB.Controls.Add(this.panel8);
+ this.panelExZKZB.DisabledBackColor = System.Drawing.Color.Empty;
+ this.panelExZKZB.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panelExZKZB.Location = new System.Drawing.Point(0, 0);
+ this.panelExZKZB.Name = "panelExZKZB";
+ this.panelExZKZB.Size = new System.Drawing.Size(1760, 904);
+ this.panelExZKZB.Style.Alignment = System.Drawing.StringAlignment.Center;
+ this.panelExZKZB.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
+ this.panelExZKZB.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
+ this.panelExZKZB.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
+ this.panelExZKZB.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
+ this.panelExZKZB.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
+ 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.panelQX);
+ this.panel8.Controls.Add(this.circularProgress1);
+ this.panel8.Controls.Add(this.zgcAnaesRecord);
+ 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(1760, 904);
+ this.panel8.TabIndex = 2;
+ this.panel8.Scroll += new System.Windows.Forms.ScrollEventHandler(this.panel8_Scroll);
+ //
+ // panelQX
+ //
+ this.panelQX.BackColor = System.Drawing.Color.White;
+ this.panelQX.Controls.Add(this.plBottom);
+ this.panelQX.Controls.Add(this.plTop);
+ this.panelQX.Location = new System.Drawing.Point(122, 588);
+ this.panelQX.Margin = new System.Windows.Forms.Padding(0);
+ this.panelQX.Name = "panelQX";
+ this.panelQX.Size = new System.Drawing.Size(1606, 562);
+ this.panelQX.TabIndex = 12;
+ this.panelQX.Visible = false;
+ //
+ // plBottom
+ //
+ this.plBottom.BackColor = System.Drawing.Color.White;
+ this.plBottom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.plBottom.Controls.Add(this.panel32);
+ this.plBottom.Controls.Add(this.plTital);
+ this.plBottom.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.plBottom.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.plBottom.Location = new System.Drawing.Point(0, 2);
+ this.plBottom.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.plBottom.Name = "plBottom";
+ this.plBottom.Size = new System.Drawing.Size(1606, 560);
+ this.plBottom.TabIndex = 1355;
+ //
+ // panel32
+ //
+ this.panel32.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel32.Location = new System.Drawing.Point(0, 70);
+ this.panel32.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.panel32.Name = "panel32";
+ this.panel32.Size = new System.Drawing.Size(1604, 488);
+ this.panel32.TabIndex = 1350;
+ //
+ // plTital
+ //
+ this.plTital.BackColor = System.Drawing.SystemColors.Control;
+ this.plTital.Controls.Add(this.panel9);
+ this.plTital.Controls.Add(this.panel15);
+ this.plTital.Controls.Add(this.label53);
+ this.plTital.Controls.Add(this.panel16);
+ this.plTital.Dock = System.Windows.Forms.DockStyle.Top;
+ this.plTital.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.plTital.Location = new System.Drawing.Point(0, 0);
+ this.plTital.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.plTital.Name = "plTital";
+ this.plTital.Size = new System.Drawing.Size(1604, 70);
+ this.plTital.TabIndex = 1349;
+ //
+ // panel9
+ //
+ this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel9.Controls.Add(this.label16);
+ this.panel9.Controls.Add(this.label17);
+ this.panel9.Controls.Add(this.label18);
+ this.panel9.Controls.Add(this.label20);
+ this.panel9.Controls.Add(this.label21);
+ this.panel9.Location = new System.Drawing.Point(1050, 30);
+ this.panel9.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.panel9.Name = "panel9";
+ this.panel9.Size = new System.Drawing.Size(524, 40);
+ this.panel9.TabIndex = 13;
+ //
+ // label16
+ //
+ this.label16.AutoSize = true;
+ this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label16.Location = new System.Drawing.Point(73, 9);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(32, 17);
+ this.label16.TabIndex = 9;
+ this.label16.Text = "名称";
+ //
+ // label17
+ //
+ this.label17.AutoSize = true;
+ this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label17.Location = new System.Drawing.Point(174, 0);
+ this.label17.Margin = new System.Windows.Forms.Padding(0);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(32, 34);
+ this.label17.TabIndex = 10;
+ this.label17.Text = "术前\r\n清点";
+ this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label18
+ //
+ this.label18.AutoSize = true;
+ this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label18.Location = new System.Drawing.Point(273, 0);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(32, 34);
+ this.label18.TabIndex = 12;
+ this.label18.Text = "术中\r\n加数";
+ //
+ // label20
+ //
+ this.label20.AutoSize = true;
+ this.label20.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label20.Location = new System.Drawing.Point(360, 0);
+ this.label20.Margin = new System.Windows.Forms.Padding(0);
+ this.label20.Name = "label20";
+ this.label20.Size = new System.Drawing.Size(32, 34);
+ this.label20.TabIndex = 8;
+ this.label20.Text = "关体\r\n腔前";
+ //
+ // label21
+ //
+ this.label21.AutoSize = true;
+ this.label21.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label21.Location = new System.Drawing.Point(444, 0);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(32, 34);
+ this.label21.TabIndex = 11;
+ this.label21.Text = "关体\r\n腔后";
+ //
+ // panel15
+ //
+ this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel15.Controls.Add(this.label11);
+ this.panel15.Controls.Add(this.label12);
+ this.panel15.Controls.Add(this.label13);
+ this.panel15.Controls.Add(this.label14);
+ this.panel15.Controls.Add(this.label15);
+ this.panel15.Location = new System.Drawing.Point(525, 30);
+ this.panel15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.panel15.Name = "panel15";
+ this.panel15.Size = new System.Drawing.Size(524, 40);
+ this.panel15.TabIndex = 13;
+ //
+ // label11
+ //
+ this.label11.AutoSize = true;
+ this.label11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label11.Location = new System.Drawing.Point(73, 9);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(32, 17);
+ this.label11.TabIndex = 9;
+ this.label11.Text = "名称";
+ //
+ // label12
+ //
+ this.label12.AutoSize = true;
+ this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label12.Location = new System.Drawing.Point(174, 0);
+ this.label12.Margin = new System.Windows.Forms.Padding(0);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(32, 34);
+ this.label12.TabIndex = 10;
+ this.label12.Text = "术前\r\n清点";
+ this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label13
+ //
+ this.label13.AutoSize = true;
+ this.label13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label13.Location = new System.Drawing.Point(273, 0);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(32, 34);
+ this.label13.TabIndex = 12;
+ this.label13.Text = "术中\r\n加数";
+ //
+ // label14
+ //
+ this.label14.AutoSize = true;
+ this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label14.Location = new System.Drawing.Point(360, 0);
+ this.label14.Margin = new System.Windows.Forms.Padding(0);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(32, 34);
+ this.label14.TabIndex = 8;
+ this.label14.Text = "关体\r\n腔前";
+ //
+ // label15
+ //
+ this.label15.AutoSize = true;
+ this.label15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label15.Location = new System.Drawing.Point(444, 0);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(32, 34);
+ this.label15.TabIndex = 11;
+ this.label15.Text = "关体\r\n腔后";
+ //
+ // label53
+ //
+ this.label53.AutoSize = true;
+ this.label53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
+ this.label53.Location = new System.Drawing.Point(763, 1);
+ this.label53.Name = "label53";
+ this.label53.Size = new System.Drawing.Size(119, 22);
+ this.label53.TabIndex = 12;
+ this.label53.Text = "器 械 清 点";
+ //
+ // panel16
+ //
+ this.panel16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel16.Controls.Add(this.label65);
+ this.panel16.Controls.Add(this.label57);
+ this.panel16.Controls.Add(this.label59);
+ this.panel16.Controls.Add(this.label66);
+ this.panel16.Controls.Add(this.label58);
+ this.panel16.Location = new System.Drawing.Point(0, 30);
+ this.panel16.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.panel16.Name = "panel16";
+ this.panel16.Size = new System.Drawing.Size(524, 40);
+ this.panel16.TabIndex = 11;
+ //
+ // label65
+ //
+ this.label65.AutoSize = true;
+ this.label65.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label65.Location = new System.Drawing.Point(74, 9);
+ this.label65.Name = "label65";
+ this.label65.Size = new System.Drawing.Size(32, 17);
+ this.label65.TabIndex = 9;
+ this.label65.Text = "名称";
+ //
+ // label57
+ //
+ this.label57.AutoSize = true;
+ this.label57.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label57.Location = new System.Drawing.Point(175, 0);
+ this.label57.Margin = new System.Windows.Forms.Padding(0);
+ this.label57.Name = "label57";
+ this.label57.Size = new System.Drawing.Size(32, 34);
+ this.label57.TabIndex = 10;
+ this.label57.Text = "术前\r\n清点";
+ this.label57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // label59
+ //
+ this.label59.AutoSize = true;
+ this.label59.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label59.Location = new System.Drawing.Point(355, 0);
+ this.label59.Margin = new System.Windows.Forms.Padding(0);
+ this.label59.Name = "label59";
+ this.label59.Size = new System.Drawing.Size(32, 34);
+ this.label59.TabIndex = 8;
+ this.label59.Text = "关体\r\n腔前";
+ //
+ // label66
+ //
+ this.label66.AutoSize = true;
+ this.label66.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label66.Location = new System.Drawing.Point(452, 0);
+ this.label66.Name = "label66";
+ this.label66.Size = new System.Drawing.Size(32, 34);
+ this.label66.TabIndex = 11;
+ this.label66.Text = "关体\r\n腔后";
+ //
+ // label58
+ //
+ this.label58.AutoSize = true;
+ this.label58.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label58.Location = new System.Drawing.Point(268, 0);
+ this.label58.Name = "label58";
+ this.label58.Size = new System.Drawing.Size(32, 34);
+ this.label58.TabIndex = 12;
+ this.label58.Text = "术中\r\n加数";
+ //
+ // plTop
+ //
+ this.plTop.BackColor = System.Drawing.Color.White;
+ this.plTop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.plTop.Dock = System.Windows.Forms.DockStyle.Top;
+ this.plTop.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.plTop.Location = new System.Drawing.Point(0, 0);
+ this.plTop.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
+ this.plTop.Name = "plTop";
+ this.plTop.Size = new System.Drawing.Size(1606, 2);
+ this.plTop.TabIndex = 22;
+ //
+ // circularProgress1
+ //
+ this.circularProgress1.AnimationSpeed = 50;
+ //
+ //
+ //
+ this.circularProgress1.BackgroundStyle.BackgroundImageAlpha = ((byte)(0));
+ this.circularProgress1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Zoom;
+ this.circularProgress1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.circularProgress1.FocusCuesEnabled = false;
+ this.circularProgress1.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.circularProgress1.Location = new System.Drawing.Point(602, 274);
+ this.circularProgress1.Margin = new System.Windows.Forms.Padding(4);
+ this.circularProgress1.Name = "circularProgress1";
+ this.circularProgress1.ProgressColor = System.Drawing.Color.DodgerBlue;
+ this.circularProgress1.Size = new System.Drawing.Size(389, 239);
+ this.circularProgress1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
+ this.circularProgress1.TabIndex = 6;
+ this.circularProgress1.Value = 100;
+ //
+ // zgcAnaesRecord
+ //
+ this.zgcAnaesRecord.Location = new System.Drawing.Point(416, 41);
+ this.zgcAnaesRecord.Name = "zgcAnaesRecord";
+ this.zgcAnaesRecord.ScrollGrace = 0D;
+ this.zgcAnaesRecord.ScrollMaxX = 0D;
+ this.zgcAnaesRecord.ScrollMaxY = 0D;
+ this.zgcAnaesRecord.ScrollMaxY2 = 0D;
+ this.zgcAnaesRecord.ScrollMinX = 0D;
+ this.zgcAnaesRecord.ScrollMinY = 0D;
+ this.zgcAnaesRecord.ScrollMinY2 = 0D;
+ this.zgcAnaesRecord.Size = new System.Drawing.Size(800, 1000);
+ this.zgcAnaesRecord.TabIndex = 0;
+ this.zgcAnaesRecord.Visible = false;
+ this.zgcAnaesRecord.ContextMenuBuilder += new DrawGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zgcAnaesRecord_ContextMenuBuilder);
+ this.zgcAnaesRecord.MouseDownEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseDownEvent);
+ this.zgcAnaesRecord.MouseUpEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseUpEvent);
+ this.zgcAnaesRecord.MouseMoveEvent += new DrawGraph.ZedGraphControl.ZedMouseEventHandler(this.zgcAnaesRecord_MouseMoveEvent);
+ this.zgcAnaesRecord.KeyUp += new System.Windows.Forms.KeyEventHandler(this.zgcAnaesRecord_KeyUp);
+ this.zgcAnaesRecord.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.zgcAnaesRecord_MouseDoubleClick);
+ //
+ // spTabQXQDD
+ //
+ this.spTabQXQDD.AttachedControl = this.superTabControlPanel1;
+ this.spTabQXQDD.GlobalItem = false;
+ this.spTabQXQDD.Name = "spTabQXQDD";
+ this.spTabQXQDD.Text = "器械清点单";
+ //
+ // panel7
+ //
+ this.panel7.BackColor = System.Drawing.SystemColors.Control;
+ this.panel7.Controls.Add(this.panel21);
+ this.panel7.Controls.Add(this.lblRoom);
+ this.panel7.Controls.Add(this.label22);
+ this.panel7.Controls.Add(this.labOperatorName);
+ this.panel7.Controls.Add(this.label19);
+ this.panel7.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.panel7.Location = new System.Drawing.Point(0, 990);
+ this.panel7.Name = "panel7";
+ this.panel7.Size = new System.Drawing.Size(1760, 40);
+ this.panel7.TabIndex = 1;
+ //
+ // panel21
+ //
+ this.panel21.Controls.Add(this.plPrintBrowse);
+ this.panel21.Controls.Add(this.PanelSave);
+ this.panel21.Controls.Add(this.plPrint);
+ this.panel21.Controls.Add(this.plRefresh);
+ this.panel21.Dock = System.Windows.Forms.DockStyle.Right;
+ this.panel21.Location = new System.Drawing.Point(1419, 0);
+ this.panel21.Name = "panel21";
+ this.panel21.Size = new System.Drawing.Size(341, 40);
+ this.panel21.TabIndex = 10;
+ //
+ // plPrintBrowse
+ //
+ this.plPrintBrowse.BackgroundImage = global::AIMS.Properties.Resources.图标_预览;
+ this.plPrintBrowse.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.plPrintBrowse.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.plPrintBrowse.Location = new System.Drawing.Point(205, 4);
+ this.plPrintBrowse.Name = "plPrintBrowse";
+ this.plPrintBrowse.Size = new System.Drawing.Size(28, 28);
+ this.plPrintBrowse.TabIndex = 4;
+ this.plPrintBrowse.Click += new System.EventHandler(this.plPrintBrowse_Click);
+ //
+ // PanelSave
+ //
+ this.PanelSave.BackgroundImage = global::AIMS.Properties.Resources.图标_保存;
+ this.PanelSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.PanelSave.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.PanelSave.Location = new System.Drawing.Point(121, 4);
+ this.PanelSave.Name = "PanelSave";
+ this.PanelSave.Size = new System.Drawing.Size(28, 28);
+ this.PanelSave.TabIndex = 3;
+ this.PanelSave.Click += new System.EventHandler(this.PanelSave_Click);
+ //
+ // plPrint
+ //
+ this.plPrint.BackgroundImage = global::AIMS.Properties.Resources.图标_打印;
+ this.plPrint.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.plPrint.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.plPrint.Location = new System.Drawing.Point(163, 4);
+ this.plPrint.Name = "plPrint";
+ this.plPrint.Size = new System.Drawing.Size(28, 28);
+ this.plPrint.TabIndex = 3;
+ this.plPrint.Click += new System.EventHandler(this.plPrint_Click);
+ //
+ // plRefresh
+ //
+ this.plRefresh.BackgroundImage = global::AIMS.Properties.Resources.图标_刷新;
+ this.plRefresh.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.plRefresh.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.plRefresh.Location = new System.Drawing.Point(247, 4);
+ this.plRefresh.Name = "plRefresh";
+ this.plRefresh.Size = new System.Drawing.Size(28, 28);
+ this.plRefresh.TabIndex = 2;
+ this.plRefresh.Click += new System.EventHandler(this.plRefresh_Click);
+ //
+ // lblRoom
+ //
+ this.lblRoom.AutoSize = true;
+ this.lblRoom.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.lblRoom.Location = new System.Drawing.Point(317, 8);
+ this.lblRoom.Name = "lblRoom";
+ this.lblRoom.Size = new System.Drawing.Size(13, 20);
+ this.lblRoom.TabIndex = 9;
+ this.lblRoom.Text = " ";
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label22.Location = new System.Drawing.Point(235, 8);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(82, 20);
+ this.label22.TabIndex = 8;
+ this.label22.Text = "当前手术间:";
+ //
+ // labOperatorName
+ //
+ this.labOperatorName.AutoSize = true;
+ this.labOperatorName.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.labOperatorName.Location = new System.Drawing.Point(84, 8);
+ this.labOperatorName.Name = "labOperatorName";
+ this.labOperatorName.Size = new System.Drawing.Size(93, 20);
+ this.labOperatorName.TabIndex = 7;
+ this.labOperatorName.Text = "操作人员名称";
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.label19.Location = new System.Drawing.Point(8, 8);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(68, 20);
+ this.label19.TabIndex = 6;
+ this.label19.Text = "操作人员:";
+ //
+ // plTitleEventTime
+ //
+ this.plTitleEventTime.BackColor = System.Drawing.Color.White;
+ this.plTitleEventTime.Controls.Add(this.panel13);
+ this.plTitleEventTime.Controls.Add(this.panel10);
+ this.plTitleEventTime.Controls.Add(this.panel11);
+ this.plTitleEventTime.Controls.Add(this.panel6);
+ this.plTitleEventTime.Dock = System.Windows.Forms.DockStyle.Top;
+ this.plTitleEventTime.Location = new System.Drawing.Point(0, 0);
+ this.plTitleEventTime.Name = "plTitleEventTime";
+ this.plTitleEventTime.Size = new System.Drawing.Size(1760, 58);
+ this.plTitleEventTime.TabIndex = 0;
+ //
+ // panel13
+ //
+ this.panel13.BackColor = System.Drawing.Color.AliceBlue;
+ this.panel13.Controls.Add(this.txtOutRoom);
+ this.panel13.Controls.Add(this.picOutRoom);
+ this.panel13.Controls.Add(this.button5);
+ this.panel13.Location = new System.Drawing.Point(563, 3);
+ this.panel13.Name = "panel13";
+ this.panel13.Padding = new System.Windows.Forms.Padding(3, 0, 3, 6);
+ this.panel13.Size = new System.Drawing.Size(150, 53);
+ this.panel13.TabIndex = 51;
+ //
+ // txtOutRoom
+ //
+ this.txtOutRoom.AutoAdvance = true;
+ //
+ //
+ //
+ this.txtOutRoom.BackgroundStyle.Class = "DateTimeInputBackground";
+ this.txtOutRoom.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOutRoom.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
+ this.txtOutRoom.CustomFormat = "MM-ddHH:mm";
+ this.txtOutRoom.FocusHighlightColor = System.Drawing.Color.White;
+ this.txtOutRoom.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.txtOutRoom.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
+ this.txtOutRoom.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
+ this.txtOutRoom.IsPopupCalendarOpen = false;
+ this.txtOutRoom.Location = new System.Drawing.Point(42, 23);
+ this.txtOutRoom.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
+ //
+ //
+ //
+ //
+ //
+ //
+ this.txtOutRoom.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOutRoom.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
+ this.txtOutRoom.MonthCalendar.ClearButtonVisible = true;
+ //
+ //
+ //
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
+ this.txtOutRoom.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOutRoom.MonthCalendar.DaySize = new System.Drawing.Size(20, 15);
+ this.txtOutRoom.MonthCalendar.DisplayMonth = new System.DateTime(2017, 11, 1, 0, 0, 0, 0);
+ this.txtOutRoom.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
+ //
+ //
+ //
+ this.txtOutRoom.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
+ this.txtOutRoom.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtOutRoom.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
+ this.txtOutRoom.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOutRoom.Name = "txtOutRoom";
+ this.txtOutRoom.Size = new System.Drawing.Size(101, 23);
+ this.txtOutRoom.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.txtOutRoom.TabIndex = 43;
+ //
+ // picOutRoom
+ //
+ this.picOutRoom.BackColor = System.Drawing.Color.Transparent;
+ this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室;
+ this.picOutRoom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.picOutRoom.Location = new System.Drawing.Point(2, 10);
+ this.picOutRoom.Name = "picOutRoom";
+ this.picOutRoom.Size = new System.Drawing.Size(34, 33);
+ this.picOutRoom.TabIndex = 42;
+ this.picOutRoom.TabStop = false;
+ //
+ // button5
+ //
+ this.button5.BackColor = System.Drawing.Color.Transparent;
+ this.button5.FlatAppearance.BorderSize = 0;
+ this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button5.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.button5.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
+ this.button5.Location = new System.Drawing.Point(39, -3);
+ this.button5.Name = "button5";
+ this.button5.Size = new System.Drawing.Size(100, 25);
+ this.button5.TabIndex = 41;
+ this.button5.Tag = "";
+ this.button5.Text = "出手术间";
+ this.button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
+ this.button5.UseVisualStyleBackColor = false;
+ //
+ // panel10
+ //
+ this.panel10.BackColor = System.Drawing.Color.AliceBlue;
+ this.panel10.Controls.Add(this.txtOperationBegin);
+ this.panel10.Controls.Add(this.picOpeBegin);
+ this.panel10.Controls.Add(this.button2);
+ this.panel10.Location = new System.Drawing.Point(191, 3);
+ this.panel10.Name = "panel10";
+ this.panel10.Padding = new System.Windows.Forms.Padding(3, 0, 3, 6);
+ this.panel10.Size = new System.Drawing.Size(150, 53);
+ this.panel10.TabIndex = 51;
+ //
+ // txtOperationBegin
+ //
+ this.txtOperationBegin.AutoAdvance = true;
+ //
+ //
+ //
+ this.txtOperationBegin.BackgroundStyle.Class = "DateTimeInputBackground";
+ this.txtOperationBegin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationBegin.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
+ this.txtOperationBegin.CustomFormat = "MM-ddHH:mm";
+ this.txtOperationBegin.FocusHighlightColor = System.Drawing.Color.White;
+ this.txtOperationBegin.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.txtOperationBegin.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
+ this.txtOperationBegin.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
+ this.txtOperationBegin.IsPopupCalendarOpen = false;
+ this.txtOperationBegin.Location = new System.Drawing.Point(42, 23);
+ this.txtOperationBegin.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
+ //
+ //
+ //
+ //
+ //
+ //
+ this.txtOperationBegin.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationBegin.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
+ this.txtOperationBegin.MonthCalendar.ClearButtonVisible = true;
+ //
+ //
+ //
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
+ this.txtOperationBegin.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationBegin.MonthCalendar.DaySize = new System.Drawing.Size(20, 15);
+ this.txtOperationBegin.MonthCalendar.DisplayMonth = new System.DateTime(2017, 11, 1, 0, 0, 0, 0);
+ this.txtOperationBegin.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
+ //
+ //
+ //
+ this.txtOperationBegin.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
+ this.txtOperationBegin.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtOperationBegin.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
+ this.txtOperationBegin.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationBegin.Name = "txtOperationBegin";
+ this.txtOperationBegin.Size = new System.Drawing.Size(101, 23);
+ this.txtOperationBegin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.txtOperationBegin.TabIndex = 43;
+ //
+ // picOpeBegin
+ //
+ this.picOpeBegin.BackColor = System.Drawing.Color.Transparent;
+ this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ this.picOpeBegin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.picOpeBegin.Location = new System.Drawing.Point(2, 10);
+ this.picOpeBegin.Name = "picOpeBegin";
+ this.picOpeBegin.Size = new System.Drawing.Size(34, 33);
+ this.picOpeBegin.TabIndex = 42;
+ this.picOpeBegin.TabStop = false;
+ //
+ // button2
+ //
+ this.button2.BackColor = System.Drawing.Color.Transparent;
+ this.button2.FlatAppearance.BorderSize = 0;
+ this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button2.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.button2.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
+ this.button2.Location = new System.Drawing.Point(39, -3);
+ this.button2.Name = "button2";
+ this.button2.Size = new System.Drawing.Size(100, 25);
+ this.button2.TabIndex = 41;
+ this.button2.Tag = "";
+ this.button2.Text = "手术开始";
+ this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
+ this.button2.UseVisualStyleBackColor = false;
+ //
+ // panel11
+ //
+ this.panel11.BackColor = System.Drawing.Color.AliceBlue;
+ this.panel11.Controls.Add(this.txtOperationEnd);
+ this.panel11.Controls.Add(this.picOpeEnd);
+ this.panel11.Controls.Add(this.button3);
+ this.panel11.Location = new System.Drawing.Point(377, 3);
+ this.panel11.Name = "panel11";
+ this.panel11.Padding = new System.Windows.Forms.Padding(3, 0, 3, 6);
+ this.panel11.Size = new System.Drawing.Size(150, 53);
+ this.panel11.TabIndex = 50;
+ //
+ // txtOperationEnd
+ //
+ this.txtOperationEnd.AutoAdvance = true;
+ //
+ //
+ //
+ this.txtOperationEnd.BackgroundStyle.Class = "DateTimeInputBackground";
+ this.txtOperationEnd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationEnd.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
+ this.txtOperationEnd.CustomFormat = "MM-ddHH:mm";
+ this.txtOperationEnd.FocusHighlightColor = System.Drawing.Color.White;
+ this.txtOperationEnd.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.txtOperationEnd.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
+ this.txtOperationEnd.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
+ this.txtOperationEnd.IsPopupCalendarOpen = false;
+ this.txtOperationEnd.Location = new System.Drawing.Point(42, 23);
+ this.txtOperationEnd.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
+ //
+ //
+ //
+ //
+ //
+ //
+ this.txtOperationEnd.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationEnd.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
+ this.txtOperationEnd.MonthCalendar.ClearButtonVisible = true;
+ //
+ //
+ //
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
+ this.txtOperationEnd.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationEnd.MonthCalendar.DaySize = new System.Drawing.Size(20, 15);
+ this.txtOperationEnd.MonthCalendar.DisplayMonth = new System.DateTime(2017, 11, 1, 0, 0, 0, 0);
+ this.txtOperationEnd.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
+ //
+ //
+ //
+ this.txtOperationEnd.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
+ this.txtOperationEnd.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtOperationEnd.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
+ this.txtOperationEnd.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtOperationEnd.Name = "txtOperationEnd";
+ this.txtOperationEnd.Size = new System.Drawing.Size(101, 23);
+ this.txtOperationEnd.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.txtOperationEnd.TabIndex = 43;
+ //
+ // picOpeEnd
+ //
+ this.picOpeEnd.BackColor = System.Drawing.Color.Transparent;
+ this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
+ this.picOpeEnd.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.picOpeEnd.Location = new System.Drawing.Point(2, 10);
+ this.picOpeEnd.Name = "picOpeEnd";
+ this.picOpeEnd.Size = new System.Drawing.Size(34, 33);
+ this.picOpeEnd.TabIndex = 42;
+ this.picOpeEnd.TabStop = false;
+ //
+ // button3
+ //
+ this.button3.BackColor = System.Drawing.Color.Transparent;
+ this.button3.FlatAppearance.BorderSize = 0;
+ this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.button3.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.button3.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
+ this.button3.Location = new System.Drawing.Point(39, -3);
+ this.button3.Name = "button3";
+ this.button3.Size = new System.Drawing.Size(100, 25);
+ this.button3.TabIndex = 41;
+ this.button3.Tag = "";
+ this.button3.Text = "手术结束";
+ this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
+ this.button3.UseVisualStyleBackColor = false;
+ //
+ // panel6
+ //
+ this.panel6.BackColor = System.Drawing.Color.AliceBlue;
+ this.panel6.Controls.Add(this.txtInRoom);
+ this.panel6.Controls.Add(this.picInRoom);
+ this.panel6.Controls.Add(this.txtInRoom1);
+ this.panel6.Location = new System.Drawing.Point(5, 3);
+ this.panel6.Name = "panel6";
+ this.panel6.Padding = new System.Windows.Forms.Padding(3, 0, 3, 6);
+ this.panel6.Size = new System.Drawing.Size(150, 53);
+ this.panel6.TabIndex = 50;
+ //
+ // txtInRoom
+ //
+ this.txtInRoom.AutoAdvance = true;
+ //
+ //
+ //
+ this.txtInRoom.BackgroundStyle.Class = "DateTimeInputBackground";
+ this.txtInRoom.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtInRoom.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
+ this.txtInRoom.CustomFormat = "MM-ddHH:mm";
+ this.txtInRoom.FocusHighlightColor = System.Drawing.Color.White;
+ this.txtInRoom.Font = new System.Drawing.Font("微软雅黑", 9F);
+ this.txtInRoom.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
+ this.txtInRoom.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
+ this.txtInRoom.IsPopupCalendarOpen = false;
+ this.txtInRoom.Location = new System.Drawing.Point(42, 23);
+ this.txtInRoom.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
+ //
+ //
+ //
+ //
+ //
+ //
+ this.txtInRoom.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtInRoom.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
+ this.txtInRoom.MonthCalendar.ClearButtonVisible = true;
+ //
+ //
+ //
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
+ this.txtInRoom.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtInRoom.MonthCalendar.DaySize = new System.Drawing.Size(20, 15);
+ this.txtInRoom.MonthCalendar.DisplayMonth = new System.DateTime(2017, 11, 1, 0, 0, 0, 0);
+ this.txtInRoom.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
+ //
+ //
+ //
+ this.txtInRoom.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
+ this.txtInRoom.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
+ this.txtInRoom.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
+ this.txtInRoom.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.txtInRoom.Name = "txtInRoom";
+ this.txtInRoom.Size = new System.Drawing.Size(101, 23);
+ this.txtInRoom.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.txtInRoom.TabIndex = 43;
+ //
+ // picInRoom
+ //
+ this.picInRoom.BackColor = System.Drawing.Color.Transparent;
+ this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室;
+ this.picInRoom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
+ this.picInRoom.Location = new System.Drawing.Point(2, 10);
+ this.picInRoom.Name = "picInRoom";
+ this.picInRoom.Size = new System.Drawing.Size(34, 33);
+ this.picInRoom.TabIndex = 42;
+ this.picInRoom.TabStop = false;
+ //
+ // txtInRoom1
+ //
+ this.txtInRoom1.BackColor = System.Drawing.Color.Transparent;
+ this.txtInRoom1.FlatAppearance.BorderSize = 0;
+ this.txtInRoom1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.txtInRoom1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
+ this.txtInRoom1.ImageAlign = System.Drawing.ContentAlignment.BottomLeft;
+ this.txtInRoom1.Location = new System.Drawing.Point(39, -3);
+ this.txtInRoom1.Name = "txtInRoom1";
+ this.txtInRoom1.Size = new System.Drawing.Size(100, 25);
+ this.txtInRoom1.TabIndex = 41;
+ this.txtInRoom1.Tag = "进手术间";
+ this.txtInRoom1.Text = "进手术间";
+ this.txtInRoom1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
+ this.txtInRoom1.UseVisualStyleBackColor = false;
+ //
+ // flowLayoutPanel1
+ //
+ this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 441);
+ this.flowLayoutPanel1.Name = "flowLayoutPanel1";
+ this.flowLayoutPanel1.Size = new System.Drawing.Size(147, 71);
+ this.flowLayoutPanel1.TabIndex = 0;
+ //
+ // frmAnasRecordInstrument
+ //
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
+ this.ClientSize = new System.Drawing.Size(2082, 1042);
+ this.Controls.Add(this.panel1);
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "frmAnasRecordInstrument";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "器械清点单";
+ this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
+ this.Load += new System.EventHandler(this.frmAnasRecordInstrument_Load);
+ this.panel3.ResumeLayout(false);
+ this.panel14.ResumeLayout(false);
+ this.panel4.ResumeLayout(false);
+ this.panel4.PerformLayout();
+ this.panel1.ResumeLayout(false);
+ this.panel5.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.superTabMain)).EndInit();
+ this.superTabMain.ResumeLayout(false);
+ this.superTabControlPanel2.ResumeLayout(false);
+ this.panelExBLSJ.ResumeLayout(false);
+ this.panel82.ResumeLayout(false);
+ this.panel18.ResumeLayout(false);
+ this.panel19.ResumeLayout(false);
+ this.panel19.PerformLayout();
+ this.panel20.ResumeLayout(false);
+ this.panel20.PerformLayout();
+ this.panel22.ResumeLayout(false);
+ this.panel22.PerformLayout();
+ this.panel23.ResumeLayout(false);
+ this.panel23.PerformLayout();
+ this.panel25.ResumeLayout(false);
+ this.panel25.PerformLayout();
+ this.panel12.ResumeLayout(false);
+ this.panel17.ResumeLayout(false);
+ this.panel24.ResumeLayout(false);
+ this.panel24.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
+ this.superTabControlPanel1.ResumeLayout(false);
+ this.panelExZKZB.ResumeLayout(false);
+ this.panel8.ResumeLayout(false);
+ this.panelQX.ResumeLayout(false);
+ this.plBottom.ResumeLayout(false);
+ this.plTital.ResumeLayout(false);
+ this.plTital.PerformLayout();
+ this.panel9.ResumeLayout(false);
+ this.panel9.PerformLayout();
+ this.panel15.ResumeLayout(false);
+ this.panel15.PerformLayout();
+ this.panel16.ResumeLayout(false);
+ this.panel16.PerformLayout();
+ this.panel7.ResumeLayout(false);
+ this.panel7.PerformLayout();
+ this.panel21.ResumeLayout(false);
+ this.plTitleEventTime.ResumeLayout(false);
+ this.panel13.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.txtOutRoom)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picOutRoom)).EndInit();
+ this.panel10.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.txtOperationBegin)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picOpeBegin)).EndInit();
+ this.panel11.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.txtOperationEnd)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picOpeEnd)).EndInit();
+ this.panel6.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.txtInRoom)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.picInRoom)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Panel panel2;
+ private System.Windows.Forms.Panel panel3;
+ private System.Windows.Forms.Panel panel4;
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.Panel panel5;
+ private System.Windows.Forms.Panel panel7;
+ private System.Windows.Forms.Panel plTitleEventTime;
+ private PublicUI.UI.DrawPanel panel8;
+ private System.Windows.Forms.Label label9;
+ private System.Windows.Forms.Label lblSpo2;
+ private System.Windows.Forms.Label lblDia;
+ private System.Windows.Forms.Label label6;
+ private System.Windows.Forms.Label lblPR;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.Label lblHR;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label lblRoom;
+ private System.Windows.Forms.Label label22;
+ private System.Windows.Forms.Label labOperatorName;
+ private System.Windows.Forms.Label label19;
+ private System.Windows.Forms.Panel panel21;
+ private System.Windows.Forms.Panel plPrintBrowse;
+ private System.Windows.Forms.Panel plPrint;
+ private System.Windows.Forms.Panel plRefresh;
+ private System.Windows.Forms.Button btnSelectPatient;
+ private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
+ private System.Windows.Forms.Panel panel14;
+ private System.Windows.Forms.Button btnDrug;
+ private System.Windows.Forms.Button btnOperationInfo;
+ private System.Windows.Forms.Button btnAddEvents;
+ private System.Windows.Forms.Button btnTemplate;
+ private System.Windows.Forms.Button button6;
+ private System.Windows.Forms.Button btnBloodGasAnalysis;
+ private System.Windows.Forms.Button btnOutputLiquids;
+ private DrawGraph.ZedGraphControl zgcAnaesRecord;
+ private System.Windows.Forms.Panel panel6;
+ private DevComponents.Editors.DateTimeAdv.DateTimeInput txtInRoom;
+ private System.Windows.Forms.PictureBox picInRoom;
+ private System.Windows.Forms.Button txtInRoom1;
+ private System.Windows.Forms.Panel panel10;
+ private DevComponents.Editors.DateTimeAdv.DateTimeInput txtOperationBegin;
+ private System.Windows.Forms.PictureBox picOpeBegin;
+ private System.Windows.Forms.Button button2;
+ private System.Windows.Forms.Panel panel13;
+ private DevComponents.Editors.DateTimeAdv.DateTimeInput txtOutRoom;
+ private System.Windows.Forms.PictureBox picOutRoom;
+ private System.Windows.Forms.Button button5;
+ private System.Windows.Forms.Panel panel11;
+ private DevComponents.Editors.DateTimeAdv.DateTimeInput txtOperationEnd;
+ private System.Windows.Forms.PictureBox picOpeEnd;
+ private System.Windows.Forms.Button button3;
+ private System.Windows.Forms.Button button8;
+ private System.Windows.Forms.Button button7;
+ private System.Windows.Forms.Button btnCancelIn;
+ private System.Windows.Forms.Button btnCancelOperation;
+ public DevComponents.DotNetBar.Controls.CircularProgress circularProgress1;
+ private System.Windows.Forms.Button btnsbwh;
+ private System.Windows.Forms.Button btndptz;
+ private System.Windows.Forms.Button btnsjzx;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.Label lblRESP;
+ private System.Windows.Forms.Label label8;
+ private System.Windows.Forms.Label label10;
+ private System.Windows.Forms.Label label7;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.Button btnChage;
+ private System.Windows.Forms.Panel panelQX;
+ private System.Windows.Forms.Panel plBottom;
+ private System.Windows.Forms.Panel panel32;
+ private System.Windows.Forms.Panel plTital;
+ private System.Windows.Forms.Panel panel15;
+ private System.Windows.Forms.Label label11;
+ private System.Windows.Forms.Label label12;
+ private System.Windows.Forms.Label label13;
+ private System.Windows.Forms.Label label14;
+ private System.Windows.Forms.Label label15;
+ private System.Windows.Forms.Label label53;
+ private System.Windows.Forms.Panel panel16;
+ private System.Windows.Forms.Label label65;
+ private System.Windows.Forms.Label label57;
+ private System.Windows.Forms.Label label59;
+ private System.Windows.Forms.Label label66;
+ private System.Windows.Forms.Label label58;
+ private System.Windows.Forms.Panel plTop;
+ private System.Windows.Forms.Panel panel9;
+ private System.Windows.Forms.Label label16;
+ private System.Windows.Forms.Label label17;
+ private System.Windows.Forms.Label label18;
+ private System.Windows.Forms.Label label20;
+ private System.Windows.Forms.Label label21;
+ private System.Windows.Forms.Button button1;
+ private System.Windows.Forms.Panel PanelSave;
+ private DevComponents.DotNetBar.SuperTabControl superTabMain;
+ private DevComponents.DotNetBar.SuperTabControlPanel superTabControlPanel1;
+ private DevComponents.DotNetBar.PanelEx panelExZKZB;
+ private DevComponents.DotNetBar.SuperTabItem spTabQXQDD;
+ private DevComponents.DotNetBar.SuperTabControlPanel superTabControlPanel2;
+ private DevComponents.DotNetBar.PanelEx panelExBLSJ;
+ private DevComponents.DotNetBar.SuperTabItem spTabBM;
+ private PublicUI.UI.DrawPanel panel82;
+ public DevComponents.DotNetBar.Controls.CircularProgress circularProgress2;
+ private DrawGraph.ZedGraphControl zgcAnaesRecord2;
+ private System.Windows.Forms.Panel panel12;
+ private System.Windows.Forms.Panel panel17;
+ private System.Windows.Forms.Panel panel24;
+ private System.Windows.Forms.Button button4;
+ private System.Windows.Forms.RadioButton radioButton4;
+ private System.Windows.Forms.RadioButton radioButton5;
+ private System.Windows.Forms.RadioButton radioButton3;
+ private System.Windows.Forms.RadioButton radioButton2;
+ private System.Windows.Forms.Label label23;
+ private System.Windows.Forms.RadioButton radioButton1;
+ private System.Windows.Forms.PictureBox pictureBox1;
+ private System.Windows.Forms.Panel panel18;
+ private System.Windows.Forms.Panel panel19;
+ public System.Windows.Forms.Label label46;
+ public System.Windows.Forms.Label label47;
+ public System.Windows.Forms.TextBox uText21;
+ public System.Windows.Forms.TextBox uText22;
+ public System.Windows.Forms.Label label48;
+ public System.Windows.Forms.Label label49;
+ public System.Windows.Forms.TextBox uText23;
+ public System.Windows.Forms.TextBox uText24;
+ public System.Windows.Forms.Label label50;
+ public System.Windows.Forms.TextBox uText25;
+ public System.Windows.Forms.Label label51;
+ public System.Windows.Forms.TextBox uText26;
+ private System.Windows.Forms.Panel panel20;
+ public System.Windows.Forms.Label label37;
+ public System.Windows.Forms.Label label38;
+ public System.Windows.Forms.TextBox uText15;
+ public System.Windows.Forms.TextBox uText16;
+ public System.Windows.Forms.Label label42;
+ public System.Windows.Forms.Label label43;
+ public System.Windows.Forms.TextBox uText17;
+ public System.Windows.Forms.TextBox uText18;
+ public System.Windows.Forms.Label label44;
+ public System.Windows.Forms.TextBox uText19;
+ public System.Windows.Forms.Label label45;
+ public System.Windows.Forms.TextBox uText20;
+ private System.Windows.Forms.Panel panel22;
+ public System.Windows.Forms.Label label29;
+ public System.Windows.Forms.Label label30;
+ public System.Windows.Forms.TextBox uText9;
+ public System.Windows.Forms.TextBox uText10;
+ public System.Windows.Forms.Label label31;
+ public System.Windows.Forms.Label label32;
+ public System.Windows.Forms.TextBox uText11;
+ public System.Windows.Forms.TextBox uText12;
+ public System.Windows.Forms.Label label33;
+ public System.Windows.Forms.TextBox uText13;
+ public System.Windows.Forms.Label label34;
+ public System.Windows.Forms.TextBox uText14;
+ private System.Windows.Forms.Panel panel23;
+ public System.Windows.Forms.Label label27;
+ public System.Windows.Forms.Label label24;
+ public System.Windows.Forms.TextBox uText8;
+ public System.Windows.Forms.TextBox uText4;
+ public System.Windows.Forms.Label label25;
+ public System.Windows.Forms.Label label26;
+ public System.Windows.Forms.TextBox uText7;
+ public System.Windows.Forms.TextBox uText1;
+ public System.Windows.Forms.Label label28;
+ public System.Windows.Forms.TextBox uText5;
+ public System.Windows.Forms.Label label35;
+ public System.Windows.Forms.TextBox uText6;
+ private System.Windows.Forms.Panel panel25;
+ public System.Windows.Forms.Label label36;
+ }
+}
\ No newline at end of file
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.cs b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.cs
new file mode 100644
index 0000000..c06e3c0
--- /dev/null
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.cs
@@ -0,0 +1,1969 @@
+using AIMS.DocManager;
+using AIMS.OperationFront.UI;
+using AIMS.OremrUserControl;
+using AIMS.PublicUI.UI;
+using AIMSBLL;
+using AIMSExtension;
+using AIMSModel;
+using DevComponents.Editors.DateTimeAdv;
+using DrawGraph;
+using Newtonsoft.Json;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Drawing.Printing;
+using System.IO;
+using System.Linq;
+using System.Reflection;
+using System.Windows.Forms;
+
+namespace AIMS.OperationDoing.AnasRecordBill.UI
+{
+ public partial class frmAnasRecordInstrument2 : Form
+ {
+ #region 初始化
+ public OperationRecord _record;
+ public TemplateManage templateManage;
+ public TemplateManage templateManage2;
+ public AIMSModel.OperationRoom NowRoom;
+ private DataTable _appliance;
+ private List _applianceUseType;
+ public int PatientId = 0;
+ public int ApplyId = 0;
+ public int RecoverId = 1;
+ private System.Windows.Forms.Timer timerGetTextCollectorData;
+ public AIMSExtension.EditState State;
+ public bool isReadOnly = false;
+
+ public frmAnasRecordInstrument2()
+ {
+ InitializeComponent();
+ #region 时间轴事件
+ this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室;
+ this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
+ this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室;
+ #endregion
+ //AIMSExtension.PublicMethod.SetLocalDateTime();
+ }
+
+ private void frmAnasRecordInstrument_Load(object sender, EventArgs e)
+ {
+ //系统演示 收费功能
+ if (PublicMethod.OperatorNo == "admin")
+ {
+ btnChage.Visible = true;
+ }
+
+ labOperatorName.Text = "(" + AIMSExtension.PublicMethod.OperatorNo + ")" + " " + AIMSExtension.PublicMethod.OperatorName;
+ if (NowRoom != null) lblRoom.Text = NowRoom.Name;
+ circularProgress1.Location = new Point((panel8.Width - circularProgress1.Width) / 2, (panel8.Height - circularProgress1.Height) / 2);
+
+ LoadAnesRescue();
+ }
+
+ #endregion
+
+ #region 上方按钮
+ ///
+ /// 手术特殊事件时间点处理事件
+ ///
+ ///
+ ///
+ public void txtDateTime_MouseDown(object sender, MouseEventArgs e)
+ {
+ if (PatientId == 0) return;
+ DateTimeInput tb = sender as DateTimeInput;
+ if (_record != null && _record.OutRoomTime != null)
+ {
+ if ((tb.Name == "txtBG" || tb.Name == "txtCG") && tb.Text.Trim() == "")
+ {
+ return;
+ }
+ }
+
+ if (tb.Text.Trim() == "" && tb.CustomFormat == " ")
+ {
+ tb.BackColor = Color.White;
+ SetPic(sender);
+ }
+ else
+ {
+ tb.CustomFormat = "HH:mm";
+ tb.ButtonDropDown.Visible = true;
+ }
+ }
+ private void txtDateTime_LostFocus(object sender, EventArgs e)
+ {
+ if (PatientId == 0) return;
+ DateTimeInput tb = sender as DateTimeInput;
+ if (tb.CustomFormat == "HH:mm")
+ {
+ if (tb.Name == "txtInRoom" || tb.Name == "txtOutRoom")
+ {
+ tb.CustomFormat = "MM-dd HH:mm";
+ }
+ tb.ButtonDropDown.Visible = false;
+ }
+ if (tb.Text.Trim() != "" && tb.Value.ToString() != tb.Tag.ToString())
+ {
+ try
+ {
+ SetPic(sender, tb.Value);
+ tb.BackColor = Color.White;
+ }
+ catch (Exception)
+ {
+ tb.Focus();
+ tb.Value = DateTime.Parse(tb.Tag.ToString());
+ return;
+ }
+ }
+ else
+ {
+ if (tb.Tag != null && tb.Tag.ToString() != "")
+ tb.Value = DateTime.Parse(tb.Tag.ToString());
+ }
+ }
+ private void dateTimePicker_KeyUp(object sender, KeyEventArgs e)
+ {
+ if (PatientId == 0) return;
+ DateTimeInput dtpak = (DateTimeInput)sender;
+ if (e.KeyCode == Keys.Delete || e.KeyCode == Keys.Back)
+ {
+ if (dtpak.CustomFormat != " " && dtpak.Tag != null)
+ {
+ try
+ {
+ SetPic((DateTimeInput)sender);
+ }
+ catch (Exception)
+ {
+ //PublicMethod.ShowMessage("输入的时间格式不符合规范(HH:mm)!");
+ return;
+ }
+ }
+
+ }
+ }
+ ///
+ /// 特殊事件触发时设置图片
+ ///
+ /// 显示时间的控件
+ private void SetPic(Object obj)
+ {
+ DrawGraph.FactEvents Inevent = null;
+ DateTimeInput tb = obj as DateTimeInput;
+ DateTime nowtime = DateTime.Now;// getOpeMaxTime();
+ DateTime curTimeTemp = new DateTime(nowtime.Year, nowtime.Month, nowtime.Day, nowtime.Hour, nowtime.Minute, 0);
+ InsertOrUpdateEventTime(0, "txtInRoom", "入室", tb, curTimeTemp, ref Inevent);
+ curTimeTemp = curTimeTemp.AddSeconds(2);
+ InsertOrUpdateEventTime(0, "txtOperationBegin", "手术开始", tb, curTimeTemp, ref Inevent);
+ curTimeTemp = curTimeTemp.AddSeconds(2);
+ InsertOrUpdateEventTime(0, "txtOperationEnd", "手术结束", tb, curTimeTemp, ref Inevent);
+ curTimeTemp = curTimeTemp.AddSeconds(2);
+ InsertOrUpdateEventTime(0, "txtOutRoom", "出室", tb, curTimeTemp, ref Inevent);
+
+ if (Inevent != null)
+ {
+ _record.FactEventsList.Add(Inevent);
+ if (Inevent.EventName == "入室")
+ {
+ _record.pageCount = 0;
+ ReviewEvent();
+ }
+ else if (Inevent.EventName == "手术开始" || Inevent.EventName == "出室" || Inevent.EventBeginTime > _record.lastPageBegin)
+ {
+ ReviewEvent();
+ }
+ else
+ {
+ DrawEvent();
+ }
+ }
+ }
+ ///
+ /// 特殊事件触发时设置图片
+ ///
+ /// 显示时间的控件
+ private void SetPic(Object obj, DateTime curTimeTemp)
+ {
+ DrawGraph.FactEvents Inevent = null;
+ DateTimeInput tb = obj as DateTimeInput;
+ curTimeTemp = new DateTime(curTimeTemp.Year, curTimeTemp.Month, curTimeTemp.Day, curTimeTemp.Hour, curTimeTemp.Minute, 0);
+ //try
+ //{
+ // if (curTimeTemp.Date < _record.PlanOperationTime.AddDays(-3).Date)
+ // {
+ // tb.Focus();
+ // tb.Value = DateTime.Parse(tb.Tag.ToString());
+ // return;
+ // }
+ //}
+ //catch (Exception)
+ //{
+ //}
+ InsertOrUpdateEventTime(1, "txtInRoom", "入室", tb, curTimeTemp, ref Inevent);
+ curTimeTemp = curTimeTemp.AddSeconds(2);
+ InsertOrUpdateEventTime(1, "txtOperationBegin", "手术开始", tb, curTimeTemp, ref Inevent);
+ curTimeTemp = curTimeTemp.AddSeconds(2);
+ InsertOrUpdateEventTime(1, "txtOperationEnd", "手术结束", tb, curTimeTemp, ref Inevent);
+ curTimeTemp = curTimeTemp.AddSeconds(2);
+ InsertOrUpdateEventTime(1, "txtOutRoom", "出室", tb, curTimeTemp, ref Inevent);
+
+ if (Inevent != null)
+ {
+ if (Inevent.EventName == "入室")
+ {
+ _record.pageCount = 0;
+ ReviewEvent();
+ }
+ else if (Inevent.EventName == "出室" || Inevent.EventName == "手术开始" || Inevent.EventBeginTime > _record.lastPageBegin)
+ {
+ ReviewEvent();
+ }
+ else
+ {
+ DrawEvent();
+ }
+ }
+ }
+ ///
+ /// 特殊事件触发时设置图片
+ ///
+ /// 显示时间的控件
+ private void SetPic(DateTimeInput obj)
+ {
+ DrawGraph.FactEvents Inevent = null;
+ DateTimeInput tb = obj as DateTimeInput;
+ if (_record.StateName == "手术中")
+ {
+ DeleteEventTime("txtOperationBegin", "手术开始", tb, ref Inevent);
+ DeleteEventTime("txtOperationEnd", "手术结束", tb, ref Inevent);
+ DeleteEventTime("txtBG", "拔管", tb, ref Inevent);
+ }
+ else
+ {
+ MessageBox.Show("选择的事件不可删除 只可修改!");
+ }
+
+ if (Inevent != null)
+ {
+ tb.ButtonDropDown.Visible = false;
+ _record.FactEventsList.Remove(Inevent);
+ DrawEvent();
+ }
+ }
+ ///
+ /// 判断控件对应的事件 删除事件
+ ///
+ /// 事件对应的控件名称
+ /// 事件名称
+ /// 控件
+ private void DeleteEventTime(string EventTxtName, string EventName, DateTimeInput tb, ref DrawGraph.FactEvents Inevent)
+ {
+ if (tb.Name.Equals(EventTxtName))
+ {
+ List list = _record.FactEventsList.Where(c => c.EventName == EventName).ToList();
+ if (list.Count <= 0) return;
+ Inevent = list[0];
+ if (EventName == "入室" || EventName == "出室")
+ {
+ //PublicMethod.ShowMessage("该事件为主要事件 不可删除 只可修改!!");
+ tb.Value = Inevent.EventBeginTime.Value;
+ Inevent = null;
+ return;
+ }
+
+ BFactEvents.DeleteById(Inevent.Id.ToString());
+ Inevent.clearAddObj(zgcAnaesRecord);
+ tb.CustomFormat = " ";
+ tb.Value = DateTime.Now;
+ tb.Tag = null;
+
+ if (Inevent != null && Inevent.EventName == "手术开始")
+ {
+ _record.OperationBeginTime = null;
+ this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ }
+ if (Inevent != null && Inevent.EventName == "手术结束")
+ {
+ _record.OperationEndTime = null;
+ this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
+ }
+
+ if (Inevent != null)
+ {
+ BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ }
+ }
+ }
+ ///
+ /// 判断控件对应的事件 插入事件
+ ///
+ /// 0插入 1更新
+ /// 事件对应的控件名称
+ /// 事件名称
+ /// 事件对应的对象时间
+ /// 控件
+ /// 事件时间
+ /// 事件对象
+ private void InsertOrUpdateEventTime(int state, string EventTxtName, string EventName, DateTimeInput tb, DateTime curTimeTemp, ref DrawGraph.FactEvents Inevent)
+ {
+ if (tb.Name.Equals(EventTxtName))
+ {
+ string messing = "";
+ bool timeistrue = true;
+ timeistrue = BOperationRecord.IfTimeisTrue(true, _record, EventName, curTimeTemp, ref messing);
+ if (_record.StateName != null && _record.StateName != "手术中")
+ {
+ if (messing != "")
+ {
+ MessageBox.Show(messing);
+ }
+ }
+ else
+ { timeistrue = true; }
+ //if (EventName == "出室" && _record.StateName == "手术中" && state == 0)
+ //{
+ // if (messing != "") MessageBox.Show(messing, "系统提示");
+ // return;
+ //}
+ if (timeistrue == false)
+ {
+ if (tb.Tag != null) tb.Value = DateTime.Parse(tb.Tag.ToString());
+ return;
+ }
+ if (EventName == "出室" && curTimeTemp.ToString("yyyy-MM-dd HH:mm") == _record.lastPageBegin.ToString("yyyy-MM-dd HH:mm"))
+ {
+ curTimeTemp = _record.lastPageBegin;
+ }
+ if (state != 1)
+ {
+ Inevent = BFactEvents.Insert(PatientId, EventName, curTimeTemp, curTimeTemp, RecoverId);
+ }
+ else
+ {
+ updateEventTime(EventName, curTimeTemp, ref Inevent);
+ }
+ tb.Value = curTimeTemp;
+ tb.Tag = curTimeTemp;
+
+ if (Inevent != null && Inevent.EventName == "入室" && _record.InRoomTime != Inevent.EventBeginTime)
+ {
+ _record.InRoomTime = Inevent.EventBeginTime;
+ this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室_select;
+ }
+ if (Inevent != null && Inevent.EventName == "手术开始" && _record.OperationBeginTime != Inevent.EventBeginTime)
+ {
+ _record.OperationBeginTime = Inevent.EventBeginTime;
+ this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始_select;
+ }
+ if (Inevent != null && Inevent.EventName == "手术结束" && _record.OperationEndTime != Inevent.EventBeginTime)
+ {
+ _record.OperationEndTime = Inevent.EventBeginTime;
+ this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束_select;
+ }
+ if (Inevent != null && Inevent.EventName == "出室" && _record.OutRoomTime != Inevent.EventBeginTime)
+ {
+ _record.OutRoomTime = Inevent.EventBeginTime;
+ this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室_select;
+ }
+ if (Inevent != null)
+ {
+ BOperationRecord.Update("InRoomTime=@InRoom,OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where Id=@id ", new AIMSModel.ParameterList("@InRoom", _record.InRoomTime.HasValue ? (object)_record.InRoomTime.Value : (object)DateTime.Now, "@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
+ }
+ }
+ }
+ ///
+ /// 修改事件时间
+ ///
+ ///
+ ///
+ public void updateEventTime(string eventName, DateTime dt, ref DrawGraph.FactEvents elist)
+ {
+ List list = _record.FactEventsList.Where(c => c.EventName == eventName).ToList();
+ if (list.Count <= 0) return;
+ elist = list[0];
+ if (elist.EventBeginTime != dt)
+ {
+ elist.EventBeginTime = dt;
+ elist.EventEndTime = dt;
+ BFactEvents.Update("EventBeginTime=@EventBeginTime,EventEndTime=@EventEndTime where id=@id ", new AIMSModel.ParameterList("@EventBeginTime", elist.EventBeginTime, "@EventEndTime", elist.EventEndTime, "@id", elist.Id));
+ }
+ }
+ #endregion
+
+ #region 下方按钮
+ private void panel8_Scroll(object sender, ScrollEventArgs e)
+ {
+ templateManage.SetPYL();
+ }
+ private void panel82_Scroll(object sender, ScrollEventArgs e)
+ {
+ templateManage2.SetPYL();
+ }
+
+
+ private void plRefresh_Click(object sender, EventArgs e)
+ {
+ if (PatientId == 0) return;
+ //刷新到当前页
+ ReviewEvent();
+ }
+ #endregion
+
+ #region 左侧按钮
+ private void btnSelectPatient_Click(object sender, EventArgs e)
+ {
+ OperationDoing.AnasRecordBill.UI.frmSelectPatientNew frmSelectPatient = new UI.frmSelectPatientNew();
+ frmSelectPatient.isMainOpen = true;
+ frmSelectPatient.FormClosed += new FormClosedEventHandler(frmSelectPatient_FormClosed);
+ frmSelectPatient.ShowDialog();
+
+ }
+ void frmSelectPatient_FormClosed(object sender, FormClosedEventArgs e)
+ {
+ LoadAnesRescue();
+ }
+
+ private System.Windows.Forms.Timer timerLoadAnesRescue;
+
+ public void LoadAnesRescue()
+ {
+ circularProgress1.IsRunning = true;
+ circularProgress1.Visible = true;
+ circularProgress2.IsRunning = true;
+ circularProgress2.Visible = true;
+ zgcAnaesRecord.Visible = false;
+ zgcAnaesRecord2.Visible = false;
+ timerLoadAnesRescue = new System.Windows.Forms.Timer(components);
+ timerLoadAnesRescue.Enabled = true;//调试时设置为FALSE ,
+ timerLoadAnesRescue.Interval = 300;
+ timerLoadAnesRescue.Tick -= TimerLoadAnesRescue_Tick;
+ timerLoadAnesRescue.Tick += TimerLoadAnesRescue_Tick;
+ timerLoadAnesRescue.Start();
+ }
+ private void TimerLoadAnesRescue_Tick(object sender, EventArgs e)
+ {
+ timerLoadAnesRescue.Dispose();
+ if (PatientId > 0 && State == AIMSExtension.EditState.ADD)
+ {
+ try
+ {
+ HelperDB.DbHelperSQL.BeginTrans();
+ _record = new OperationRecord();
+ _record.OperationApplyId = ApplyId;
+ _record.PatientId = PatientId;
+ _record.RecoverId = RecoverId;
+ _record.Id = BOperationRecord.AddTitleTime(PatientId, ApplyId, RecoverId,1, DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd HH:mm:00")), NowRoom.Id.Value);
+ HelperDB.DbHelperSQL.CommitTrans();
+ ClearTimeText();
+ btnSelectPatient.Enabled = false;
+ DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, zgcAnaesRecord2, ref templateManage, ref templateManage2);
+ StartTimer();
+
+ txtInRoom.MouseDown += new MouseEventHandler(txtDateTime_MouseDown);
+ txtOutRoom.MouseDown += new MouseEventHandler(txtDateTime_MouseDown);
+ txtOperationBegin.MouseDown += new MouseEventHandler(txtDateTime_MouseDown);
+ txtOperationEnd.MouseDown += new MouseEventHandler(txtDateTime_MouseDown);
+
+ txtOperationBegin.KeyUp += new KeyEventHandler(dateTimePicker_KeyUp);
+ txtOperationEnd.KeyUp += new KeyEventHandler(dateTimePicker_KeyUp);
+
+ txtInRoom.LostFocus += new EventHandler(txtDateTime_LostFocus);
+ txtOutRoom.LostFocus += new EventHandler(txtDateTime_LostFocus);
+ txtOperationBegin.LostFocus += new EventHandler(txtDateTime_LostFocus);
+ txtOperationEnd.LostFocus += new EventHandler(txtDateTime_LostFocus);
+
+ }
+ catch
+ {
+ HelperDB.DbHelperSQL.RollbackTrans();
+ }
+ }
+ else if (PatientId > 0 && State == AIMSExtension.EditState.EDIT)
+ {
+ _record = new OperationRecord();
+ btnSelectPatient.Enabled = false; //清空记录点并重新加载
+ ClearTimeText();
+ if (templateManage != null)
+ {
+ templateManage.ControlClear();
+ }
+ if (templateManage2 != null)
+ {
+ templateManage2.ControlClear();
+ }
+ DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, zgcAnaesRecord2, ref templateManage, ref templateManage2);
+ StartTimer();
+ }
+ else if (PatientId > 0 && State == AIMSExtension.EditState.BROWSE)
+ {
+ _record = new OperationRecord();
+ btnSelectPatient.Enabled = true;
+ btnCancelOperation.Enabled = false;
+ btnCancelIn.Enabled = false;
+ ClearTimeText();
+ if (templateManage != null)
+ {
+ templateManage.ControlClear();
+ }
+ if (templateManage2 != null)
+ {
+ templateManage2.ControlClear();
+ }
+ DrawAnasReordBill.IniDrawAnasReordBill4(_record, zgcAnaesRecord, zgcAnaesRecord2, ref templateManage, ref templateManage2);
+
+ StartTimer();
+ }
+ AbleEditPackObj ableEdit = templateManage.GetPackObjectOTag("InstrumentDataManage_AbleEditPackObj_40_OperationRecord_SpareTen");
+ Panel pan = ableEdit.CControl as Panel;
+ if (pan != null)
+ {
+ this.panel8.Controls.Remove(this.panelQX);
+ panelQX.Visible = true;
+ panelQX.Dock = DockStyle.Fill;
+ pan.Controls.Add(panelQX);
+ pan.Size = new System.Drawing.Size(templateManage.ZedControl.Width, (int)(templateManage.ZedControl.Height * 0.4));
+ }
+ AbleEditPackObj ableEdit2 = templateManage2.GetPackObjectOTag("TempDataManage_AbleEditPackObj_357_OperationRecord_InstrumentList_TagPicturePanel");
+ Panel pan2 = ableEdit2.CControl as Panel;
+ if (pan2 != null)
+ {
+ this.panel82.Controls.Remove(this.panel12);
+ panel12.Visible = true;
+ panel12.Dock = DockStyle.Fill;
+ pan2.Controls.Add(panel12);
+ //pan.Size = new System.Drawing.Size(templateManage.ZedControl.Width, (int)(templateManage.ZedControl.Height * 0.4));
+ }
+ AbleEditPackObj ableEdit3 = templateManage2.GetPackObjectOTag("TempDataManage_AbleEditPackObj_397_OperationRecord_InstrumentList_PackPanel");
+ Panel pan3 = ableEdit3.CControl as Panel;
+ if (pan3 != null)
+ {
+ this.panel82.Controls.Remove(this.panel18);
+ panel18.Visible = true;
+ panel18.Dock = DockStyle.Fill;
+ pan3.Controls.Add(panel18);
+ //pan.Size = new System.Drawing.Size(templateManage.ZedControl.Width, (int)(templateManage.ZedControl.Height * 0.4));
+ }
+ plRefresh_Click(null, null);
+ if (_record.MedicalRecord != null && _record.MedicalRecord != "")
+ {
+ btnOperationInfo.Enabled = false;
+ btnOutputLiquids.Enabled = false;
+ btnDrug.Enabled = false;
+ btnAddEvents.Enabled = false;
+ button6.Enabled = false;
+ btnBloodGasAnalysis.Enabled = false;
+ txtInRoom.Enabled = false;
+ txtOperationBegin.Enabled = false;
+ txtOperationEnd.Enabled = false;
+ txtOutRoom.Enabled = false;
+ isReadOnly = true;
+ }
+
+ circularProgress1.IsRunning = false;
+ circularProgress1.Visible = false;
+ zgcAnaesRecord.Visible = true;
+ circularProgress2.IsRunning = false;
+ circularProgress2.Visible = false;
+ zgcAnaesRecord2.Visible = true;
+
+ }
+
+ private void btnOperationInfo_Click(object sender, EventArgs e)
+ {
+ if (PatientId != 0)
+ {
+ AIMS.OperationDoing.AnasRecordBill.UI.frmOperationInfoNew frmOperationInfo = new frmOperationInfoNew();
+ frmOperationInfo._record = _record;
+ frmOperationInfo.FormClosed += new FormClosedEventHandler(plRefresh_Click);
+ frmOperationInfo.ShowDialog();
+ }
+ else
+ {
+ MessageBox.Show("请选择患者");
+ }
+ }
+
+ private void btnDrug_Click(object sender, EventArgs e)
+ {
+ if (PatientId != 0)
+ {
+ PublicUI.UI.frmFactDrugNew frmFactDrug = new PublicUI.UI.frmFactDrugNew();
+ frmFactDrug._record = _record;
+ frmFactDrug.zgcAnaesRecord = zgcAnaesRecord;
+ frmFactDrug.DrugTypeId = RecoverId; // 事件类型 1 麻醉单事件 2 麻醉恢复单
+ frmFactDrug.FormClosed += new FormClosedEventHandler(frmFactEventsNew_FormClosed);
+ frmFactDrug.ShowDialog();
+ }
+ else
+ {
+ MessageBox.Show("请选择患者");
+ }
+ }
+ private void btnAddEvents_Click(object sender, EventArgs e)
+ {
+ if (PatientId != 0)
+ {
+ PublicUI.UI.frmFactEventsNew frmFactEventsNew = new PublicUI.UI.frmFactEventsNew();
+ frmFactEventsNew._record = _record;
+ frmFactEventsNew.zgcAnaesRecord = zgcAnaesRecord;
+ frmFactEventsNew.EventTypeId = RecoverId; // 事件类型 1 麻醉单事件 2 麻醉恢复单
+ frmFactEventsNew.EventParam += ReferEventDrugs;
+ frmFactEventsNew.ShowDialog();
+ }
+ else
+ {
+ MessageBox.Show("请选择患者");
+ }
+ }
+ private void btnOutputLiquids_Click(object sender, EventArgs e)
+ {
+ if (PatientId != 0)
+ {
+ PublicUI.UI.frmFactOutputLiquidsNew frmFactOutputLiquids = new PublicUI.UI.frmFactOutputLiquidsNew();
+ frmFactOutputLiquids._record = _record;
+ frmFactOutputLiquids.OutputLiquidTypeId = RecoverId; // 事件类型 1 麻醉单事件 2 麻醉恢复单
+ frmFactOutputLiquids.FormClosed += new FormClosedEventHandler(frmFactEventsNew_FormClosed);
+ frmFactOutputLiquids.ShowDialog();
+ }
+ else
+ {
+ MessageBox.Show("请选择患者");
+ }
+ }
+ private void button6_Click(object sender, EventArgs e)
+ {
+ frmAnaseDataQualityRecord frmAnaseDataQuality = new frmAnaseDataQualityRecord();
+ frmAnaseDataQuality._record = _record;
+ frmAnaseDataQuality.ShowDialog();
+ }
+ void frmFactEventsNew_FormClosed(object sender, FormClosedEventArgs e)
+ {
+ plRefresh_Click(null, null);
+ }
+ private void btnCancelOperation_Click(object sender, EventArgs e)
+ {
+ if (PatientId == 0)
+ {
+ MessageBox.Show("请选择患者!");
+ return;
+ }
+ if (BOperationRecord.GetDataCount(_record.Id.Value, PatientId, RecoverId) > 0)
+ {
+ MessageBox.Show("清除数据在进行作废手术操作!");
+ return;
+ }
+ if (MessageBox.Show("确认要停止手术吗?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
+ {
+ try
+ {
+
+ HelperDB.DbHelperSQL.BeginTrans();
+ BOperationApply.UpdateApplyState(ApplyId, 11);
+ //BOperationRecord.DeleteOperationRecordData(PatientId, RecoverId);
+ BOperationRecord.UpdateState(PatientId, 1, 5);
+ HelperDB.DbHelperSQL.CommitTrans();
+
+ //ClearData();
+ this.Close();
+ }
+ catch
+ {
+ HelperDB.DbHelperSQL.RollbackTrans();
+ }
+ }
+ }
+ private void btnCancelIn_Click(object sender, EventArgs e)
+ {
+ if (PatientId == 0)
+ {
+ MessageBox.Show("请选择患者!");
+ return;
+ }
+ if (BOperationRecord.GetDataCount(_record.Id.Value, PatientId, RecoverId) > 0)
+ {
+ MessageBox.Show("清除数据在进行取消转入操作!");
+ return;
+ }
+ if (MessageBox.Show("确认要取消转入吗?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
+ {
+ try
+ {
+ HelperDB.DbHelperSQL.BeginTrans();
+ BOperationApply.UpdateApplyState(ApplyId, 5);
+ BOperationRecord.DeleteOperationRecordData(_record.Id.Value, PatientId, RecoverId);
+ HelperDB.DbHelperSQL.CommitTrans();
+
+ DisposeTimer();
+ //ClearData();
+ this.Close();
+ }
+ catch
+ {
+ HelperDB.DbHelperSQL.RollbackTrans();
+ }
+ }
+ }
+ private void btnTemplate_Click(object sender, EventArgs e)
+ {
+ if (_applianceUseType == null)
+ _applianceUseType = new List();
+ frmSelectApplianceUseType ReturnApply = new frmSelectApplianceUseType();
+ ReturnApply._SelectApplianceUseType = _applianceUseType;
+ DialogResult ddr = ReturnApply.ShowDialog();
+ _appliance = ReturnApply._appliance;
+ if (ddr == System.Windows.Forms.DialogResult.OK && _appliance != null)
+ {
+ FullUcControlsToPanel(panel32, _appliance);
+ //if (_appliance.Rows.Count > 60)
+ // MessageBox.Show("超出打印数量!");
+ }
+ }
+ private void tsbExePlan_Click(object sender, EventArgs e)
+ {
+ if (PatientId == 0)
+ {
+ MessageBox.Show("请先选择患者!");
+ return;
+ }
+ if (_record.Applydiagnose == null || _record.Applydiagnose == "")
+ {
+ MessageBox.Show("请选择诊断后再填写文书!", "系统提示");
+ ModifyApply_Click(null, null);
+ return;
+ }
+ PatientRecord patient = PatientRecord.GetPatientRecord(PatientId);
+ frmDocument frmDocument = new frmDocument(patient);
+ frmDocument.StartPosition = FormStartPosition.CenterScreen;
+ frmDocument.WindowState = FormWindowState.Maximized;
+ frmDocument.ShowDialog();
+ }
+ void toolStripMenuItem2_Click(object sender, EventArgs e)
+ {
+
+ }
+ private void btnBloodGasAnalysis_Click(object sender, EventArgs e)
+ {
+ if (PatientId != 0)
+ {
+ frmBloodGasAnalysisNew frmFactBloodGasAnalysis = new frmBloodGasAnalysisNew();
+ frmFactBloodGasAnalysis._record = _record;
+ frmFactBloodGasAnalysis.zgcAnaesRecord = zgcAnaesRecord;
+ frmFactBloodGasAnalysis.FormClosed += new FormClosedEventHandler(frmFactEventsNew_FormClosed);
+ frmFactBloodGasAnalysis.ShowDialog();
+ }
+ else
+ {
+ MessageBox.Show("请选择患者");
+ }
+ }
+ #endregion
+
+ #region 采集程序
+
+ public string szy;//舒张压
+ public string ssy;//收缩压
+ public DateTime? LastRespMonitorDataTime;
+ private void timerGetTextCollectorData_Tick(object sender, EventArgs e)
+ {
+ try
+ {
+ if (((TimeSpan)(DateTime.Now - _record.lastPageBegin)).TotalHours > 24 || NowRoom == null) return;
+ ShowMonitorDataToRight();
+ }
+ catch (Exception)
+ {
+ //PublicMethod.WriteLog(ex);
+ }
+ }
+
+ private BackgroundWorker backgroundWorker1;
+ public void ShowMonitorDataToRight()
+ {
+ this.backgroundWorker1 = new BackgroundWorker();
+ this.backgroundWorker1.WorkerReportsProgress = true;
+ this.backgroundWorker1.WorkerSupportsCancellation = true;
+ this.backgroundWorker1.DoWork += new DoWorkEventHandler(this.backgroundWorker1_DoWork);
+ this.backgroundWorker1.RunWorkerCompleted += new RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
+ this.backgroundWorker1.RunWorkerAsync();
+ }
+ private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
+ {
+ BackgroundWorker worker = sender as BackgroundWorker;
+ List lists = DeviceCacheData.Select(" IPAddress='" + NowRoom.Ip + "' and UpdateTime>='" + DateTime.Now.AddSeconds(-300) + "'");
+ e.Result = lists;
+ }
+ private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
+ {
+ List lists = e.Result as List;
+ if (lists != null && lists.Count > 0)
+ {
+ DeviceCacheData deviceCacheData = lists[0];
+ NowPhysioData nowPhysioData = JsonConvert.DeserializeObject(deviceCacheData.JsonData);
+ foreach (PropertyInfo p in nowPhysioData.GetType().GetProperties())
+ {
+ bool iswar = false;
+ foreach (PhysioDataConfig keyValuePair in _record.addPhysioList)
+ {
+ if (keyValuePair.Enname.ToUpper() == p.Name.ToUpper())
+ {
+ try
+ {
+ object paramValue = p.GetValue(nowPhysioData, null);
+ if (paramValue != null && paramValue.ToString() != string.Empty && paramValue.ToString() != "NaN" && paramValue.ToString() != "NULL")
+ {
+ double value = Double.Parse(paramValue.ToString());
+ value = Convert.ToInt32(value);
+ if (value < keyValuePair.WarningLowLimit || value > keyValuePair.WarningHighLimit)
+ {
+ iswar = true;
+ }
+
+ if (keyValuePair.Name == "心率")
+ {
+ lblHR.Text = value <= 0 ? "- -" : value.ToString();
+ if (iswar == true) lblHR.ForeColor = Color.Red; else lblHR.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "自主呼吸")
+ {
+ lblRESP.Text = value <= 0 ? "- -" : value.ToString();
+ if (iswar == true) lblRESP.ForeColor = Color.Red; else lblRESP.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "氧饱和度")
+ {
+ lblSpo2.Text = value <= 0 ? "- -" : value.ToString();
+ if (iswar == true) lblSpo2.ForeColor = Color.Red; else lblSpo2.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "脉率")
+ {
+ lblPR.Text = value <= 0 ? "- -" : value.ToString();
+ if (iswar == true) lblPR.ForeColor = Color.Red; else lblPR.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "无创舒张压")
+ {
+ szy = value <= 0 ? "" : value.ToString();
+ if (iswar == true) lblDia.ForeColor = Color.Red; else lblDia.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "无创收缩压")
+ {
+ ssy = value <= 0 ? "" : value.ToString();
+ if (iswar == true) lblDia.ForeColor = Color.Red; else lblDia.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "有创舒张压")
+ {
+ szy = value <= 0 ? "" : value.ToString();
+ if (iswar == true) lblDia.ForeColor = Color.Red; else lblDia.ForeColor = Color.Green;
+ }
+ if (keyValuePair.Name == "有创收缩压")
+ {
+ ssy = value <= 0 ? "" : value.ToString();
+ if (iswar == true) lblDia.ForeColor = Color.Red; else lblDia.ForeColor = Color.Green;
+ }
+ break;
+ }
+ }
+ catch (Exception)
+ {
+ //PublicMethod.WriteLog(ex);
+ }
+ }
+ }
+ }
+ string szyssy = ssy + "/" + szy;
+ lblDia.Text = szyssy == "/" ? "--/--" : szyssy;
+ }
+ else
+ {
+ lblHR.Text = "- -";
+ lblRESP.Text = "- -";
+ lblSpo2.Text = "- -";
+ lblPR.Text = "- -";
+ lblDia.Text = "--/--";
+ lblHR.ForeColor = Color.Green;
+ lblRESP.ForeColor = Color.Green;
+ lblSpo2.ForeColor = Color.Green;
+ lblPR.ForeColor = Color.Green;
+ lblDia.ForeColor = Color.Green;
+ }
+ }
+
+ public bool isCgtime(string key, DateTime time)
+ {
+ bool b = false;
+ try
+ {
+ if (key == "自主呼吸")
+ {
+ if (_record.SpileInTime != null && _record.SpileOutTime != null)
+ {
+ if (time > _record.SpileInTime && time < _record.SpileOutTime)
+ b = true;
+ }
+ if (_record.SpileInTime != null && _record.SpileOutTime == null)
+ {
+ if (time > _record.SpileInTime)
+ b = true;
+ }
+ }
+ else
+ {
+ b = false;
+ }
+ }
+ catch (Exception ex)
+ {
+ PublicMethod.WriteLog(ex);
+ }
+ return b;
+ }
+
+ private void StartTimer()
+ {
+ if (timerGetTextCollectorData == null)
+ timerGetTextCollectorData = new System.Windows.Forms.Timer(components);
+ timerGetTextCollectorData.Enabled = true;//调试时设置为FALSE ,
+ timerGetTextCollectorData.Interval = 2000;
+ timerGetTextCollectorData.Tick -= new System.EventHandler(timerGetTextCollectorData_Tick);
+ timerGetTextCollectorData.Tick += new System.EventHandler(timerGetTextCollectorData_Tick);
+ timerGetTextCollectorData.Start();
+ }
+
+ private void DisposeTimer()
+ {
+ if (timerGetTextCollectorData != null)
+ {
+ timerGetTextCollectorData.Enabled = false;
+ timerGetTextCollectorData.Stop();
+ }
+ }
+
+ #endregion
+
+ #region 鼠标右键
+
+ private void zgcAnaesRecord_KeyUp(object sender, KeyEventArgs e)
+ {
+ if (templateManage != null)
+ {
+ ZedGraphControl send = sender as ZedGraphControl;
+ templateManage.zedControl_KeyUp(send, e);
+ }
+ }
+
+ private bool zgcAnaesRecord_MouseDownEvent(ZedGraphControl sender, MouseEventArgs e)
+ {
+ if (templateManage != null && isReadOnly == false)
+ {
+ SelectWorkerValue.Hidden();
+ SelectDictValue.Hidden();
+ templateManage.zedControl_MouseDownEvent(sender, e);
+
+ }
+ return default(bool);
+ }
+
+ private bool zgcAnaesRecord_MouseUpEvent(ZedGraphControl sender, MouseEventArgs e)
+ {
+ if (templateManage != null && isReadOnly == false)
+ {
+ templateManage.zedControl_MouseUpEvent(sender, e);
+ }
+ return default(bool);
+ }
+
+ private bool zgcAnaesRecord_MouseMoveEvent(ZedGraphControl sender, MouseEventArgs e)
+ {
+ if (templateManage != null)
+ {
+ templateManage.zedControl_MouseMoveEvent(sender, e);
+ }
+ return default(bool);
+ }
+
+ private void zgcAnaesRecord_MouseDoubleClick(object sender, MouseEventArgs e)
+ {
+ if (templateManage != null && isReadOnly == false)
+ {
+ ZedGraphControl send = sender as ZedGraphControl;
+ templateManage.zedControl_MouseDoubleClick(send, e);
+ }
+ }
+ //public ucStripMenuItem menuItem = new ucStripMenuItem();
+ private void zgcAnaesRecord_ContextMenuBuilder(ZedGraphControl sender, ContextMenuStrip menuStrip, Point mousePt, ZedGraphControl.ContextMenuObjectState objState)
+ {
+
+ //添加自定义的新菜单
+ ToolStripMenuItem ModifyApply = new ToolStripMenuItem();
+ ModifyApply.Text = "手术申请信息";
+ ModifyApply.Click += ModifyApply_Click;
+ menuStrip.Items.Add(ModifyApply);
+
+ }
+
+ private void zgcAnaesRecord2_KeyUp(object sender, KeyEventArgs e)
+ {
+ if (templateManage2 != null)
+ {
+ ZedGraphControl send = sender as ZedGraphControl;
+ templateManage2.zedControl_KeyUp(send, e);
+ }
+ }
+
+ private bool zgcAnaesRecord2_MouseDownEvent(ZedGraphControl sender, MouseEventArgs e)
+ {
+ if (templateManage2 != null && isReadOnly == false)
+ {
+ SelectWorkerValue.Hidden();
+ SelectDictValue.Hidden();
+ templateManage2.zedControl_MouseDownEvent(sender, e);
+
+ }
+ return default(bool);
+ }
+
+ private bool zgcAnaesRecord2_MouseUpEvent(ZedGraphControl sender, MouseEventArgs e)
+ {
+ if (templateManage2 != null && isReadOnly == false)
+ {
+ templateManage2.zedControl_MouseUpEvent(sender, e);
+ }
+ return default(bool);
+ }
+
+ private bool zgcAnaesRecord2_MouseMoveEvent(ZedGraphControl sender, MouseEventArgs e)
+ {
+ if (templateManage2 != null)
+ {
+ templateManage2.zedControl_MouseMoveEvent(sender, e);
+ }
+ return default(bool);
+ }
+
+ private void zgcAnaesRecord2_MouseDoubleClick(object sender, MouseEventArgs e)
+ {
+ if (templateManage2 != null && isReadOnly == false)
+ {
+ ZedGraphControl send = sender as ZedGraphControl;
+ templateManage2.zedControl_MouseDoubleClick(send, e);
+ }
+ }
+ //public ucStripMenuItem menuItem = new ucStripMenuItem();
+ private void zgcAnaesRecord2_ContextMenuBuilder(ZedGraphControl sender, ContextMenuStrip menuStrip, Point mousePt, ZedGraphControl.ContextMenuObjectState objState)
+ {
+ //添加自定义的新菜单
+ ToolStripMenuItem ModifyApply = new ToolStripMenuItem();
+ ModifyApply.Text = "手术申请信息";
+ ModifyApply.Click += ModifyApply_Click;
+ menuStrip.Items.Add(ModifyApply);
+
+ }
+ private void ModifyApply_Click(object sender, EventArgs e)
+ {
+ if (PatientId == 0) return;
+
+ frmOperationApplyDetail frm = new frmOperationApplyDetail();
+ frm.State = AIMSExtension.EditState.EDIT;
+ frm.EditApplyId = ApplyId;
+ frm.tsbExit.Visible = true;
+ frm.tsbCancel.Visible = false;
+ frm.FormClosed += (s, er) =>
+ {
+ ReviewEvent();
+ };
+ //frm.FormBorderStyle = FormBorderStyle.None; // 无边框
+ //frm.TopLevel = false;
+ //frm.Dock = DockStyle.Fill;
+ //panel8.Controls.Add(frm);
+ frm.Show();
+ frm.Focus();
+ frm.BringToFront();
+ }
+
+ #endregion
+
+ #region 公共方法
+ private void ReviewEvent()
+ {
+ if (PatientId != 0)
+ {
+ templateManage.OpeRecord = BOperationRecord.getRecord(_record, PatientId, RecoverId);
+ templateManage2.OpeRecord = templateManage.OpeRecord;
+ templateManage.BindOperationRecordValueAll(templateManage.OpeRecord);
+ templateManage2.BindOperationRecordValueAll(templateManage2.OpeRecord);
+ reDrawEvent();
+ templateManage.Bind();
+ templateManage2.Bind();
+
+ if (_record.InstrumentList != null)
+ {
+ LoadOperationGoodsBillRecord();
+ }
+ else
+ {
+ _record.InstrumentList = new OperationRecordInstrumentList();
+ _record.InstrumentList.OperationRecordId = this._record.Id;
+ FirstbtnEnter();
+ }
+ zgcAnaesRecord.Refresh();
+ }
+ }
+
+ private void DrawEvent()
+ {
+ reDrawEvent();
+ zgcAnaesRecord.Refresh();
+ }
+
+ private void reDrawEvent()
+ {
+ ClearTimeText();
+ if (_record.InRoomTime != null)
+ {
+ txtInRoom.CustomFormat = "MM-dd HH:mm";
+ txtInRoom.ButtonDropDown.Visible = false;
+ txtInRoom.Tag = _record.InRoomTime.Value;
+ txtInRoom.Value = _record.InRoomTime.Value;
+ this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室_select;
+ }
+ if (_record.OperationBeginTime != null)
+ {
+ txtOperationBegin.CustomFormat = "HH:mm";
+ txtOperationBegin.ButtonDropDown.Visible = false;
+ txtOperationBegin.Tag = _record.OperationBeginTime.Value;
+ txtOperationBegin.Value = _record.OperationBeginTime.Value;
+ this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始_select;
+ }
+ if (_record.OperationEndTime != null)
+ {
+ txtOperationEnd.CustomFormat = "HH:mm";
+ txtOperationEnd.ButtonDropDown.Visible = false;
+ txtOperationEnd.Tag = _record.OperationEndTime.Value;
+ txtOperationEnd.Value = _record.OperationEndTime.Value;
+ this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束_select;
+ }
+ if (_record.OutRoomTime != null)
+ {
+ txtOutRoom.CustomFormat = "MM-dd HH:mm";
+ txtOutRoom.ButtonDropDown.Visible = false;
+ txtOutRoom.Tag = _record.OutRoomTime.Value;
+ txtOutRoom.Value = _record.OutRoomTime.Value;
+ this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室_select;
+ }
+
+ if (_record.OutRoomTime != null && _record.StateName == "手术中")
+ {
+ txtOutRoom.CustomFormat = "MM-dd HH:mm";
+ txtOutRoom.ButtonDropDown.Visible = false;
+ txtOutRoom.Tag = _record.OutRoomTime.Value;
+ txtOutRoom.Value = _record.OutRoomTime.Value;
+ EndOperationOutRoom();
+ }
+ }
+ public void ReferEventDrugs()
+ {
+ if (txtInRoom.Value != _record.InRoomTime)
+ {
+ _record.pageCount = 0;
+ ReviewEvent();
+ }
+ else
+ {
+ plRefresh_Click(null, null);
+ }
+ }
+ private void ClearTimeText()
+ {
+ txtInRoom.CustomFormat = " ";
+ txtOperationBegin.CustomFormat = " ";
+ txtOperationEnd.CustomFormat = " ";
+ txtOutRoom.CustomFormat = " ";
+ txtInRoom.Tag = null;
+ txtOperationBegin.Tag = null;
+ txtOperationEnd.Tag = null;
+ txtOutRoom.Tag = null;
+ txtInRoom.Text = "";
+ txtOperationBegin.Text = "";
+ txtOperationEnd.Text = "";
+ txtOutRoom.Text = "";
+
+ this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室;
+ this.picOpeBegin.BackgroundImage = global::AIMS.Properties.Resources.手术开始;
+ this.picOpeEnd.BackgroundImage = global::AIMS.Properties.Resources.手术结束;
+ this.picOutRoom.BackgroundImage = global::AIMS.Properties.Resources.出手术室;
+ }
+
+ private void EndOperationOutRoom()
+ {
+ if (_record == null || _record.StateName != "手术中") return;
+ try
+ {
+ //CloseOtherFrom();
+ //保存持续加药未结束药品
+ foreach (FactDrug temp in _record.FactDrugList)
+ {
+ if (temp.IsContinue == 1 && temp.DrugBeginTime == temp.DrugEndTime)
+ {
+ temp.DrugEndTime = _record.OutRoomTime.Value;
+ temp.OperatorNo = PublicMethod.OperatorNo;
+ temp.OperatorName = PublicMethod.OperatorName;
+ temp.OperateDate = DateTime.Now;
+ BFactDrug.Update(temp);
+ }
+ }
+ //保存持续事件未结束事件
+ foreach (FactEvents temp in _record.FactEventsList)
+ {
+ if (temp.IsContinue == 1 && temp.EventBeginTime == temp.EventEndTime)
+ {
+ temp.EventEndTime = _record.OutRoomTime;
+ temp.OperatorNo = PublicMethod.OperatorNo;
+ temp.OperatorName = PublicMethod.OperatorName;
+ temp.OperateDate = DateTime.Now;
+ BFactEvents.Update(temp);
+ }
+ }
+ _record.StateName = "手术结束";
+ BOperationApply.UpdateApplyState(ApplyId, 8);
+ BOperationRecord.UpdateState(PatientId, 1, 2);
+
+ //PublicMethod.WriteLog("结束转出手术: " + _record.Id);
+ //TipBox.Hidden(true);
+ State = AIMSExtension.EditState.BROWSE;
+ btnCancelOperation.Enabled = false;
+ btnCancelIn.Enabled = false;
+ btnSelectPatient.Enabled = true;
+ DisposeTimer();
+ ReviewEvent();
+ }
+ catch (Exception exp)
+ {
+ PublicMethod.WriteLog(exp, "");
+ }
+
+ }
+ #endregion
+
+ #region 右侧按钮
+ private void btnyldj_Click(object sender, EventArgs e)
+ {
+ FormUseDrugsReport formUseDrugsReport = new FormUseDrugsReport(1);
+ if (_record != null) formUseDrugsReport._record = _record;
+ formUseDrugsReport.Show();
+ }
+
+ private void btnzsk_Click(object sender, EventArgs e)
+ {
+ frmKnowledgeBase frm = new frmKnowledgeBase();
+ frm.Show();
+ }
+
+ private void btndptz_Click(object sender, EventArgs e)
+ {
+ frmNoticeLargeScreen fnc = new frmNoticeLargeScreen();
+ if (_record != null)
+ {
+ fnc.lblName.Text = _record.Name;
+ fnc.textBox2.Focus();
+ fnc.groupBox1.Visible = false;
+ }
+ fnc.ShowDialog();
+ }
+
+ private void btnxldlx_Click(object sender, EventArgs e)
+ {
+ frmHemodynamics frm = new frmHemodynamics();
+ frm.Show();
+ }
+
+ private void btnsbwh_Click(object sender, EventArgs e)
+ {
+ frmInstrumentRegistration frm = new frmInstrumentRegistration();
+ frm.Show();
+ }
+
+ private void btnsjzx_Click(object sender, EventArgs e)
+ {
+ MessageBox.Show("未连接到服务器 请联系管理员或稍后再试!", "系统提示");
+ }
+ private void btnqxqd_Click(object sender, EventArgs e)
+ {
+ if (PatientId != 0 && _record.Id != 0)
+ {
+ frmGoodsBillRecord frm = new frmGoodsBillRecord();
+ frm._record = _record;
+ frm.Show();
+ frm.Focus();
+ frm.BringToFront();
+ }
+ }
+ private void btnChage_Click(object sender, EventArgs e)
+ {
+ frmChargRecordPrint frmchargRecord = new frmChargRecordPrint(_record);
+ frmchargRecord.TemplateType = "麻醉";
+ frmchargRecord.Show();
+ frmchargRecord.BringToFront();
+ }
+ #endregion
+
+ #region 器械清点
+
+ #region 加载手术手术清点单记录信息
+ private void LoadOperationGoodsBillRecord()
+ {
+ if (_record.InstrumentList.ApplianceUseType != null && _record.InstrumentList.ApplianceUseType != "") _applianceUseType = BApplianceUseType.Select(" id in (" + _record.InstrumentList.ApplianceUseType + ")", null, RecursiveType.None, 0);
+
+ if (_applianceUseType == null || _applianceUseType.Count == 0)
+ {
+ _applianceUseType = new List();
+ _appliance = BAppliance.GetApplianiceByIds("");
+ }
+ else
+ {
+ DataTable newDataTable = null;
+ _appliance = BAppliance.GetApplianiceNumberByIds(_applianceUseType[0].TheApplianceId, _applianceUseType[0].ApplianceNumber);
+ newDataTable = _appliance.Clone();
+ foreach (ApplianceUseType item in _applianceUseType)
+ {
+ DataTable dt = BAppliance.GetApplianiceNumberByIds(item.TheApplianceId, item.ApplianceNumber);
+ object[] obj = new object[newDataTable.Columns.Count];
+ //添加DataTable1的数据
+ for (int i = 0; i < dt.Rows.Count; i++)
+ {
+ dt.Rows[i].ItemArray.CopyTo(obj, 0);
+ newDataTable.Rows.Add(obj);
+ }
+ }
+ _appliance = newDataTable;
+ }
+ if (_appliance != null)
+ FullUcControlsToPanel(panel32, _appliance);
+
+ if (_record.InstrumentList.JsonTextData != null && _record.InstrumentList.JsonTextData != "")
+ {
+ PublicToDoument.DeserializeControl(panel18, _record.InstrumentList.JsonTextData);
+ }
+ if (_record.InstrumentList.TagPicture != null && _record.InstrumentList.TagPicture != "")
+ {
+ pictureBox1.Image = PublicToDoument.BytesToImage(Convert.FromBase64String(_record.InstrumentList.TagPicture));
+ }
+ }
+ #endregion
+
+ #region 选择器械包
+ private void btnEnter_Click(object sender, EventArgs e)
+ {
+ if (_applianceUseType == null)
+ _applianceUseType = new List();
+ frmSelectApplianceUseType ReturnApply = new frmSelectApplianceUseType();
+ ReturnApply._SelectApplianceUseType = _applianceUseType;
+ DialogResult ddr = ReturnApply.ShowDialog();
+ _appliance = ReturnApply._appliance;
+ if (ddr == System.Windows.Forms.DialogResult.OK && _appliance != null)
+ {
+ FullUcControlsToPanel(panel32, _appliance);
+ //if (_appliance.Rows.Count > 60)
+ // MessageBox.Show("超出打印数量!");
+ }
+ }
+ private void FirstbtnEnter()
+ {
+ if (_applianceUseType == null)
+ {
+ _applianceUseType = new List();
+ ApplianceUseType _nowApplianceUseType = BApplianceUseType.SelectSingle(1, RecursiveType.None, 0);
+ _applianceUseType.Add(_nowApplianceUseType);
+ DataTable newDataTable = null;
+ if (_applianceUseType.Count > 0) _appliance = BAppliance.GetApplianiceNumberByIds(_applianceUseType[0].TheApplianceId, _applianceUseType[0].ApplianceNumber);
+ newDataTable = _appliance.Clone();
+ foreach (ApplianceUseType item in _applianceUseType)
+ {
+ if (item.TheApplianceId != null && item.TheApplianceId != "")
+ {
+ DataTable dt = BAppliance.GetApplianiceNumberByIds(item.TheApplianceId, item.ApplianceNumber);
+ object[] obj = new object[newDataTable.Columns.Count];
+ //添加DataTable1的数据
+ for (int i = 0; i < dt.Rows.Count; i++)
+ {
+ dt.Rows[i].ItemArray.CopyTo(obj, 0);
+ newDataTable.Rows.Add(obj);
+ }
+ }
+ }
+ _appliance = newDataTable;
+ FullUcControlsToPanel(panel32, _appliance);
+ }
+ }
+ #endregion
+
+ #region 加载物品控件
+ int i = 0, j = 0;
+ int Incount = 0;
+ int IncRowsount = 20;
+ ///
+ /// 加载物品控件到指定的Panel
+ ///
+ /// 指定的Panel
+ /// 物品数据表
+ private void FullUcControlsToPanel(Panel panel, DataTable dt)
+ {
+ i = 0; j = 0; Incount = 0;
+ panel.Controls.Clear();
+ foreach (DataRow dr in dt.Rows)
+ {
+ if (Incount >= 60)
+ break;
+ ApplianceRecord applic = null;
+ if (_record.InstrumentList.ApplianceRecordList != null && _record.InstrumentList.ApplianceRecordList.Count > 0)
+ {
+ foreach (ApplianceRecord app in _record.InstrumentList.ApplianceRecordList)
+ {
+ if (app.ApplianceId != null && app.ApplianceId == Convert.ToInt32(dr["Id"]))
+ {
+ applic = app;
+ break;
+ }
+ }
+ }
+ //if (applic == null) continue;
+ UCOperationGoodsBill uc = new UCOperationGoodsBill(applic);
+ uc.SelectTextBoxEvent += Uc_SelectTextBoxEvent;
+ uc.OperationRecordId = Convert.ToInt32(_record.Id);
+ uc.GoodsId = Convert.ToInt32(dr["Id"]);
+ uc.GoodsName = dr["Name"].ToString();
+ if (applic == null)
+ {
+ string ApplianceNumber = dr["ApplianceNumber"].ToString();
+ if (_applianceUseType != null && _applianceUseType.Count == 1 && _applianceUseType[0].Id == 1)
+ ApplianceNumber = "";
+ uc.GoodsNumber = ApplianceNumber;
+ }
+ uc.Location = new Point((uc.Width) * i, (uc.Height - 1) * j);
+ uc.TabIndex = Incount + 1;
+ panel.Controls.Add(uc);
+ Incount++;
+ j++;
+ if (j == IncRowsount)
+ {
+ j = 0;
+ i++;
+ }
+ }
+ if (_record.InstrumentList.ApplianceRecordList != null && _record.InstrumentList.ApplianceRecordList.Count > 0)
+ {
+ foreach (ApplianceRecord app in _record.InstrumentList.ApplianceRecordList)
+ {
+ if (Incount >= 60)
+ break;
+ ApplianceRecord applic = null;
+ if (app.ApplianceId == 0)
+ {
+ applic = app;
+ }
+ if (applic == null) continue;
+ UCOperationGoodsBill uc = new UCOperationGoodsBill(applic);
+ uc.SelectTextBoxEvent += Uc_SelectTextBoxEvent;
+ uc.lblGoodsName.ReadOnly = false;
+ uc.OperationRecordId = Convert.ToInt32(_record.Id);
+ uc.GoodsName = app.ApplianceName;
+ uc.Location = new Point((uc.Width) * i, (uc.Height - 1) * j);
+ uc.TabIndex = Incount + 1;
+ panel.Controls.Add(uc);
+ Incount++;
+ j++;
+ if (j == IncRowsount)
+ {
+ j = 0;
+ i++;
+ }
+ }
+ }
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ ApplianceRecord app = new ApplianceRecord();
+ app.OperationRecordId = _record.Id.Value;
+ UCOperationGoodsBill uc = new UCOperationGoodsBill(app);
+ uc.SelectTextBoxEvent += Uc_SelectTextBoxEvent;
+ uc.lblGoodsName.ReadOnly = false;
+ uc.GoodsNumber = "";
+ uc.Location = new Point((uc.Width) * i, (uc.Height - 1) * j);
+ count++;
+ if (_record.InstrumentList.ApplianceRecordList != null) _record.InstrumentList.ApplianceRecordList.Add(app);
+ panel32.Controls.Add(uc);
+ j++;
+ if (j == 14)
+ {
+ j = 0;
+ i++;
+ }
+ }
+
+ private void Uc_SelectTextBoxEvent(object uc, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter)
+ {
+ SendKeys.Send("{TAB}");
+ }
+ else if (e.KeyCode == Keys.Left)
+ {
+ //MessageBox.Show(((uc as TextBox).TabIndex - 1).ToString());
+ foreach (Control item in ((uc as TextBox).Parent).Controls)
+ {
+ if (item.TabIndex == ((uc as TextBox).TabIndex - 1))
+ {
+ item.Focus();
+ }
+ }
+ }
+ else if (e.KeyCode == Keys.Right)
+ {
+ SendKeys.Send("{TAB}");
+ }
+ else if (e.KeyCode == Keys.Down)
+ {
+ SendKeys.Send("{TAB}");
+ SendKeys.Send("{TAB}");
+ SendKeys.Send("{TAB}");
+ SendKeys.Send("{TAB}");
+ SendKeys.Send("{TAB}");
+ }
+ }
+ #endregion
+
+ #region 自定义方法
+ private void PanelSave_Click(object sender, EventArgs e)
+ {
+ try
+ {
+ SaveImage(pictureBox1);
+
+ _record.InstrumentList.OperationRecordId = this._record.Id;
+ if (_applianceUseType != null)
+ {
+ List list = new List();
+ foreach (ApplianceUseType item in _applianceUseType)
+ {
+ list.Add(item.Id.Value);
+ }
+ _record.InstrumentList.ApplianceUseType = string.Join(",", list.ToArray());
+ }
+ _record.InstrumentList.TagPicture = Convert.ToBase64String(PublicToDoument.ImageToBytes(pictureBox1.Image));
+ _record.InstrumentList.JsonTextData = PublicToDoument.SerializeControl(panel18, _record, new List ());
+ _record.InstrumentList.OperatorNo = PublicMethod.OperatorNo;
+ _record.InstrumentList.OperatorName = PublicMethod.OperatorName;
+ _record.InstrumentList.OperateDate = DateTime.Now;
+ if (_record.InstrumentList.Id == null || _record.InstrumentList.Id == 0)
+ {
+ _record.InstrumentList.Id = BOperationRecordInstrumentList.Insert(_record.InstrumentList);
+ }
+ else
+ {
+ BOperationRecordInstrumentList.Update(_record.InstrumentList);
+ }
+ _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
+ BApplianceRecord.InsertListData(_record.InstrumentList.ApplianceRecordList);
+ string dirpath = @"C:\temp";
+ if (!Directory.Exists(dirpath))
+ Directory.CreateDirectory(dirpath);
+
+ if (templateManage != null)
+ {
+ ZedGraphControl send = sender as ZedGraphControl;
+ templateManage.BindTempData();
+ }
+ MessageBox.Show("保存成功!", "系统提示");
+
+ }
+ catch (Exception ex)
+ {
+ PublicMethod.WriteLog(ex);
+ }
+ }
+
+ private void superTabMain_SelectedTabChanged(object sender, DevComponents.DotNetBar.SuperTabStripSelectedTabChangedEventArgs e)
+ {
+
+ }
+
+ ///
+ /// 得到当前使用的器械对象集合
+ ///
+ ///
+ private List GetApplianceRecord()
+ {
+ List applianceRecordList = new List();
+ foreach (Control ctl in panel32.Controls)
+ {
+ ApplianceRecord applianceRecord = new ApplianceRecord();
+ if (ctl is UCOperationGoodsBill)
+ {
+ UCOperationGoodsBill ucOperationGoodsBill = ctl as UCOperationGoodsBill;
+ if (ucOperationGoodsBill.Id != null)
+ {
+ applianceRecord.Id = ucOperationGoodsBill.Id;
+ }
+ applianceRecord.OperationRecordId = this._record.Id;
+ applianceRecord.ApplianceId = ucOperationGoodsBill.GoodsId;
+ applianceRecord.ApplianceName = ucOperationGoodsBill.GoodsName;
+ if (_record.InstrumentList != null)
+ {
+ applianceRecord.OperationGoodsBillRecord = _record.InstrumentList.Id;
+ }
+ if (ucOperationGoodsBill.txtFront.Text != "")
+ applianceRecord.OpeFront = ucOperationGoodsBill.OpeFront;
+ else applianceRecord.OpeFront = null;
+ if (ucOperationGoodsBill.txtDoing.Text != "")
+ applianceRecord.OpeDoing = ucOperationGoodsBill.OpeDoing;
+ else applianceRecord.OpeDoing = null;
+ if (ucOperationGoodsBill.txtCloseFront.Text != "")
+ applianceRecord.CloseFront = ucOperationGoodsBill.CloseFront;
+ else applianceRecord.CloseFront = null;
+ if (ucOperationGoodsBill.txtCloseLast.Text != "")
+ applianceRecord.CloseLast = ucOperationGoodsBill.CloseLast;
+ else applianceRecord.CloseLast = null;
+ applianceRecordList.Add(applianceRecord);
+ }
+ }
+ return applianceRecordList;
+ }
+ #endregion
+
+ #endregion
+
+ #region 打印方法
+ public List mPanes = new List();
+ public List UpPanes = new List();
+ int m_startPrintPage;// 打印的起始页码
+ int m_endPrintPage;//打印的终止页码
+ int m_PageIndex;// 当前打印页码
+ int count = 0;
+ private void pDoc_PrintPage(object sender, PrintPageEventArgs e)
+ {
+ System.Drawing.Printing.PrintDocument pDoc = sender as System.Drawing.Printing.PrintDocument;
+ m_startPrintPage = pDoc.PrinterSettings.FromPage;
+ m_endPrintPage = pDoc.PrinterSettings.ToPage;
+ //if (pdg!=null)
+ //{
+ //m_startPrintPage = pdg.pa
+ //m_endPrintPage = pDoc.PrinterSettings.ToPage;
+ //}
+ if (m_startPrintPage == 0 && m_endPrintPage == 0)
+ {
+ int printCount = mPanes.Count;
+ if (mPanes.Count > 0 && count < printCount)
+ {
+ mPanes[count].Draw(e.Graphics);
+ count++;
+ if (count < printCount)
+ {
+ e.HasMorePages = true;
+ }
+ }
+ else
+ {
+ e.HasMorePages = false;
+ }
+ }
+ else
+ {
+ try
+ {
+ //如果当前打印页小于打印起始页码,就递增一页,直至等于打印起始页码
+ if (m_startPrintPage > 0)
+ {
+ while (m_PageIndex < m_startPrintPage)
+ {
+ m_PageIndex++;
+ }
+ }
+
+ mPanes[m_PageIndex - 1].Draw(e.Graphics);
+ //当前打印页加1
+ m_PageIndex++;
+
+ if (m_PageIndex <= m_endPrintPage)
+ {
+ e.HasMorePages = true;
+ }
+
+ //如果设置了打印页码范围并且当前打印页大于打印终止页码,终止打印,设置e.HasMorePages参数,初始化相关变量
+ if ((m_startPrintPage > 0) && (m_PageIndex > m_endPrintPage))
+ {
+ e.HasMorePages = false;
+ m_PageIndex = 1;
+ return;
+ }
+
+ }
+ catch (Exception ex)
+ {
+ //出错处理,终止打印,设置e.HasMorePages参数,初始化相关变量
+ e.HasMorePages = false;
+ m_PageIndex = 1;
+ }
+ }
+ }
+
+ private void plPrintBrowse_Click(object sender, EventArgs e)
+ {
+ if (_record == null || _record.Id == 0) return;
+ if (txtOutRoom.Focused)
+ {
+ zgcAnaesRecord.Focus();
+ }
+ if (templateManage != null)
+ {
+ _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
+ _record.InstrumentList.JsonTextData = PublicToDoument.SerializeControl(panel18, _record, new List());
+ }
+ mPanes = new List();
+ UpPanes = new List();
+ PrintDocPage(null, null);
+ count = 0;
+ System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();
+ pDoc.DefaultPageSettings.Landscape = false;
+ if (templateManage.Typesetting == TypesettingEnum.Horizontal)
+ {
+ pDoc.DefaultPageSettings.Landscape = true;
+ }
+ pDoc.OriginAtMargins = true;
+ pDoc.DefaultPageSettings.PrinterResolution.Kind = PrinterResolutionKind.High;
+ pDoc.DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
+ pDoc.PrintPage -= new PrintPageEventHandler(pDoc_PrintPage);
+ pDoc.PrintPage += new PrintPageEventHandler(pDoc_PrintPage);
+
+ PrintPreviewDialog pdg = new PrintPreviewDialog();
+ foreach (Control ctl in pdg.Controls)
+ {
+ if (ctl is ToolStrip)
+ {
+ ToolStrip toolbar = ctl as ToolStrip;
+ toolbar.Items.RemoveAt(0);
+ ToolStrip tb = ctl as ToolStrip;
+ //tb.ImageList.Images.Add(Properties.Resources.);
+ ToolStripButton settingBtn = new ToolStripButton();
+ settingBtn.ToolTipText = "打印";
+ settingBtn.Text = "打印";
+ //settingBtn.ImageIndex = tb.ImageList.Images.Count - 1;
+ settingBtn.Click += PageSetting_Click;
+ tb.Items.Insert(0, settingBtn);
+ }
+ }
+ pdg.Width = zgcAnaesRecord.Width + 50;
+ pdg.ClientSize = new System.Drawing.Size(zgcAnaesRecord.Width, zgcAnaesRecord.Height);
+ Form f = (Form)pdg;
+ f.WindowState = FormWindowState.Maximized;
+ pdg.Document = pDoc;
+ pdg.ShowDialog();
+ pdg.Focus();
+ pdg.BringToFront();
+
+ }
+ private void PageSetting_Click(object sender, EventArgs e)
+ {
+ plPrint_Click(null, null);
+ }
+
+ private void PrintDocPage(object sender, PrintPageEventArgs e)
+ {
+ PrintDocPane(e, zgcAnaesRecord, templateManage);
+ PrintDocPane(e, zgcAnaesRecord2, templateManage2);
+
+ }
+
+ private void PrintDocPane(PrintPageEventArgs e, ZedGraphControl zedGraph, TemplateManage template)
+ {
+ foreach (AreaManageBase area in template.ManageList)
+ {
+ area.setPrint(false);
+ area.BindTempData();
+ }
+ int zedGraphMainWidth = zedGraph.Size.Width;
+ int zedGraphMainHeight = zedGraph.Size.Height;
+
+ if (templateManage.Typesetting == TypesettingEnum.Horizontal)
+ {
+ int width = 1168;
+ int height = Convert.ToInt32(width / 1.414) - 2;
+ zedGraph.Size = new Size(width, height);
+ zedGraph.Width = width;
+ zedGraph.Height = height;
+ }
+ else
+ {
+ int width = 825;
+ int height = Convert.ToInt32(width * 1.414) + 2;
+ zedGraph.Size = new Size(width, height);
+ zedGraph.Width = width;
+ zedGraph.Height = height;
+ }
+
+ MasterPane mPane = zedGraph.MasterPane; //this.MasterPane;
+ mPane.Border.IsVisible = false;
+ GraphPane cPane = mPane.PaneList[0]; //graphPane;
+
+ //当前窗体中的矩形区域大小
+ RectangleF saveRect = mPane.Rect;
+ mPanes.Add(mPane.Clone());
+ if (e != null)
+ mPane.Draw(e.Graphics); //在打印文档中画出MasterPane内容
+ using (Graphics g = zedGraph.CreateGraphics())
+ {
+ mPane.ReSize(g, saveRect);
+ }
+
+ zedGraph.Size = new Size(zedGraphMainWidth, zedGraphMainHeight);
+ template.initChart();
+ UpPanes.Add(mPane.Clone());
+
+ Panel panel = zedGraph.Parent as Panel;
+ panel.VerticalScroll.Value = 0;
+ templateManage.SetPYL(true);
+ templateManage2.SetPYL(true);
+ foreach (AreaManageBase area in template.ManageList)
+ {
+ area.setPrint(true);
+ }
+ }
+
+ private void plPrint_Click(object sender, EventArgs e)
+ {
+ if (_record == null || _record.Id == 0) return;
+ if (txtOutRoom.Focused)
+ {
+ zgcAnaesRecord.Focus();
+ }
+
+ if (templateManage != null)
+ {
+ _record.InstrumentList.ApplianceRecordList = GetApplianceRecord();
+ _record.InstrumentList.JsonTextData = PublicToDoument.SerializeControl(panel18, _record, new List());
+ }
+ try
+ {
+ mPanes = new List();
+ UpPanes = new List();
+ PrintDocPage(null, null);
+ count = 0;
+ m_PageIndex = 0;
+ System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();
+ pDoc.DefaultPageSettings.Landscape = false;
+ if (templateManage.Typesetting == TypesettingEnum.Horizontal)
+ {
+ pDoc.DefaultPageSettings.Landscape = true;
+ }
+ pDoc.OriginAtMargins = true;
+ pDoc.DefaultPageSettings.PrinterResolution.Kind = PrinterResolutionKind.High;
+ pDoc.DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
+ pDoc.PrintPage -= new PrintPageEventHandler(pDoc_PrintPage);
+ pDoc.PrintPage += new PrintPageEventHandler(pDoc_PrintPage);
+
+ System.Windows.Forms.PrintDialog pDlg = new System.Windows.Forms.PrintDialog();
+ pDlg.Document = pDoc;
+ pDlg.AllowSomePages = true;
+ if (pDlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
+ {
+ pDoc.Print();
+ }
+ }
+ catch (Exception exp)
+ {
+ PublicMethod.WriteLog(exp, "");
+ }
+ }
+
+ #region 画小人
+
+
+ string str = null;
+ private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
+ {
+ Point p = e.Location;
+ AddLabelControlIntoPicBox(pictureBox1, p);
+
+ }
+ //在picturebox上添加Label
+ private void AddLabelControlIntoPicBox(PictureBox p_PicBox, Point point)
+ {
+ //Image myimage = p_PicBox.Image;
+ //Graphics g = Graphics.FromImage(myimage);
+ //g.DrawString(str, new Font("微软雅黑", 5), new SolidBrush(Color.Red), point.X, point.Y);
+ //p_PicBox.Image = myimage;
+ //g.Dispose();
+
+ System.Windows.Forms.Label mylable = new System.Windows.Forms.Label();
+ //TextBox mytextbox = new TextBox();
+ mylable.Location = new Point(point.X - 8, point.Y - 8);
+ mylable.Text = str;
+ mylable.Size = new Size(11, 11);
+ mylable.ForeColor = Color.Red;
+ mylable.BorderStyle = BorderStyle.None;
+ mylable.Font = new Font("微软雅黑", 7);
+ //mytextbox.BackColor = Color.Transparent;
+ //mytextbox.Size = new Size(1,1);
+ mylable.MouseDoubleClick += Mytextbox_MouseDoubleClick; ;
+ p_PicBox.Controls.Add(mylable);
+ // p_PicBox.Controls.Remove(mytextbox);
+ }
+ //双击清除标记
+ private void Mytextbox_MouseDoubleClick(object sender, MouseEventArgs e)
+ {
+ System.Windows.Forms.Label lbl = sender as System.Windows.Forms.Label;
+ pictureBox1.Controls.Remove(lbl);
+
+ }
+ //遍历picturebox上所有lable,将所有lable标记画在图片上
+ private void SaveImage(PictureBox p_PicBox)
+ {
+ foreach (Control clTemp in p_PicBox.Controls)
+ {
+
+ if (clTemp is System.Windows.Forms.Label)
+ {
+ System.Windows.Forms.Label lab = (clTemp as System.Windows.Forms.Label);
+ if (lab != null && lab.Text.Trim() != "")
+ {
+ DrawStringInImage(p_PicBox, lab.Location, lab.Text);
+ }
+ }
+
+ }
+ }
+
+ private void DrawStringInImage(PictureBox p_PicBox, Point point, String str1)
+ {
+ Image myimage = p_PicBox.Image;
+ Graphics g = Graphics.FromImage(myimage);
+ g.DrawString(str1, new Font("微软雅黑", 5), new SolidBrush(Color.Red), point.X, point.Y);
+ p_PicBox.Image = myimage;
+ g.Dispose();
+ }
+
+ private void radioButton1_CheckedChanged(object sender, EventArgs e)
+ {
+ RadioButton rad = sender as RadioButton;
+ if (rad.Checked)
+ {
+ str = rad.Text.Substring(0, 1);
+ }
+ }
+
+ private void buttonClear_Click(object sender, EventArgs e)
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGoodsBillRecord));
+ pictureBox1.Controls.Clear();
+ pictureBox1.Image = null;
+ pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
+ }
+
+ #endregion
+ #endregion
+
+ }
+}
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.resx b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.resx
new file mode 100644
index 0000000..b58911b
--- /dev/null
+++ b/AIMS/OperationDoing/AnasRecordBill/frmAnasRecordInstrument2.resx
@@ -0,0 +1,561 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+
+ 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
+
+
+
+ 62
+
+
+
+ AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAABMLAAATCwAAAAAAAAAA
+ AAD/////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////+//38/P/9+/r//v38////
+ /v//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////v5
+ 9//q2tD/4sq6/+rc0v/7+ff/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////37ef/5LGP/+Kdbv/jsZD/9uzl//7/////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////8+/r/79vO/+OZZv/jk1z/45lm/+nQwP/69/b/////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////+fb0/+bLuf/jlF3/45Nc/+OT
+ Xf/gvaT/9vHt////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////fy
+ 7//hv6r/45Re/+OTXP/jlF3/36+N//bs5f//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////27+r/3rac/+OUXf/jk1z/45Nd/+Omff/y4dX//f39////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////9uzl/96ujf/jlF3/45Nc/+OTXP/mnWz/58q2//fz
+ 8f//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////fp4P/hp4D/45Nd/+OT
+ XP/jk1z/45Ja/9+0l//z6uX/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////7/
+ ///14tX/5qFy/+OTXP/jk1z/4pJb/+OSW//fp4H/8+PZ////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////5+Pf/68+7/+OSW//jk1z/4pJc/92OWP/hkVv/5KBx//LZyf/9/f7/////////
+ ///////////////////////////////////////////////+/v/9+/r/+/j1//z39P/8+PX//Pn3//79
+ /f//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////9vLv/+TDq//jklv/4pJb/+GRW//djlj/4JBa/+OS
+ Wv/kvaL/9O7q///////////////////////////////////////////////////////59vT/69nN/9+7
+ ov/gtZf/37id/+HGsv/17Ob//fz7////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////Ts6P/guJ7/45Jb/+KT
+ XP/fkFr/3I5Y/+CRWv/jkVn/36yJ//Dj2f//////////////////////////////////////////////
+ ///38/H/6c68/+Knfv/il2P/4pdi/+KXY//jmmn/6bGM//Di2P/8+/r/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///z5+D/3q6O/+OSW//ilmH/3q2M/+O8ov/mqH//5JZh/+Cid//x28z/////////////////////////
+ ////////////////////////7NvP/+CqhP/jlF7/45Jb/+OTW//jk1v/45Nc/+SYY//jtZT/+O/p////
+ ////////////////////////////////////////////////////////////////////////+PLv/+nP
+ v//vwqP/78Kj/+/Co//vwqP/78Kj/+/Co//vwqP/78Kj/+/Co//vwaP/7cKl/+vOu//8+vj/////////
+ ////////////////////////8+TZ/9+ngP/jklr/45lm/+bOv//27ef/57mb/+KYZf/lnm7/7tC8//r6
+ +f//////+fLu/+jKtv/vwqT/78Kj/+/Co//vwqP/78Kk/+m1k//jnm//45Ja/+OTXP/jk1z/45Nc/+OT
+ XP/jk1z/4pln/+nPvf/59vT/////////////////////////////////////////////////////////
+ //////////////Xt6f/et57/5Jhk/+SYZP/kmGT/5Jhk/+SYZP/kmGT/5Jhk/+SYZP/kmGT/5Jhk/+OZ
+ Zv/ipHr/7d7U//38+/////////////////////////////bh0//koXT/45Re/+iofv/06+X//fz7/+TD
+ rf/hm2r/5JVf/+W5nP/y6ub//Pz7/+/d0P/jqYH/5Jhl/+SYZP/kmGT/5Jhk/+SYZP/lmWb/5JZh/+OT
+ XP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTW//guqL/9u/r////////////////////////////////////
+ ///////////////////////////////////17ej/3ree/+WaaP/lmmf/5Zpn/+WaZ//lmmf/5Zpn/+Wa
+ Z//lmmf/5Ztp/+WZZv/jklr/45hk/+HFsf/8+ff///////////////////////z9/f/y2sn/5qBx/+SW
+ Yf/rsov//fn2//7+/v/l0MH/4Z9x/+OPVv/fpoD/7d3S//by7//jwar/5pxq/+Wda//lmmj/5Zpn/+Wa
+ Z//lmmf/5Zxq/+SYY//jk1v/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1v/4Luj//bw7P//////////////
+ ////////////////////////////////////////////////////////+fXy/+3Yy//yzbT/8s20//LN
+ tP/yzbT/8s20//LNtP/yzbT/8s61/+3GrP/krIf/45Ja/+KXY//guZ3//Pj1////////////////////
+ ///39PL/6cmz/+WaZ//jlmH/6LOO//76+P//////7eLb/+Wthf/jlF3/4Z9x//DVw//06uP/3qyK/+SV
+ YP/prIP/8cux//LNtP/yzbT/8s62/+m5mv/jnW7/45Ja/+OTXP/jk1z/45Nc/+OTXP/jk1z/5Jto/+bK
+ t//49PL/////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////18e7/5MOt/+SXYv/jlmH/5LCN//ny
+ 7f//////////////////////8uzo/+K5nf/jkFf/4pdk/+O4mf/9+/n///////j29P/pwKT/45po/+Wb
+ af/wy7P/8dzO/+Kjef/jlmH/6LGM//369//////////////////t3ND/4ayI/+KVYP/jklr/45Jb/+OS
+ W//jk1v/5Jlm/+Sxjv/w4dj//Pv6////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////+vn4/+7Z
+ yv/lpHj/5JVf/+ene//u4NX//Pv6//////////////////Dl3f/fr4//45FZ/+KZZ//hwKj//fv6////
+ ////////5su4/+Cdb//lmWX/5rCM/+a1lv/mnWz/4pdk/+O4nP/9+vj/////////////////+Pb0/+vU
+ xP/irYj/4Zlo/+KYZP/imGX/4p5w/+i1kv/o08b/+vf1////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////26eH/36mE/+OTXP/jl2P/5Mq6//r39v/////////////////v3tL/3qV//+OR
+ Wf/inGz/482+//38+////////////+jWzP/hpn7/45Jb/+GRWv/hklv/45Nc/+Oeb//kzb7//fz7////
+ ///////////////////7+fj/7d/W/+LBqv/muJj/5rqc/+PLuf/v5d7//fz7////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////9e3n/96zlf/jk13/45Zh/9+8pf/59fH/////////
+ ////////8drK/+GhdP/jkln/5KJ0/+zf1//+/f3////////////x6uT/57qc/+KYZv/gkFn/4pJb/+SX
+ Y//ptJD/9e7q//7+/v////////////////////////////7+/f/+/fz//vz7//78+//+/fz//v7+////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////fy7//iwav/45Re/+OV
+ YP/fsJD/+fLt//////////////////TYxP/lnWz/5JZh/+u1kf/69vT////+/////////////////+vI
+ sv/gmmv/4pFa/+OSW//imWb/5ryg//78+///////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///6+Pb/69XH/+ekd//jlWD/5qmB//Tn3v/9/f3///////n5+P/uzrn/5p1s/+OXY//ruZj//v38////
+ ///////////////////p0sH/36F2/+OSWv/jklr/4Z1u/+PJuP/+/v3/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v////br4//iq4f/45Vf/+SZZv/p0cH/+vj2///////z7ur/5rye/+ST
+ XP/imWb/5r6h///+/f//////////////////////7N/V/+GqhP/jkFf/5Jdi/+ewi//r39f//v7+////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////48u3/3rWY/+OVX//jlF3/4L+p//fy
+ 7///////7uPc/+CujP/jkFf/4Ztr/+PDrf/+/v3///////////////////////Tv7P/pvqH/5Zdi/+KZ
+ Zv/nv6T/+vj2////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////+fXy/+HC
+ rP/jlV//45Rd/96ylf/27uj//////+zZzf/fpX7/45FY/+GecP/kzLz//v7+////////////////////
+ ///9/f3/7NTF/9+phv/grYr/69fJ////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////v59//p1cb/5Z9w/+OUXv/hqYT/9ejf///////u1MH/4J9z/+OQV//jonb/6drQ///+
+ /v////////////////////////////bv6//t28//8N/T//fz8P//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////+/f3/9erj/+WtiP/jlmD/5J1u/+7Xyf/7/f7/8dG7/+Oc
+ a//jk1z/6LCJ//Tv6///////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////v28v/ftZf/4pZi/+OS
+ Wv/kvqX/8ube//DIrf/lm2j/45hk/+3Aov//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///7+PX/4MKs/+KXZP/jklv/3qR9/+S0lP/mrIP/5Jll/+GZaP/pwqj/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////Pr5/+bSxP/knGv/4pFc/9+QWv/gkVv/35Ba/+CPWP/gnW//5sm1////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////79/f/06uX/6K+J/+OVYP/gkVr/35Ba/+CQ
+ Wv/ikFj/4KJ2/+bSw///////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////////Pn2/+O4
+ mv/il2T/349Y/9+QWf/gkFr/4pBZ/+Knfv/p29L/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////37+f/hwq3/4ppo/+KRWv/fj1n/349Z/+SYZf/ouJj/7+fi////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////9/Pv/5dLF/+OcbP/jklr/4pJb/+KRWv/kmmj/7saq//z8
+ +///////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////v39//Ho4v/nrYX/45Vg/+OT
+ XP/jklv/4pxs/+3LtP//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///7+ff/5rue/+KZZv/jklv/45Ja/+Cfc//qz73/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v39/+PEsP/hm2v/45Ja/+ORWf/fpHz/6dbJ////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////7+/f/l0cX/4p9x/+OSWf/jkVj/4aqF/+zf
+ 1///////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////v7/7uXf/+Wq
+ gf/jk1z/5JNc/+W1lP/w6eT/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////v6+f/qv6H/45hl/+Scav/ryK//9/Xz////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////58u3/+Ghdf/go3n/7tfG////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////Tu6v/m0cT/5M7A//Pr
+ 5f//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///+/f3//Pr4//v5+P/9/fz/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
+
+
+
\ No newline at end of file
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmFactEventsNew.cs b/AIMS/OperationDoing/AnasRecordBill/frmFactEventsNew.cs
index a26b5b1..ddfee8c 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmFactEventsNew.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmFactEventsNew.cs
@@ -615,8 +615,8 @@ namespace AIMS.PublicUI.UI
if (_event != null && _event.EventName == "手术结束") { _record.OperationEndTime = null; }
if (_event != null && _event.EventName == "麻醉开始") { _record.AnesthesiaBeginTime = null; }
if (_event != null && _event.EventName == "麻醉完成") { _record.AnesthesiaEndTime = null; }
- if (_event != null && _event.EventName == "插管") { _record.InCGTime = null; }
- if (_event != null && _event.EventName == "拔管") { _record.OutCGTime = null; }
+ if (_event != null && _event.EventName == "插管") { _record.SpileInTime = null; }
+ if (_event != null && _event.EventName == "拔管") { _record.SpileOutTime = null; }
if (_event != null && _event.EventName == "出室") { _record.OutRoomTime = null; }
BOperationRecord.Update("OperationBeginTime=@OperationBegin,OperationEndTime=@OperationEnd,OutRoomTime=@OutRoom where id=@id", new AIMSModel.ParameterList("@OperationBegin", _record.OperationBeginTime.HasValue ? (object)_record.OperationBeginTime.Value : (object)DBNull.Value, "@OperationEnd", _record.OperationEndTime.HasValue ? (object)_record.OperationEndTime.Value : (object)DBNull.Value, "@OutRoom", _record.OutRoomTime.HasValue ? (object)_record.OutRoomTime.Value : (object)DBNull.Value, "@id", _record.Id));
}
diff --git a/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew.cs b/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew.cs
index 14160ee..a2ff6ba 100644
--- a/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew.cs
+++ b/AIMS/OperationDoing/AnasRecordBill/frmOperationInfoNew.cs
@@ -406,7 +406,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
OPInfo.AnesthesiaMethodChangeReason = txtCause.Text.Trim();
OPInfo.AnesthesiaMethodChangeTime = dtpTime.Value;
}
-
+
OPInfo.OperatorId = PublicMethod.OperatorName;
if (OPInfo.Id == null)
{
diff --git a/AIMS/OperationDoing/AnasRecoverBill/frmAnasRecoverBill.cs b/AIMS/OperationDoing/AnasRecoverBill/frmAnasRecoverBill.cs
index 03b8d4a..2b11dc3 100644
--- a/AIMS/OperationDoing/AnasRecoverBill/frmAnasRecoverBill.cs
+++ b/AIMS/OperationDoing/AnasRecoverBill/frmAnasRecoverBill.cs
@@ -462,7 +462,7 @@ namespace AIMS.OperationDoing.AnasRecoverBill.UI
}
if (Inevent != null && Inevent.EventName == "拔管")
{
- _record.OutCGTime = null;
+ _record.SpileOutTime = null;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管;
}
@@ -533,9 +533,9 @@ namespace AIMS.OperationDoing.AnasRecoverBill.UI
_record.InRoomTime = Inevent.EventBeginTime;
this.picInRoom.BackgroundImage = global::AIMS.Properties.Resources.入手术室_select;
}
- if (Inevent != null && Inevent.EventName == "拔管" && _record.OutCGTime != Inevent.EventBeginTime)
+ if (Inevent != null && Inevent.EventName == "拔管" && _record.SpileOutTime != Inevent.EventBeginTime)
{
- _record.OutCGTime = Inevent.EventBeginTime;
+ _record.SpileOutTime = Inevent.EventBeginTime;
this.picBG.BackgroundImage = global::AIMS.Properties.Resources.拔管_select;
}
if (Inevent != null && Inevent.EventName == "麻醉完成" && _record.AnesthesiaEndTime != Inevent.EventBeginTime)
@@ -865,7 +865,7 @@ namespace AIMS.OperationDoing.AnasRecoverBill.UI
{
HelperDB.DbHelperSQL.BeginTrans();
BOperationApply.UpdateApplyState(ApplyId, 8);
- BOperationRecord.DeleteOperationRecorvreData( PatientId, RecoverId);
+ BOperationRecord.DeleteOperationRecorvreData(_record.Id.Value, PatientId, RecoverId);
HelperDB.DbHelperSQL.CommitTrans();
DisposeTimer();
@@ -1186,14 +1186,14 @@ namespace AIMS.OperationDoing.AnasRecoverBill.UI
{
if (key == "自主呼吸")
{
- if (_record.InCGTime != null && _record.OutCGTime != null)
+ if (_record.SpileInTime != null && _record.SpileOutTime != null)
{
- if (time > _record.InCGTime && time < _record.OutCGTime)
+ if (time > _record.SpileInTime && time < _record.SpileOutTime)
b = true;
}
- if (_record.InCGTime != null && _record.OutCGTime == null)
+ if (_record.SpileInTime != null && _record.SpileOutTime == null)
{
- if (time > _record.InCGTime)
+ if (time > _record.SpileInTime)
b = true;
}
}
diff --git a/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.Designer.cs b/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.Designer.cs
new file mode 100644
index 0000000..6dfb59d
--- /dev/null
+++ b/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.Designer.cs
@@ -0,0 +1,535 @@
+namespace AIMS.OperationDoing.AnasRecordBill.UI
+{
+ partial class frmSelectPatientGoodsBill2
+ {
+ ///
+ /// 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSelectPatientGoodsBill2));
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.label1 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.cboRoom = new System.Windows.Forms.ComboBox();
+ this.btnFrontDay = new System.Windows.Forms.Button();
+ this.btnNextDay = new System.Windows.Forms.Button();
+ this.dtpSelectPatientTime = new System.Windows.Forms.DateTimePicker();
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
+ this.txtState = new System.Windows.Forms.Label();
+ this.txttime = new System.Windows.Forms.Label();
+ this.txtage = new System.Windows.Forms.Label();
+ this.txtsex = new System.Windows.Forms.Label();
+ this.txtdept = new System.Windows.Forms.Label();
+ this.txtNo = new System.Windows.Forms.Label();
+ this.txths = new System.Windows.Forms.Label();
+ this.txtmzys = new System.Windows.Forms.Label();
+ this.txtzdys = new System.Windows.Forms.Label();
+ this.txtss = new System.Windows.Forms.Label();
+ this.txtzd = new System.Windows.Forms.Label();
+ this.txtname = new System.Windows.Forms.Label();
+ this.label5 = new System.Windows.Forms.Label();
+ this.txtRoom = new System.Windows.Forms.Label();
+ this.label11 = new System.Windows.Forms.Label();
+ this.label15 = new System.Windows.Forms.Label();
+ this.label21 = new System.Windows.Forms.Label();
+ this.label9 = new System.Windows.Forms.Label();
+ this.label19 = new System.Windows.Forms.Label();
+ this.label13 = new System.Windows.Forms.Label();
+ this.label25 = new System.Windows.Forms.Label();
+ this.label17 = new System.Windows.Forms.Label();
+ this.label23 = new System.Windows.Forms.Label();
+ this.txtType = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.groupBox2 = new System.Windows.Forms.GroupBox();
+ this.panel3 = new System.Windows.Forms.Panel();
+ this.panel1.SuspendLayout();
+ this.groupBox1.SuspendLayout();
+ this.panel2.SuspendLayout();
+ this.groupBox2.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // panel1
+ //
+ this.panel1.BackColor = System.Drawing.Color.AliceBlue;
+ this.panel1.Controls.Add(this.label1);
+ this.panel1.Controls.Add(this.label2);
+ this.panel1.Controls.Add(this.cboRoom);
+ this.panel1.Controls.Add(this.btnFrontDay);
+ this.panel1.Controls.Add(this.btnNextDay);
+ this.panel1.Controls.Add(this.dtpSelectPatientTime);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.panel1.Font = new System.Drawing.Font("宋体", 10.5F);
+ this.panel1.Location = new System.Drawing.Point(0, 0);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(999, 39);
+ this.panel1.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(12, 9);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(65, 20);
+ this.label1.TabIndex = 7;
+ this.label1.Text = "手术日期";
+ //
+ // 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(291, 8);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(51, 20);
+ this.label2.TabIndex = 6;
+ this.label2.Text = "手术间";
+ //
+ // cboRoom
+ //
+ this.cboRoom.FormattingEnabled = true;
+ this.cboRoom.Location = new System.Drawing.Point(345, 8);
+ this.cboRoom.Name = "cboRoom";
+ this.cboRoom.Size = new System.Drawing.Size(121, 22);
+ this.cboRoom.TabIndex = 5;
+ //
+ // btnFrontDay
+ //
+ this.btnFrontDay.BackColor = System.Drawing.Color.Transparent;
+ this.btnFrontDay.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnFrontDay.BackgroundImage")));
+ this.btnFrontDay.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnFrontDay.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnFrontDay.FlatAppearance.BorderSize = 0;
+ this.btnFrontDay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnFrontDay.Location = new System.Drawing.Point(213, 7);
+ this.btnFrontDay.Name = "btnFrontDay";
+ this.btnFrontDay.Size = new System.Drawing.Size(34, 24);
+ this.btnFrontDay.TabIndex = 2;
+ this.btnFrontDay.UseVisualStyleBackColor = false;
+ this.btnFrontDay.Click += new System.EventHandler(this.btnFrontDay_Click);
+ //
+ // btnNextDay
+ //
+ this.btnNextDay.BackColor = System.Drawing.Color.Transparent;
+ this.btnNextDay.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnNextDay.BackgroundImage")));
+ this.btnNextDay.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
+ this.btnNextDay.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnNextDay.FlatAppearance.BorderSize = 0;
+ this.btnNextDay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnNextDay.Location = new System.Drawing.Point(251, 7);
+ this.btnNextDay.Name = "btnNextDay";
+ this.btnNextDay.Size = new System.Drawing.Size(34, 24);
+ this.btnNextDay.TabIndex = 1;
+ this.btnNextDay.UseVisualStyleBackColor = false;
+ this.btnNextDay.Click += new System.EventHandler(this.btnNext_Click);
+ //
+ // dtpSelectPatientTime
+ //
+ this.dtpSelectPatientTime.CustomFormat = "yyyy-MM-dd";
+ this.dtpSelectPatientTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
+ this.dtpSelectPatientTime.Location = new System.Drawing.Point(79, 9);
+ this.dtpSelectPatientTime.Name = "dtpSelectPatientTime";
+ this.dtpSelectPatientTime.Size = new System.Drawing.Size(111, 23);
+ this.dtpSelectPatientTime.TabIndex = 0;
+ this.dtpSelectPatientTime.ValueChanged += new System.EventHandler(this.dtpSelectPatientTime_ValueChanged);
+ //
+ // groupBox1
+ //
+ this.groupBox1.BackColor = System.Drawing.Color.AliceBlue;
+ this.groupBox1.Controls.Add(this.panel2);
+ this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
+ this.groupBox1.Location = new System.Drawing.Point(0, 39);
+ this.groupBox1.Name = "groupBox1";
+ this.groupBox1.Size = new System.Drawing.Size(999, 103);
+ this.groupBox1.TabIndex = 1;
+ this.groupBox1.TabStop = false;
+ this.groupBox1.Text = "患者信息";
+ //
+ // panel2
+ //
+ this.panel2.AutoScroll = true;
+ this.panel2.Controls.Add(this.buttonX1);
+ this.panel2.Controls.Add(this.txtState);
+ this.panel2.Controls.Add(this.txttime);
+ this.panel2.Controls.Add(this.txtage);
+ this.panel2.Controls.Add(this.txtsex);
+ this.panel2.Controls.Add(this.txtdept);
+ this.panel2.Controls.Add(this.txtNo);
+ this.panel2.Controls.Add(this.txths);
+ this.panel2.Controls.Add(this.txtmzys);
+ this.panel2.Controls.Add(this.txtzdys);
+ this.panel2.Controls.Add(this.txtss);
+ this.panel2.Controls.Add(this.txtzd);
+ this.panel2.Controls.Add(this.txtname);
+ this.panel2.Controls.Add(this.label5);
+ this.panel2.Controls.Add(this.txtRoom);
+ this.panel2.Controls.Add(this.label11);
+ this.panel2.Controls.Add(this.label15);
+ this.panel2.Controls.Add(this.label21);
+ this.panel2.Controls.Add(this.label9);
+ this.panel2.Controls.Add(this.label19);
+ this.panel2.Controls.Add(this.label13);
+ this.panel2.Controls.Add(this.label25);
+ this.panel2.Controls.Add(this.label17);
+ this.panel2.Controls.Add(this.label23);
+ this.panel2.Controls.Add(this.txtType);
+ this.panel2.Controls.Add(this.label3);
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel2.Location = new System.Drawing.Point(3, 17);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(993, 83);
+ this.panel2.TabIndex = 0;
+ this.panel2.Visible = false;
+ //
+ // buttonX1
+ //
+ this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
+ this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
+ this.buttonX1.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.buttonX1.Location = new System.Drawing.Point(781, 14);
+ this.buttonX1.Name = "buttonX1";
+ this.buttonX1.Size = new System.Drawing.Size(121, 54);
+ this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.buttonX1.TabIndex = 6;
+ this.buttonX1.Text = "查看器械清点单";
+ this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
+ //
+ // txtState
+ //
+ this.txtState.AutoSize = true;
+ this.txtState.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold);
+ this.txtState.ForeColor = System.Drawing.Color.Red;
+ this.txtState.Location = new System.Drawing.Point(687, 24);
+ this.txtState.Name = "txtState";
+ this.txtState.Size = new System.Drawing.Size(69, 26);
+ this.txtState.TabIndex = 5;
+ this.txtState.Text = "手术中";
+ //
+ // txttime
+ //
+ this.txttime.AutoSize = true;
+ this.txttime.Location = new System.Drawing.Point(607, 14);
+ this.txttime.Name = "txttime";
+ this.txttime.Size = new System.Drawing.Size(11, 12);
+ this.txttime.TabIndex = 5;
+ this.txttime.Text = " ";
+ //
+ // txtage
+ //
+ this.txtage.AutoSize = true;
+ this.txtage.Location = new System.Drawing.Point(454, 14);
+ this.txtage.Name = "txtage";
+ this.txtage.Size = new System.Drawing.Size(11, 12);
+ this.txtage.TabIndex = 5;
+ this.txtage.Text = " ";
+ //
+ // txtsex
+ //
+ this.txtsex.AutoSize = true;
+ this.txtsex.Location = new System.Drawing.Point(375, 14);
+ this.txtsex.Name = "txtsex";
+ this.txtsex.Size = new System.Drawing.Size(11, 12);
+ this.txtsex.TabIndex = 5;
+ this.txtsex.Text = " ";
+ //
+ // txtdept
+ //
+ this.txtdept.AutoSize = true;
+ this.txtdept.Location = new System.Drawing.Point(115, 34);
+ this.txtdept.Name = "txtdept";
+ this.txtdept.Size = new System.Drawing.Size(11, 12);
+ this.txtdept.TabIndex = 5;
+ this.txtdept.Text = " ";
+ //
+ // txtNo
+ //
+ this.txtNo.AutoSize = true;
+ this.txtNo.Location = new System.Drawing.Point(127, 14);
+ this.txtNo.Name = "txtNo";
+ this.txtNo.Size = new System.Drawing.Size(11, 12);
+ this.txtNo.TabIndex = 5;
+ this.txtNo.Text = " ";
+ //
+ // txths
+ //
+ this.txths.AutoSize = true;
+ this.txths.Location = new System.Drawing.Point(535, 34);
+ this.txths.Name = "txths";
+ this.txths.Size = new System.Drawing.Size(11, 12);
+ this.txths.TabIndex = 5;
+ this.txths.Text = " ";
+ //
+ // txtmzys
+ //
+ this.txtmzys.AutoSize = true;
+ this.txtmzys.Location = new System.Drawing.Point(397, 34);
+ this.txtmzys.Name = "txtmzys";
+ this.txtmzys.Size = new System.Drawing.Size(11, 12);
+ this.txtmzys.TabIndex = 5;
+ this.txtmzys.Text = " ";
+ //
+ // txtzdys
+ //
+ this.txtzdys.AutoSize = true;
+ this.txtzdys.Location = new System.Drawing.Point(261, 34);
+ this.txtzdys.Name = "txtzdys";
+ this.txtzdys.Size = new System.Drawing.Size(11, 12);
+ this.txtzdys.TabIndex = 5;
+ this.txtzdys.Text = " ";
+ //
+ // txtss
+ //
+ this.txtss.AutoSize = true;
+ this.txtss.Location = new System.Drawing.Point(454, 56);
+ this.txtss.Name = "txtss";
+ this.txtss.Size = new System.Drawing.Size(11, 12);
+ this.txtss.TabIndex = 5;
+ this.txtss.Text = " ";
+ //
+ // txtzd
+ //
+ this.txtzd.AutoSize = true;
+ this.txtzd.Location = new System.Drawing.Point(134, 56);
+ this.txtzd.Name = "txtzd";
+ this.txtzd.Size = new System.Drawing.Size(11, 12);
+ this.txtzd.TabIndex = 5;
+ this.txtzd.Text = " ";
+ //
+ // txtname
+ //
+ this.txtname.AutoSize = true;
+ this.txtname.Location = new System.Drawing.Point(261, 14);
+ this.txtname.Name = "txtname";
+ this.txtname.Size = new System.Drawing.Size(11, 12);
+ this.txtname.TabIndex = 5;
+ this.txtname.Text = " ";
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(525, 14);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(77, 12);
+ this.label5.TabIndex = 5;
+ this.label5.Text = "申请预约时间";
+ //
+ // txtRoom
+ //
+ this.txtRoom.AutoSize = true;
+ this.txtRoom.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold);
+ this.txtRoom.Location = new System.Drawing.Point(10, 23);
+ this.txtRoom.Name = "txtRoom";
+ this.txtRoom.Size = new System.Drawing.Size(49, 19);
+ this.txtRoom.TabIndex = 5;
+ this.txtRoom.Text = "一间";
+ //
+ // label11
+ //
+ this.label11.AutoSize = true;
+ this.label11.Location = new System.Drawing.Point(421, 14);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(29, 12);
+ this.label11.TabIndex = 5;
+ this.label11.Text = "年龄";
+ //
+ // label15
+ //
+ this.label15.AutoSize = true;
+ this.label15.Location = new System.Drawing.Point(75, 34);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(29, 12);
+ this.label15.TabIndex = 5;
+ this.label15.Text = "科室";
+ //
+ // label21
+ //
+ this.label21.AutoSize = true;
+ this.label21.Location = new System.Drawing.Point(476, 34);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(53, 12);
+ this.label21.TabIndex = 5;
+ this.label21.Text = "术中护士";
+ //
+ // label9
+ //
+ this.label9.AutoSize = true;
+ this.label9.Location = new System.Drawing.Point(342, 14);
+ this.label9.Name = "label9";
+ this.label9.Size = new System.Drawing.Size(29, 12);
+ this.label9.TabIndex = 5;
+ this.label9.Text = "性别";
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Location = new System.Drawing.Point(338, 34);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(53, 12);
+ this.label19.TabIndex = 5;
+ this.label19.Text = "麻醉医生";
+ //
+ // label13
+ //
+ this.label13.AutoSize = true;
+ this.label13.Location = new System.Drawing.Point(75, 14);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(41, 12);
+ this.label13.TabIndex = 5;
+ this.label13.Text = "住院号";
+ //
+ // label25
+ //
+ this.label25.AutoSize = true;
+ this.label25.Location = new System.Drawing.Point(395, 56);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(53, 12);
+ this.label25.TabIndex = 5;
+ this.label25.Text = "拟施手术";
+ //
+ // label17
+ //
+ this.label17.AutoSize = true;
+ this.label17.Location = new System.Drawing.Point(202, 34);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(53, 12);
+ this.label17.TabIndex = 5;
+ this.label17.Text = "主刀医生";
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Location = new System.Drawing.Point(75, 56);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(53, 12);
+ this.label23.TabIndex = 5;
+ this.label23.Text = "术前诊断";
+ //
+ // txtType
+ //
+ this.txtType.AutoSize = true;
+ this.txtType.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtType.ForeColor = System.Drawing.Color.Red;
+ this.txtType.Location = new System.Drawing.Point(22, 52);
+ this.txtType.Name = "txtType";
+ this.txtType.Size = new System.Drawing.Size(24, 16);
+ this.txtType.TabIndex = 5;
+ this.txtType.Text = "急";
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(202, 14);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(53, 12);
+ this.label3.TabIndex = 5;
+ this.label3.Text = "患者姓名";
+ //
+ // groupBox2
+ //
+ this.groupBox2.BackColor = System.Drawing.Color.AliceBlue;
+ this.groupBox2.Controls.Add(this.panel3);
+ this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.groupBox2.Location = new System.Drawing.Point(0, 142);
+ this.groupBox2.Name = "groupBox2";
+ this.groupBox2.Size = new System.Drawing.Size(999, 495);
+ this.groupBox2.TabIndex = 2;
+ this.groupBox2.TabStop = false;
+ this.groupBox2.Text = "手术患者";
+ //
+ // panel3
+ //
+ this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel3.Location = new System.Drawing.Point(3, 17);
+ this.panel3.Name = "panel3";
+ this.panel3.Size = new System.Drawing.Size(993, 475);
+ this.panel3.TabIndex = 0;
+ //
+ // frmSelectPatientGoodsBill2
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(999, 637);
+ this.Controls.Add(this.groupBox2);
+ this.Controls.Add(this.groupBox1);
+ this.Controls.Add(this.panel1);
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.MinimizeBox = false;
+ this.Name = "frmSelectPatientGoodsBill2";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "选择患者";
+ this.Load += new System.EventHandler(this.frmSelectPatientGoodsBill2_Load);
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.groupBox1.ResumeLayout(false);
+ this.panel2.ResumeLayout(false);
+ this.panel2.PerformLayout();
+ this.groupBox2.ResumeLayout(false);
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.DateTimePicker dtpSelectPatientTime;
+ private System.Windows.Forms.Button btnNextDay;
+ private System.Windows.Forms.Button btnFrontDay;
+ private System.Windows.Forms.GroupBox groupBox1;
+ private System.Windows.Forms.GroupBox groupBox2;
+ private System.Windows.Forms.Panel panel2;
+ private System.Windows.Forms.Panel panel3;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.ComboBox cboRoom;
+ private System.Windows.Forms.Label label1;
+ private DevComponents.DotNetBar.ButtonX buttonX1;
+ private System.Windows.Forms.Label txtState;
+ private System.Windows.Forms.Label txttime;
+ private System.Windows.Forms.Label txtage;
+ private System.Windows.Forms.Label txtsex;
+ private System.Windows.Forms.Label txtdept;
+ private System.Windows.Forms.Label txtNo;
+ private System.Windows.Forms.Label txths;
+ private System.Windows.Forms.Label txtmzys;
+ private System.Windows.Forms.Label txtzdys;
+ private System.Windows.Forms.Label txtss;
+ private System.Windows.Forms.Label txtzd;
+ private System.Windows.Forms.Label txtname;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.Label txtRoom;
+ private System.Windows.Forms.Label label11;
+ private System.Windows.Forms.Label label15;
+ private System.Windows.Forms.Label label21;
+ private System.Windows.Forms.Label label9;
+ private System.Windows.Forms.Label label19;
+ private System.Windows.Forms.Label label13;
+ private System.Windows.Forms.Label label25;
+ private System.Windows.Forms.Label label17;
+ private System.Windows.Forms.Label label23;
+ private System.Windows.Forms.Label txtType;
+ private System.Windows.Forms.Label label3;
+ }
+}
\ No newline at end of file
diff --git a/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.cs b/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.cs
new file mode 100644
index 0000000..35bf42f
--- /dev/null
+++ b/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.cs
@@ -0,0 +1,175 @@
+using AIMS.OremrUserControl;
+using AIMSBLL;
+using AIMSModel;
+using DrawGraph;
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Drawing;
+using System.Windows.Forms;
+
+namespace AIMS.OperationDoing.AnasRecordBill.UI
+{
+ public partial class frmSelectPatientGoodsBill2 : Form
+ {
+
+ public int SelPatientId;
+ public int SelApplyId;
+ public bool isMainOpen = false;
+
+ public frmSelectPatientGoodsBill2()
+ {
+ InitializeComponent();
+ }
+
+ private void frmSelectPatientGoodsBill2_Load(object sender, EventArgs e)
+ {
+ List rooms = BOperationRoom.GetOperationRooms("IsValid=1 and Site='手术室'");
+ rooms.Insert(0, new OperationRoom() { Id = -1, Name = "" });
+ cboRoom.DataSource = rooms;
+ cboRoom.DisplayMember = "Name";
+ cboRoom.ValueMember = "Id";
+
+ FillDgv();
+
+ this.cboRoom.SelectedIndexChanged += new System.EventHandler(this.cboRoom_SelectedIndexChanged);
+ }
+
+
+
+ void dgv_DataError(object sender, DataGridViewDataErrorEventArgs e)
+ {
+
+ }
+
+ private void btnNext_Click(object sender, EventArgs e)
+ {
+ dtpSelectPatientTime.Value = dtpSelectPatientTime.Value.AddDays(1);
+ }
+ private void btnFrontDay_Click(object sender, EventArgs e)
+ {
+ dtpSelectPatientTime.Value = dtpSelectPatientTime.Value.AddDays(-1);
+ }
+
+ private void dtpSelectPatientTime_ValueChanged(object sender, EventArgs e)
+ {
+ FillDgv();
+ }
+
+ private void FillDgv()
+ {
+ panel3.Controls.Clear();
+ panel2.Visible = false;
+ int i = 0, j = 0;
+
+ DataTable dt2 = SelectPatient.GetRelieveLockingPatientDataTable
+ (DateTime.Parse(dtpSelectPatientTime.Value.ToString("yyyy-MM-dd").ToString()), cboRoom.SelectedValue.ToString());
+ foreach (DataRow dr in dt2.Rows)
+ {
+ ucPatientCard uc = new ucPatientCard(dr);
+ uc.buttonX2.Visible = false;
+ uc.buttonX1.Text = "查看手术清点单";
+ uc.buttonX1.Size = new Size(uc.buttonX1.Size.Width + 40, uc.buttonX1.Size.Height);
+ uc.InRoom += Uc_InRoom;
+ uc.Clicks += Uc_Clicks;
+ uc.Location = new Point((uc.Width + 9) * j, (uc.Height + 10) * i + 30);
+ panel3.Controls.Add(uc);
+ j++;
+ if (j == 5)
+ {
+ i++;
+ j = 0;
+ }
+ //防止显示全部卡顿
+ if (i >= 10) break;
+ }
+
+ }
+
+ private void Uc_Clicks(ucPatientCard uc, int PatientId, int applyId, DataRow dr)
+ {
+ SelPatientId = PatientId;
+ SelApplyId = applyId;
+ txtType.Text = dr["OperationType"].ToString();
+ txtNo.Text = dr["MdrecNo"].ToString();
+ txtname.Text = dr["PatientName"].ToString();
+ txtsex.Text = dr["sex"].ToString();
+ txtage.Text = dr["age"].ToString();
+ txtss.Text = dr["ApplyOperationInfoName"].ToString();
+ txtmzys.Text = dr["AnesthesiaDoctor"].ToString();
+ txttime.Text = dr["PlanOperationTime"].ToString();
+ txtdept.Text = dr["ApplyDepName"].ToString();
+ txtzdys.Text = dr["OperationDoctor"].ToString();
+ txths.Text = dr["InstrumentNurse"].ToString() + " " + dr["TourNurse"].ToString();
+ txtzd.Text = dr["ApplyDiagnoseInfoName"].ToString();
+ txtRoom.Text = dr["OperationRoom"].ToString();
+ txtRoom.Tag = dr["OperationRoomId"].ToString();
+ if (!txtType.Text.Contains("急")) txtType.ForeColor = Color.DarkGreen;
+ else txtType.ForeColor = Color.Red;
+ txtState.Text = dr["State"].ToString();
+ label5.Text = "手术开始时间";
+ label23.Text = "术中诊断";
+ label25.Text = "实施手术";
+ buttonX1.Text = uc.buttonX1.Text;
+ panel2.Visible = true;
+ }
+
+ private void Uc_InRoom(ucPatientCard uc, int PatientId, int applyId)
+ {
+ string RoomStr = uc.Tag.ToString();
+ SatrtOperation(uc.buttonX1.Text, PatientId, applyId, int.Parse(RoomStr));
+ }
+
+ private void SatrtOperation(string State, int PatientId, int applyId, int RoomId)
+ {
+ //try
+ //{
+ // OperationRecord _record = new OperationRecord();
+ // _record = BOperationRecord.getRecord(_record, PatientId, 1);
+ // if (_record == null || _record.Id == 0) return;
+ // frmGoodsBillRecord frm = new frmGoodsBillRecord();
+ // frm._record = _record;
+ // frm.Show();
+ // frm.Focus();
+ // frm.BringToFront();
+ //}
+ //catch (Exception ex)
+ //{
+ // AIMSExtension.PublicMethod.WriteLog(ex);
+ //}
+ try
+ {
+ AIMS.OperationDoing.AnasRecordBill.UI.frmAnasRecordInstrument2 frmAnasRecord = new frmAnasRecordInstrument2();
+ frmAnasRecord.PatientId = PatientId;
+ frmAnasRecord.ApplyId = applyId;
+ frmAnasRecord.NowRoom = AIMSBLL.BOperationRoom.SelectSingle(RoomId);
+ frmAnasRecord.State = AIMSExtension.EditState.BROWSE;
+ if (isMainOpen == false)
+ {
+ frmAnasRecord.ShowDialog();
+ FillDgv();
+ }
+ else
+ {
+ this.Close();
+ }
+ }
+ catch (Exception ex)
+ {
+ AIMSExtension.PublicMethod.WriteLog(ex);
+ }
+ }
+
+ private void cboRoom_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ FillDgv();
+ }
+
+ private void buttonX1_Click(object sender, EventArgs e)
+ {
+ string RoomStr = txtRoom.Tag.ToString();
+ SatrtOperation(buttonX1.Text, SelPatientId, SelApplyId, (int.Parse(RoomStr)));
+ }
+
+ }
+}
diff --git a/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.resx b/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.resx
new file mode 100644
index 0000000..9f66a8a
--- /dev/null
+++ b/AIMS/OperationDoing/oldSystemCode/frmSelectPatientGoodsBill2.resx
@@ -0,0 +1,523 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+
+ 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
+ 0K4KC2cAAAAASUVORK5CYII=
+
+
+
+
+ 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
+ RK5CYII=
+
+
+
+
+ AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAABMLAAATCwAAAAAAAAAA
+ AAD/////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////////////+//38/P/9+/r//v38////
+ /v//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////v5
+ 9//q2tD/4sq6/+rc0v/7+ff/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////37ef/5LGP/+Kdbv/jsZD/9uzl//7/////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////8+/r/79vO/+OZZv/jk1z/45lm/+nQwP/69/b/////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////+fb0/+bLuf/jlF3/45Nc/+OT
+ Xf/gvaT/9vHt////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////fy
+ 7//hv6r/45Re/+OTXP/jlF3/36+N//bs5f//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////27+r/3rac/+OUXf/jk1z/45Nd/+Omff/y4dX//f39////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////9uzl/96ujf/jlF3/45Nc/+OTXP/mnWz/58q2//fz
+ 8f//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////fp4P/hp4D/45Nd/+OT
+ XP/jk1z/45Ja/9+0l//z6uX/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////////////////////7/
+ ///14tX/5qFy/+OTXP/jk1z/4pJb/+OSW//fp4H/8+PZ////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////5+Pf/68+7/+OSW//jk1z/4pJc/92OWP/hkVv/5KBx//LZyf/9/f7/////////
+ ///////////////////////////////////////////////+/v/9+/r/+/j1//z39P/8+PX//Pn3//79
+ /f//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////9vLv/+TDq//jklv/4pJb/+GRW//djlj/4JBa/+OS
+ Wv/kvaL/9O7q///////////////////////////////////////////////////////59vT/69nN/9+7
+ ov/gtZf/37id/+HGsv/17Ob//fz7////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////Ts6P/guJ7/45Jb/+KT
+ XP/fkFr/3I5Y/+CRWv/jkVn/36yJ//Dj2f//////////////////////////////////////////////
+ ///38/H/6c68/+Knfv/il2P/4pdi/+KXY//jmmn/6bGM//Di2P/8+/r/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///z5+D/3q6O/+OSW//ilmH/3q2M/+O8ov/mqH//5JZh/+Cid//x28z/////////////////////////
+ ////////////////////////7NvP/+CqhP/jlF7/45Jb/+OTW//jk1v/45Nc/+SYY//jtZT/+O/p////
+ ////////////////////////////////////////////////////////////////////////+PLv/+nP
+ v//vwqP/78Kj/+/Co//vwqP/78Kj/+/Co//vwqP/78Kj/+/Co//vwaP/7cKl/+vOu//8+vj/////////
+ ////////////////////////8+TZ/9+ngP/jklr/45lm/+bOv//27ef/57mb/+KYZf/lnm7/7tC8//r6
+ +f//////+fLu/+jKtv/vwqT/78Kj/+/Co//vwqP/78Kk/+m1k//jnm//45Ja/+OTXP/jk1z/45Nc/+OT
+ XP/jk1z/4pln/+nPvf/59vT/////////////////////////////////////////////////////////
+ //////////////Xt6f/et57/5Jhk/+SYZP/kmGT/5Jhk/+SYZP/kmGT/5Jhk/+SYZP/kmGT/5Jhk/+OZ
+ Zv/ipHr/7d7U//38+/////////////////////////////bh0//koXT/45Re/+iofv/06+X//fz7/+TD
+ rf/hm2r/5JVf/+W5nP/y6ub//Pz7/+/d0P/jqYH/5Jhl/+SYZP/kmGT/5Jhk/+SYZP/lmWb/5JZh/+OT
+ XP/jk1z/45Nc/+OTXP/jk1z/45Nc/+OTW//guqL/9u/r////////////////////////////////////
+ ///////////////////////////////////17ej/3ree/+WaaP/lmmf/5Zpn/+WaZ//lmmf/5Zpn/+Wa
+ Z//lmmf/5Ztp/+WZZv/jklr/45hk/+HFsf/8+ff///////////////////////z9/f/y2sn/5qBx/+SW
+ Yf/rsov//fn2//7+/v/l0MH/4Z9x/+OPVv/fpoD/7d3S//by7//jwar/5pxq/+Wda//lmmj/5Zpn/+Wa
+ Z//lmmf/5Zxq/+SYY//jk1v/45Nc/+OTXP/jk1z/45Nc/+OTXP/jk1v/4Luj//bw7P//////////////
+ ////////////////////////////////////////////////////////+fXy/+3Yy//yzbT/8s20//LN
+ tP/yzbT/8s20//LNtP/yzbT/8s61/+3GrP/krIf/45Ja/+KXY//guZ3//Pj1////////////////////
+ ///39PL/6cmz/+WaZ//jlmH/6LOO//76+P//////7eLb/+Wthf/jlF3/4Z9x//DVw//06uP/3qyK/+SV
+ YP/prIP/8cux//LNtP/yzbT/8s62/+m5mv/jnW7/45Ja/+OTXP/jk1z/45Nc/+OTXP/jk1z/5Jto/+bK
+ t//49PL/////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////18e7/5MOt/+SXYv/jlmH/5LCN//ny
+ 7f//////////////////////8uzo/+K5nf/jkFf/4pdk/+O4mf/9+/n///////j29P/pwKT/45po/+Wb
+ af/wy7P/8dzO/+Kjef/jlmH/6LGM//369//////////////////t3ND/4ayI/+KVYP/jklr/45Jb/+OS
+ W//jk1v/5Jlm/+Sxjv/w4dj//Pv6////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////+vn4/+7Z
+ yv/lpHj/5JVf/+ene//u4NX//Pv6//////////////////Dl3f/fr4//45FZ/+KZZ//hwKj//fv6////
+ ////////5su4/+Cdb//lmWX/5rCM/+a1lv/mnWz/4pdk/+O4nP/9+vj/////////////////+Pb0/+vU
+ xP/irYj/4Zlo/+KYZP/imGX/4p5w/+i1kv/o08b/+vf1////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////26eH/36mE/+OTXP/jl2P/5Mq6//r39v/////////////////v3tL/3qV//+OR
+ Wf/inGz/482+//38+////////////+jWzP/hpn7/45Jb/+GRWv/hklv/45Nc/+Oeb//kzb7//fz7////
+ ///////////////////7+fj/7d/W/+LBqv/muJj/5rqc/+PLuf/v5d7//fz7////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////9e3n/96zlf/jk13/45Zh/9+8pf/59fH/////////
+ ////////8drK/+GhdP/jkln/5KJ0/+zf1//+/f3////////////x6uT/57qc/+KYZv/gkFn/4pJb/+SX
+ Y//ptJD/9e7q//7+/v////////////////////////////7+/f/+/fz//vz7//78+//+/fz//v7+////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////fy7//iwav/45Re/+OV
+ YP/fsJD/+fLt//////////////////TYxP/lnWz/5JZh/+u1kf/69vT////+/////////////////+vI
+ sv/gmmv/4pFa/+OSW//imWb/5ryg//78+///////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///6+Pb/69XH/+ekd//jlWD/5qmB//Tn3v/9/f3///////n5+P/uzrn/5p1s/+OXY//ruZj//v38////
+ ///////////////////p0sH/36F2/+OSWv/jklr/4Z1u/+PJuP/+/v3/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v////br4//iq4f/45Vf/+SZZv/p0cH/+vj2///////z7ur/5rye/+ST
+ XP/imWb/5r6h///+/f//////////////////////7N/V/+GqhP/jkFf/5Jdi/+ewi//r39f//v7+////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////////////////////48u3/3rWY/+OVX//jlF3/4L+p//fy
+ 7///////7uPc/+CujP/jkFf/4Ztr/+PDrf/+/v3///////////////////////Tv7P/pvqH/5Zdi/+KZ
+ Zv/nv6T/+vj2////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////+fXy/+HC
+ rP/jlV//45Rd/96ylf/27uj//////+zZzf/fpX7/45FY/+GecP/kzLz//v7+////////////////////
+ ///9/f3/7NTF/9+phv/grYr/69fJ////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////v59//p1cb/5Z9w/+OUXv/hqYT/9ejf///////u1MH/4J9z/+OQV//jonb/6drQ///+
+ /v////////////////////////////bv6//t28//8N/T//fz8P//////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////+/f3/9erj/+WtiP/jlmD/5J1u/+7Xyf/7/f7/8dG7/+Oc
+ a//jk1z/6LCJ//Tv6///////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////v28v/ftZf/4pZi/+OS
+ Wv/kvqX/8ube//DIrf/lm2j/45hk/+3Aov//////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///7+PX/4MKs/+KXZP/jklv/3qR9/+S0lP/mrIP/5Jll/+GZaP/pwqj/////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////Pr5/+bSxP/knGv/4pFc/9+QWv/gkVv/35Ba/+CPWP/gnW//5sm1////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////79/f/06uX/6K+J/+OVYP/gkVr/35Ba/+CQ
+ Wv/ikFj/4KJ2/+bSw///////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////////Pn2/+O4
+ mv/il2T/349Y/9+QWf/gkFr/4pBZ/+Knfv/p29L/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////37+f/hwq3/4ppo/+KRWv/fj1n/349Z/+SYZf/ouJj/7+fi////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///////////////////////////////////9/Pv/5dLF/+OcbP/jklr/4pJb/+KRWv/kmmj/7saq//z8
+ +///////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////v39//Ho4v/nrYX/45Vg/+OT
+ XP/jklv/4pxs/+3LtP//////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///7+ff/5rue/+KZZv/jklv/45Ja/+Cfc//qz73/////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////v39/+PEsP/hm2v/45Ja/+ORWf/fpHz/6dbJ////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////7+/f/l0cX/4p9x/+OSWf/jkVj/4aqF/+zf
+ 1///////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ /////////////////////////////////////////////////////////////////////v7/7uXf/+Wq
+ gf/jk1z/5JNc/+W1lP/w6eT/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////v6+f/qv6H/45hl/+Scav/ryK//9/Xz////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////58u3/+Ghdf/go3n/7tfG////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ //////////////////////////////////////////////////////////////Tu6v/m0cT/5M7A//Pr
+ 5f//////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ///+/f3//Pr4//v5+P/9/fz/////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////////////////////////////////////////////////////////////////////////////
+ ////////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
+
+
+
\ No newline at end of file
diff --git a/AIMS/OremrUserControl/UCOperationGoodsBill5.cs b/AIMS/OremrUserControl/UCOperationGoodsBill5.cs
new file mode 100644
index 0000000..380ad4a
--- /dev/null
+++ b/AIMS/OremrUserControl/UCOperationGoodsBill5.cs
@@ -0,0 +1,341 @@
+using AIMSBLL;
+using AIMSModel;
+using DrawGraph;
+using System;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Windows.Forms;
+
+namespace AIMS.OremrUserControl
+{
+ public partial class UCOperationGoodsBill5 : UserControl
+ {
+ public delegate void SelectTextBoxHadler(object uc, KeyEventArgs e);
+ public event SelectTextBoxHadler SelectTextBoxEvent;
+
+ public UCOperationGoodsBill5()
+ {
+ InitializeComponent();
+ if (app == null) app = new ApplianceRecord();
+ }
+ public UCOperationGoodsBill5(ApplianceRecord Applic)
+ {
+ InitializeComponent();
+ if (Applic == null) Applic = new ApplianceRecord();
+ app = Applic;
+ this.Id = app.Id;
+ this.OperationRecordId = Convert.ToInt32(app.OperationRecordId);
+
+ if (app.OpeFront != null)
+ this.OpeFront = app.OpeFront;
+ if (app.OpeDoing != null)
+ this.OpeDoing = app.OpeDoing;
+ if (app.CloseFront != null)
+ this.CloseFront = app.CloseFront;
+ if (app.CloseLast != null)
+ this.CloseLast = app.CloseLast;
+ if (app.SkinCloseLast != null)
+ this.SkinCloseLast = app.SkinCloseLast;
+
+ txtFront.TextChanged += txtFront_TextChanged;
+ txtDoing.TextChanged += txtFront_TextChanged;
+ }
+ public ApplianceRecord app;
+ private int? id;//清点单编号
+ private int operationRecordId;//手术记录编号
+ private int goodsId;//物品编号
+ private string goodsName;//器械名称
+ private string opeFront;//术前清点
+ private string opeDoing;//术中增加
+ private string closeFront;//关闭腔体前
+ private string closeLast;//关闭腔体后
+ private string skinCloseLast;//缝皮腔体后
+ private string goodsNumber;//器械数量
+ private Color ucBackColor;
+
+ public int? Id
+ {
+ get { return id; }
+ set { id = value; }
+ }
+ public int OperationRecordId
+ {
+ get { return operationRecordId; }
+ set { operationRecordId = value; }
+ }
+ public int GoodsId
+ {
+ get { return goodsId; }
+ set { goodsId = value; }
+ }
+ public string GoodsName
+ {
+ get
+ {
+ goodsName = this.lblGoodsName.Text;
+ return goodsName;
+ }
+ set
+ {
+ goodsName = value;
+ this.lblGoodsName.Text = goodsName;
+ }
+ }
+ public string GoodsNumber
+ {
+ get
+ {
+ // goodsNumber = this.txtPack.Text;
+ //goodsNumber = this.txtDoing.Text;
+ //goodsNumber = this.txtCloseFront.Text;
+ //goodsNumber = this.txtCloseLast.Text;
+ //goodsNumber = this.txtSkinCloseLast.Text;
+ return goodsNumber;
+ }
+ set
+ {
+ goodsNumber = value;
+ this.txtDoing.Text = "0";
+
+ if (goodsNumber != "")
+ {
+ this.txtFront.Text = goodsNumber;
+ this.txtCloseFront.Text = goodsNumber;
+ this.txtCloseLast.Text = goodsNumber;
+ this.txtSkinCloseLast.Text = goodsNumber;
+ }
+ }
+ }
+ public string OpeFront
+ {
+ get
+ {
+ if (this.txtFront.Text != "")
+ opeFront = this.txtFront.Text;
+ return opeFront;
+ }
+ set
+ {
+ opeFront = value;
+ this.txtFront.Text = opeFront.ToString();
+ }
+ }
+ public string OpeDoing
+ {
+ get
+ {
+ if (this.txtDoing.Text != "")
+ opeDoing = this.txtDoing.Text;
+ return opeDoing;
+ }
+ set
+ {
+ opeDoing = value;
+ this.txtDoing.Text = opeDoing.ToString();
+ }
+ }
+ public string CloseFront
+ {
+ get
+ {
+ if (this.txtCloseFront.Text != "")
+ closeFront = this.txtCloseFront.Text;
+ return closeFront;
+ }
+ set
+ {
+ closeFront = value;
+ this.txtCloseFront.Text = closeFront.ToString();
+ }
+ }
+ public string CloseLast
+ {
+ get
+ {
+ if (this.txtCloseLast.Text != "")
+ closeLast = this.txtCloseLast.Text;
+ return closeLast;
+ }
+ set
+ {
+ closeLast = value;
+ this.txtCloseLast.Text = closeLast.ToString();
+ }
+ }
+ public string SkinCloseLast
+ {
+ get
+ {
+ if (this.txtSkinCloseLast.Text != "")
+ skinCloseLast = this.txtSkinCloseLast.Text;
+ return skinCloseLast;
+ }
+ set
+ {
+ skinCloseLast = value;
+ this.txtSkinCloseLast.Text = skinCloseLast.ToString();
+ }
+ }
+ public Color UcBackColor
+ {
+ get
+ {
+ ucBackColor = this.BackColor;
+ return ucBackColor;
+ }
+ set
+ {
+ ucBackColor = value;
+ this.BackColor = ucBackColor;
+ }
+ }
+ private string GetString(string str)
+ {
+ if (str == @"\")
+ {
+ return str;
+ }
+ else
+ {
+ char[] a = new char[] { '+', '-' };
+ str = str.TrimStart(a).TrimEnd(a);
+ object result = new DataTable().Compute(str, null);
+ return result.ToString();
+ }
+ }
+ private void CalcResult()
+ {
+ if (this.GoodsName == "") return;
+ this.OpeFront = this.txtFront.Text;
+ this.OpeDoing = this.txtDoing.Text;
+ this.CloseFront = this.txtCloseFront.Text;
+ this.CloseLast = this.txtCloseLast.Text;
+ this.SkinCloseLast = this.txtSkinCloseLast.Text;
+ app.Id = this.Id;
+ app.OperationRecordId = this.OperationRecordId;
+ //if (this.GoodsId != 0) app.ApplianceId = this.GoodsId; else app.ApplianceId = null;
+ app.ApplianceId = this.GoodsId;
+ app.ApplianceName = this.GoodsName;
+ app.OpeFront = this.OpeFront;
+ app.OpeDoing = this.OpeDoing;
+ app.CloseFront = this.CloseFront;
+ app.CloseLast = this.CloseLast;
+ app.SkinCloseLast = this.SkinCloseLast;
+ if (app.Id == null)
+ {
+ this.Id = BApplianceRecord.Insert(app);
+ }
+ else
+ {
+ BApplianceRecord.Update(app);
+ }
+ }
+
+ private void txt_Leave(object sender, EventArgs e)
+ {
+ ((TextBox)sender).Text = GetString(((TextBox)sender).Text);
+ //CalcResult();
+ }
+
+ private void txt_Leave1(object sender, EventArgs e)
+ {
+ TextBox txb = ((TextBox)sender);
+ txb.Text = GetString(txb.Text);
+
+ //if (this.txtFront.Text != "" && this.txtDoing.Text != "")
+ //{
+ // int Front = int.Parse(this.txtDoing.Text);
+ // int Doing = int.Parse(this.txtDoing.Text);
+ // if (txb.Text != (Front + Doing).ToString())
+ // {
+ // txb.Text = "";
+ // MessageBox.Show("核对数量错误!请再次确认!", "系统提示");
+ // return;
+ // }
+ //}
+ CalcResult();
+ }
+ private void txtFront_TextChanged(object sender, EventArgs e)
+ {
+ try
+ {
+ string result = "";
+ if (txtFront.Text.Trim() != "" && txtFront.Text.Trim() != "\\")
+ {
+ int a = int.Parse(txtFront.Text);
+ result = (a).ToString();
+ }
+ if (txtDoing.Text.Trim() != "" && txtDoing.Text.Trim() != "\\")
+ {
+ int b = int.Parse(txtDoing.Text);
+ result = (b).ToString();
+ }
+ if (txtFront.Text.Trim() != "" && txtDoing.Text.Trim() != "" && txtDoing.Text.Trim() != "\\" && txtFront.Text.Trim() != "\\")
+ {
+ int a = int.Parse(txtFront.Text);
+ int b = int.Parse(txtDoing.Text);
+ result = (a + b).ToString();
+ }
+ this.txtCloseFront.Text = result;
+ this.txtCloseLast.Text = result;
+ this.txtSkinCloseLast.Text = result;
+ }
+ catch (Exception ex)
+ {
+ // string TextValue = @"\";
+ //if (((TextBox)sender).Text != TextValue)
+ //{
+ // this.txtCloseFront.Text = TextValue;
+ // this.txtCloseLast.Text = TextValue;
+ // //this.txtSkinCloseLast.Text = "";
+ //}
+ }
+ }
+
+ private void UCOperationGoodsBill5_Load(object sender, EventArgs e)
+ {
+ }
+
+ private void TxtCloseFront_TextChanged(object sender, EventArgs e)
+ {
+ try
+ {
+ TextBox textBox = (TextBox)sender;
+ string result = "";
+ if (txtFront.Text.Trim() != "" && txtFront.Text.Trim() != "\\")
+ {
+ int a = int.Parse(txtFront.Text);
+ result = (a).ToString();
+ }
+ if (txtDoing.Text.Trim() != "" && txtDoing.Text.Trim() != "\\")
+ {
+ int b = int.Parse(txtDoing.Text);
+ result = (b).ToString();
+ }
+ if (txtFront.Text.Trim() != "" && txtDoing.Text.Trim() != "" && txtDoing.Text.Trim() != "\\" && txtFront.Text.Trim() != "\\")
+ {
+ int a = int.Parse(txtFront.Text);
+ int b = int.Parse(txtDoing.Text);
+ result = (a + b).ToString();
+ }
+ if (result != "" && textBox.Text != "" && textBox.Text != "\\")
+ {
+ int txtVal = int.Parse(textBox.Text);
+ if (txtVal != int.Parse(result))
+ {
+ MessageBox.Show("请核对数量!", "系统提示");
+ }
+ }
+ }
+ catch (Exception)
+ {
+ }
+ }
+
+ private void txtFront_KeyDown(object sender, KeyEventArgs e)
+ {
+ SelectTextBoxEvent(sender, e);
+ }
+ }
+}
diff --git a/AIMS/OremrUserControl/UCOperationGoodsBill5.designer.cs b/AIMS/OremrUserControl/UCOperationGoodsBill5.designer.cs
new file mode 100644
index 0000000..6776ffd
--- /dev/null
+++ b/AIMS/OremrUserControl/UCOperationGoodsBill5.designer.cs
@@ -0,0 +1,151 @@
+namespace AIMS.OremrUserControl
+{
+ partial class UCOperationGoodsBill5
+ {
+ ///
+ /// 必需的设计器变量。
+ ///
+ 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.lblGoodsName = new System.Windows.Forms.TextBox();
+ this.txtCloseLast = new System.Windows.Forms.TextBox();
+ this.txtCloseFront = new System.Windows.Forms.TextBox();
+ this.txtDoing = new System.Windows.Forms.TextBox();
+ this.txtFront = new System.Windows.Forms.TextBox();
+ this.txtSkinCloseLast = new System.Windows.Forms.TextBox();
+ this.SuspendLayout();
+ //
+ // lblGoodsName
+ //
+ this.lblGoodsName.BackColor = System.Drawing.Color.Azure;
+ this.lblGoodsName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.lblGoodsName.Dock = System.Windows.Forms.DockStyle.Left;
+ this.lblGoodsName.Location = new System.Drawing.Point(0, 0);
+ this.lblGoodsName.Multiline = true;
+ this.lblGoodsName.Name = "lblGoodsName";
+ this.lblGoodsName.ReadOnly = true;
+ this.lblGoodsName.Size = new System.Drawing.Size(140, 28);
+ this.lblGoodsName.TabIndex = 1;
+ this.lblGoodsName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
+ this.lblGoodsName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFront_KeyDown);
+ //
+ // txtCloseLast
+ //
+ this.txtCloseLast.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtCloseLast.Dock = System.Windows.Forms.DockStyle.Left;
+ this.txtCloseLast.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtCloseLast.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+ this.txtCloseLast.Location = new System.Drawing.Point(431, 0);
+ this.txtCloseLast.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtCloseLast.Name = "txtCloseLast";
+ this.txtCloseLast.ShortcutsEnabled = false;
+ this.txtCloseLast.Size = new System.Drawing.Size(93, 26);
+ this.txtCloseLast.TabIndex = 5;
+ this.txtCloseLast.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFront_KeyDown);
+ //
+ // txtCloseFront
+ //
+ this.txtCloseFront.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtCloseFront.Dock = System.Windows.Forms.DockStyle.Left;
+ this.txtCloseFront.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtCloseFront.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+ this.txtCloseFront.Location = new System.Drawing.Point(334, 0);
+ this.txtCloseFront.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtCloseFront.Name = "txtCloseFront";
+ this.txtCloseFront.ShortcutsEnabled = false;
+ this.txtCloseFront.Size = new System.Drawing.Size(97, 26);
+ this.txtCloseFront.TabIndex = 4;
+ this.txtCloseFront.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFront_KeyDown);
+ //
+ // txtDoing
+ //
+ this.txtDoing.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtDoing.Dock = System.Windows.Forms.DockStyle.Left;
+ this.txtDoing.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtDoing.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+ this.txtDoing.Location = new System.Drawing.Point(237, 0);
+ this.txtDoing.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtDoing.Name = "txtDoing";
+ this.txtDoing.ShortcutsEnabled = false;
+ this.txtDoing.Size = new System.Drawing.Size(97, 26);
+ this.txtDoing.TabIndex = 3;
+ this.txtDoing.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFront_KeyDown);
+ //
+ // txtFront
+ //
+ this.txtFront.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtFront.Dock = System.Windows.Forms.DockStyle.Left;
+ this.txtFront.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtFront.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+ this.txtFront.Location = new System.Drawing.Point(140, 0);
+ this.txtFront.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtFront.Name = "txtFront";
+ this.txtFront.Size = new System.Drawing.Size(97, 26);
+ this.txtFront.TabIndex = 2;
+ this.txtFront.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFront_KeyDown);
+ //
+ // txtSkinCloseLast
+ //
+ this.txtSkinCloseLast.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.txtSkinCloseLast.Dock = System.Windows.Forms.DockStyle.Left;
+ this.txtSkinCloseLast.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.txtSkinCloseLast.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+ this.txtSkinCloseLast.Location = new System.Drawing.Point(524, 0);
+ this.txtSkinCloseLast.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.txtSkinCloseLast.Name = "txtSkinCloseLast";
+ this.txtSkinCloseLast.ShortcutsEnabled = false;
+ this.txtSkinCloseLast.Size = new System.Drawing.Size(93, 26);
+ this.txtSkinCloseLast.TabIndex = 6;
+ //
+ // UCOperationGoodsBill5
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Azure;
+ this.Controls.Add(this.txtSkinCloseLast);
+ this.Controls.Add(this.txtCloseLast);
+ this.Controls.Add(this.txtCloseFront);
+ this.Controls.Add(this.txtDoing);
+ this.Controls.Add(this.txtFront);
+ this.Controls.Add(this.lblGoodsName);
+ this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+ this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
+ this.Name = "UCOperationGoodsBill5";
+ this.Size = new System.Drawing.Size(618, 28);
+ this.Load += new System.EventHandler(this.UCOperationGoodsBill5_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ public System.Windows.Forms.TextBox lblGoodsName;
+ public System.Windows.Forms.TextBox txtCloseLast;
+ public System.Windows.Forms.TextBox txtCloseFront;
+ public System.Windows.Forms.TextBox txtDoing;
+ public System.Windows.Forms.TextBox txtFront;
+ public System.Windows.Forms.TextBox txtSkinCloseLast;
+ }
+}
diff --git a/AIMS/OremrUserControl/UCOperationGoodsBill5.resx b/AIMS/OremrUserControl/UCOperationGoodsBill5.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/AIMS/OremrUserControl/UCOperationGoodsBill5.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/AIMSEntity/BLL/Extension/BOperationRecord.cs b/AIMSEntity/BLL/Extension/BOperationRecord.cs
index d805c17..6510451 100644
--- a/AIMSEntity/BLL/Extension/BOperationRecord.cs
+++ b/AIMSEntity/BLL/Extension/BOperationRecord.cs
@@ -23,10 +23,39 @@ namespace AIMSBLL
{
return _record;
}
- BOperationRecord.SelectSingle(PatientId, RecoverId,ref _record);
- _record.SpareFive = "";
- if (_record.OutRoomTime != null && _record.InRoomTime != null)
- _record.SpareFive = Convert.ToInt32(((TimeSpan)(_record.OutRoomTime - _record.InRoomTime)).TotalMinutes).ToString() + "分钟";
+ BOperationRecord.SelectSingle(PatientId, RecoverId, ref _record);
+
+ _record.OpeRecordInfo = BOperationRecordInfo.SelectSingle("OperationRecordId=" + _record.Id, null);
+ if (_record.OpeRecordInfo == null || _record.OpeRecordInfo.Id == null)
+ {
+ _record.OpeRecordInfo = new OperationRecordInfo();
+ _record.OpeRecordInfo.OperationRecordId = _record.Id;
+ _record.OpeRecordInfo.PatientId = PatientId;
+ _record.OpeRecordInfo.ApplyId = _record.OperationApplyId;
+ _record.OpeRecordInfo.OperatorId = PublicMethod.OperatorName;
+ _record.OpeRecordInfo.OperatorTime = DateTime.Now;
+ _record.OpeRecordInfo.Id = BOperationRecordInfo.Insert(_record.OpeRecordInfo);
+ }
+
+ _record.OpeRecoverInInfo = BOperationRecoverInInfo.SelectSingle("PatientId=" + _record.PatientId, null);
+ if (_record.OpeRecoverInInfo == null) _record.OpeRecoverInInfo = new OperationRecoverInInfo();
+
+ _record.OpeRecoverOutInfo = BOperationRecoverOutInfo.SelectSingle("PatientId=" + _record.PatientId, null);
+ if (_record.OpeRecoverOutInfo == null) _record.OpeRecoverOutInfo = new OperationRecoverOutInfo();
+
+ _record.FactBloodGasAnalysisList = BFactBloodGasAnalysis.Select("OperationRecordId=" + _record.Id, null);
+ foreach (var item in _record.FactBloodGasAnalysisList)
+ {
+ item.FactBloodGasAnalysisDataList = BFactBloodGasAnalysisData.Select("RecordId=" + item.Id, null);
+ }
+
+ _record.InstrumentList = BOperationRecordInstrumentList.SelectSingle(" OperationRecordId=" + Convert.ToInt32(_record.Id), null);
+ if (_record.InstrumentList != null)
+ {
+ _record.InstrumentList.ApplianceRecordList = BApplianceRecord.GetApplianceRecordById(Convert.ToInt32(_record.Id), Convert.ToInt32(_record.InstrumentList.Id));
+ }
+ if (_record.InRoomTime != null)
+ _record.OperationDate = _record.InRoomTime.Value.ToShortDateString();
DataTable OperationFrontdt = BOperationApply.GetOperationFrontDataTableByPatientId(PatientId);
if (OperationFrontdt.Rows.Count > 0)
@@ -77,6 +106,7 @@ namespace AIMSBLL
// _record.Fasting = int.Parse(OperationDoingdt.Rows[0]["Fasting"].ToString());
//_record.BloodType = OperationDoingdt.Rows[0]["BloodType"].ToString().Trim();
if (_record.SpecialCase == null || _record.SpecialCase == "") _record.SpecialCase = "无";
+ _record.OperationRoom = OperationDoingdt.Rows[0]["OperationRoom"].ToString().Trim();
}
FillEventsDataAll(PatientId, RecoverId, _record);
@@ -87,8 +117,9 @@ namespace AIMSBLL
GetAnaseDataQualityRecord(_record);
- _record.OpeRecordInfo = BOperationRecordInfo.SelectSingle("OperationRecordId=" + _record.Id, null);
- if (_record.OpeRecordInfo == null) _record.OpeRecordInfo = new OperationRecordInfo();
+ _record.SpareFive = "";
+ if (_record.OutRoomTime != null && _record.InRoomTime != null)
+ _record.SpareFive = Convert.ToInt32(((TimeSpan)(_record.OutRoomTime - _record.InRoomTime)).TotalMinutes).ToString() + "分钟";
_record.SpareSix = "";
if (_record.OpeRecordInfo.AnesthesiaSucceed != null && _record.OpeRecordInfo.AnesthesiaSucceed != "")
{
@@ -121,18 +152,6 @@ namespace AIMSBLL
_record.SpareSix += "规培护士:" + _record.OpeRecordInfo.RuleNurse + " ";
}
- _record.OpeRecoverInInfo = BOperationRecoverInInfo.SelectSingle("PatientId=" + _record.PatientId, null);
- if (_record.OpeRecoverInInfo == null) _record.OpeRecoverInInfo = new OperationRecoverInInfo();
-
- _record.OpeRecoverOutInfo = BOperationRecoverOutInfo.SelectSingle("PatientId=" + _record.PatientId, null);
- if (_record.OpeRecoverOutInfo == null) _record.OpeRecoverOutInfo = new OperationRecoverOutInfo();
-
- _record.FactBloodGasAnalysisList = BFactBloodGasAnalysis.Select("OperationRecordId=" + _record.Id, null);
- foreach (var item in _record.FactBloodGasAnalysisList)
- {
- item.FactBloodGasAnalysisDataList = BFactBloodGasAnalysisData.Select("RecordId=" + item.Id, null);
- }
-
int x = 0;
double allDrugDose = 0, allOutDose = 0;
@@ -180,13 +199,6 @@ namespace AIMSBLL
}
_record.SpareThree = allOutDose.ToString();
-
- _record.InstrumentList = BOperationRecordInstrumentList.SelectSingle(" OperationRecordId=" + Convert.ToInt32(_record.Id), null);
- if (_record.InstrumentList != null)
- {
- _record.InstrumentList.ApplianceRecordList = BApplianceRecord.GetApplianceRecordById(Convert.ToInt32(_record.Id), Convert.ToInt32(_record.InstrumentList.Id));
- }
-
return _record;
}
@@ -267,16 +279,16 @@ namespace AIMSBLL
if (FactEventsObj.EventName == "插管")
{
_record.InCGType = FactEventsObj.EventName;
- _record.InCGTime = FactEventsObj.EventBeginTime;
+ _record.SpileInTime = FactEventsObj.EventBeginTime;
}
if (FactEventsObj.EventName == "喉罩")
{
_record.InCGType = FactEventsObj.EventName;
- _record.InCGTime = FactEventsObj.EventBeginTime;
+ _record.SpileInTime = FactEventsObj.EventBeginTime;
}
if (FactEventsObj.EventName == "拔管")
{
- _record.OutCGTime = FactEventsObj.EventBeginTime;
+ _record.SpileOutTime = FactEventsObj.EventBeginTime;
}
}
}
@@ -409,12 +421,12 @@ namespace AIMSBLL
public static void SelectSingle(int PatientId, int RecoverId, ref OperationRecord operationRecord)
{
- DOperationRecord.SelectSingleEntity("PatientId=" + PatientId + " and RecoverId=" + RecoverId,ref operationRecord);
+ DOperationRecord.SelectSingleEntity("PatientId=" + PatientId + " and RecoverId=" + RecoverId, ref operationRecord);
}
public static int AddTitleTime(int PatientId, int ApplyId, int RecoverId, int State, DateTime Time, int RoomId)
{
return DOperationRecord.AddTitleTime(PatientId, ApplyId, RecoverId, State, Time, RoomId);
- }
+ }
public static void UpdateState(int PatientId, int TypeId, int State)
{
DOperationRecord.UpdateState(PatientId, TypeId, State);
@@ -423,9 +435,9 @@ namespace AIMSBLL
{
DOperationRecord.DeleteOperationRecordData(RecorId, PatientId, TypeId);
}
- public static void DeleteOperationRecorvreData(int PatientId, int TypeId)
+ public static void DeleteOperationRecorvreData(int RecorId,int PatientId, int TypeId)
{
- DOperationRecord.DeleteOperationRecorvreData(PatientId, TypeId);
+ DOperationRecord.DeleteOperationRecorvreData(RecorId,PatientId, TypeId);
}
public static void DeleteEvent(int PatientId, int eventId)
{
diff --git a/AIMSEntity/DAL/AutoGenerate/DOperationRecord.cs b/AIMSEntity/DAL/AutoGenerate/DOperationRecord.cs
index 85aef12..3e37f45 100644
--- a/AIMSEntity/DAL/AutoGenerate/DOperationRecord.cs
+++ b/AIMSEntity/DAL/AutoGenerate/DOperationRecord.cs
@@ -49,8 +49,8 @@ namespace AIMSDAL
cmd.Parameters.Add(new SqlParameter("@RescueTime",operationRecord.RescueTime==null?(object)DBNull.Value:(object)operationRecord.RescueTime));
cmd.Parameters.Add(new SqlParameter("@RescuePerson",operationRecord.RescuePerson==null?(object)DBNull.Value:(object)operationRecord.RescuePerson));
cmd.Parameters.Add(new SqlParameter("@RescueTechnology",operationRecord.RescueTechnology==null?(object)DBNull.Value:(object)operationRecord.RescueTechnology));
- cmd.Parameters.Add(new SqlParameter("@SpileInTime",operationRecord.SpileInTime==null?(object)DBNull.Value:(object)operationRecord.SpileInTime));
- cmd.Parameters.Add(new SqlParameter("@SpileOutTime",operationRecord.SpileOutTime==null?(object)DBNull.Value:(object)operationRecord.SpileOutTime));
+ cmd.Parameters.Add(new SqlParameter("@SpileInTime", operationRecord.SpileInTime.HasValue ? (object)operationRecord.SpileInTime.Value : (object)DBNull.Value));
+ cmd.Parameters.Add(new SqlParameter("@SpileOutTime", operationRecord.SpileOutTime.HasValue ? (object)operationRecord.SpileOutTime.Value : (object)DBNull.Value));
cmd.Parameters.Add(new SqlParameter("@SpileSituation",operationRecord.SpileSituation==null?(object)DBNull.Value:(object)operationRecord.SpileSituation));
cmd.Parameters.Add(new SqlParameter("@SpileWard",operationRecord.SpileWard==null?(object)DBNull.Value:(object)operationRecord.SpileWard));
cmd.Parameters.Add(new SqlParameter("@SpileBeforCondition",operationRecord.SpileBeforCondition==null?(object)DBNull.Value:(object)operationRecord.SpileBeforCondition));
@@ -270,8 +270,8 @@ namespace AIMSDAL
cmd.Parameters.Add(new SqlParameter("@RescueTime",operationRecord.RescueTime==null?(object)DBNull.Value:(object)operationRecord.RescueTime));
cmd.Parameters.Add(new SqlParameter("@RescuePerson",operationRecord.RescuePerson==null?(object)DBNull.Value:(object)operationRecord.RescuePerson));
cmd.Parameters.Add(new SqlParameter("@RescueTechnology",operationRecord.RescueTechnology==null?(object)DBNull.Value:(object)operationRecord.RescueTechnology));
- cmd.Parameters.Add(new SqlParameter("@SpileInTime",operationRecord.SpileInTime==null?(object)DBNull.Value:(object)operationRecord.SpileInTime));
- cmd.Parameters.Add(new SqlParameter("@SpileOutTime",operationRecord.SpileOutTime==null?(object)DBNull.Value:(object)operationRecord.SpileOutTime));
+ cmd.Parameters.Add(new SqlParameter("@SpileInTime", operationRecord.SpileInTime.HasValue ? (object)operationRecord.SpileInTime.Value : (object)DBNull.Value));
+ cmd.Parameters.Add(new SqlParameter("@SpileOutTime", operationRecord.SpileOutTime.HasValue ? (object)operationRecord.SpileOutTime.Value : (object)DBNull.Value));
cmd.Parameters.Add(new SqlParameter("@SpileSituation",operationRecord.SpileSituation==null?(object)DBNull.Value:(object)operationRecord.SpileSituation));
cmd.Parameters.Add(new SqlParameter("@SpileWard",operationRecord.SpileWard==null?(object)DBNull.Value:(object)operationRecord.SpileWard));
cmd.Parameters.Add(new SqlParameter("@SpileBeforCondition",operationRecord.SpileBeforCondition==null?(object)DBNull.Value:(object)operationRecord.SpileBeforCondition));
@@ -829,11 +829,11 @@ namespace AIMSDAL
}
if(dr["SpileInTime"]!=System.DBNull.Value)
{
- entity.SpileInTime=dr["SpileInTime"].ToString();
+ entity.SpileInTime= Convert.ToDateTime(dr["SpileInTime"]);
}
if(dr["SpileOutTime"]!=System.DBNull.Value)
{
- entity.SpileOutTime=dr["SpileOutTime"].ToString();
+ entity.SpileOutTime= Convert.ToDateTime(dr["SpileOutTime"]);
}
if(dr["SpileSituation"]!=System.DBNull.Value)
{
diff --git a/AIMSEntity/DAL/Extension/DOperationRecord.cs b/AIMSEntity/DAL/Extension/DOperationRecord.cs
index a42e7de..4d979a0 100644
--- a/AIMSEntity/DAL/Extension/DOperationRecord.cs
+++ b/AIMSEntity/DAL/Extension/DOperationRecord.cs
@@ -24,7 +24,7 @@ namespace AIMSDAL
string strSql = "SELECT od.Id,od.PatientId, od.ApplyId, InRoomTime, OutRoomTime, OperationBeginTime, OperationEndTime, " +
" od.DiagnoseInfoName, od.OperationInfoName,od.AnaesthesiaMethodName, od.OperationCutTypeName," +
"od.OperationBodyPositionName, od.OperationPositionName, od.OperationDoctor,od.Assistant, od.AnesthesiaDoctor, od.Nurse,od.Nurse2," +
- "od.OperatorNo,od.OperatorName,od.OperateDate,od.State,OperationDoctorId ,[AssistantId] ,[AnesthesiaDoctorId] ,[InstrumentNurseId],[TourNurseId],DiagnoseInfoId,OperationInfoId,AnaesthesiaMethodId,OrtherDoctor,OrtherDoctorId,OperationPositionId,OperationBodyPositionId,ASALevel,SpecialCase,Fasting,BloodType FROM V_OperationDoing od WHERE od.PatientId=" + PatientId + " and od.RecoverId='" + TypeId + "'";
+ "od.OperatorNo,od.OperatorName,od.OperateDate,od.State,OperationDoctorId ,[AssistantId] ,[AnesthesiaDoctorId] ,[InstrumentNurseId],[TourNurseId],DiagnoseInfoId,OperationInfoId,AnaesthesiaMethodId,OrtherDoctor,OrtherDoctorId,OperationPositionId,OperationBodyPositionId,ASALevel,SpecialCase,Fasting,BloodType,OperationRoom FROM V_OperationDoing od WHERE od.PatientId=" + PatientId + " and od.RecoverId='" + TypeId + "'";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}
@@ -53,15 +53,19 @@ namespace AIMSDAL
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM FactPersonDuty WHERE PatientId=" + PatientId + " and PersonDutyId=" + TypeId + "");
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecordInfo WHERE OperationRecordId=" + RecorId);
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM PhysioData WHERE PatientId =" + RecorId);
+ HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecordInstrumentList WHERE OperationRecordId =" + RecorId);
+ HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM ApplianceRecord WHERE OperationRecordId =" + RecorId);
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecord WHERE id=" + RecorId);
}
- public static void DeleteOperationRecorvreData(int PatientId, int TypeId)
+ public static void DeleteOperationRecorvreData(int RecorId,int PatientId, int TypeId)
{
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM FactDrug WHERE DrugTypeId=" + TypeId + " and PatientId=" + PatientId + "");
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM FactEvents WHERE EventTypeId=" + TypeId + " and PatientId=" + PatientId + "");
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM FactOutputLiquids WHERE OutputLiquidsTypeId=" + TypeId + " and PatientId=" + PatientId + "");
HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM FactPersonDuty WHERE PatientId=" + PatientId + " and PersonDutyId=" + TypeId + "");
- HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecord WHERE PatientId=" + PatientId + " and RecoverId=" + TypeId + "");
+ HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecoverInInfo WHERE OperationRecordId =" + RecorId);
+ HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecoverOutInfo WHERE OperationRecordId =" + RecorId);
+ HelperDB.DbHelperSQL.ExecNonQuery("DELETE FROM OperationRecord WHERE Id=" + RecorId + "");
}
public static void DeleteEvent(int PatientId, int EventId)
{
@@ -252,11 +256,11 @@ namespace AIMSDAL
}
if (dr["SpileInTime"] != System.DBNull.Value)
{
- entity.SpileInTime = dr["SpileInTime"].ToString();
+ entity.SpileInTime = Convert.ToDateTime(dr["SpileInTime"]);
}
if (dr["SpileOutTime"] != System.DBNull.Value)
{
- entity.SpileOutTime = dr["SpileOutTime"].ToString();
+ entity.SpileOutTime = Convert.ToDateTime(dr["SpileOutTime"]);
}
if (dr["SpileSituation"] != System.DBNull.Value)
{
diff --git a/DrawGraph/AreaManage/DBManage.cs b/DrawGraph/AreaManage/DBManage.cs
index 4831200..0ebd3e1 100644
--- a/DrawGraph/AreaManage/DBManage.cs
+++ b/DrawGraph/AreaManage/DBManage.cs
@@ -89,80 +89,80 @@ namespace DrawGraph
try
{
if (items.Length < 1) return i;
- //if (items.Length > 2)
- //{
- // if (items[1] == "InstrumentList")
- // {
- // i += UpdateInstrumentList(items[2] + "='" + value + "' where Id= " + _operationRecord.Id);
- // }
- // if (items[1] == "OperationRecordInfo")
- // {
- // i += UpdateOperationRecordInfo(items[2] + "='" + value + "' where Id= " + _operationRecord.Id);
- // }
- //}
- //else
- //{
- if (items[1] == "OperationDoctor")
+ if (items.Length > 2)
{
- i += AddPerson(_operationRecord, _operationRecord.OperationDoctor, 1);
- }
- else if (items[1] == "Assistant1")
- {
- i += AddPerson(_operationRecord, _operationRecord.Assistant1, 2);
- }
- else if (items[1] == "Assistant2")
- {
- i += AddPerson(_operationRecord, _operationRecord.Assistant2, 3);
- }
- else if (items[1] == "Assistant3")
- {
- i += AddPerson(_operationRecord, _operationRecord.Assistant3, 4);
- }
- else if (items[1] == "AnesthesiaDoctor")
- {
- i += AddPerson(_operationRecord, _operationRecord.AnesthesiaDoctor, 5);
- }
- else if (items[1] == "InstrumentNurse")
- {
- i += AddPerson(_operationRecord, _operationRecord.InstrumentNurse, 6);
- }
- else if (items[1] == "TourNurse")
- {
- i += AddPerson(_operationRecord, _operationRecord.TourNurse, 7);
- }
- else if (items[1] == "OrtherDoctorId")
- {
- i += AddPerson(_operationRecord, _operationRecord.OrtherDoctorId, 11);
- }
- else if (items[1] == "Operation")
- {
- i += AddOperation(_operationRecord, _operationRecord.Operation);
- }
- else if (items[1] == "Applyoperation")
- {
- i += AddApplyOperation(_operationRecord, _operationRecord.Applyoperation);
- }
- else if (items[1] == "Applydiagnose")
- {
- i += AddApplyDiagnose(_operationRecord, _operationRecord.Applydiagnose);
- }
- else if (items[1] == "AnaesthesiaMethodId")
- {
- i += AddAnaesthesiaMethod(_operationRecord, _operationRecord.AnaesthesiaMethodId);
- }
- else if (items[1] == "OperationSiteId")
- {
- i += AddOperationSite(_operationRecord, _operationRecord.OperationSiteId);
- }
- else if (items[1] == "Height" || items[1] == "Weight")
- {
- i += UpdatePatient(items[1] + "='" + value + "' where Id= " + _operationRecord.PatientId);
+ if (items[1] == "InstrumentList")
+ {
+ i += UpdateInstrumentList(items[2] + "='" + value + "' where Id= " + _operationRecord.InstrumentList.Id);
+ }
+ if (items[1] == "OpeRecordInfo")
+ {
+ i += UpdateOperationRecordInfo(items[2] + "='" + value + "' where Id= " + _operationRecord.OpeRecordInfo.Id);
+ }
}
else
{
- i += Update(items[1] + "='" + value + "' where Id= " + _operationRecord.Id);
+ if (items[1] == "OperationDoctor")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.OperationDoctor, 1);
+ }
+ else if (items[1] == "Assistant1")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.Assistant1, 2);
+ }
+ else if (items[1] == "Assistant2")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.Assistant2, 3);
+ }
+ else if (items[1] == "Assistant3")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.Assistant3, 4);
+ }
+ else if (items[1] == "AnesthesiaDoctor")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.AnesthesiaDoctor, 5);
+ }
+ else if (items[1] == "InstrumentNurse")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.InstrumentNurse, 6);
+ }
+ else if (items[1] == "TourNurse")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.TourNurse, 7);
+ }
+ else if (items[1] == "OrtherDoctorId")
+ {
+ i += AddPerson(_operationRecord, _operationRecord.OrtherDoctorId, 11);
+ }
+ else if (items[1] == "Operation")
+ {
+ i += AddOperation(_operationRecord, _operationRecord.Operation);
+ }
+ else if (items[1] == "Applyoperation")
+ {
+ i += AddApplyOperation(_operationRecord, _operationRecord.Applyoperation);
+ }
+ else if (items[1] == "Applydiagnose")
+ {
+ i += AddApplyDiagnose(_operationRecord, _operationRecord.Applydiagnose);
+ }
+ else if (items[1] == "AnaesthesiaMethodId")
+ {
+ i += AddAnaesthesiaMethod(_operationRecord, _operationRecord.AnaesthesiaMethodId);
+ }
+ else if (items[1] == "OperationSiteId")
+ {
+ i += AddOperationSite(_operationRecord, _operationRecord.OperationSiteId);
+ }
+ else if (items[1] == "Height" || items[1] == "Weight")
+ {
+ i += UpdatePatient(items[1] + "='" + value + "' where Id= " + _operationRecord.PatientId);
+ }
+ else
+ {
+ i += Update(items[1] + "='" + value + "' where Id= " + _operationRecord.Id);
+ }
}
- //}
}
catch (Exception)
{
diff --git a/DrawGraph/AreaManage/InstrumentDataManage.cs b/DrawGraph/AreaManage/InstrumentDataManage.cs
index 301af85..d22ebbf 100644
--- a/DrawGraph/AreaManage/InstrumentDataManage.cs
+++ b/DrawGraph/AreaManage/InstrumentDataManage.cs
@@ -30,7 +30,7 @@ namespace DrawGraph
public void init()
{
- txtObj = template.GetPackObjectOTag("InstrumentDataManage_TextPackObj_40");
+ txtObj = template.GetPackObjectOTag("InstrumentDataManage_TextPackObj_44");
tablePackObj = template.GetPackObjectOTag("InstrumentDataManage_TablePackObj_39");
tablePackObj1 = template.GetPackObjectOTag("InstrumentDataManage_TablePackObj_41");
tablePackObj2 = template.GetPackObjectOTag("InstrumentDataManage_TablePackObj_42");
@@ -38,7 +38,7 @@ namespace DrawGraph
if (tablePackObj != null)
{
chaY = (tablePackObj.EndY - tablePackObj.Y) / tablePackObj.Rows;
- fontsize = txtObj.FontSize - 2;
+ fontsize = txtObj.FontSize;
}
myOpeRecord = OpeRecord as OperationRecord;
}
@@ -67,6 +67,7 @@ namespace DrawGraph
private void SetApplianceMethod(List ApplianceRecordList)
{
if (tablePackObj == null) return;
+ int Columns = int.Parse(tablePackObj1.Columns.ToString());
for (int i = 0; i < tablePackObj.Rows * 3 + 1; i++)
{
DelAddObj("ApplianceRecordList" + i);
@@ -74,64 +75,77 @@ namespace DrawGraph
DelAddObj("ApplianceRecordListOpeDoing" + i);
DelAddObj("ApplianceRecordListCloseFront" + i);
DelAddObj("ApplianceRecordListCloseLast" + i);
+ DelAddObj("ApplianceRecordListSkinCloseLast" + i);
}
- for (int index = 0; index < tablePackObj.Rows - 1; index++)
+ for (int index = 0; index < tablePackObj.Rows; index++)
{
if (ApplianceRecordList.Count > 0 && index < ApplianceRecordList.Count)
{
- double y = tablePackObj.RealY + chaY + chaY * index;
+ double y = tablePackObj.RealY + chaY * index;
ZUtil.DrawText(ApplianceRecordList[index].ApplianceName, tablePackObj.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordList" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].OpeFront != null && ApplianceRecordList[index].OpeFront != "")// && ApplianceRecordList[index].OpeFront != @"\"
ZUtil.DrawText(ApplianceRecordList[index].OpeFront, tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeFront" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].OpeDoing != null && ApplianceRecordList[index].OpeDoing != "")// && ApplianceRecordList[index].OpeDoing != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].OpeDoing, (tablePackObj1.EndX - tablePackObj1.X) / 4 * 1 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeDoing" + index, Color.Black, fontsize, false);
+ ZUtil.DrawText(ApplianceRecordList[index].OpeDoing, (tablePackObj1.EndX - tablePackObj1.X) / Columns * 1 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeDoing" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].CloseFront != null && ApplianceRecordList[index].CloseFront != "")//&& ApplianceRecordList[index].CloseFront != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].CloseFront, (tablePackObj1.EndX - tablePackObj1.X) / 4 * 2 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseFront" + index, Color.Black, fontsize, false);
+ ZUtil.DrawText(ApplianceRecordList[index].CloseFront, (tablePackObj1.EndX - tablePackObj1.X) / Columns * 2 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseFront" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].CloseLast != null && ApplianceRecordList[index].CloseLast != "")//&& ApplianceRecordList[index].CloseLast != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].CloseLast, (tablePackObj1.EndX - tablePackObj1.X) / 4 * 3 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseLast" + index, Color.Black, fontsize, false);
+ ZUtil.DrawText(ApplianceRecordList[index].CloseLast, (tablePackObj1.EndX - tablePackObj1.X) / Columns * 3 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseLast" + index, Color.Black, fontsize, false);
+ if (Columns == 5)
+ if (ApplianceRecordList[index].SkinCloseLast != null && ApplianceRecordList[index].SkinCloseLast != "")//&& ApplianceRecordList[index].SkinCloseLast != @"\"
+ ZUtil.DrawText(ApplianceRecordList[index].SkinCloseLast, (tablePackObj1.EndX - tablePackObj1.X) / Columns * 4 + tablePackObj1.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListSkinCloseLast" + index, Color.Black, fontsize, false);
continue;
}
}
- for (int index = (int)tablePackObj.Rows - 1; index < tablePackObj.Rows * 2 - 2; index++)
+ for (int index = (int)tablePackObj.Rows; index < tablePackObj.Rows * 2; index++)
{
if (ApplianceRecordList.Count > 0 && index < ApplianceRecordList.Count)
{
- double y = tablePackObj.RealY + chaY + (chaY * (index + 1 - tablePackObj.Rows));
- ZUtil.DrawText(ApplianceRecordList[index].ApplianceName, (tablePackObj.EndX - tablePackObj.X) / 3 * 1 + tablePackObj.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordList" + index, Color.Black, fontsize, false);
+ double y = tablePackObj.RealY + (chaY * (index - tablePackObj.Rows));
+ ZUtil.DrawText(ApplianceRecordList[index].ApplianceName, (tablePackObj.EndX - tablePackObj.X) / 2 + tablePackObj.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordList" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].OpeFront != null && ApplianceRecordList[index].OpeFront != "")//&& ApplianceRecordList[index].OpeFront != @"\"
ZUtil.DrawText(ApplianceRecordList[index].OpeFront, tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeFront" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].OpeDoing != null && ApplianceRecordList[index].OpeDoing != "")//&& ApplianceRecordList[index].OpeDoing != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].OpeDoing, (tablePackObj2.EndX - tablePackObj2.X) / 4 * 1 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeDoing" + index, Color.Black, fontsize, false);
+ ZUtil.DrawText(ApplianceRecordList[index].OpeDoing, (tablePackObj2.EndX - tablePackObj2.X) / Columns * 1 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeDoing" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].CloseFront != null && ApplianceRecordList[index].CloseFront != "")//&& ApplianceRecordList[index].CloseFront != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].CloseFront, (tablePackObj2.EndX - tablePackObj2.X) / 4 * 2 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseFront" + index, Color.Black, fontsize, false);
+ ZUtil.DrawText(ApplianceRecordList[index].CloseFront, (tablePackObj2.EndX - tablePackObj2.X) / Columns * 2 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseFront" + index, Color.Black, fontsize, false);
if (ApplianceRecordList[index].CloseLast != null && ApplianceRecordList[index].CloseLast != "")// && ApplianceRecordList[index].CloseLast != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].CloseLast, (tablePackObj2.EndX - tablePackObj2.X) / 4 * 3 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseLast" + index, Color.Black, fontsize, false);
+ ZUtil.DrawText(ApplianceRecordList[index].CloseLast, (tablePackObj2.EndX - tablePackObj2.X) / Columns * 3 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseLast" + index, Color.Black, fontsize, false);
+ if (Columns == 5)
+ if (ApplianceRecordList[index].SkinCloseLast != null && ApplianceRecordList[index].SkinCloseLast != "")// && ApplianceRecordList[index].SkinCloseLast != @"\"
+ ZUtil.DrawText(ApplianceRecordList[index].SkinCloseLast, (tablePackObj2.EndX - tablePackObj2.X) / Columns * 4 + tablePackObj2.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListSkinCloseLast" + index, Color.Black, fontsize, false);
continue;
}
}
- for (int index = (int)tablePackObj.Rows * 2 - 2; index < tablePackObj.Rows * 3 - 3; index++)
- {
- if (ApplianceRecordList.Count > 0 && index < ApplianceRecordList.Count)
- {
- double y = tablePackObj.RealY + chaY + (chaY * (index + 2 - tablePackObj.Rows * 2));
- ZUtil.DrawText(ApplianceRecordList[index].ApplianceName, (tablePackObj.EndX - tablePackObj.X) / 3 * 2 + tablePackObj.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordList" + index, Color.Black, fontsize, false);
+ //if (tablePackObj3 != null)
+ //{
+ // for (int index = (int)tablePackObj.Rows * 2 - 2; index < tablePackObj.Rows * 3 - 3; index++)
+ // {
+ // if (ApplianceRecordList.Count > 0 && index < ApplianceRecordList.Count)
+ // {
+ // double y = tablePackObj.RealY + (chaY * (index + 2 - tablePackObj.Rows * 2));
+ // ZUtil.DrawText(ApplianceRecordList[index].ApplianceName, (tablePackObj.EndX - tablePackObj.X) / 3 * 2 + tablePackObj.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordList" + index, Color.Black, fontsize, false);
- if (ApplianceRecordList[index].OpeFront != null && ApplianceRecordList[index].OpeFront != "")//&& ApplianceRecordList[index].OpeFront != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].OpeFront, tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeFront" + index, Color.Black, fontsize, false);
- if (ApplianceRecordList[index].OpeDoing != null && ApplianceRecordList[index].OpeDoing != "")//&& ApplianceRecordList[index].OpeDoing != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].OpeDoing, (tablePackObj3.EndX - tablePackObj3.X) / 4 * 1 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeDoing" + index, Color.Black, fontsize, false);
- if (ApplianceRecordList[index].CloseFront != null && ApplianceRecordList[index].CloseFront != "")//&& ApplianceRecordList[index].CloseFront != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].CloseFront, (tablePackObj3.EndX - tablePackObj3.X) / 4 * 2 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseFront" + index, Color.Black, fontsize, false);
- if (ApplianceRecordList[index].CloseLast != null && ApplianceRecordList[index].CloseLast != "")// && ApplianceRecordList[index].CloseLast != @"\"
- ZUtil.DrawText(ApplianceRecordList[index].CloseLast, (tablePackObj3.EndX - tablePackObj3.X) / 4 * 3 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseLast" + index, Color.Black, fontsize, false);
+ // if (ApplianceRecordList[index].OpeFront != null && ApplianceRecordList[index].OpeFront != "")//&& ApplianceRecordList[index].OpeFront != @"\"
+ // ZUtil.DrawText(ApplianceRecordList[index].OpeFront, tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeFront" + index, Color.Black, fontsize, false);
+ // if (ApplianceRecordList[index].OpeDoing != null && ApplianceRecordList[index].OpeDoing != "")//&& ApplianceRecordList[index].OpeDoing != @"\"
+ // ZUtil.DrawText(ApplianceRecordList[index].OpeDoing, (tablePackObj3.EndX - tablePackObj3.X) / Columns * 1 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListOpeDoing" + index, Color.Black, fontsize, false);
+ // if (ApplianceRecordList[index].CloseFront != null && ApplianceRecordList[index].CloseFront != "")//&& ApplianceRecordList[index].CloseFront != @"\"
+ // ZUtil.DrawText(ApplianceRecordList[index].CloseFront, (tablePackObj3.EndX - tablePackObj3.X) / Columns * 2 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseFront" + index, Color.Black, fontsize, false);
+ // if (ApplianceRecordList[index].CloseLast != null && ApplianceRecordList[index].CloseLast != "")// && ApplianceRecordList[index].CloseLast != @"\"
+ // ZUtil.DrawText(ApplianceRecordList[index].CloseLast, (tablePackObj3.EndX - tablePackObj3.X) / Columns * 3 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListCloseLast" + index, Color.Black, fontsize, false);
+ // if (Columns == 5)
+ // if (ApplianceRecordList[index].SkinCloseLast != null && ApplianceRecordList[index].SkinCloseLast != "")// && ApplianceRecordList[index].SkinCloseLast != @"\"
+ // ZUtil.DrawText(ApplianceRecordList[index].SkinCloseLast, (tablePackObj3.EndX - tablePackObj3.X) / Columns * 4 + tablePackObj3.X + tablePackObj.RealX, y, ZedControl, "ApplianceRecordListSkinCloseLast" + index, Color.Black, fontsize, false);
- continue;
- }
- }
+ // continue;
+ // }
+ // }
+ //}
}
public override void editAr_Click(object sender, EventArgs e)
@@ -146,10 +160,12 @@ namespace DrawGraph
txt_DoubleClick(aEdit1.CControl, null);
}
+ public SelectWorkerValue aSyncSelectDict = null;
public override void Bind()
{
base.Bind();
init();
+ aSyncSelectDict = SelectWorkerValue.CreateInstance();
List ables = PackManage.ListPob.Where(s => s is AbleEditPackObj).ToList();
foreach (PackObjBase pack in ables)
{
@@ -192,7 +208,7 @@ namespace DrawGraph
if (pan != null)
{
foreach (Control conl in pan.Controls)
- {
+ {
CheckBox chBox = conl as CheckBox;
if (chBox != null)
{
@@ -203,7 +219,7 @@ namespace DrawGraph
}
}
}
- }
+ }
else
{
if (ableEdit.ControlType == EControlType.TextBox)
@@ -399,14 +415,7 @@ namespace DrawGraph
else
{
value = ableEdit.PackValue;
- string typeName = ableEdit.ControlTitleText;
- //如果是“人员,2”这种需要把人员取出来
- if (ableEdit.ControlTitleText.Contains(",") || ableEdit.ControlTitleText.Contains(","))
- {
- string[] strs = ableEdit.ControlTitleText.Replace(",", ",").Split(',');
- typeName = strs[0];
- }
- text = DocumentEntityMethod.GetDictionaryValuesById(ableEdit.PackValue, typeName);
+ text = DBManage.GetDictionaryValuesById(ableEdit.PackValue, ableEdit.ControlTitleText);
}
break;
default:
@@ -416,7 +425,7 @@ namespace DrawGraph
}
//设置属性的值
- template.SetObjValue(OpeRecord, ableEdit.ClassDataSourceName, text, value);
+ template.SetObjValue(OpeRecord, ableEdit.ClassDataSourceName, text, value, false);
//如果有逻辑区域,则区域进行更新。
//template.NotificationAreaBindingUpdate(template.ProjectName + "逻辑");
}
@@ -444,6 +453,20 @@ namespace DrawGraph
value = ableEdit.CControl.Text;
break;
}
+ switch (ableEdit.ClassDataSourceName)
+ {
+ case "OperationRecord.InstrumentList.InstrumentNurse":
+ Worker_Click(ableEdit, e, 3);
+ break;
+ case "OperationRecord.InstrumentList.TourNurse":
+ Worker_Click(ableEdit, e, 3);
+ break;
+ //default:
+ // //在此处写日志
+ // aEdit1.IsVisible = !aEdit1.IsVisible;
+ // MessageBox.Show("没找到-" + aEdit1.ClassDataSourceName + "-属性的事件");
+ // break;
+ }
}
catch (Exception ex)
{
@@ -468,6 +491,94 @@ namespace DrawGraph
//}
+ private void Worker_Click(AbleEditPackObj sender, EventArgs e, int _workersType)
+ {
+ AbleEditPackObj ableEdit = sender;
+ if (ableEdit == null) return;
+
+ ableEdit.CControl.TextChanged -= new EventHandler(CControl_TextChanged);
+ ableEdit.CControl.TextChanged += new EventHandler(CControl_TextChanged);
+ ableEdit.CControl.MouseDown -= new MouseEventHandler(CControl_MouseDown);
+ ableEdit.CControl.MouseDown += new MouseEventHandler(CControl_MouseDown);
+ ableEdit.CControl.KeyUp -= new KeyEventHandler(CControl_KeyUp);
+ ableEdit.CControl.KeyUp += new KeyEventHandler(CControl_KeyUp);
+
+ if (myOpeRecord != null)
+ {
+ Control conl = sender.CControl;
+ if (conl is TextBox)
+ {
+ ((TextBox)conl).BorderStyle = BorderStyle.Fixed3D;
+ ((TextBox)conl).Focus();
+ if (sender.PackValue != null && sender.PackValue.Trim() != "")
+ {
+ if (((TextBox)conl).Text.LastIndexOf(',') != sender.PackText.Length)
+ ((TextBox)conl).Text = ((TextBox)conl).Text + ",";
+ ((TextBox)conl).Select(((TextBox)conl).Text.Length, 1);
+ }
+ }
+
+ aSyncSelectDict.Show(template, OpeRecord, sender, _workersType.ToString(), false);
+
+ SetAbleEditView(ableEdit);
+ }
+ }
+
+ private void CControl_TextChanged(object sender, EventArgs e)
+ {
+ if (myOpeRecord != null)
+ {
+ Control conl = sender as Control;
+
+ aSyncSelectDict.ShowSel(conl, OpeRecord);
+ }
+ }
+ private void CControl_KeyUp(object sender, KeyEventArgs e)
+ {
+ if (myOpeRecord != null)
+ {
+ Control conl = sender as Control;
+ if (conl.Text != SelectWorkerValue.Value)
+ if (e.KeyCode == Keys.Delete || e.KeyCode == Keys.Back)
+ {
+ aSyncSelectDict.DelSel(conl, OpeRecord);
+ }
+ }
+ }
+ private void CControl_MouseDown(object sender, MouseEventArgs e)
+ {
+ if (myOpeRecord != null)
+ {
+ TextBox conl = sender as TextBox;
+ string leftStr = conl.Text.Substring(0, conl.SelectionStart);
+ string rightStr = conl.Text.Substring(conl.SelectionStart, conl.Text.Length - conl.SelectionStart);
+ int startIndex = 0;
+ int endLength = conl.Text.Length;
+
+ if (leftStr.Contains(","))
+ {
+ int beginindex = leftStr.LastIndexOf(',');
+ startIndex = beginindex + 1;
+ if (rightStr.Contains(","))
+ {
+ endLength = rightStr.IndexOf(",") + (leftStr.Length - beginindex);
+ }
+ //else
+ //{
+ // endLength = conl.Text.Length - startIndex;
+ //}
+ }
+ else
+ {
+ if (rightStr.Contains(","))
+ {
+ endLength = rightStr.IndexOf(",") + leftStr.Length + 1;
+ }
+ }
+ conl.Select(startIndex, endLength);
+
+ }
+ }
private void txt_Leave(object sender, EventArgs e)
{
Control control = (Control)sender;
diff --git a/DrawGraph/AreaManage/OperationRecord.cs b/DrawGraph/AreaManage/OperationRecord.cs
index 014298f..3165948 100644
--- a/DrawGraph/AreaManage/OperationRecord.cs
+++ b/DrawGraph/AreaManage/OperationRecord.cs
@@ -398,8 +398,8 @@ namespace DrawGraph
private string rescueTime;
private string rescuePerson;
private string rescueTechnology;
- private string spileInTime;
- private string spileOutTime;
+ private DateTime? spileInTime;
+ private DateTime? spileOutTime;
private string spileSituation;
private string spileWard;
private string spileBeforCondition;
@@ -688,7 +688,7 @@ namespace DrawGraph
/// 气管导管插入时间
///
[ClassAttributs(Description = "气管导管插入时间")]
- public string SpileInTime
+ public DateTime? SpileInTime
{
get { return spileInTime; }
set { spileInTime = value; }
@@ -697,7 +697,7 @@ namespace DrawGraph
/// 气管导管拔除时间
///
[ClassAttributs(Description = "气管导管拔除时间")]
- public string SpileOutTime
+ public DateTime? SpileOutTime
{
get { return spileOutTime; }
set { spileOutTime = value; }
@@ -1182,6 +1182,8 @@ namespace DrawGraph
public int currentPage { get; set; }
[ClassAttributs(Description = "当前页数")]
public int pageCount { get; set; }
+ [ClassAttributs(Description = "手术间")]
+ public string OperationRoom { get; set; }
[ClassAttributs(Description = "是否只读")]
public bool IsReadOnly = false;
[ClassAttributs(Description = "绘图开始时间")]
@@ -1189,11 +1191,7 @@ namespace DrawGraph
[ClassAttributs(Description = "页开始时间")]
public DateTime pageBegin;
[ClassAttributs(Description = "页结束时间")]
- public DateTime lastPageBegin;
- [ClassAttributs(Description = "入CG时间")]
- public DateTime? InCGTime;
- [ClassAttributs(Description = "出CG时间")]
- public DateTime? OutCGTime;
+ public DateTime lastPageBegin;
[NoCreatControlAttributs]
public string InCGType;
[NoCreatControlAttributs]
diff --git a/DrawGraph/AreaManage/SelectWorkerValue.cs b/DrawGraph/AreaManage/SelectWorkerValue.cs
index 7219dcf..b50873e 100644
--- a/DrawGraph/AreaManage/SelectWorkerValue.cs
+++ b/DrawGraph/AreaManage/SelectWorkerValue.cs
@@ -12,6 +12,7 @@ namespace DrawGraph
{
private volatile static SelectWorkerValue _instance = null;
private static readonly object lockHelper = new object();
+ public static bool isUpdate = true;
private SelectWorkerValue() { }
public static SelectWorkerValue CreateInstance()
@@ -95,8 +96,9 @@ namespace DrawGraph
public static string Key;
public static string Value;
- public void Show(TemplateManage _template, object _OpeRecord, AbleEditPackObj _aEdit, string _type)
+ public void Show(TemplateManage _template, object _OpeRecord, AbleEditPackObj _aEdit, string _type, bool _isUpdate = true)
{
+ isUpdate = _isUpdate;
type = _type;
aEdit = _aEdit;
template = _template;
@@ -104,7 +106,7 @@ namespace DrawGraph
if (aEdit == null) return;
Key = aEdit.PackValue;
Value = aEdit.PackText;
- DataTable dt = DBManage.GetDictDataTable((OpeRecord as OperationRecord),"", aEdit.ControlTitleText, type.ToString(), Key);
+ DataTable dt = DBManage.GetDictDataTable((OpeRecord as OperationRecord), "", aEdit.ControlTitleText, type.ToString(), Key);
dgvZd.DataSource = dt;
dgvZd.Location = new System.Drawing.Point(aEdit.CControl.Location.X, aEdit.CControl.Location.Y + aEdit.CControl.Height);
if (_type == "手术" || _type == "诊断")
@@ -240,7 +242,6 @@ namespace DrawGraph
// index = dgvZd.CurrentRow.Index;
// }
//}
-
static void SetContent(int index)
{
if (dgvZd.Rows[index].Cells["Name"].EditedFormattedValue.ToString() != "")
@@ -262,11 +263,14 @@ namespace DrawGraph
index = 0;
dgvZd.Visible = false;
- //设置属性的值
- aEdit.IsVisible = !aEdit.IsVisible;
- template.SetObjValue(OpeRecord, aEdit.ClassDataSourceName, Value, Key, true);
+ if (isUpdate == true)
+ {
+ //设置属性的值
+ aEdit.IsVisible = !aEdit.IsVisible;
+ }
+ template.SetObjValue(OpeRecord, aEdit.ClassDataSourceName, Value, Key, isUpdate);
}
}
-
+
}
}
diff --git a/DrawGraph/AreaManage/TempDataManage.cs b/DrawGraph/AreaManage/TempDataManage.cs
index d2dc86a..335159a 100644
--- a/DrawGraph/AreaManage/TempDataManage.cs
+++ b/DrawGraph/AreaManage/TempDataManage.cs
@@ -152,6 +152,8 @@ namespace DrawGraph
ableEdit.CControl.KeyDown += new KeyEventHandler(text_keyDown);
ableEdit.CControl.GotFocus -= new EventHandler(txt_Focus);
ableEdit.CControl.GotFocus += new EventHandler(txt_Focus);
+ ((TextBox) ableEdit.CControl).BorderStyle = BorderStyle.Fixed3D;
+
}
ableEdit.CControl.Leave -= new EventHandler(txt_Leave);
ableEdit.CControl.Leave += new EventHandler(txt_Leave);
@@ -284,7 +286,7 @@ namespace DrawGraph
/// 设置可编辑组件的显示样式
///
///
- private void SetAbleEditView(AbleEditPackObj ableEdit)
+ private void SetAbleEditView(AbleEditPackObj ableEdit,bool isUpdate=false)
{
string span = "";
double spanSum = Math.Round((float)(ableEdit.OneUnitCount / 18));
@@ -378,7 +380,7 @@ namespace DrawGraph
}
//设置属性的值
- template.SetObjValue(OpeRecord, ableEdit.ClassDataSourceName, text, value);
+ template.SetObjValue(OpeRecord, ableEdit.ClassDataSourceName, text, value, isUpdate);
//如果有逻辑区域,则区域进行更新。
template.NotificationAreaBindingUpdate(template.ProjectName + "逻辑");
}
@@ -444,7 +446,7 @@ namespace DrawGraph
bool updateOk = true;
try
{
- SetAbleEditView(ableEdit);
+ SetAbleEditView(ableEdit,true);
if (ableEdit.ControlType == EControlType.RadioButtonList)
{
if ((sender as CheckBox).Checked == true)
diff --git a/DrawGraph/BoardPack/AbleEditPackObj.cs b/DrawGraph/BoardPack/AbleEditPackObj.cs
index 7be4e35..bfc9edf 100644
--- a/DrawGraph/BoardPack/AbleEditPackObj.cs
+++ b/DrawGraph/BoardPack/AbleEditPackObj.cs
@@ -384,7 +384,7 @@ namespace DrawGraph
{
this.control.Text = base.PackText;
textBox.Multiline = true;
- ((TextBox)this.control).BorderStyle = BorderStyle.None;
+ ((TextBox)this.control).BorderStyle = BorderStyle.FixedSingle;
}
}
}
diff --git a/DrawGraph/Graph/Util.cs b/DrawGraph/Graph/Util.cs
index 32ae48a..93174d8 100644
--- a/DrawGraph/Graph/Util.cs
+++ b/DrawGraph/Graph/Util.cs
@@ -13,6 +13,7 @@ namespace DrawGraph
{
public class Util
{
+ public static FontSpec Font14 = new FontSpec("宋体", 14.0f, Color.Black, true, false, false);
public static FontSpec Font16 = new FontSpec("宋体", 16.0f, Color.Black, true, false, false);
public static void DrawText(string letter, double x, double y, ZedGraphControl zedGraph, FontSpec font)
diff --git a/DrawGraphManagement/AIMS.xml b/DrawGraphManagement/AIMS.xml
index e44cf14..102438a 100644
--- a/DrawGraphManagement/AIMS.xml
+++ b/DrawGraphManagement/AIMS.xml
@@ -1,6 +1,6 @@
- Data Source=.;Initial Catalog=AIMSDB_SXTLYY;User ID=sa;Password=Test2020;
+ Data Source=.;Initial Catalog=AIMSDB_QHDSGRYY;User ID=sa;Password=Test2020;
Data Source=.;Initial Catalog=AIMSDB_DATA;User ID=sa;Password=123456;
Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.7)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl2))));Persist Security Info=True;User ID=smview;Password=i39;