valdevir 2016-11-09 12:21:50 +00:00
parent 6000cb6e6c
commit 0bc77152a9
1 changed files with 32 additions and 29 deletions

View File

@ -18,39 +18,42 @@ public class RenderEventosFinanceiros implements ListitemRenderer {
eventosFinanceiros.setConferido(eventosFinanceiros.getLogconferenciaId() != null);
Listcell lc = new Listcell();
if((eventosFinanceiros.getExigeConferenciaAba() != null && eventosFinanceiros.getExigeConferenciaAba()) || eventosFinanceiros.isExigeConferencia()) {
Checkbox chk = new Checkbox();
chk.setId(eventosFinanceiros.getEventoextraId()+"_"+eventosFinanceiros.getComempformapagoId());
if ((eventosFinanceiros.getExigeConferenciaAba() != null && eventosFinanceiros.getExigeConferenciaAba()) || eventosFinanceiros.isExigeConferencia()) {
Checkbox chk = new Checkbox();
chk.setId(eventosFinanceiros.getEventoextraId() + "_" + eventosFinanceiros.getComempformapagoId());
chk.setChecked(eventosFinanceiros.isConferido());
chk.setParent(lc);
}
lc.setParent(lstm);
}
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getBoletoId() != null ? eventosFinanceiros.getBoletoId().toString() : "");
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getNumdocumento());
lc.setParent(lstm);
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getDesctipoevento());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getDesctipoevento());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getDescinfo());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getDescinfo());
lc.setParent(lstm);
lc = new Listcell(BigDecimalUtil.getBigDecimalToStringDouble2CasasDecimaisFormatado(eventosFinanceiros.getImpingreso(), LocaleUtil.getLocale()));
lc.setParent(lstm);
lc = new Listcell(BigDecimalUtil.getBigDecimalToStringDouble2CasasDecimaisFormatado(eventosFinanceiros.getImpingreso(), LocaleUtil.getLocale()));
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.isCredito() ? Labels.getLabel("conferenciaController.lbCredito.value") : Labels.getLabel("conferenciaController.lbDebito.value"));
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.isCredito() ? Labels.getLabel("conferenciaController.lbCredito.value") : Labels.getLabel("conferenciaController.lbDebito.value"));
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getStatusDescricao());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getStatusDescricao());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getDescpago());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getDescpago());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getNombusuario());
lc.setParent(lstm);
lc = new Listcell(eventosFinanceiros.getNombusuario());
lc.setParent(lstm);
lstm.setAttribute("data", eventosFinanceiros);
lstm.setAttribute("data", eventosFinanceiros);
}