麻醉药品登记表
This commit is contained in:
parent
6aba9a6aa5
commit
de9ca8f384
@ -239,12 +239,6 @@
|
|||||||
<Compile Include="OperationAanesthesia\frmSelectPatientGoodsBill2.Designer.cs">
|
<Compile Include="OperationAanesthesia\frmSelectPatientGoodsBill2.Designer.cs">
|
||||||
<DependentUpon>frmSelectPatientGoodsBill2.cs</DependentUpon>
|
<DependentUpon>frmSelectPatientGoodsBill2.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="OperationAanesthesia\oldSystemCode\frmDrugRegister.cs">
|
|
||||||
<SubType>Form</SubType>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="OperationAanesthesia\oldSystemCode\frmDrugRegister.Designer.cs">
|
|
||||||
<DependentUpon>frmDrugRegister.cs</DependentUpon>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="OperationAanesthesia\oldSystemCode\frmPrescriptionDocument.cs">
|
<Compile Include="OperationAanesthesia\oldSystemCode\frmPrescriptionDocument.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@ -910,9 +904,6 @@
|
|||||||
<EmbeddedResource Include="OperationAanesthesia\frmSelectPatientGoodsBill2.resx">
|
<EmbeddedResource Include="OperationAanesthesia\frmSelectPatientGoodsBill2.resx">
|
||||||
<DependentUpon>frmSelectPatientGoodsBill2.cs</DependentUpon>
|
<DependentUpon>frmSelectPatientGoodsBill2.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="OperationAanesthesia\oldSystemCode\frmDrugRegister.resx">
|
|
||||||
<DependentUpon>frmDrugRegister.cs</DependentUpon>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<EmbeddedResource Include="OperationAanesthesia\oldSystemCode\frmPrescriptionDocument.resx">
|
<EmbeddedResource Include="OperationAanesthesia\oldSystemCode\frmPrescriptionDocument.resx">
|
||||||
<DependentUpon>frmPrescriptionDocument.cs</DependentUpon>
|
<DependentUpon>frmPrescriptionDocument.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
@ -1585,6 +1585,10 @@ namespace AIMS.OperationAanesthesia
|
|||||||
{
|
{
|
||||||
names = namestr.Split('+').ToList();
|
names = namestr.Split('+').ToList();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
names.Add(namestr);
|
||||||
|
}
|
||||||
foreach (var name in names)
|
foreach (var name in names)
|
||||||
{
|
{
|
||||||
DataTable dt = DBHelper.GetDataTable("select * from Operation where Name ='" + name + "'");
|
DataTable dt = DBHelper.GetDataTable("select * from Operation where Name ='" + name + "'");
|
||||||
|
|||||||
@ -155,8 +155,8 @@ namespace AIMS.OperationAfter.UI
|
|||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
dgvtEMPOperationInfos.Rows.Clear();
|
dgvtEMPOperationInfos.Rows.Clear();
|
||||||
SetChargDetalie(OpeID );
|
SetChargDetalie(OpeID);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -241,7 +241,7 @@ namespace AIMS.OperationAfter.UI
|
|||||||
document.ShowDialog();
|
document.ShowDialog();
|
||||||
|
|
||||||
dgvtEMPOperationInfos.Rows.Clear();
|
dgvtEMPOperationInfos.Rows.Clear();
|
||||||
SetChargDetalie(drug.OperationRecordId.Value );
|
SetChargDetalie(drug.OperationRecordId.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkBoxX1_CheckedChanged(object sender, EventArgs e)
|
private void checkBoxX1_CheckedChanged(object sender, EventArgs e)
|
||||||
@ -277,31 +277,16 @@ namespace AIMS.OperationAfter.UI
|
|||||||
}
|
}
|
||||||
if (list.Count > 0)
|
if (list.Count > 0)
|
||||||
{
|
{
|
||||||
frmPrescriptionDocument document = new frmPrescriptionDocument();
|
frmPrescriptionDocument document = new frmPrescriptionDocument();
|
||||||
document.RecordIds = list ;
|
document.RecordIds = list;
|
||||||
document.ShowDialog();
|
document.ShowDialog();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void button3_Click(object sender, EventArgs e)
|
private void button3_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
List<int> list = new List<int>();
|
frmOperationCharg3 document = new frmOperationCharg3();
|
||||||
foreach (DataGridViewRow item in dgvOperation.Rows)
|
document.Show();
|
||||||
{
|
|
||||||
bool isChoose = bool.Parse(item.Cells[6].EditedFormattedValue.ToString());
|
|
||||||
if (isChoose)
|
|
||||||
{
|
|
||||||
string SelectId = item.Cells[0].Value.ToString();// as string;
|
|
||||||
if (SelectId != "")
|
|
||||||
list.Add(Convert.ToInt32(SelectId));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (list.Count > 0)
|
|
||||||
{
|
|
||||||
frmDrugRegister document = new frmDrugRegister();
|
|
||||||
document.RecordIds = list;
|
|
||||||
document.ShowDialog();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -918,6 +918,7 @@
|
|||||||
this.Controls.Add(this.panel1);
|
this.Controls.Add(this.panel1);
|
||||||
this.Name = "frmOperationCharg3";
|
this.Name = "frmOperationCharg3";
|
||||||
this.Text = "费用药品登记";
|
this.Text = "费用药品登记";
|
||||||
|
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
||||||
this.Load += new System.EventHandler(this.frmOperationDruggCheck_Load);
|
this.Load += new System.EventHandler(this.frmOperationDruggCheck_Load);
|
||||||
this.panel1.ResumeLayout(false);
|
this.panel1.ResumeLayout(false);
|
||||||
this.panel1.PerformLayout();
|
this.panel1.PerformLayout();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user