fixes bug #AL-2209
parent
f76e629b65
commit
44e33a3014
6
pom.xml
6
pom.xml
|
@ -4,12 +4,12 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.0.87</version>
|
<version>1.0.88</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<modelWeb.version>1.0.46</modelWeb.version>
|
<modelWeb.version>1.0.47</modelWeb.version>
|
||||||
<flyway.version>1.0.29</flyway.version>
|
<flyway.version>1.0.31</flyway.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1403,6 +1403,13 @@ editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
||||||
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
||||||
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
||||||
editarFormaPagoController.lblETicket.label=E_Ticket
|
editarFormaPagoController.lblETicket.label=E_Ticket
|
||||||
|
editarFormaPagoController.lblIndPercentualDesconto.value= Desconto Forma Pagamento
|
||||||
|
editarFormaPagoController.lblDescuentoImporte.value=Absoluto
|
||||||
|
editarFormaPagoController.lblDescuentoPorc.value=Percentual
|
||||||
|
editarFormaPagoController.percentualDescontoFormaPagamento.label= Percentual desconto
|
||||||
|
editarFormaPagoController.valorDescontoFormaPagamento.label= Valor desconto
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Muestra o tipo de Pesquisa Ponto Venda
|
# Muestra o tipo de Pesquisa Ponto Venda
|
||||||
busquedaTipoPuntoVentaController.window.title = Canal de Venda
|
busquedaTipoPuntoVentaController.window.title = Canal de Venda
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<zk xmlns="http://www.zkoss.org/2005/zul">
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
||||||
<window id="winEditarFormaPago" border="normal"
|
<window id="winEditarFormaPago" border="normal"
|
||||||
apply="${editarFormaPagoController}" width="400px"
|
apply="${editarFormaPagoController}" width="450px"
|
||||||
contentStyle="overflow:auto"
|
contentStyle="overflow:auto"
|
||||||
title="${c:l('editarFormaPagoController.window.title')}">
|
title="${c:l('editarFormaPagoController.window.title')}">
|
||||||
<toolbar>
|
<toolbar>
|
||||||
|
@ -128,6 +128,33 @@
|
||||||
value="${c:l('editarFormaPagoController.lblSomenteTarifa.label')}" />
|
value="${c:l('editarFormaPagoController.lblSomenteTarifa.label')}" />
|
||||||
<checkbox id="chkCompoeTarifa" checked="false"/>
|
<checkbox id="chkCompoeTarifa" checked="false"/>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
|
<row id="rowIndPercentualDesconto" spans="1,3" >
|
||||||
|
<label
|
||||||
|
value="${c:l('editarFormaPagoController.lblIndPercentualDesconto.value')}" />
|
||||||
|
<radiogroup id="desconto">
|
||||||
|
<radio id="radioImp"
|
||||||
|
label="${c:l('editarFormaPagoController.lblDescuentoImporte.value')}" />
|
||||||
|
<radio id="radioPor"
|
||||||
|
label="${c:l('editarFormaPagoController.lblDescuentoPorc.value')}" />
|
||||||
|
</radiogroup>
|
||||||
|
|
||||||
|
</row>
|
||||||
|
<row id="rowPercentualDesconto">
|
||||||
|
<label
|
||||||
|
value="${c:l('editarFormaPagoController.percentualDescontoFormaPagamento.label')}" />
|
||||||
|
<decimalbox id="percentualDescontoBox"
|
||||||
|
format="##,##%" constraint="no negative" maxlength="5" width="98%"
|
||||||
|
value="@{winEditarFormaPago$composer.formaPago.percentualDesconto}" />
|
||||||
|
|
||||||
|
</row>
|
||||||
|
<row id="rowValorDesconto">
|
||||||
|
<label value="${c:l('editarFormaPagoController.valorDescontoFormaPagamento.label')}" />
|
||||||
|
<decimalbox id="valorDescontoBox"
|
||||||
|
width="98%" constraint="no negative" maxlength="5" format="#,##0.00"
|
||||||
|
value="@{winEditarFormaPago$composer.formaPago.valorDesconto}" />
|
||||||
|
|
||||||
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue