@DefaultHandler
public Resolution form() {
try {
connect();
TaxPayers txprs = new CustomerAccount(getSession().getDms(), getSessionAttribute("customer_account_docid")).taxpayers(getSession());
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());