打印排程和术中手术信息开发

This commit is contained in:
leomo 2022-11-08 14:33:16 +08:00
parent 9a11358e33
commit 5e3d5cd36c
13 changed files with 1723 additions and 1008 deletions

View File

@ -389,6 +389,7 @@
<Compile Include="OperationFront\FrmScheduling3.designer.cs">
<DependentUpon>FrmScheduling3.cs</DependentUpon>
</Compile>
<Compile Include="OremrUserControl\PanelScrollHelper.cs" />
<Compile Include="OremrUserControl\PrescriptionDocument.cs">
<SubType>UserControl</SubType>
</Compile>
@ -1133,6 +1134,9 @@
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<None Include="Template\手术排程模板.xlt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Template\排班按月.xlt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

View File

@ -372,7 +372,6 @@
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

View File

@ -1042,7 +1042,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
if (PatientId != 0)
{
AIMS.OperationDoing.AnasRecordBill.UI.frmOperationInfoNew frmOperationInfo = new frmOperationInfoNew();
AIMS.OperationDoing.AnasRecordBill.UI.frmOperationInfoNew2 frmOperationInfo = new frmOperationInfoNew2();
frmOperationInfo._record = _record;
frmOperationInfo.FormClosed += new FormClosedEventHandler(plRefresh_Click);
frmOperationInfo.ShowDialog();

View File

@ -74,9 +74,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
#region
private void InitData()
{
BindBasicDictionaryToComboBox(cbomzpm, "麻醉平面");
BindBasicDictionaryToComboBox(cbomzxg, "麻醉效果");
{
listOnit = BPerson.GetruleAnesthesiaDoctor("");
this.txtruleAnesthesiaDoctor.Items.AddRange(listOnit.ToArray());
@ -126,9 +124,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
cboOperationLevel.Text = OPInfo.OperationLevel;
cboOperationLevel.Tag = OPInfo.OperationLevelId;
txtOperationCut.Tag = OPInfo.OperationCutId;
txtOperationCut.Text = OPInfo.OperationCut;
txtOperationSiteId.Text = OPInfo.OperationSite;
txtOperationSiteId.Tag = OPInfo.OperationSiteId;
txtOperationCut.Text = OPInfo.OperationCut;
//麻醉医生 || 麻醉接台 || 巡回护士|| 护士接台||器械护士||器械接台||体外循环
txtAnesthesiaByDoctor.Text = OPInfo.AnesthesiaSucceed;
txtTourNurseSucceed.Text = OPInfo.TourNurseSucceed;
@ -156,45 +152,8 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
if (OPInfo.RuleNurse != null) txtruleNurse.Text = OPInfo.RuleNurse;
txtOperationCut.Text = OPInfo.OperationCut;
cboOperationLevel.Text = OPInfo.OperationLevel;
txtOperationSiteId.Text = OPInfo.OperationSite;
cboOperationLevel.Text = OPInfo.OperationLevel;
cbomzpm.Text = OPInfo.AnesthesiaPlane;
cbomzxg.Text = OPInfo.AnesthesiaEffect;
cmbBRQK.Text = OPInfo.SpecialSituation;
if (OPInfo.Whereabouts != null && OPInfo.Whereabouts.ToString() != "")
{
if (OPInfo.Whereabouts == "恢复室")
{
radioButton2.Checked = true;
}
else if (OPInfo.Whereabouts == "病房")
{
radioButton1.Checked = true;
}
else if (OPInfo.Whereabouts == "计划入ICU")
{
radioButton3.Checked = true;
}
else if (OPInfo.Whereabouts == "非计划入ICU")
{
radioButton6.Checked = true;
}
else if (OPInfo.Whereabouts == "急诊")
{
radioButton4.Checked = true;
}
else if (OPInfo.Whereabouts == "离院")
{
radioButton5.Checked = true;
}
else if (OPInfo.Whereabouts == "死亡")
{
radioButton7.Checked = true;
}
}
if (OPInfo.AnesthesiaMethodFirstName != null)
{
rdoYes.Checked = true;
@ -202,13 +161,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
txtAnaesthesiaMethod.Tag = OPInfo.AnesthesiaMethodLastName;
txtCause.Text = OPInfo.AnesthesiaMethodChangeReason;
if (OPInfo.AnesthesiaMethodChangeTime != null) dtpTime.Value = OPInfo.AnesthesiaMethodChangeTime.Value;
}
cboQXCD.Text = OPInfo.StewardSober;
cboHXDTCCD.Text = OPInfo.StewardBreathing;
cboZTHDD.Text = OPInfo.StewardLimbActivity;
cboSteward.Text = OPInfo.StewardNumber;
}
}
}
catch (Exception ex)
@ -223,44 +176,18 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
{
try
{
OPInfo.AnesthesiaPlane = cbomzpm.Text;
OPInfo.AnesthesiaEffect = cbomzxg.Text;
OPInfo.SpecialSituation = cmbBRQK.Text;
if (OPInfo == null) OPInfo = new OperationRecordInfo();
OPInfo.OperationRecordId = _record.Id;
OPInfo.PatientId = _record.PatientId;
OPInfo.ApplyId = _record.OperationApplyId;
OPInfo.OperatorTime = DateTime.Now;
OPInfo.Experts = txtexperts.Text.Trim();
OPInfo.RuleAnesthesiaDoctor = txtruleAnesthesiaDoctor.Text.Trim();
OPInfo.RuleNurse = txtruleNurse.Text.Trim();
OPInfo.OperationCut = txtOperationCut.Text;
OPInfo.OperationLevel = cboOperationLevel.Text;
OPInfo.OperationSite = txtOperationSiteId.Text;
SetOPInfo();
if (radioButton2.Checked == true)
{
OPInfo.Whereabouts = "恢复室";
}
else if (radioButton1.Checked == true)
{
OPInfo.Whereabouts = "病房";
}
else if (radioButton3.Checked == true)
{
OPInfo.Whereabouts = "计划入ICU";
}
else if (radioButton6.Checked == true)
{
OPInfo.Whereabouts = "非计划入ICU";
}
else if (radioButton4.Checked == true)
{
OPInfo.Whereabouts = "急诊";
}
else if (radioButton5.Checked == true)
{
OPInfo.Whereabouts = "离院";
}
else if (radioButton7.Checked == true)
{
OPInfo.Whereabouts = "死亡";
}
OPInfo.OperationLevel = cboOperationLevel.Text;
if (rdoYes.Checked == true && txtAnaesthesiaMethod.Text != "")
{
@ -399,34 +326,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
}
#endregion
#region
private void SetOPInfo()
{
if (OPInfo == null) OPInfo = new OperationRecordInfo();
string intubateOther = string.Empty;
string M;
string T;
string S;
OPInfo.Experts = txtexperts.Text.Trim();
OPInfo.RuleAnesthesiaDoctor = txtruleAnesthesiaDoctor.Text.Trim();
OPInfo.RuleNurse = txtruleNurse.Text.Trim();
if (cboQXCD.Text.Trim() == "") OPInfo.StewardSober = null; else OPInfo.StewardSober = cboQXCD.Text;
if (cboHXDTCCD.Text.Trim() == "") OPInfo.StewardBreathing = null; else OPInfo.StewardBreathing = cboHXDTCCD.Text;
if (cboZTHDD.Text.Trim() == "") OPInfo.StewardLimbActivity = null; else OPInfo.StewardLimbActivity = cboZTHDD.Text;
if (cboSteward.Text.Trim() == "") OPInfo.StewardNumber = null; else OPInfo.StewardNumber = cboSteward.Text;
OPInfo.OperationRecordId = _record.Id;
OPInfo.PatientId = _record.PatientId;
OPInfo.ApplyId = _record.OperationApplyId;
OPInfo.OperatorTime = DateTime.Now;
}
#endregion
#region
public void txtDateTime_MouseDown(object sender, MouseEventArgs e)
{
@ -775,14 +675,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
// label20.ForeColor = Color.Red;
// txtOperationCut.Focus();
// b = false;
//}
if (cbomzxg.Text == "")
{
MessageBox.Show("请填写麻醉效果");
label14.ForeColor = Color.Red;
cbomzxg.Focus();
b = false;
}
//}
return b;
}
#endregion
@ -888,32 +781,6 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
int idxStart = txtAnaesthesiaMethod.Text.LastIndexOf(" ,");
txtAnaesthesiaMethod.Text = txtAnaesthesiaMethod.Text.Substring(0, idxStart);
}
}
/// <summary>
/// 清醒程度
/// </summary>
int StewardSober = 0;
/// <summary>
/// 呼吸道通畅程度
/// </summary>
int StewardBreathing = 0;
/// <summary>
/// 肢体活动度
/// </summary>
int StewardLimbActivity = 0;
/// <summary>
/// 总评分
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void cboQXCD_SelectedIndexChanged(object sender, EventArgs e)
{
if (cboQXCD.Text != null && cboQXCD.Text.Trim() != "") StewardSober = int.Parse(cboQXCD.Text);
if (cboHXDTCCD.Text != null && cboHXDTCCD.Text.Trim() != "") StewardBreathing = int.Parse(cboHXDTCCD.Text);
if (cboZTHDD.Text != null && cboZTHDD.Text.Trim() != "") StewardLimbActivity = int.Parse(cboZTHDD.Text);
cboSteward.Text = (StewardSober + StewardBreathing + StewardLimbActivity).ToString();
}
}
}
}

View File

@ -54,43 +54,18 @@
this.txtOperationCut = new System.Windows.Forms.ComboBox();
this.cboOperationLevel = new System.Windows.Forms.ComboBox();
this.label20 = new System.Windows.Forms.Label();
this.label35 = new System.Windows.Forms.Label();
this.txtOperationSiteId = new DevComponents.DotNetBar.Controls.TextBoxX();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.lblIsCompound = new System.Windows.Forms.Label();
this.txtCause = new DevComponents.DotNetBar.Controls.TextBoxX();
this.rdoNo = new System.Windows.Forms.RadioButton();
this.dtpTime = new System.Windows.Forms.DateTimePicker();
this.rdoYes = new System.Windows.Forms.RadioButton();
this.label16 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.txtAnaesthesiaMethod = new DevComponents.DotNetBar.Controls.TextBoxX();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.label17 = new System.Windows.Forms.Label();
this.cboSteward = new System.Windows.Forms.ComboBox();
this.cboZTHDD = new System.Windows.Forms.ComboBox();
this.label22 = new System.Windows.Forms.Label();
this.cboHXDTCCD = new System.Windows.Forms.ComboBox();
this.label23 = new System.Windows.Forms.Label();
this.cboQXCD = new System.Windows.Forms.ComboBox();
this.label24 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.dtpTime = new System.Windows.Forms.DateTimePicker();
this.label15 = new System.Windows.Forms.Label();
this.rdoYes = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
this.cbomzxg = new System.Windows.Forms.ComboBox();
this.cbomzpm = new System.Windows.Forms.ComboBox();
this.label21 = new System.Windows.Forms.Label();
this.cmbBRQK = new System.Windows.Forms.ComboBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.panel3 = new System.Windows.Forms.Panel();
this.radioButton7 = new System.Windows.Forms.RadioButton();
this.radioButton5 = new System.Windows.Forms.RadioButton();
this.radioButton4 = new System.Windows.Forms.RadioButton();
this.radioButton6 = new System.Windows.Forms.RadioButton();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.label10 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.groupBox2.SuspendLayout();
this.panelOpeDate.SuspendLayout();
this.panel5.SuspendLayout();
@ -99,9 +74,6 @@
((System.ComponentModel.ISupportInitialize)(this.dtpAnesthesiaByDoctor)).BeginInit();
this.panel1.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// groupBox2
@ -111,7 +83,7 @@
this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
this.groupBox2.Location = new System.Drawing.Point(0, 0);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(1115, 130);
this.groupBox2.Size = new System.Drawing.Size(555, 275);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "手术信息";
@ -124,12 +96,10 @@
this.panelOpeDate.Controls.Add(this.txtOperationCut);
this.panelOpeDate.Controls.Add(this.cboOperationLevel);
this.panelOpeDate.Controls.Add(this.label20);
this.panelOpeDate.Controls.Add(this.label35);
this.panelOpeDate.Controls.Add(this.txtOperationSiteId);
this.panelOpeDate.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelOpeDate.Location = new System.Drawing.Point(3, 21);
this.panelOpeDate.Name = "panelOpeDate";
this.panelOpeDate.Size = new System.Drawing.Size(1109, 106);
this.panelOpeDate.Size = new System.Drawing.Size(549, 251);
this.panelOpeDate.TabIndex = 728;
//
// panel5
@ -155,13 +125,13 @@
this.panel5.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.panel5.Location = new System.Drawing.Point(10, 38);
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(1027, 65);
this.panel5.Size = new System.Drawing.Size(533, 200);
this.panel5.TabIndex = 874;
//
// txtruleNurse
//
this.txtruleNurse.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtruleNurse.Location = new System.Drawing.Point(597, 33);
this.txtruleNurse.Location = new System.Drawing.Point(84, 165);
this.txtruleNurse.Name = "txtruleNurse";
this.txtruleNurse.Size = new System.Drawing.Size(140, 28);
this.txtruleNurse.TabIndex = 856;
@ -170,7 +140,7 @@
// txtexperts
//
this.txtexperts.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtexperts.Location = new System.Drawing.Point(77, 32);
this.txtexperts.Location = new System.Drawing.Point(84, 93);
this.txtexperts.Name = "txtexperts";
this.txtexperts.Size = new System.Drawing.Size(140, 28);
this.txtexperts.TabIndex = 856;
@ -179,7 +149,7 @@
// txtruleAnesthesiaDoctor
//
this.txtruleAnesthesiaDoctor.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtruleAnesthesiaDoctor.Location = new System.Drawing.Point(356, 33);
this.txtruleAnesthesiaDoctor.Location = new System.Drawing.Point(107, 129);
this.txtruleAnesthesiaDoctor.Name = "txtruleAnesthesiaDoctor";
this.txtruleAnesthesiaDoctor.Size = new System.Drawing.Size(140, 28);
this.txtruleAnesthesiaDoctor.TabIndex = 856;
@ -189,7 +159,7 @@
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label9.Location = new System.Drawing.Point(526, 37);
this.label9.Location = new System.Drawing.Point(9, 166);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(65, 20);
this.label9.TabIndex = 855;
@ -199,7 +169,7 @@
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label8.Location = new System.Drawing.Point(257, 37);
this.label8.Location = new System.Drawing.Point(9, 134);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(93, 20);
this.label8.TabIndex = 855;
@ -209,7 +179,7 @@
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label7.Location = new System.Drawing.Point(12, 37);
this.label7.Location = new System.Drawing.Point(9, 102);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(65, 20);
this.label7.TabIndex = 855;
@ -230,7 +200,7 @@
this.dtpInstrumentNurseSucceed.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpInstrumentNurseSucceed.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
this.dtpInstrumentNurseSucceed.IsPopupCalendarOpen = false;
this.dtpInstrumentNurseSucceed.Location = new System.Drawing.Point(908, 5);
this.dtpInstrumentNurseSucceed.Location = new System.Drawing.Point(320, 63);
this.dtpInstrumentNurseSucceed.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
//
//
@ -265,7 +235,7 @@
this.dtpInstrumentNurseSucceed.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.dtpInstrumentNurseSucceed.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpInstrumentNurseSucceed.Name = "dtpInstrumentNurseSucceed";
this.dtpInstrumentNurseSucceed.Size = new System.Drawing.Size(104, 23);
this.dtpInstrumentNurseSucceed.Size = new System.Drawing.Size(120, 23);
this.dtpInstrumentNurseSucceed.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.dtpInstrumentNurseSucceed.TabIndex = 851;
//
@ -284,7 +254,7 @@
this.dtpTourNurseSucceed.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpTourNurseSucceed.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
this.dtpTourNurseSucceed.IsPopupCalendarOpen = false;
this.dtpTourNurseSucceed.Location = new System.Drawing.Point(574, 5);
this.dtpTourNurseSucceed.Location = new System.Drawing.Point(320, 34);
this.dtpTourNurseSucceed.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
//
//
@ -319,7 +289,7 @@
this.dtpTourNurseSucceed.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
this.dtpTourNurseSucceed.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.dtpTourNurseSucceed.Name = "dtpTourNurseSucceed";
this.dtpTourNurseSucceed.Size = new System.Drawing.Size(113, 23);
this.dtpTourNurseSucceed.Size = new System.Drawing.Size(120, 23);
this.dtpTourNurseSucceed.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.dtpTourNurseSucceed.TabIndex = 852;
//
@ -338,7 +308,7 @@
this.dtpAnesthesiaByDoctor.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
this.dtpAnesthesiaByDoctor.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
this.dtpAnesthesiaByDoctor.IsPopupCalendarOpen = false;
this.dtpAnesthesiaByDoctor.Location = new System.Drawing.Point(227, 5);
this.dtpAnesthesiaByDoctor.Location = new System.Drawing.Point(320, 5);
this.dtpAnesthesiaByDoctor.Margin = new System.Windows.Forms.Padding(6, 0, 6, 6);
//
//
@ -381,7 +351,7 @@
//
this.label26.AutoSize = true;
this.label26.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label26.Location = new System.Drawing.Point(358, 6);
this.label26.Location = new System.Drawing.Point(9, 38);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(65, 20);
this.label26.TabIndex = 846;
@ -391,7 +361,7 @@
//
this.label28.AutoSize = true;
this.label28.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label28.Location = new System.Drawing.Point(12, 6);
this.label28.Location = new System.Drawing.Point(9, 6);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(65, 20);
this.label28.TabIndex = 844;
@ -401,7 +371,7 @@
//
this.label27.AutoSize = true;
this.label27.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label27.Location = new System.Drawing.Point(698, 6);
this.label27.Location = new System.Drawing.Point(9, 70);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(65, 20);
this.label27.TabIndex = 845;
@ -411,7 +381,7 @@
//
this.label49.AutoSize = true;
this.label49.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label49.Location = new System.Drawing.Point(158, 6);
this.label49.Location = new System.Drawing.Point(251, 6);
this.label49.Name = "label49";
this.label49.Size = new System.Drawing.Size(65, 20);
this.label49.TabIndex = 846;
@ -421,7 +391,7 @@
//
this.label50.AutoSize = true;
this.label50.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label50.Location = new System.Drawing.Point(504, 6);
this.label50.Location = new System.Drawing.Point(251, 35);
this.label50.Name = "label50";
this.label50.Size = new System.Drawing.Size(65, 20);
this.label50.TabIndex = 846;
@ -431,7 +401,7 @@
//
this.label51.AutoSize = true;
this.label51.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label51.Location = new System.Drawing.Point(844, 6);
this.label51.Location = new System.Drawing.Point(251, 64);
this.label51.Name = "label51";
this.label51.Size = new System.Drawing.Size(65, 20);
this.label51.TabIndex = 846;
@ -457,9 +427,9 @@
this.txtAnesthesiaByDoctor.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtAnesthesiaByDoctor.DisabledBackColor = System.Drawing.Color.White;
this.txtAnesthesiaByDoctor.ForeColor = System.Drawing.Color.Black;
this.txtAnesthesiaByDoctor.Location = new System.Drawing.Point(77, 6);
this.txtAnesthesiaByDoctor.Location = new System.Drawing.Point(84, 6);
this.txtAnesthesiaByDoctor.Name = "txtAnesthesiaByDoctor";
this.txtAnesthesiaByDoctor.Size = new System.Drawing.Size(73, 21);
this.txtAnesthesiaByDoctor.Size = new System.Drawing.Size(140, 21);
this.txtAnesthesiaByDoctor.TabIndex = 21;
this.txtAnesthesiaByDoctor.Click += new System.EventHandler(this.txtAnesthesiaByDoctor_TextChanged);
//
@ -483,9 +453,9 @@
this.txtTourNurseSucceed.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtTourNurseSucceed.DisabledBackColor = System.Drawing.Color.White;
this.txtTourNurseSucceed.ForeColor = System.Drawing.Color.Black;
this.txtTourNurseSucceed.Location = new System.Drawing.Point(423, 6);
this.txtTourNurseSucceed.Location = new System.Drawing.Point(84, 35);
this.txtTourNurseSucceed.Name = "txtTourNurseSucceed";
this.txtTourNurseSucceed.Size = new System.Drawing.Size(73, 21);
this.txtTourNurseSucceed.Size = new System.Drawing.Size(140, 21);
this.txtTourNurseSucceed.TabIndex = 23;
this.txtTourNurseSucceed.Click += new System.EventHandler(this.txtTourNurseSucceed_TextChanged);
//
@ -509,9 +479,9 @@
this.txtInstrumentNurseSucceed.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtInstrumentNurseSucceed.DisabledBackColor = System.Drawing.Color.White;
this.txtInstrumentNurseSucceed.ForeColor = System.Drawing.Color.Black;
this.txtInstrumentNurseSucceed.Location = new System.Drawing.Point(763, 6);
this.txtInstrumentNurseSucceed.Location = new System.Drawing.Point(84, 64);
this.txtInstrumentNurseSucceed.Name = "txtInstrumentNurseSucceed";
this.txtInstrumentNurseSucceed.Size = new System.Drawing.Size(73, 21);
this.txtInstrumentNurseSucceed.Size = new System.Drawing.Size(140, 21);
this.txtInstrumentNurseSucceed.TabIndex = 25;
this.txtInstrumentNurseSucceed.Click += new System.EventHandler(this.txtInstrumentNurseSucceed_TextChanged);
//
@ -532,7 +502,7 @@
this.txtOperationCut.FormattingEnabled = true;
this.txtOperationCut.Location = new System.Drawing.Point(281, 6);
this.txtOperationCut.Name = "txtOperationCut";
this.txtOperationCut.Size = new System.Drawing.Size(179, 28);
this.txtOperationCut.Size = new System.Drawing.Size(169, 28);
this.txtOperationCut.TabIndex = 13;
//
// cboOperationLevel
@ -540,9 +510,9 @@
this.cboOperationLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboOperationLevel.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.cboOperationLevel.FormattingEnabled = true;
this.cboOperationLevel.Location = new System.Drawing.Point(87, 6);
this.cboOperationLevel.Location = new System.Drawing.Point(95, 6);
this.cboOperationLevel.Name = "cboOperationLevel";
this.cboOperationLevel.Size = new System.Drawing.Size(84, 28);
this.cboOperationLevel.Size = new System.Drawing.Size(110, 28);
this.cboOperationLevel.TabIndex = 13;
//
// label20
@ -555,53 +525,13 @@
this.label20.TabIndex = 866;
this.label20.Text = "切口类型";
//
// label35
//
this.label35.AutoSize = true;
this.label35.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label35.Location = new System.Drawing.Point(518, 10);
this.label35.Name = "label35";
this.label35.Size = new System.Drawing.Size(65, 20);
this.label35.TabIndex = 855;
this.label35.Text = "手术体位";
this.label35.Visible = false;
//
// txtOperationSiteId
//
this.txtOperationSiteId.BackColor = System.Drawing.Color.White;
//
//
//
this.txtOperationSiteId.Border.BackColor = System.Drawing.SystemColors.Desktop;
this.txtOperationSiteId.Border.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.txtOperationSiteId.Border.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(227)))), ((int)(((byte)(231)))));
this.txtOperationSiteId.Border.BorderBottomWidth = 1;
this.txtOperationSiteId.Border.BorderColor = System.Drawing.SystemColors.Desktop;
this.txtOperationSiteId.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.txtOperationSiteId.Border.BorderLeftWidth = 1;
this.txtOperationSiteId.Border.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.txtOperationSiteId.Border.BorderRightWidth = 1;
this.txtOperationSiteId.Border.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
this.txtOperationSiteId.Border.BorderTopWidth = 1;
this.txtOperationSiteId.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
this.txtOperationSiteId.DisabledBackColor = System.Drawing.Color.White;
this.txtOperationSiteId.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtOperationSiteId.ForeColor = System.Drawing.Color.Black;
this.txtOperationSiteId.Location = new System.Drawing.Point(583, 10);
this.txtOperationSiteId.Name = "txtOperationSiteId";
this.txtOperationSiteId.Size = new System.Drawing.Size(251, 22);
this.txtOperationSiteId.TabIndex = 12;
this.txtOperationSiteId.Visible = false;
this.txtOperationSiteId.Click += new System.EventHandler(this.txtOperationPosition_TextChanged);
this.txtOperationSiteId.DoubleClick += new System.EventHandler(this.txtOperationPosition_TextChanged);
//
// panel1
//
this.panel1.Controls.Add(this.groupBox2);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1048, 130);
this.panel1.Size = new System.Drawing.Size(555, 275);
this.panel1.TabIndex = 10;
//
// groupBox8
@ -614,13 +544,14 @@
this.groupBox8.Controls.Add(this.dtpTime);
this.groupBox8.Controls.Add(this.label15);
this.groupBox8.Controls.Add(this.rdoYes);
this.groupBox8.Controls.Add(this.label1);
this.groupBox8.Controls.Add(this.label10);
this.groupBox8.Controls.Add(this.label16);
this.groupBox8.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox8.Location = new System.Drawing.Point(0, 130);
this.groupBox8.Location = new System.Drawing.Point(0, 275);
this.groupBox8.Name = "groupBox8";
this.groupBox8.Size = new System.Drawing.Size(1048, 77);
this.groupBox8.Size = new System.Drawing.Size(555, 96);
this.groupBox8.TabIndex = 874;
this.groupBox8.TabStop = false;
this.groupBox8.Text = "麻醉方式变更";
@ -628,7 +559,7 @@
// lblIsCompound
//
this.lblIsCompound.AutoSize = true;
this.lblIsCompound.Location = new System.Drawing.Point(463, 31);
this.lblIsCompound.Location = new System.Drawing.Point(530, 31);
this.lblIsCompound.Name = "lblIsCompound";
this.lblIsCompound.Size = new System.Drawing.Size(0, 19);
this.lblIsCompound.TabIndex = 42;
@ -655,9 +586,9 @@
this.txtCause.DisabledBackColor = System.Drawing.Color.White;
this.txtCause.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtCause.ForeColor = System.Drawing.Color.Black;
this.txtCause.Location = new System.Drawing.Point(761, 29);
this.txtCause.Location = new System.Drawing.Point(295, 59);
this.txtCause.Name = "txtCause";
this.txtCause.Size = new System.Drawing.Size(264, 22);
this.txtCause.Size = new System.Drawing.Size(238, 22);
this.txtCause.TabIndex = 41;
this.txtCause.Visible = false;
//
@ -665,7 +596,7 @@
//
this.rdoNo.AutoSize = true;
this.rdoNo.Checked = true;
this.rdoNo.Location = new System.Drawing.Point(26, 31);
this.rdoNo.Location = new System.Drawing.Point(89, 31);
this.rdoNo.Name = "rdoNo";
this.rdoNo.Size = new System.Drawing.Size(40, 23);
this.rdoNo.TabIndex = 0;
@ -673,60 +604,6 @@
this.rdoNo.Text = "否";
this.rdoNo.UseVisualStyleBackColor = true;
//
// dtpTime
//
this.dtpTime.CustomFormat = "MM-dd HH:mm";
this.dtpTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpTime.Location = new System.Drawing.Point(552, 29);
this.dtpTime.Name = "dtpTime";
this.dtpTime.Size = new System.Drawing.Size(137, 25);
this.dtpTime.TabIndex = 40;
this.dtpTime.Visible = false;
//
// rdoYes
//
this.rdoYes.AutoSize = true;
this.rdoYes.Location = new System.Drawing.Point(72, 31);
this.rdoYes.Name = "rdoYes";
this.rdoYes.Size = new System.Drawing.Size(40, 23);
this.rdoYes.TabIndex = 0;
this.rdoYes.Text = "是";
this.rdoYes.UseVisualStyleBackColor = true;
this.rdoYes.CheckedChanged += new System.EventHandler(this.rdoYes_CheckedChanged);
//
// label16
//
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label16.Location = new System.Drawing.Point(692, 30);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(65, 20);
this.label16.TabIndex = 39;
this.label16.Text = "变更原因";
this.label16.Visible = false;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label10.Location = new System.Drawing.Point(117, 31);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(107, 20);
this.label10.TabIndex = 37;
this.label10.Text = "变更后麻醉方式";
this.label10.Visible = false;
//
// label15
//
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label15.Location = new System.Drawing.Point(483, 30);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(65, 20);
this.label15.TabIndex = 39;
this.label15.Text = "变更时间";
this.label15.Visible = false;
//
// txtAnaesthesiaMethod
//
this.txtAnaesthesiaMethod.BackColor = System.Drawing.Color.White;
@ -748,342 +625,83 @@
this.txtAnaesthesiaMethod.DisabledBackColor = System.Drawing.Color.White;
this.txtAnaesthesiaMethod.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.txtAnaesthesiaMethod.ForeColor = System.Drawing.Color.Black;
this.txtAnaesthesiaMethod.Location = new System.Drawing.Point(225, 30);
this.txtAnaesthesiaMethod.Location = new System.Drawing.Point(295, 30);
this.txtAnaesthesiaMethod.Name = "txtAnaesthesiaMethod";
this.txtAnaesthesiaMethod.Size = new System.Drawing.Size(238, 22);
this.txtAnaesthesiaMethod.TabIndex = 38;
this.txtAnaesthesiaMethod.Visible = false;
this.txtAnaesthesiaMethod.Click += new System.EventHandler(this.txtAnaesthesiaMethod_Click);
//
// groupBox5
// dtpTime
//
this.groupBox5.BackColor = System.Drawing.Color.White;
this.groupBox5.Controls.Add(this.label17);
this.groupBox5.Controls.Add(this.cboSteward);
this.groupBox5.Controls.Add(this.cboZTHDD);
this.groupBox5.Controls.Add(this.label22);
this.groupBox5.Controls.Add(this.cboHXDTCCD);
this.groupBox5.Controls.Add(this.label23);
this.groupBox5.Controls.Add(this.cboQXCD);
this.groupBox5.Controls.Add(this.label24);
this.groupBox5.Controls.Add(this.label14);
this.groupBox5.Controls.Add(this.label1);
this.groupBox5.Controls.Add(this.cbomzxg);
this.groupBox5.Controls.Add(this.cbomzpm);
this.groupBox5.Controls.Add(this.label21);
this.groupBox5.Controls.Add(this.cmbBRQK);
this.groupBox5.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox5.Location = new System.Drawing.Point(0, 207);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(1048, 88);
this.groupBox5.TabIndex = 875;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "麻醉情况";
this.dtpTime.CustomFormat = "MM-dd HH:mm";
this.dtpTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpTime.Location = new System.Drawing.Point(86, 59);
this.dtpTime.Name = "dtpTime";
this.dtpTime.Size = new System.Drawing.Size(115, 25);
this.dtpTime.TabIndex = 40;
this.dtpTime.Visible = false;
//
// label17
// label15
//
this.label17.AutoSize = true;
this.label17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label17.Location = new System.Drawing.Point(350, 24);
this.label17.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(74, 19);
this.label17.TabIndex = 873;
this.label17.Text = "肢体活动度";
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label15.Location = new System.Drawing.Point(17, 60);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(65, 20);
this.label15.TabIndex = 39;
this.label15.Text = "变更时间";
this.label15.Visible = false;
//
// cboSteward
// rdoYes
//
this.cboSteward.FormattingEnabled = true;
this.cboSteward.Items.AddRange(new object[] {
"",
"0",
"1",
"2",
"3",
"4",
"5",
"6"});
this.cboSteward.Location = new System.Drawing.Point(605, 20);
this.cboSteward.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
this.cboSteward.Name = "cboSteward";
this.cboSteward.Size = new System.Drawing.Size(52, 27);
this.cboSteward.TabIndex = 876;
//
// cboZTHDD
//
this.cboZTHDD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboZTHDD.FormattingEnabled = true;
this.cboZTHDD.Items.AddRange(new object[] {
"",
"0",
"1",
"2"});
this.cboZTHDD.Location = new System.Drawing.Point(438, 20);
this.cboZTHDD.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
this.cboZTHDD.Name = "cboZTHDD";
this.cboZTHDD.Size = new System.Drawing.Size(52, 27);
this.cboZTHDD.TabIndex = 876;
this.cboZTHDD.SelectedIndexChanged += new System.EventHandler(this.cboQXCD_SelectedIndexChanged);
//
// label22
//
this.label22.AutoSize = true;
this.label22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label22.Location = new System.Drawing.Point(170, 24);
this.label22.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(100, 19);
this.label22.TabIndex = 874;
this.label22.Text = "呼吸道通畅程度";
//
// cboHXDTCCD
//
this.cboHXDTCCD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboHXDTCCD.FormattingEnabled = true;
this.cboHXDTCCD.Items.AddRange(new object[] {
"",
"0",
"1",
"2"});
this.cboHXDTCCD.Location = new System.Drawing.Point(284, 20);
this.cboHXDTCCD.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
this.cboHXDTCCD.Name = "cboHXDTCCD";
this.cboHXDTCCD.Size = new System.Drawing.Size(52, 27);
this.cboHXDTCCD.TabIndex = 877;
this.cboHXDTCCD.SelectedIndexChanged += new System.EventHandler(this.cboQXCD_SelectedIndexChanged);
//
// label23
//
this.label23.AutoSize = true;
this.label23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label23.Location = new System.Drawing.Point(29, 24);
this.label23.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(61, 19);
this.label23.TabIndex = 875;
this.label23.Text = "清醒程度";
//
// cboQXCD
//
this.cboQXCD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboQXCD.FormattingEnabled = true;
this.cboQXCD.Items.AddRange(new object[] {
"",
"0",
"1",
"2"});
this.cboQXCD.Location = new System.Drawing.Point(104, 20);
this.cboQXCD.Margin = new System.Windows.Forms.Padding(5, 10, 5, 10);
this.cboQXCD.Name = "cboQXCD";
this.cboQXCD.Size = new System.Drawing.Size(52, 27);
this.cboQXCD.TabIndex = 878;
this.cboQXCD.SelectedIndexChanged += new System.EventHandler(this.cboQXCD_SelectedIndexChanged);
//
// label24
//
this.label24.AutoSize = true;
this.label24.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label24.Location = new System.Drawing.Point(504, 24);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(98, 19);
this.label24.TabIndex = 879;
this.label24.Text = "Steward总评分";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label14.Location = new System.Drawing.Point(209, 58);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(65, 20);
this.label14.TabIndex = 35;
this.label14.Text = "麻醉效果";
this.rdoYes.AutoSize = true;
this.rdoYes.Location = new System.Drawing.Point(134, 31);
this.rdoYes.Name = "rdoYes";
this.rdoYes.Size = new System.Drawing.Size(40, 23);
this.rdoYes.TabIndex = 0;
this.rdoYes.Text = "是";
this.rdoYes.UseVisualStyleBackColor = true;
this.rdoYes.CheckedChanged += new System.EventHandler(this.rdoYes_CheckedChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label1.Location = new System.Drawing.Point(30, 58);
this.label1.Location = new System.Drawing.Point(17, 30);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 20);
this.label1.TabIndex = 36;
this.label1.Text = "麻醉平面";
this.label1.TabIndex = 37;
this.label1.Text = "是否变更";
//
// cbomzxg
// label10
//
this.cbomzxg.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbomzxg.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.cbomzxg.FormattingEnabled = true;
this.cbomzxg.Items.AddRange(new object[] {
"",
"2.0",
"3.0",
"4.0"});
this.cbomzxg.Location = new System.Drawing.Point(285, 55);
this.cbomzxg.Name = "cbomzxg";
this.cbomzxg.Size = new System.Drawing.Size(70, 27);
this.cbomzxg.TabIndex = 30;
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label10.Location = new System.Drawing.Point(184, 31);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(107, 20);
this.label10.TabIndex = 37;
this.label10.Text = "变更后麻醉方式";
this.label10.Visible = false;
//
// cbomzpm
// label16
//
this.cbomzpm.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.cbomzpm.FormattingEnabled = true;
this.cbomzpm.Items.AddRange(new object[] {
"",
"2.0",
"3.0",
"4.0"});
this.cbomzpm.Location = new System.Drawing.Point(106, 55);
this.cbomzpm.Name = "cbomzpm";
this.cbomzpm.Size = new System.Drawing.Size(70, 27);
this.cbomzpm.TabIndex = 30;
//
// label21
//
this.label21.AutoSize = true;
this.label21.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label21.Location = new System.Drawing.Point(388, 58);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(121, 20);
this.label21.TabIndex = 872;
this.label21.Text = "手术结束患者情况";
//
// cmbBRQK
//
this.cmbBRQK.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbBRQK.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.cmbBRQK.FormattingEnabled = true;
this.cmbBRQK.Items.AddRange(new object[] {
"良好",
"尚可",
"休克",
"病危"});
this.cmbBRQK.Location = new System.Drawing.Point(520, 55);
this.cmbBRQK.Name = "cmbBRQK";
this.cmbBRQK.Size = new System.Drawing.Size(70, 27);
this.cmbBRQK.TabIndex = 15;
//
// groupBox4
//
this.groupBox4.BackColor = System.Drawing.Color.White;
this.groupBox4.Controls.Add(this.panel3);
this.groupBox4.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox4.Location = new System.Drawing.Point(0, 295);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(1048, 79);
this.groupBox4.TabIndex = 876;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "患者去向";
//
// panel3
//
this.panel3.BackColor = System.Drawing.Color.White;
this.panel3.Controls.Add(this.radioButton7);
this.panel3.Controls.Add(this.radioButton5);
this.panel3.Controls.Add(this.radioButton4);
this.panel3.Controls.Add(this.radioButton6);
this.panel3.Controls.Add(this.radioButton3);
this.panel3.Controls.Add(this.radioButton1);
this.panel3.Controls.Add(this.radioButton2);
this.panel3.Location = new System.Drawing.Point(6, 21);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(1034, 46);
this.panel3.TabIndex = 24;
//
// radioButton7
//
this.radioButton7.AutoSize = true;
this.radioButton7.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton7.Location = new System.Drawing.Point(521, 13);
this.radioButton7.Name = "radioButton7";
this.radioButton7.Size = new System.Drawing.Size(55, 24);
this.radioButton7.TabIndex = 1618;
this.radioButton7.TabStop = true;
this.radioButton7.Text = "死亡";
this.radioButton7.UseVisualStyleBackColor = true;
//
// radioButton5
//
this.radioButton5.AutoSize = true;
this.radioButton5.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton5.Location = new System.Drawing.Point(446, 13);
this.radioButton5.Name = "radioButton5";
this.radioButton5.Size = new System.Drawing.Size(55, 24);
this.radioButton5.TabIndex = 1618;
this.radioButton5.TabStop = true;
this.radioButton5.Text = "离院";
this.radioButton5.UseVisualStyleBackColor = true;
//
// radioButton4
//
this.radioButton4.AutoSize = true;
this.radioButton4.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton4.Location = new System.Drawing.Point(371, 13);
this.radioButton4.Name = "radioButton4";
this.radioButton4.Size = new System.Drawing.Size(55, 24);
this.radioButton4.TabIndex = 1620;
this.radioButton4.TabStop = true;
this.radioButton4.Text = "急诊";
this.radioButton4.UseVisualStyleBackColor = true;
//
// radioButton6
//
this.radioButton6.AutoSize = true;
this.radioButton6.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton6.Location = new System.Drawing.Point(245, 13);
this.radioButton6.Name = "radioButton6";
this.radioButton6.Size = new System.Drawing.Size(106, 24);
this.radioButton6.TabIndex = 1619;
this.radioButton6.TabStop = true;
this.radioButton6.Text = "非计划入ICU";
this.radioButton6.UseVisualStyleBackColor = true;
//
// radioButton3
//
this.radioButton3.AutoSize = true;
this.radioButton3.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton3.Location = new System.Drawing.Point(175, 13);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(50, 24);
this.radioButton3.TabIndex = 1619;
this.radioButton3.TabStop = true;
this.radioButton3.Text = "ICU";
this.radioButton3.UseVisualStyleBackColor = true;
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton1.Location = new System.Drawing.Point(100, 13);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(55, 24);
this.radioButton1.TabIndex = 1617;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "病房";
this.radioButton1.UseVisualStyleBackColor = true;
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.radioButton2.Location = new System.Drawing.Point(11, 13);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(69, 24);
this.radioButton2.TabIndex = 1616;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "恢复室";
this.radioButton2.UseVisualStyleBackColor = true;
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label16.Location = new System.Drawing.Point(226, 60);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(65, 20);
this.label16.TabIndex = 39;
this.label16.Text = "变更原因";
this.label16.Visible = false;
//
// frmOperationInfoNew2
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.AutoScroll = true;
this.BackColor = System.Drawing.Color.AliceBlue;
this.ClientSize = new System.Drawing.Size(1048, 374);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox5);
this.ClientSize = new System.Drawing.Size(555, 374);
this.Controls.Add(this.groupBox8);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
@ -1093,7 +711,6 @@
this.Name = "frmOperationInfoNew2";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "手术信息";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmOperationInfoNew2_FormClosing);
this.Load += new System.EventHandler(this.frmOperationInfoNew2_Load);
this.groupBox2.ResumeLayout(false);
@ -1107,11 +724,6 @@
this.panel1.ResumeLayout(false);
this.groupBox8.ResumeLayout(false);
this.groupBox8.PerformLayout();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.ResumeLayout(false);
}
@ -1123,17 +735,8 @@
public System.Windows.Forms.Label label19;
public System.Windows.Forms.ComboBox cboOperationLevel;
private System.Windows.Forms.Label label20;
public System.Windows.Forms.Label label35;
private DevComponents.DotNetBar.Controls.TextBoxX txtOperationSiteId;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.GroupBox groupBox8;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cbomzxg;
private System.Windows.Forms.ComboBox cbomzpm;
public System.Windows.Forms.Label label21;
public System.Windows.Forms.ComboBox cmbBRQK;
private System.Windows.Forms.Panel panel5;
public System.Windows.Forms.Label label26;
public System.Windows.Forms.Label label28;
@ -1163,22 +766,6 @@
private System.Windows.Forms.RadioButton rdoNo;
private System.Windows.Forms.Label lblIsCompound;
public System.Windows.Forms.ComboBox txtOperationCut;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.ComboBox cboSteward;
private System.Windows.Forms.ComboBox cboZTHDD;
private System.Windows.Forms.Label label22;
private System.Windows.Forms.ComboBox cboHXDTCCD;
private System.Windows.Forms.Label label23;
private System.Windows.Forms.ComboBox cboQXCD;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.RadioButton radioButton7;
private System.Windows.Forms.RadioButton radioButton5;
private System.Windows.Forms.RadioButton radioButton4;
private System.Windows.Forms.RadioButton radioButton6;
private System.Windows.Forms.RadioButton radioButton3;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.Label label1;
}
}

View File

@ -39,13 +39,13 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
//
this.panel1.Location = new System.Drawing.Point(15, 12);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(177, 160);
this.panel1.Size = new System.Drawing.Size(177, 232);
this.panel1.TabIndex = 0;
//
// btnDelete
//
this.btnDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnDelete.Location = new System.Drawing.Point(12, 178);
this.btnDelete.Location = new System.Drawing.Point(14, 250);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(86, 30);
this.btnDelete.TabIndex = 4;
@ -55,7 +55,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
// btnSave
//
this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnSave.Location = new System.Drawing.Point(104, 178);
this.btnSave.Location = new System.Drawing.Point(106, 250);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(86, 30);
this.btnSave.TabIndex = 3;
@ -66,7 +66,7 @@ namespace AIMS.OperationDoing.AnasRecordBill.UI
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(210, 225);
this.ClientSize = new System.Drawing.Size(210, 286);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.panel1);

View File

@ -1,4 +1,5 @@
using AIMSBLL;
using AxNsoOfficeLib;
using System;
using System.Collections.Generic;
using System.Data;
@ -30,7 +31,7 @@ namespace AIMS.OperationFront.UI
{
if (beginTime == null || dt == null) beginTime = DateTime.Now;
dtpTime.Value = beginTime;
cboOperationRoom.SelectedIndexChanged += new EventHandler(cboOperationRoom_SelectedIndexChanged);
cboOperationRoom.SelectedIndexChanged += new EventHandler(cboOperationRoom_SelectedIndexChanged);
}
private void FullDgv(DataTable operationApplys)
@ -46,52 +47,40 @@ namespace AIMS.OperationFront.UI
int index = this.dgvApplyOrDoctor.Rows.Add();
this.dgvApplyOrDoctor.Rows[index].Cells["Id"].Value = dr["ApplyId"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["Index"].Value = num;
num++;
this.dgvApplyOrDoctor.Rows[index].Cells["InHospitalNo"].Value = dr["MdrecNo"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["PlanOperationRoomName"].Value = dr["OperationRoom"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["PatientName"].Value = dr["PatientName"].ToString() + "(" + dr["Sex"].ToString() + "," + dr["BirthDay"].ToString() + ")";
this.dgvApplyOrDoctor.Rows[index].Cells["PlanOrder"].Value = dr["PlanOrder"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["OrderOperationTime"].Value = DateTime.Parse(dr["OrderOperationTime"].ToString() ).ToString("HH:mm");
this.dgvApplyOrDoctor.Rows[index].Cells["DepartmentId"].Value = dr["ApplyDepName"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["Operation"].Value = dr["ApplyOperationInfoName"].ToString();
//this.dgvApplyOrDoctor.Rows[index].Cells["OperationDoctor"].Value = dr["OperationDoctor"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["AnaesthesiaMethodId"].Value = dr["AnaesthesiaMethodName"].ToString();
string OrderOperationTime = dr["OrderOperationTime"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["OrderOperationTime"].Value = DateTime.Parse(OrderOperationTime).ToString("HH:mm");
this.dgvApplyOrDoctor.Rows[index].Cells["SickBed"].Value = dr["SickBed"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["InHospitalNo"].Value = dr["MdrecNo"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["PatientName"].Value = dr["PatientName"].ToString() + "(" + dr["Sex"].ToString() + "," + dr["Age"].ToString() + ")";
this.dgvApplyOrDoctor.Rows[index].Cells["ApplyDiagnoseInfoName"].Value = dr["ApplyDiagnoseInfoName"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["Operation"].Value = dr["ApplyOperationInfoName"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["OperationDoctor"].Value = dr["OperationDoctor"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["Assistant"].Value = dr["Assistant"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["AnaesthesiaMethodId"].Value = dr["AnaesthesiaMethodName"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["AnesthesiaDoctor"].Value = dr["AnesthesiaDoctor"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["InstrumentNurse"].Value = dr["InstrumentNurse"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["TourNurse"].Value = dr["TourNurse"].ToString();
this.dgvApplyOrDoctor.Rows[index].Cells["Remark"].Value = dr["Remark"].ToString();
if (dr["OperationType"].ToString().Equals("急诊"))
{
this.dgvApplyOrDoctor.Rows[index].DefaultCellStyle.BackColor = Color.Red;
}
this.dgvApplyOrDoctor.Rows[index].Cells["Remark"].Value = dr["Remark"].ToString();
//this.dgvApplyOrDoctor.Rows[index].Cells["OperationSite"].Value = dr["OperationSite"].ToString();
num++;
}
}
}
/// <summary>
/// 择期通知单数据
/// </summary>
private void ReportData(DataTable dtt)
{
//ReportParameter PrintDate = new ReportParameter("PlanCount", beginTime.ToString("yyyy-MM-dd") + " 共(" + dtt.Rows.Count + ")台手术");
//rptQuietRecordSheet.Reset();
//rptQuietRecordSheet.LocalReport.DataSources.Clear();
//rptQuietRecordSheet.LocalReport.ReportEmbeddedResource = "AIMS.ReportManager.ReportTemplate.OperationPlanReport.rdlc";
//rptQuietRecordSheet.LocalReport.SetParameters(new ReportParameter[] { PrintDate });
//Microsoft.Reporting.WinForms.ReportDataSource rds = new Microsoft.Reporting.WinForms.ReportDataSource("OperationPlanDataTable", dtt);
//rptQuietRecordSheet.LocalReport.DataSources.Add(rds);
//rptQuietRecordSheet.RefreshReport();
}
private void btnBeforeDay_Click(object sender, EventArgs e)
{
dtpTime.Value = dtpTime.Value.AddDays(-1);
dtpTime.Value = dtpTime.Value.AddDays(-1);
}
private void btnAfterDay_Click(object sender, EventArgs e)
{
dtpTime.Value = dtpTime.Value.AddDays(1);
dtpTime.Value = dtpTime.Value.AddDays(1);
}
private void dtpTime_ValueChanged(object sender, EventArgs e)
@ -105,17 +94,15 @@ namespace AIMS.OperationFront.UI
{
if (cboOperationRoom.SelectedIndex > 0)
{
dt = BOperationApply.SelectPlanedOpeByRoom("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' and OperationRoom = '" + cboOperationRoom.Text + "' Order By OperationRoomID ,PlanOrder");
dt = BOperationReview.GetOperationPlanDataTable("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' and OperationRoom = '" + cboOperationRoom.Text + "' Order By OperationRoomID ,PlanOrder");
}
else if (cboOperationRoom.SelectedIndex <= 0)
{
dt = BOperationApply.SelectPlanedOpeByRoom("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' Order By OperationRoomID ,PlanOrder");
dt = BOperationReview.GetOperationPlanDataTable("OrderOperationTime>='" + dtpTime.Value.ToString("yyyy-MM-dd 00:00:00") + "' and OrderOperationTime<='" + dtpTime.Value.ToString("yyyy-MM-dd 23:59:59") + "' Order By OperationRoomID ,PlanOrder");
}
if (dt == null) return;
FullDgv(dt);
dgvApplyOrDoctor.ClearSelection();
DataTable dtt = BOperationReview.GetOperationPlanDataTable(beginTime, endTime, "");
ReportData(dtt);
}
private void dgvApplyOrDoctor_MouseUp(object sender, MouseEventArgs e)
@ -128,17 +115,6 @@ namespace AIMS.OperationFront.UI
DataGridViewCell senderdgvr = item.Cells[0];
senderdgvr.Value = (senderdgvr.EditedFormattedValue.ToString() == "True") ? false : true;
}
List<int> SelectIds = GetSelectIds();
if (SelectIds.Count > 0)
{
string Ids = string.Join(",", SelectIds);
DataTable dtt = BOperationReview.GetOperationPlanDataTable(" of1.[ApplyId] in (" + Ids + ") ");
ReportData(dtt);
}
else
{
cboOperationRoom_SelectedIndexChanged(null, null);
}
}
private List<int> GetSelectIds()
@ -161,5 +137,78 @@ namespace AIMS.OperationFront.UI
{
cboOperationRoom_SelectedIndexChanged(null, null);
}
private void btnPrint_Click(object sender, EventArgs e)
{
GoldPrinter.ExcelAccess excel = new GoldPrinter.ExcelAccess();
string strFileName = "手术排程模板.xlt"; //模板文件名
string strExcelTemplateFile = AppDomain.CurrentDomain.BaseDirectory;
strExcelTemplateFile += @"\Template\" + strFileName;
excel.Open(strExcelTemplateFile); //用模板文件
int rowNum = 4;
DateTime dtBegin = reBeginTime(dtpTime.Value, "begin");
DateTime dtEnd = reBeginTime(dtpTime.Value, "end");
DataTable dtt = new DataTable();
List<int> SelectIds = GetSelectIds();
if (SelectIds.Count > 0)
{
string Ids = string.Join(",", SelectIds);
dtt = BOperationReview.GetOperationPlanDataTable(" of1.[ApplyId] in (" + Ids + ") ");
}
else
{
dtt = BOperationReview.GetOperationPlanDataTable(beginTime, endTime, "");
}
excel.SetCellText(3, "L", dtpTime.Value.ToShortDateString());
for (int j = 0; j < dtt.Rows.Count; j++)
{
rowNum++;
DataRow temp = dtt.Rows[j];
excel.GetRange(rowNum, "A", rowNum, "R").RowHeight = 24.75;
excel.GetRange(rowNum, "A", rowNum, "R").Borders.LineStyle = Microsoft.Office.Interop.Excel.XlLineStyle.xlContinuous;
excel.GetRange(rowNum, "A", rowNum, "R").Value = new string[]{
temp[1].ToString(),
temp[2].ToString(),
temp[3].ToString(),
temp[4].ToString(),
temp[5].ToString(),
temp[6].ToString(),
temp[7].ToString(),
temp[8].ToString(),
temp[9].ToString(),
temp[10].ToString(),
temp[11].ToString(),
temp[12].ToString(),
temp[13].ToString(),
temp[14].ToString(),
temp[15].ToString(),
temp[16].ToString(),
temp[17].ToString(),
temp[18].ToString()
};
}
excel.PrintPreview();
this.Focus();
excel.Close();
}
private void btnReview_Click(object sender, EventArgs e)
{
}
/// <summary>
/// 返回指定格式的日期
/// </summary>
/// <param name="dt">传入的日期</param>
/// <param name="flag">标记begin,end,其它任务标记全返回输入的日期</param>
/// <returns></returns>
public DateTime reBeginTime(DateTime dt, string flag)
{
if (flag == "begin") return dt.Date.AddSeconds(1);
if (flag == "end") return dt.Date.AddHours(23).AddMinutes(59).AddSeconds(59);
return dt;
}
}
}

View File

@ -32,12 +32,6 @@ namespace AIMS.OperationFront.UI
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
@ -45,6 +39,15 @@ namespace AIMS.OperationFront.UI
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSelectiveOperationsPrint));
this.panel1 = new System.Windows.Forms.Panel();
this.rbosh = new System.Windows.Forms.RadioButton();
@ -54,22 +57,13 @@ namespace AIMS.OperationFront.UI
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.btnBeforeDay = new DevComponents.DotNetBar.ButtonX();
this.btnReview = new DevComponents.DotNetBar.ButtonX();
this.btnPrint = new DevComponents.DotNetBar.ButtonX();
this.btnAfterDay = new DevComponents.DotNetBar.ButtonX();
this.dtpTime = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
this.panel2 = new System.Windows.Forms.Panel();
this.dgvApplyOrDoctor = new DevComponents.DotNetBar.Controls.DataGridViewX();
this.Column1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Index = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PlanOperationRoomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DepartmentId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.OperationDoctor = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.OrderOperationTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PatientName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Operation = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.InHospitalNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.AnaesthesiaMethodId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
@ -81,6 +75,31 @@ namespace AIMS.OperationFront.UI
this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Index = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PlanOperationRoomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PlanOrder = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.OrderOperationTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DepartmentId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SickBed = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.InHospitalNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PatientName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ApplyDiagnoseInfoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Operation = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.OperationDoctor = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Assistant = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.AnaesthesiaMethodId = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.AnesthesiaDoctor = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.InstrumentNurse = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TourNurse = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dtpTime)).BeginInit();
this.panel2.SuspendLayout();
@ -96,12 +115,14 @@ namespace AIMS.OperationFront.UI
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.btnBeforeDay);
this.panel1.Controls.Add(this.btnReview);
this.panel1.Controls.Add(this.btnPrint);
this.panel1.Controls.Add(this.btnAfterDay);
this.panel1.Controls.Add(this.dtpTime);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(12, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1151, 59);
this.panel1.Size = new System.Drawing.Size(1286, 59);
this.panel1.TabIndex = 0;
//
// rbosh
@ -188,6 +209,32 @@ namespace AIMS.OperationFront.UI
this.btnBeforeDay.Text = "前一天";
this.btnBeforeDay.Click += new System.EventHandler(this.btnBeforeDay_Click);
//
// btnReview
//
this.btnReview.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnReview.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnReview.Font = new System.Drawing.Font("微软雅黑", 11F);
this.btnReview.Location = new System.Drawing.Point(1054, 13);
this.btnReview.Name = "btnReview";
this.btnReview.Size = new System.Drawing.Size(86, 34);
this.btnReview.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.btnReview.TabIndex = 498;
this.btnReview.Text = "预览";
this.btnReview.Click += new System.EventHandler(this.btnReview_Click);
//
// btnPrint
//
this.btnPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnPrint.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnPrint.Font = new System.Drawing.Font("微软雅黑", 11F);
this.btnPrint.Location = new System.Drawing.Point(1165, 13);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(86, 34);
this.btnPrint.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.btnPrint.TabIndex = 498;
this.btnPrint.Text = "打印";
this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
//
// btnAfterDay
//
this.btnAfterDay.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
@ -238,10 +285,10 @@ namespace AIMS.OperationFront.UI
// panel2
//
this.panel2.Controls.Add(this.dgvApplyOrDoctor);
this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(12, 59);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(280, 491);
this.panel2.Size = new System.Drawing.Size(1286, 491);
this.panel2.TabIndex = 2;
//
// dgvApplyOrDoctor
@ -265,14 +312,21 @@ namespace AIMS.OperationFront.UI
this.Id,
this.Index,
this.PlanOperationRoomName,
this.DepartmentId,
this.OperationDoctor,
this.PlanOrder,
this.OrderOperationTime,
this.PatientName,
this.Operation,
this.Remark,
this.DepartmentId,
this.SickBed,
this.InHospitalNo,
this.AnaesthesiaMethodId});
this.PatientName,
this.ApplyDiagnoseInfoName,
this.Operation,
this.OperationDoctor,
this.Assistant,
this.AnaesthesiaMethodId,
this.AnesthesiaDoctor,
this.InstrumentNurse,
this.TourNurse,
this.Remark});
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 10.5F);
@ -298,7 +352,7 @@ namespace AIMS.OperationFront.UI
this.dgvApplyOrDoctor.RowHeadersVisible = false;
this.dgvApplyOrDoctor.RowTemplate.Height = 23;
this.dgvApplyOrDoctor.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvApplyOrDoctor.Size = new System.Drawing.Size(280, 491);
this.dgvApplyOrDoctor.Size = new System.Drawing.Size(1286, 491);
this.dgvApplyOrDoctor.TabIndex = 62;
this.dgvApplyOrDoctor.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgvApplyOrDoctor_MouseUp);
//
@ -310,95 +364,6 @@ namespace AIMS.OperationFront.UI
this.Column1.TrueValue = "1";
this.Column1.Width = 30;
//
// Id
//
this.Id.HeaderText = "编号";
this.Id.Name = "Id";
this.Id.ReadOnly = true;
this.Id.Visible = false;
//
// Index
//
this.Index.HeaderText = "序号";
this.Index.Name = "Index";
this.Index.ReadOnly = true;
this.Index.Visible = false;
this.Index.Width = 40;
//
// PlanOperationRoomName
//
this.PlanOperationRoomName.HeaderText = "术间";
this.PlanOperationRoomName.Name = "PlanOperationRoomName";
this.PlanOperationRoomName.ReadOnly = true;
this.PlanOperationRoomName.Width = 60;
//
// DepartmentId
//
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F);
this.DepartmentId.DefaultCellStyle = dataGridViewCellStyle2;
this.DepartmentId.HeaderText = "科室";
this.DepartmentId.Name = "DepartmentId";
this.DepartmentId.ReadOnly = true;
this.DepartmentId.Width = 120;
//
// OperationDoctor
//
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F);
this.OperationDoctor.DefaultCellStyle = dataGridViewCellStyle3;
this.OperationDoctor.HeaderText = "医师";
this.OperationDoctor.Name = "OperationDoctor";
this.OperationDoctor.ReadOnly = true;
this.OperationDoctor.Visible = false;
this.OperationDoctor.Width = 65;
//
// OrderOperationTime
//
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F);
this.OrderOperationTime.DefaultCellStyle = dataGridViewCellStyle4;
this.OrderOperationTime.HeaderText = "时间";
this.OrderOperationTime.Name = "OrderOperationTime";
this.OrderOperationTime.ReadOnly = true;
this.OrderOperationTime.Width = 65;
//
// PatientName
//
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 11F);
this.PatientName.DefaultCellStyle = dataGridViewCellStyle5;
this.PatientName.HeaderText = "姓名";
this.PatientName.Name = "PatientName";
this.PatientName.ReadOnly = true;
this.PatientName.Width = 160;
//
// Operation
//
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 11F);
this.Operation.DefaultCellStyle = dataGridViewCellStyle6;
this.Operation.HeaderText = "手术";
this.Operation.Name = "Operation";
this.Operation.ReadOnly = true;
//
// Remark
//
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F);
this.Remark.DefaultCellStyle = dataGridViewCellStyle7;
this.Remark.HeaderText = "备注";
this.Remark.Name = "Remark";
this.Remark.ReadOnly = true;
//
// InHospitalNo
//
this.InHospitalNo.HeaderText = "住院号";
this.InHospitalNo.Name = "InHospitalNo";
this.InHospitalNo.ReadOnly = true;
this.InHospitalNo.Width = 80;
//
// AnaesthesiaMethodId
//
this.AnaesthesiaMethodId.HeaderText = "拟施麻醉";
this.AnaesthesiaMethodId.Name = "AnaesthesiaMethodId";
this.AnaesthesiaMethodId.ReadOnly = true;
this.AnaesthesiaMethodId.Visible = false;
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "编号";
@ -469,6 +434,7 @@ namespace AIMS.OperationFront.UI
this.dataGridViewTextBoxColumn8.HeaderText = "备注";
this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
this.dataGridViewTextBoxColumn8.ReadOnly = true;
this.dataGridViewTextBoxColumn8.Width = 80;
//
// dataGridViewTextBoxColumn9
//
@ -489,24 +455,205 @@ namespace AIMS.OperationFront.UI
//
// dataGridViewTextBoxColumn11
//
dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 11F);
this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle17;
this.dataGridViewTextBoxColumn11.HeaderText = "拟施麻醉";
this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
this.dataGridViewTextBoxColumn11.ReadOnly = true;
this.dataGridViewTextBoxColumn11.Visible = false;
//
// dataGridViewTextBoxColumn12
//
dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 12F);
this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle18;
this.dataGridViewTextBoxColumn12.HeaderText = "医师";
this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
this.dataGridViewTextBoxColumn12.Width = 65;
//
// dataGridViewTextBoxColumn13
//
this.dataGridViewTextBoxColumn13.HeaderText = "助手";
this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
this.dataGridViewTextBoxColumn13.Width = 65;
//
// dataGridViewTextBoxColumn14
//
this.dataGridViewTextBoxColumn14.HeaderText = "拟施麻醉";
this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
this.dataGridViewTextBoxColumn14.Visible = false;
//
// dataGridViewTextBoxColumn15
//
this.dataGridViewTextBoxColumn15.HeaderText = "麻醉医生";
this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
//
// dataGridViewTextBoxColumn16
//
this.dataGridViewTextBoxColumn16.HeaderText = "洗手护士";
this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
this.dataGridViewTextBoxColumn16.Width = 65;
//
// dataGridViewTextBoxColumn17
//
this.dataGridViewTextBoxColumn17.HeaderText = "巡回护士";
this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
this.dataGridViewTextBoxColumn17.Width = 65;
//
// dataGridViewTextBoxColumn18
//
dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 12F);
this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle19;
this.dataGridViewTextBoxColumn18.HeaderText = "备注";
this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
//
// Id
//
this.Id.HeaderText = "编号";
this.Id.Name = "Id";
this.Id.ReadOnly = true;
this.Id.Visible = false;
//
// Index
//
this.Index.HeaderText = "序号";
this.Index.Name = "Index";
this.Index.ReadOnly = true;
this.Index.Visible = false;
this.Index.Width = 40;
//
// PlanOperationRoomName
//
this.PlanOperationRoomName.HeaderText = "术间";
this.PlanOperationRoomName.Name = "PlanOperationRoomName";
this.PlanOperationRoomName.ReadOnly = true;
this.PlanOperationRoomName.Width = 60;
//
// PlanOrder
//
this.PlanOrder.HeaderText = "台次";
this.PlanOrder.Name = "PlanOrder";
this.PlanOrder.ReadOnly = true;
this.PlanOrder.Width = 30;
//
// OrderOperationTime
//
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F);
this.OrderOperationTime.DefaultCellStyle = dataGridViewCellStyle2;
this.OrderOperationTime.HeaderText = "时间";
this.OrderOperationTime.Name = "OrderOperationTime";
this.OrderOperationTime.ReadOnly = true;
this.OrderOperationTime.Width = 65;
//
// DepartmentId
//
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 12F);
this.DepartmentId.DefaultCellStyle = dataGridViewCellStyle3;
this.DepartmentId.HeaderText = "科室";
this.DepartmentId.Name = "DepartmentId";
this.DepartmentId.ReadOnly = true;
this.DepartmentId.Width = 120;
//
// SickBed
//
this.SickBed.HeaderText = "床号";
this.SickBed.Name = "SickBed";
this.SickBed.ReadOnly = true;
this.SickBed.Width = 50;
//
// InHospitalNo
//
this.InHospitalNo.HeaderText = "住院号";
this.InHospitalNo.Name = "InHospitalNo";
this.InHospitalNo.ReadOnly = true;
this.InHospitalNo.Width = 80;
//
// PatientName
//
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 11F);
this.PatientName.DefaultCellStyle = dataGridViewCellStyle4;
this.PatientName.HeaderText = "姓名";
this.PatientName.Name = "PatientName";
this.PatientName.ReadOnly = true;
this.PatientName.Width = 160;
//
// ApplyDiagnoseInfoName
//
this.ApplyDiagnoseInfoName.HeaderText = "诊断";
this.ApplyDiagnoseInfoName.Name = "ApplyDiagnoseInfoName";
this.ApplyDiagnoseInfoName.ReadOnly = true;
//
// Operation
//
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 11F);
this.Operation.DefaultCellStyle = dataGridViewCellStyle5;
this.Operation.HeaderText = "手术";
this.Operation.Name = "Operation";
this.Operation.ReadOnly = true;
//
// OperationDoctor
//
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 12F);
this.OperationDoctor.DefaultCellStyle = dataGridViewCellStyle6;
this.OperationDoctor.HeaderText = "医师";
this.OperationDoctor.Name = "OperationDoctor";
this.OperationDoctor.ReadOnly = true;
this.OperationDoctor.Width = 65;
//
// Assistant
//
this.Assistant.HeaderText = "助手";
this.Assistant.Name = "Assistant";
this.Assistant.ReadOnly = true;
this.Assistant.Width = 65;
//
// AnaesthesiaMethodId
//
this.AnaesthesiaMethodId.HeaderText = "拟施麻醉";
this.AnaesthesiaMethodId.Name = "AnaesthesiaMethodId";
this.AnaesthesiaMethodId.ReadOnly = true;
this.AnaesthesiaMethodId.Visible = false;
//
// AnesthesiaDoctor
//
this.AnesthesiaDoctor.HeaderText = "麻醉医生";
this.AnesthesiaDoctor.Name = "AnesthesiaDoctor";
this.AnesthesiaDoctor.ReadOnly = true;
//
// InstrumentNurse
//
this.InstrumentNurse.HeaderText = "洗手护士";
this.InstrumentNurse.Name = "InstrumentNurse";
this.InstrumentNurse.ReadOnly = true;
this.InstrumentNurse.Width = 65;
//
// TourNurse
//
this.TourNurse.HeaderText = "巡回护士";
this.TourNurse.Name = "TourNurse";
this.TourNurse.ReadOnly = true;
this.TourNurse.Width = 65;
//
// Remark
//
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F);
this.Remark.DefaultCellStyle = dataGridViewCellStyle7;
this.Remark.HeaderText = "备注";
this.Remark.Name = "Remark";
this.Remark.ReadOnly = true;
//
// frmSelectiveOperationsPrint
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1163, 550);
this.ClientSize = new System.Drawing.Size(1298, 550);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("宋体", 10.5F);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmSelectiveOperationsPrint";
this.Padding = new System.Windows.Forms.Padding(12, 0, 0, 0);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "打印手术排程表";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.QuietOperationRecordSheet_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
@ -537,22 +684,38 @@ namespace AIMS.OperationFront.UI
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
private System.Windows.Forms.DataGridViewCheckBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Id;
private System.Windows.Forms.DataGridViewTextBoxColumn Index;
private System.Windows.Forms.DataGridViewTextBoxColumn PlanOperationRoomName;
private System.Windows.Forms.DataGridViewTextBoxColumn DepartmentId;
private System.Windows.Forms.DataGridViewTextBoxColumn OperationDoctor;
private System.Windows.Forms.DataGridViewTextBoxColumn OrderOperationTime;
private System.Windows.Forms.DataGridViewTextBoxColumn PatientName;
private System.Windows.Forms.DataGridViewTextBoxColumn Operation;
private System.Windows.Forms.DataGridViewTextBoxColumn Remark;
private System.Windows.Forms.DataGridViewTextBoxColumn InHospitalNo;
private System.Windows.Forms.DataGridViewTextBoxColumn AnaesthesiaMethodId;
private System.Windows.Forms.RadioButton rbosh;
private System.Windows.Forms.RadioButton rbosq;
private System.Windows.Forms.RadioButton rboall;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
private System.Windows.Forms.Label label1;
private DevComponents.DotNetBar.ButtonX btnReview;
private DevComponents.DotNetBar.ButtonX btnPrint;
private System.Windows.Forms.DataGridViewCheckBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Id;
private System.Windows.Forms.DataGridViewTextBoxColumn Index;
private System.Windows.Forms.DataGridViewTextBoxColumn PlanOperationRoomName;
private System.Windows.Forms.DataGridViewTextBoxColumn PlanOrder;
private System.Windows.Forms.DataGridViewTextBoxColumn OrderOperationTime;
private System.Windows.Forms.DataGridViewTextBoxColumn DepartmentId;
private System.Windows.Forms.DataGridViewTextBoxColumn SickBed;
private System.Windows.Forms.DataGridViewTextBoxColumn InHospitalNo;
private System.Windows.Forms.DataGridViewTextBoxColumn PatientName;
private System.Windows.Forms.DataGridViewTextBoxColumn ApplyDiagnoseInfoName;
private System.Windows.Forms.DataGridViewTextBoxColumn Operation;
private System.Windows.Forms.DataGridViewTextBoxColumn OperationDoctor;
private System.Windows.Forms.DataGridViewTextBoxColumn Assistant;
private System.Windows.Forms.DataGridViewTextBoxColumn AnaesthesiaMethodId;
private System.Windows.Forms.DataGridViewTextBoxColumn AnesthesiaDoctor;
private System.Windows.Forms.DataGridViewTextBoxColumn InstrumentNurse;
private System.Windows.Forms.DataGridViewTextBoxColumn TourNurse;
private System.Windows.Forms.DataGridViewTextBoxColumn Remark;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AIMS.PublicUI
{
class PanelScrollHelper
{
/// <summary>
/// 初始化Panel
/// </summary>
/// <param name="panel"></param>
public static void InitializePanelScroll(Panel panel)
{
panel.Click += (obj, arg) => { panel.Select(); };
InitializePanelScroll(panel, panel);
return;
}
/// <summary>
/// 递归初始化Panel内部各容器和控件
/// </summary>
/// <param name="container"></param>
/// <param name="panelRoot"></param>
private static void InitializePanelScroll(Control container, Control panelRoot)
{
foreach (Control control in container.Controls)
{
if (control is Panel || control is GroupBox || control is SplitContainer ||
control is TabControl || control is UserControl)
{
control.Click += (obj, arg) => { panelRoot.Select(); };
InitializePanelScroll(control, panelRoot);
}
else if (control is Label)
{
control.Click += (obj, arg) => { panelRoot.Select(); };
}
}
}
}
}

Binary file not shown.

View File

@ -26,19 +26,15 @@ namespace AIMSBLL
public static DataTable GetOperationPlanDataTable(DateTime BeginDate, DateTime EndDate, string DepName)
{
string strSql = "SELECT CONVERT(VARCHAR(16),OperationRoom)+'-'+CONVERT(VARCHAR(16),PlanOrder ) as OperationRoom , of1.ApplyDepName,of1.SickBed, of1.Contagion, of1.MdrecNo, of1.PatientName, of1.Sex, of1.BirthDay, " +
" of1.OrderOperationTime PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," +
" of1.AnaesthesiaMethodName , of1.AnesthesiaDoctor ," +
" of1.InstrumentNurse AS InstrumentNurse, of1.TourNurse AS TourNurse, of1.Remark " +
" FROM V_OperationFront of1 WHERE of1.PlanOperationTime>='" + BeginDate + "' AND of1.PlanOperationTime<'" + EndDate + "' AND of1.ApplyDepName LIKE '%%'";
string strSql = "SELECT of1.ApplyId,OperationRoom,PlanOrder ,OrderOperationTime , of1.ApplyDepName,of1.SickBed, of1.MdrecNo, of1.PatientName, of1.Sex, of1.Age,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor, of1.Assistant1 Assistant, " +
" of1.AnaesthesiaMethodName , of1.AnesthesiaDoctor , of1.InstrumentNurse , of1.TourNurse , of1.Remark,of1.OperationType" +
" FROM V_OperationFront of1 WHERE of1.PlanOperationTime>='" + BeginDate + "' AND of1.PlanOperationTime<'" + EndDate + "' Order By OperationRoomID,PlanOrder";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}
public static DataTable GetOperationPlanDataTable(string ApplyId)
{
string strSql = "SELECT of1.OperationRoom, of1.ApplyDepName,of1.SickBed, of1.Contagion, of1.MdrecNo, of1.PatientName, of1.Sex, of1.BirthDay, " +
" of1.OrderOperationTime PlanOperationTime,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor," +
" of1.AnaesthesiaMethodName , (of1.AnesthesiaDoctor + ' ' +of1.AnesthesiaDoctorSucceed) AS AnesthesiaDoctor," +
" (of1.InstrumentNurse +' '+ of1.InstrumentNurseSucceed) AS InstrumentNurse,(of1.TourNurse + ' '+of1.TourNurseSucceed) AS TourNurse, of1.Remark " +
string strSql = "SELECT of1.ApplyId,OperationRoom,PlanOrder ,OrderOperationTime , of1.ApplyDepName,of1.SickBed, of1.MdrecNo, of1.PatientName, of1.Sex, of1.Age,of1.ApplyDiagnoseInfoName, of1.ApplyOperationInfoName,of1.OperationDoctor, of1.Assistant1 Assistant, " +
" of1.AnaesthesiaMethodName , of1.AnesthesiaDoctor , of1.InstrumentNurse , of1.TourNurse , of1.Remark ,of1.OperationType " +
" FROM V_OperationFront of1 WHERE " + ApplyId + " ";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}

View File

@ -156,7 +156,8 @@ namespace DrawGraph
ableEdit.CControl.GotFocus -= new EventHandler(txt_Focus);
ableEdit.CControl.GotFocus += new EventHandler(txt_Focus);
((TextBox)ableEdit.CControl).BorderStyle = BorderStyle.Fixed3D;
//ableEdit.CControl.MouseWheel += new MouseEventHandler(numericUpDown1_MouseWheel);
//ableEdit.CControl.MouseEnter += CControl_MouseEnter;
}
ableEdit.CControl.Leave -= new EventHandler(txt_Leave);
ableEdit.CControl.Leave += new EventHandler(txt_Leave);
@ -166,6 +167,24 @@ namespace DrawGraph
}
}
//private void CControl_MouseEnter(object sender, EventArgs e)
//{
// if (sender is TextBox)
// {
// ((TextBox)sender).Parent.Focus();
// //h.Handled = false;
// }
//}
////取消滚轮事件
//void numericUpDown1_MouseWheel(object sender, MouseEventArgs e)
//{
// if (sender is TextBox)
// {
// ((TextBox)sender).Parent.Focus();
// //h.Handled = false;
// }
//}
private void txt_Focus(object sender, EventArgs e)
{