麻醉药品登记表
This commit is contained in:
parent
6aba9a6aa5
commit
de9ca8f384
@ -239,12 +239,6 @@
|
||||
<Compile Include="OperationAanesthesia\frmSelectPatientGoodsBill2.Designer.cs">
|
||||
<DependentUpon>frmSelectPatientGoodsBill2.cs</DependentUpon>
|
||||
</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">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
@ -910,9 +904,6 @@
|
||||
<EmbeddedResource Include="OperationAanesthesia\frmSelectPatientGoodsBill2.resx">
|
||||
<DependentUpon>frmSelectPatientGoodsBill2.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="OperationAanesthesia\oldSystemCode\frmDrugRegister.resx">
|
||||
<DependentUpon>frmDrugRegister.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="OperationAanesthesia\oldSystemCode\frmPrescriptionDocument.resx">
|
||||
<DependentUpon>frmPrescriptionDocument.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
||||
@ -1585,6 +1585,10 @@ namespace AIMS.OperationAanesthesia
|
||||
{
|
||||
names = namestr.Split('+').ToList();
|
||||
}
|
||||
else
|
||||
{
|
||||
names.Add(namestr);
|
||||
}
|
||||
foreach (var name in names)
|
||||
{
|
||||
DataTable dt = DBHelper.GetDataTable("select * from Operation where Name ='" + name + "'");
|
||||
|
||||
@ -285,23 +285,8 @@ namespace AIMS.OperationAfter.UI
|
||||
|
||||
private void button3_Click(object sender, EventArgs e)
|
||||
{
|
||||
List<int> list = new List<int>();
|
||||
foreach (DataGridViewRow item in dgvOperation.Rows)
|
||||
{
|
||||
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();
|
||||
}
|
||||
frmOperationCharg3 document = new frmOperationCharg3();
|
||||
document.Show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -918,6 +918,7 @@
|
||||
this.Controls.Add(this.panel1);
|
||||
this.Name = "frmOperationCharg3";
|
||||
this.Text = "费用药品登记";
|
||||
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
||||
this.Load += new System.EventHandler(this.frmOperationDruggCheck_Load);
|
||||
this.panel1.ResumeLayout(false);
|
||||
this.panel1.PerformLayout();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user