/// <summary> /// 确认参数设置 日消耗处理 /// /// {F4D82F23-CCDC-45a6-86A1-95D41EF856B8} 更改函数名称及调用函数 /// </summary> protected void QueryDayAlterList() { if (this.SaveValid()) { Neusoft.FrameWork.WinForms.Classes.Function.ShowWaitForm("正在按照日消耗进行检索 请稍候..."); Application.DoEvents(); Neusoft.HISFC.BizLogic.Pharmacy.Item itemMgr = new Neusoft.HISFC.BizLogic.Pharmacy.Item(); this.alInfo = itemMgr.QueryDrugListByDayAlter(this.deptCode, this.DtBegin, this.DtEnd, this.MaxAlterDays, this.MinAlterDays, this.rbAllDept.Checked); if (this.alInfo == null) { Neusoft.FrameWork.WinForms.Classes.Function.HideWaitForm(); MessageBox.Show("检索日消耗信息发生错误" + itemMgr.Err); return; } Neusoft.FrameWork.WinForms.Classes.Function.HideWaitForm(); } }