示例#1
0
 private void generateAccountStatement(bool asDialog)
 {
     if (m_currentInvoice != null && m_currentInvoice.patient != null)
     {
         Reporting.PatientAccountSummaryDialog dlg = new Reporting.PatientAccountSummaryDialog(m_currentInvoice.patient.patID, asDialog);
         dlg.ShowDialog();
     }
 }
示例#2
0
 private void tsmiAccSummary_Click(object sender, EventArgs e)
 {
     if (m_patient != null)
     {
         Reporting.PatientAccountSummaryDialog dlg = new Reporting.PatientAccountSummaryDialog(m_patient.patID, false);
         dlg.ShowDialog();
     }
 }