parent
02d5f6abba
commit
1bfcaea9dd
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue