Merge pull request 'AL-4505A' (!609) from AL-4505A into master

Reviewed-on: adm/VentaBoletosAdm#609
Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>
Reviewed-by: Lucas Taiã <lucas@rjconsultores.com.br>
master 1.115.0
aurora.cuaquentzi 2024-07-19 19:37:50 +00:00
commit 7bb9e23d2d
4 changed files with 3 additions and 15 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ventaboletosadm</artifactId>
<version>1.114.0</version>
<version>1.115.0</version>
<packaging>war</packaging>
<properties>

View File

@ -2822,11 +2822,11 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
public void onClick$btnSalvarParamRecoleccion(Event ev) throws InterruptedException {
importeInicial.getValue();
importeAdicional.getValue();
//importeAdicional.getValue();
try {
ParamRecoleccion paramRecoleccion = new ParamRecoleccion();
paramRecoleccion.setImporteinicial(importeInicial.getValueDecimal());
paramRecoleccion.setImporteadicional(importeAdicional.getValueDecimal());
paramRecoleccion.setImporteadicional(BigDecimal.ZERO);
paramRecoleccion.setImporteBase(importeBase == null ? null : importeBase.getValueDecimal());
Boolean achou = Boolean.FALSE;

View File

@ -21,13 +21,9 @@ public class ParamRecoleccionRender implements ListitemRenderer {
Listcell lc = new Listcell(tm.getImporteinicial() == null ? "" : tm.getImporteinicial().setScale(2).toString());
lc.setParent(lstm);
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);
}
}

View File

@ -1400,13 +1400,6 @@
precision="7" scale="2" constraint="no empty" />
</row>
<row>
<label
value="${c:l('editarPuntoVentaController.lblAdicional.value')}" />
<textbox id="importeAdicional"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal"
precision="7" scale="2" constraint="no empty" />
</row>
<row>
<label
value="${c:l('editarPuntoVentaController.lblBase.value')}" />
@ -1434,7 +1427,6 @@
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.lblBase.value')}" />
</listhead>
</listbox>