/// <summary>
        /// 更新费用明细发票信息
        /// </summary>
        /// <param name="feeList"></param>
        /// <param name="errText"></param>
        /// <returns></returns>
        private int UpdateFeeItemList(ArrayList feeList, ref string errText)
        {
            int resultValue = 0;

            foreach (FeeItemList f in feeList)
            {
                resultValue = outpatientManager.UpdateFeeItemListInvoiceInfo(f);
                if (resultValue < 0)
                {
                    errText = "更新费用明细失败!" + outpatientManager.Err;
                    return(-1);
                }
                if (resultValue == 0)
                {
                    errText = "数据发生变化请刷新!";
                    return(-1);
                }
            }
            return(1);
        }