- alteração tipo campo numpuntoventa
- adição validação da descrição da estacion - validação ao adicionar empresa ao usuario git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@24301 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
74eed8801c
commit
a9a29d9d8d
|
@ -210,7 +210,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
private Timebox timeboxFim;
|
private Timebox timeboxFim;
|
||||||
private Intbox txtQuant;
|
private Intbox txtQuant;
|
||||||
private Intbox txtcodAg;
|
private Intbox txtcodAg;
|
||||||
private Intbox txtNumPtoVta;
|
private Textbox txtNumPtoVta;
|
||||||
private Textbox txtNomeBanco;
|
private Textbox txtNomeBanco;
|
||||||
private Textbox numtelefonodos;
|
private Textbox numtelefonodos;
|
||||||
private Textbox numtelefonouno;
|
private Textbox numtelefonouno;
|
||||||
|
|
|
@ -112,6 +112,7 @@ public class EditarEstacionController extends MyGenericForwardComposer {
|
||||||
txtNumEmpresa.getValue();
|
txtNumEmpresa.getValue();
|
||||||
txtNumFilial.getValue();
|
txtNumFilial.getValue();
|
||||||
txtNumPdv.getValue();
|
txtNumPdv.getValue();
|
||||||
|
txtDescEstacion.getValue();
|
||||||
|
|
||||||
String descMac = txtDescMac.getText();
|
String descMac = txtDescMac.getText();
|
||||||
|
|
||||||
|
|
|
@ -514,16 +514,16 @@ public class EditarUsuarioController extends MyGenericForwardComposer {
|
||||||
if (ue.getUsuarioEmpresaId() != null) {
|
if (ue.getUsuarioEmpresaId() != null) {
|
||||||
usuarioEmpresaService.borrar(ue);
|
usuarioEmpresaService.borrar(ue);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void onClick$btnAdicionarEmpresa(Event ev) throws InterruptedException {
|
public void onClick$btnAdicionarEmpresa(Event ev) throws InterruptedException {
|
||||||
|
if (cmbEmpresa.getSelectedItem() == null){
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
|
||||||
final Empresa empresa = (Empresa) cmbEmpresa.getSelectedItem().getValue();
|
final Empresa empresa = (Empresa) cmbEmpresa.getSelectedItem().getValue();
|
||||||
if (empresa != null) {
|
if (empresa != null) {
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# <controler>. <id>. <propiedade> = XXX
|
# <controler>. <id>. <propiedade> = XXX
|
||||||
|
|
||||||
#Versao do VentaBoleto:
|
#Versao do VentaBoleto:
|
||||||
versao = ADM_20130213_1RC108
|
versao = ADM_20130214_1RC109
|
||||||
|
|
||||||
# MSG Defaut:
|
# MSG Defaut:
|
||||||
MSG.CONSTRAINT.PORCENTAGEM = Os valores devem estar entre 0 e 100
|
MSG.CONSTRAINT.PORCENTAGEM = Os valores devem estar entre 0 e 100
|
||||||
|
@ -1988,7 +1988,7 @@ editarUsuarioController.lhDescricao.label = Descrição
|
||||||
busquedaUsuarioController.CveUsuario.label = Login
|
busquedaUsuarioController.CveUsuario.label = Login
|
||||||
busquedaUsuarioController.CveEmpleado.label = Código de Empregado
|
busquedaUsuarioController.CveEmpleado.label = Código de Empregado
|
||||||
editarUsuarioController.lhEmpresa.label = Empresa
|
editarUsuarioController.lhEmpresa.label = Empresa
|
||||||
editarUsuarioController.chkCorteTurnoAutomatico.label = Corte Automático
|
editarUsuarioController.chkCorteTurnoAutomatico.label = Fechamento de Caixa Automático
|
||||||
editarUsuarioController.MSG.usuarioempresa = É necessário informar pelo menos um empresa
|
editarUsuarioController.MSG.usuarioempresa = É necessário informar pelo menos um empresa
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<zk xmlns="http://www.zkoss.org/2005/zul">
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
||||||
<window id="winEditarPuntoVenta" border="normal"
|
<window id="winEditarPuntoVenta" border="normal"
|
||||||
apply="${editarPuntoVentaController}" height="520px" width="640px"
|
apply="${editarPuntoVentaController}" height="575px" width="640px"
|
||||||
contentStyle="overflow:auto" xmlns:h="http://www.w3.org/1999/xhtml"
|
contentStyle="overflow:auto" xmlns:h="http://www.w3.org/1999/xhtml"
|
||||||
title="${c:l('editarPuntoVentaController.window.title')}">
|
title="${c:l('editarPuntoVentaController.window.title')}">
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label value="${c:l('editarPuntoVentaController.lblNumPuntoVenda')}"/>
|
<label value="${c:l('editarPuntoVentaController.lblNumPuntoVenda')}"/>
|
||||||
<intbox id="txtNumPtoVta" maxlength="10" constraint="no empty"
|
<textbox id="txtNumPtoVta" maxlength="10" constraint="no empty"
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.numPuntoVenta}" />
|
value="@{winEditarPuntoVenta$composer.puntoVenta.numPuntoVenta}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
|
|
Loading…
Reference in New Issue