void Neusoft.HISFC.BizProcess.Interface.Pharmacy.IDrugPrint.AddAllData(System.Collections.ArrayList al) { if (this.tempDrugBill == null) { this.ucDrugBillDetail1.Clear(); this.ucDrugTotal1.Clear(); this.ucDrugHerbal1.Clear(); return; } switch (this.tempDrugBill.PrintType.ID.ToString()) { case "D": //明细打印 case "R": //处方单 case "O": //扩展打印 默认取处方明细单 if (this.ucDrugBillDetail1 == null) { this.ucDrugBillDetail1 = new ucDrugBillDetail(); } this.ucDrugBillDetail1.Clear(); this.ucDrugBillDetail1.ShowData(al, this.tempDrugBill); break; case "T": //汇总打印 if (this.ucDrugTotal1 == null) { this.ucDrugTotal1 = new ucDrugTotal(); } this.ucDrugTotal1.Clear(); this.ucDrugTotal1.ShowData(al, this.tempDrugBill); if (this.ucDrugBillDetail1 == null) { this.ucDrugBillDetail1 = new ucDrugBillDetail(); } this.ucDrugBillDetail1.Clear(); this.ucDrugBillDetail1.ShowData(al, this.tempDrugBill); break; case "H": //草药单 if (this.ucDrugHerbal1 == null) { this.ucDrugHerbal1 = new ucDrugHerbal(); } this.ucDrugHerbal1.Clear(); this.ucDrugHerbal1.ShowData(al, this.tempDrugBill); break; } }
/// <summary> /// 数据添加 /// </summary> /// <param name="al"></param> /// <param name="drugBillClass"></param> public void AddAllData(System.Collections.ArrayList al, Neusoft.HISFC.Models.Pharmacy.DrugBillClass drugBillClass) { switch (drugBillClass.PrintType.ID.ToString()) { case "D": //明细打印 case "R": //处方单 case "O": //扩展打印 默认取处方明细单 ArrayList alDetail = new ArrayList(); if (drugBillClass.DrugBillNO == null || drugBillClass.DrugBillNO == "") { alDetail = al; } else { alDetail = this.itemManager.QueryDrugBillDetail(drugBillClass.DrugBillNO); if (alDetail == null || alDetail.Count == 0) { MessageBox.Show(Neusoft.FrameWork.Management.Language.Msg("根据摆药单号获取摆药单详细信息发生错误") + this.itemManager.Err); return; } } System.Collections.Hashtable hash = new Hashtable(); foreach (Neusoft.HISFC.Models.Pharmacy.ApplyOut temp in al) { if (hash.ContainsKey(temp.User01 + temp.User02)) { } else { hash.Add(temp.User01 + temp.User02, temp.PatientNO); } } foreach (Neusoft.HISFC.Models.Pharmacy.ApplyOut detail in alDetail) { //{D515D71A-75B4-4c02-B2F7-569779A2A5A8} //if(hash.ContainsKey((detail.User02).Substring(4) + detail.User01)) //{ // detail.PatientNO = hash[(detail.User02).Substring(4) + detail.User01] as string; //} if (hash.ContainsKey(detail.User01 + detail.User02)) { detail.PatientNO = hash[detail.User01 + detail.User02] as string; } } if (this.ucDrugBillDetail1 == null) { this.ucDrugBillDetail1 = new ucDrugBillDetail(); } this.ucDrugBillDetail1.Clear(); this.ucDrugBillDetail1.ShowData(alDetail, drugBillClass); break; case "T": //汇总打印 ArrayList alTotal = new ArrayList(); if (drugBillClass.DrugBillNO == null || drugBillClass.DrugBillNO == "") { alTotal = al; } else { alTotal = this.itemManager.QueryDrugBillTotal(drugBillClass.DrugBillNO); if (alTotal == null || alTotal.Count == 0) { MessageBox.Show(Neusoft.FrameWork.Management.Language.Msg("根据摆药单号获取摆药单汇总信息发生错误")); return; } } if (this.ucDrugTotal1 == null) { this.ucDrugTotal1 = new ucDrugTotal(); } this.ucDrugTotal1.Clear(); this.ucDrugTotal1.ShowData(alTotal, drugBillClass); if (drugBillClass.User01 != "NurseType") //{31607136-EF3D-46af-A2F9-EE96F6F9209C} { ArrayList alDetailTemp = new ArrayList(); if (drugBillClass.DrugBillNO == null || drugBillClass.DrugBillNO == "") { alDetailTemp = al; } else { alDetailTemp = this.itemManager.QueryDrugBillDetail(drugBillClass.DrugBillNO); if (alDetailTemp == null || alDetailTemp.Count == 0) { MessageBox.Show(Neusoft.FrameWork.Management.Language.Msg("根据摆药单号获取摆药单详细信息发生错误") + this.itemManager.Err); return; } } if (this.ucDrugBillDetail1 == null) { this.ucDrugBillDetail1 = new ucDrugBillDetail(); } this.ucDrugBillDetail1.Clear(); this.ucDrugBillDetail1.ShowData(alDetailTemp, drugBillClass); } break; case "H": //草药单 ArrayList alHerbalDetail = new ArrayList(); if (drugBillClass.DrugBillNO == null || drugBillClass.DrugBillNO == "") { alHerbalDetail = al; } else { alHerbalDetail = this.itemManager.QueryDrugBillDetail(drugBillClass.DrugBillNO); if (alHerbalDetail == null || alHerbalDetail.Count == 0) { MessageBox.Show(Neusoft.FrameWork.Management.Language.Msg("根据摆药单号获取摆药单详细信息发生错误")); return; } } if (this.ucDrugHerbal1 == null) { this.ucDrugHerbal1 = new ucDrugHerbal(); } this.ucDrugHerbal1.Clear(); this.ucDrugHerbal1.ShowData(alHerbalDetail, drugBillClass); break; } this.tempDrugBill = drugBillClass; }