if (order.getBank().getBank() == null) {
try {
order.setBank(getBankToId(order.getBank().getId()));
} catch (ServiceException e) {
logger.error("Erro ao obter banco para o boleto.", e);
throw new ServiceException("Erro ao obter banco para o boleto.", e);
}
}
try {
boletoService.generateBoleto(order);
} catch (Exception e) {