commit leonardo
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@32682 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
49844d1181
commit
937a8116c4
|
@ -223,6 +223,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
private Checkbox checkOfpsPropria;
|
||||
private Checkbox checkOfpsTerceiros;
|
||||
private Checkbox checkStock;
|
||||
private Checkbox checkPermisoTasaEmbarque;
|
||||
|
||||
public Button getBtnApagar() {
|
||||
return btnApagar;
|
||||
|
@ -289,6 +290,13 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
checkStock.setChecked(false);
|
||||
}
|
||||
}
|
||||
if (puntoVenta.getIndPermisoTasaEmbarque() != null) {
|
||||
if (puntoVenta.getIndPermisoTasaEmbarque()) {
|
||||
checkPermisoTasaEmbarque.setChecked(true);
|
||||
} else {
|
||||
checkPermisoTasaEmbarque.setChecked(false);
|
||||
}
|
||||
}
|
||||
if (puntoVenta.getNumfax() != null) {
|
||||
txtNumFax.setValue(puntoVenta.getNumfax());
|
||||
}
|
||||
|
@ -728,6 +736,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
}
|
||||
}
|
||||
puntoVenta.setIndValidaStock(checkStock.isChecked());
|
||||
puntoVenta.setIndPermisoTasaEmbarque(checkPermisoTasaEmbarque.isChecked());
|
||||
|
||||
if (cmbBanco.getSelectedItem() == null) {
|
||||
puntoVenta.setAgenciaId(null);
|
||||
|
|
|
@ -4293,6 +4293,7 @@ editarConfiguracionDiversosController.lbTrabalha.value = Trabaja con
|
|||
editarConfiguracionDiversosController.lbBilhete.value = Folios de pasaje
|
||||
editarConfiguracionDiversosController.lbOfpsTerceiros.value = OFPs própia
|
||||
editarConfiguracionDiversosController.lbOfpsPropria.value = OFPs Terceros
|
||||
editarConfiguracionDiversosController.lbPermisoTasaEmbarque.value = Permiso Tasa Embarque
|
||||
|
||||
# Mostrar o Cliente da Búsqueda
|
||||
busquedaClienteController.window.title = Cliente
|
||||
|
|
|
@ -4342,6 +4342,7 @@ editarConfiguracionDiversosController.lbTrabalha.value = Trabalha com
|
|||
editarConfiguracionDiversosController.lbBilhete.value = Bilhetes de Passagem
|
||||
editarConfiguracionDiversosController.lbOfpsTerceiros.value = OFPs Própria
|
||||
editarConfiguracionDiversosController.lbOfpsPropria.value = OFPs Terceiros
|
||||
editarConfiguracionDiversosController.lbPermisoTasaEmbarque.value = Permissão Taxa Embarque
|
||||
|
||||
# Mostrar o Cliente da Pesquisa
|
||||
busquedaClienteController.window.title = Cliente
|
||||
|
|
|
@ -158,6 +158,11 @@
|
|||
checked="false" />
|
||||
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarConfiguracionDiversosController.lbPermisoTasaEmbarque.value')}" />
|
||||
<checkbox id="checkPermisoTasaEmbarque" />
|
||||
</row>
|
||||
<row>
|
||||
<!-- Tel1 -->
|
||||
<label
|
||||
|
|
Loading…
Reference in New Issue