item.setText(1, new SimpleDateFormat("EEE, dd/MM/yyyy HH:mm:ss").format(operation.getDateTime().getDate()));
item.setText(2, system.getBillPlan().get(operation.getCategoryId()).getDescription());
item.setText(3, operation.getDescription());
String text = "";
if(operation.getPaymentType() == null){
text = new PaymentMoney().getType();
}else{
if(operation.getPaymentType().getType().equals("Dep�sito em Conta")){
try {
PaymentBankAccountPayed paymentBank = (PaymentBankAccountPayed) operation.getPaymentType();
Account account = (Account) system.query(new GetAccounts(paymentBank.getAccountId()));