fixes bug #7588
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@58752 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
e397813aec
commit
f9ea6c7f4a
|
@ -52,7 +52,7 @@ public class EditarCasetaPeajeController extends MyGenericForwardComposer {
|
||||||
private MyTextboxDecimal quantiaIda;
|
private MyTextboxDecimal quantiaIda;
|
||||||
private MyTextboxDecimal quantiaVolta;
|
private MyTextboxDecimal quantiaVolta;
|
||||||
private Logger logger = Logger.getLogger(this.getClass());
|
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 List<CasetaPeajeExcepcion> casetaPeajeExcepcionToDelete = new ArrayList<CasetaPeajeExcepcion>();
|
||||||
|
|
||||||
private Datebox fecInicio;
|
private Datebox fecInicio;
|
||||||
|
@ -75,7 +75,7 @@ public class EditarCasetaPeajeController extends MyGenericForwardComposer {
|
||||||
casetaPeaje = (CasetaPeaje) Executions.getCurrent().getArg().get("casetaPeaje");
|
casetaPeaje = (CasetaPeaje) Executions.getCurrent().getArg().get("casetaPeaje");
|
||||||
casetaPeajeList = (MyListbox) Executions.getCurrent().getArg().get("casetaPeajeList");
|
casetaPeajeList = (MyListbox) Executions.getCurrent().getArg().get("casetaPeajeList");
|
||||||
|
|
||||||
lsCasetaPeajeExcepcion = casetaPeajeExcepcionService.buscarPorCasetaPeaje(casetaPeaje);
|
lsCasetaPeajeExcepcion = casetaPeaje.getLsCasetaPeajeExcepcion();
|
||||||
|
|
||||||
super.doAfterCompose(comp);
|
super.doAfterCompose(comp);
|
||||||
|
|
||||||
|
@ -255,7 +255,7 @@ public class EditarCasetaPeajeController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
casetaPeajeExcepcion.setCasetaPeaje(casetaPeaje);
|
casetaPeajeExcepcion.setCasetaPeaje(casetaPeaje);
|
||||||
casetaPeajeExcepcionList.setData(lsCasetaPeajeExcepcion);
|
casetaPeajeExcepcionList.setData(lsCasetaPeajeExcepcion);
|
||||||
casetaPeajeExcepcionService.suscribir(casetaPeajeExcepcion);
|
//casetaPeajeExcepcionService.suscribir(casetaPeajeExcepcion);
|
||||||
limparInput();
|
limparInput();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue