fixes bug#AL-3308
parent
e6202b1ead
commit
0e3c4a6c0a
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.35.18</version>
|
||||
<version>1.35.19</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -366,9 +366,9 @@ public class EditarTipoEventoExtraController extends MyGenericForwardComposer {
|
|||
fpd.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
|
||||
fpd.setFecmodif(Calendar.getInstance().getTime());
|
||||
lsTipoEventoExtraFormaPago.add(fpd);
|
||||
formaPagoList.setData(lsTipoEventoExtraFormaPago);
|
||||
formaPagoList.updateItem(fpd);
|
||||
tipoEventoExtraFormaPagoService.actualizacion(fpd);
|
||||
lsTipoEventoExtraFormaPago = tipoEventoExtra.getTipoeventoextraId() == null ? new ArrayList<TipoEventoExtraFormaPago>() : tipoEventoExtraFormaPagoService.buscarPorTipoEventoExtra(tipoEventoExtra);
|
||||
formaPagoList.setData(lsTipoEventoExtraFormaPago);
|
||||
} else {
|
||||
Messagebox.show(
|
||||
Labels.getLabel("editarPuntoVentaController.MSG.Achou.FormaPago"),
|
||||
|
@ -398,6 +398,8 @@ public class EditarTipoEventoExtraController extends MyGenericForwardComposer {
|
|||
formaPagoList.removeItem(fpd);
|
||||
lsTipoEventoExtraFormaPago.remove(fpd);
|
||||
tipoEventoExtraFormaPagoService.borrar(fpd);
|
||||
lsTipoEventoExtraFormaPago = tipoEventoExtra.getTipoeventoextraId() == null ? new ArrayList<TipoEventoExtraFormaPago>() : tipoEventoExtraFormaPagoService.buscarPorTipoEventoExtra(tipoEventoExtra);
|
||||
formaPagoList.setData(lsTipoEventoExtraFormaPago);
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
log.error(ex);
|
||||
|
|
Loading…
Reference in New Issue