new MoneyTransaction().incomingPayment(getIncomingId(), accountId, paidDate.getCalendar(), paidTotal.getValue(), paymentTypeCombo.getPaymentType(), extractBankItem);
} else {
Account accountDestiny = (Account) system.query(new GetAccountByName(accountSelected));
accountId = accountDestiny.getId();
if(!accountDestiny.isBankAccount()) {
User user = ((User)accountDestiny.getPerson().getPersonType("user"));
ConfirmUserAndPasswordDialog dialog = new ConfirmUserAndPasswordDialog(getShell(), user);
dialog.open();
if(dialog.isCheckPassword()) {
new MoneyTransaction().incomingPayment(getIncomingId(), accountId, paidDate.getCalendar(), paidTotal.getValue(), paymentTypeCombo.getPaymentType(), extractBankItem);
}