예제 #1
0
        /// <summary>
        /// 显示医保记帐单号
        /// </summary>
        public void m_mthShowBillNo()
        {
            if (dtChargeCheck.Rows.Count == 0 || this.m_objViewer.DgChargeCheck.CurrentCell.RowNumber < 0)
            {
                return;
            }

            //发票号
            string InvoNo = this.m_objViewer.DgChargeCheck[this.m_objViewer.DgChargeCheck.CurrentRowIndex, 1].ToString();
            string BillNo = Domain.m_strGetBillNoByInvoNo(InvoNo);

            if (BillNo.Trim() != "")
            {
                this.m_objViewer.lblBillNo.Text = "医保记帐单号:" + BillNo;
            }
            else
            {
                this.m_objViewer.lblBillNo.Text = "";
            }
        }