parent
32805370e5
commit
6ebc3574f1
4
pom.xml
4
pom.xml
|
@ -4,11 +4,11 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.89.0</version>
|
||||
<version>1.90.0</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
<modelWeb.version>1.66.0</modelWeb.version>
|
||||
<modelWeb.version>1.67.0</modelWeb.version>
|
||||
<flyway.version>1.50.0</flyway.version>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
</properties>
|
||||
|
|
|
@ -429,6 +429,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
private MyTextbox txtHistoricoDescPago;
|
||||
private MyTextboxDecimal importeInicial;
|
||||
private MyTextboxDecimal importeAdicional;
|
||||
private MyTextboxDecimal importeBase;
|
||||
private Datebox dateAntecipData;
|
||||
private Datebox dateAbertura;
|
||||
private Datebox dateFechamento;
|
||||
|
@ -2820,14 +2821,14 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
ParamRecoleccion paramRecoleccion = new ParamRecoleccion();
|
||||
paramRecoleccion.setImporteinicial(importeInicial.getValueDecimal());
|
||||
paramRecoleccion.setImporteadicional(importeAdicional.getValueDecimal());
|
||||
paramRecoleccion.setImporteBase(importeBase == null ? null : importeBase.getValueDecimal());
|
||||
|
||||
Boolean achou = Boolean.FALSE;
|
||||
|
||||
for (ParamRecoleccion fpd : lsParamRecoleccion) {
|
||||
if (fpd.getImporteinicial().equals(paramRecoleccion.getImporteinicial())) {
|
||||
achou = Boolean.TRUE;
|
||||
}
|
||||
achou = Boolean.TRUE;
|
||||
}
|
||||
|
||||
if (!achou) {
|
||||
|
||||
paramRecoleccion.setPuntoVenta(puntoVenta);
|
||||
|
|
|
@ -23,6 +23,9 @@ public class ParamRecoleccionRender implements ListitemRenderer {
|
|||
|
||||
lc = new Listcell(tm.getImporteadicional() == null ? "" : tm.getImporteadicional().setScale(2).toString());
|
||||
lc.setParent(lstm);
|
||||
|
||||
lc = new Listcell(tm.getImporteBase() == null ? "" : tm.getImporteBase().setScale(2).toString());
|
||||
lc.setParent(lstm);
|
||||
|
||||
|
||||
lstm.setAttribute("data", tm);
|
||||
|
|
|
@ -6322,6 +6322,7 @@ editarPuntoVentaController.lbdscRazonSocial.value = Razão Social
|
|||
editarPuntoVentaController.lbdscUsuarioInternet.value = User Internet
|
||||
editarPuntoVentaController.lblAdicional.value = Adicional
|
||||
editarPuntoVentaController.lblInicial.value = Inicial
|
||||
editarPuntoVentaController.lblBase.value = Base
|
||||
editarPuntoVentaController.lblMaxCancelacion = Tempo Max. Cancelamento após venda(min)
|
||||
editarPuntoVentaController.lblNumPuntoVenda = Número Agência
|
||||
editarPuntoVentaController.lbparada.value = Localidade
|
||||
|
|
|
@ -6402,8 +6402,9 @@ editarPuntoVentaController.lbdscContrasenaInternet.value = Senha internet
|
|||
editarPuntoVentaController.lbdscNumDoCPuntoVenta.value = RFC
|
||||
editarPuntoVentaController.lbdscRazonSocial.value = Razón Social
|
||||
editarPuntoVentaController.lbdscUsuarioInternet.value = Usuário internet
|
||||
editarPuntoVentaController.lblAdicional.value = Adicional
|
||||
editarPuntoVentaController.lblInicial.value = Inicial
|
||||
editarPuntoVentaController.lblAdicional.value = Valor recogida adicional
|
||||
editarPuntoVentaController.lblInicial.value = Valor recogida inicial
|
||||
editarPuntoVentaController.lblBase.value = Valor base
|
||||
editarPuntoVentaController.lblMaxCancelacion = Tiempo max. cancelación pos venta(min)
|
||||
editarPuntoVentaController.lblNumPuntoVenda = Numero punto de venta
|
||||
editarPuntoVentaController.lblpontoVendaNaoPresencial = Punto no presencial
|
||||
|
|
|
@ -6394,6 +6394,7 @@ editarPuntoVentaController.lbdscRazonSocial.value = Raison sociale
|
|||
editarPuntoVentaController.lbdscUsuarioInternet.value = Internaute
|
||||
editarPuntoVentaController.lblAdicional.value = Supplémentaire
|
||||
editarPuntoVentaController.lblInicial.value = Accueil
|
||||
editarPuntoVentaController.lblBase.value = Base
|
||||
editarPuntoVentaController.lblMaxCancelacion = Délai d'annulation max. après vente (min)
|
||||
editarPuntoVentaController.lblNumPuntoVenda = Numéro d'agence
|
||||
editarPuntoVentaController.lblpontoVendaNaoPresencial = Point non face à face
|
||||
|
|
|
@ -6400,6 +6400,7 @@ editarPuntoVentaController.lbdscRazonSocial.value = Razão Social
|
|||
editarPuntoVentaController.lbdscUsuarioInternet.value = Usuário Internet
|
||||
editarPuntoVentaController.lblAdicional.value = Adicional
|
||||
editarPuntoVentaController.lblInicial.value = Inicial
|
||||
editarPuntoVentaController.lblBase.value = Base
|
||||
editarPuntoVentaController.lblMaxCancelacion = Tempo Max. Cancelamento após venda(min)
|
||||
editarPuntoVentaController.lblNumPuntoVenda = Número Agência
|
||||
editarPuntoVentaController.lblpontoVendaNaoPresencial = Ponto não presencial
|
||||
|
|
|
@ -1398,7 +1398,6 @@
|
|||
<textbox id="importeInicial"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"
|
||||
precision="7" scale="2" constraint="no empty" />
|
||||
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
|
@ -1407,6 +1406,13 @@
|
|||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"
|
||||
precision="7" scale="2" constraint="no empty" />
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarPuntoVentaController.lblBase.value')}" />
|
||||
<textbox id="importeBase"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"
|
||||
precision="7" scale="2" constraint="no empty"/>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
|
@ -1426,10 +1432,9 @@
|
|||
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
||||
vflex="true" multiple="false">
|
||||
<listhead sizable="true">
|
||||
<listheader image="/gui/img/builder.gif"
|
||||
label="${c:l('editarPuntoVentaController.lblInicial.value')}" />
|
||||
<listheader image="/gui/img/builder.gif"
|
||||
label="${c:l('editarPuntoVentaController.lblAdicional.value')}" />
|
||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lblInicial.value')}" />
|
||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lblAdicional.value')}" />
|
||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lblBase.value')}" />
|
||||
</listhead>
|
||||
</listbox>
|
||||
</tabpanel>
|
||||
|
|
Loading…
Reference in New Issue