wilian 2017-04-05 22:08:03 +00:00
parent ef9dc7468c
commit 2f0a4101ea
1 changed files with 1 additions and 9 deletions

View File

@ -627,6 +627,7 @@ public class ConferenciaController extends MyGenericForwardComposer {
boolean devolvidoAtualizado = false; boolean devolvidoAtualizado = false;
for (BoletoComissao b: boletosComissaos){ for (BoletoComissao b: boletosComissaos){
log.info(b.toString());
if (b.getIndCancelacion()){ if (b.getIndCancelacion()){
if (b.isMotivocancelacionDevolvido()){ if (b.isMotivocancelacionDevolvido()){
this.lsBilhetesDevolvidos.add(b); this.lsBilhetesDevolvidos.add(b);
@ -764,15 +765,6 @@ public class ConferenciaController extends MyGenericForwardComposer {
private void carregarEventosFinanceiros(List<BoletoComissao> boletosComissaos) throws BusinessException { private void carregarEventosFinanceiros(List<BoletoComissao> boletosComissaos) throws BusinessException {
lsEventosFinanceiros = conferenciaComissaoService.carregarEventosFinanceiros(conferencia); lsEventosFinanceiros = conferenciaComissaoService.carregarEventosFinanceiros(conferencia);
for (EventosFinanceirosVO eventoFinanceiro : lsEventosFinanceiros) {
for (BoletoComissao boletoComissao : boletosComissaos) {
if(boletoComissao.getBoletoId()!=null &&boletoComissao.getBoletoId().equals(eventoFinanceiro.getBoletoId())){
eventoFinanceiro.setNumFolioSistema(boletoComissao.getNumFolioSistema());
break;
}
}
}
eventosFinanceirosList.setData(lsEventosFinanceiros); eventosFinanceirosList.setData(lsEventosFinanceiros);
totalCreditosEventoFinanceiros = BigDecimal.ZERO; totalCreditosEventoFinanceiros = BigDecimal.ZERO;