/// <summary> /// 查询患者划价信息 /// </summary> private void QueryChargeInfo() { ArrayList alFeeList = outPatientFeeManager.QueryChargedFeeItemListsByClinicNODoctDept(rInfo.ID, empl.Dept.ID); if (alFeeList == null) { MessageBox.Show("查询患者划价信息失败!" + outPatientFeeManager.Err); return; } ucFeeList1.ChargeInfoList = alFeeList; }