leonardo 2016-08-04 18:49:49 +00:00
parent e397813aec
commit f9ea6c7f4a
1 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ public class EditarCasetaPeajeController extends MyGenericForwardComposer {
private MyTextboxDecimal quantiaIda;
private MyTextboxDecimal quantiaVolta;
private Logger logger = Logger.getLogger(this.getClass());
private List<CasetaPeajeExcepcion> lsCasetaPeajeExcepcion;
private List<CasetaPeajeExcepcion> lsCasetaPeajeExcepcion = new ArrayList<CasetaPeajeExcepcion>();;
private List<CasetaPeajeExcepcion> casetaPeajeExcepcionToDelete = new ArrayList<CasetaPeajeExcepcion>();
private Datebox fecInicio;
@ -75,7 +75,7 @@ public class EditarCasetaPeajeController extends MyGenericForwardComposer {
casetaPeaje = (CasetaPeaje) Executions.getCurrent().getArg().get("casetaPeaje");
casetaPeajeList = (MyListbox) Executions.getCurrent().getArg().get("casetaPeajeList");
lsCasetaPeajeExcepcion = casetaPeajeExcepcionService.buscarPorCasetaPeaje(casetaPeaje);
lsCasetaPeajeExcepcion = casetaPeaje.getLsCasetaPeajeExcepcion();
super.doAfterCompose(comp);
@ -255,7 +255,7 @@ public class EditarCasetaPeajeController extends MyGenericForwardComposer {
}
casetaPeajeExcepcion.setCasetaPeaje(casetaPeaje);
casetaPeajeExcepcionList.setData(lsCasetaPeajeExcepcion);
casetaPeajeExcepcionService.suscribir(casetaPeajeExcepcion);
//casetaPeajeExcepcionService.suscribir(casetaPeajeExcepcion);
limparInput();
}