for (TaxPayer t : txprs.list(getSession())) {
totalInvoices.add(new Integer((int) t.getTotalInvoicesCount()));
totalTickets.add(new Integer((int) t.getTotalTicketsCount()));
allowed.add(new Integer(t.allowedUsers(getSession()).size()));
employees.add(new Integer(t.employees(getSession()).count()));
AccountingAccounts oAacs = t.accounts(getSession());
if (oAacs==null)
accounts.add(new Integer(0));
else
accounts.add(new Integer(oAacs.count()));
} // next
disconnect();
} catch (Exception xcpt) {
Log.out.error(xcpt.getMessage(), xcpt);
} finally {