AdmMono/web/gui/catalogos/editarFormaPago.zul

136 lines
5.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winEditarFormaPago"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winEditarFormaPago" border="normal"
apply="${editarFormaPagoController}" width="400px"
contentStyle="overflow:auto"
title="${c:l('editarFormaPagoController.window.title')}">
<toolbar>
<hbox spacing="5px" style="padding:1px" align="right">
<button id="btnApagar" height="20"
image="/gui/img/remove.png" width="35px"
tooltiptext="${c:l('editarFormaPagoController.btnApagar.tooltiptext')}" />
<button id="btnSalvar" height="20"
image="/gui/img/save.png" width="35px"
tooltiptext="${c:l('editarFormaPagoController.btnSalvar.tooltiptext')}" />
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winEditarFormaPago.detach()"
tooltiptext="${c:l('editarFormaPagoController.btnFechar.tooltiptext')}" />
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label id="lbNome"
value="${c:l('editarFormaPagoController.lbNome.value')}" />
<textbox id="txtNome" constraint="no empty"
width="90%" maxlength="30"
value="@{winEditarFormaPago$composer.formaPago.descpago}"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row>
<label id="lbCvePago"
value="${c:l('editarFormaPagoController.lbCvePago.value')}" />
<textbox id="txtCvePago" constraint="no empty"
width="90%" maxlength="2"
value="@{winEditarFormaPago$composer.formaPago.cvePago}"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row id="rowEquivalencia">
<label value="${c:l('lb.Equivalencia')}" />
<textbox id="txtEquivalencia" width="100px"
maxlength="10"
value="@{winEditarFormaPago$composer.formaPago.equivalenciaId}"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row visible="false"><!-- Adaptacao Brasil -->
<label
value="${c:l('editarFormaPagoController.lbOperacion.value')}" />
<radiogroup id="radioIndOperacion">
<vbox>
<radio value="1" id="rd1"
label="${c:l('editarFormaPagoController.lbOperacion1.value')}" />
<radio value="2" id="rd2"
label="${c:l('editarFormaPagoController.lbOperacion2.value')}" />
<radio value="3" id="rd3"
label="${c:l('editarFormaPagoController.lbOperacion3.value')}" />
<radio value="4" id="rd4"
label="${c:l('editarFormaPagoController.lbOperacion4.value')}"
checked="true" />
</vbox>
</radiogroup>
</row>
<row>
<label
value="${c:l('editarFormaPagoController.lblTipoFormapago.label')}" />
<combobox id="cmbTipoFormapago"
width="70%"
mold="rounded"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
selectedItem="@{winEditarFormaPago$composer.formaPago.tipoFormapago}"
/>
</row>
<row id="rowTipoCarteiraDigital">
<label id="lblTipoCarteiraDigital"
value="${c:l('editarFormaPagoController.lblTipoCarteiraDigital.label')}" />
<combobox id="cmbTipoCarteiraDigital"
width="70%"
mold="rounded"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar" />
</row>
<row >
<label
value="${c:l('editarFormaPagoController.lblAtivaProcessoEstorno.label')}" />
<checkbox id="chkIndEstorno" checked="false"/>
</row>
<row id="rowIdEventoExtra">
<label value="${c:l('editarFormaPagoController.lblEventoExtra.label')}" />
<longbox id="txtIdEventoExtra" width="100px" maxlength="10"
value="@{winEditarFormaPago$composer.formaPago.tipoEventoExtraId}" />
</row>
<row >
<label
value="${c:l('editarFormaPagoController.lblVoucherRodoviaria.label')}" />
<checkbox id="chkIndVoucherRodoviaria" checked="false"/>
</row>
<row id="rowRestricaoFormaPago">
<label
value="${c:l('editarFormaPagoController.lblRestricaoFormaPago.label')}" />
<checkbox id="chkIndRestricaoFormaPago" checked="false"/>
</row>
<row id="rowTransferenciaReativacao">
<label
value="${c:l('editarFormaPagoController.lblTransferenciaReativacao.label')}" />
<checkbox id="chkIndTransferenciaReativacao" checked="false"/>
</row>
<row id="rowTarifaTaxa">
<label
value="${c:l('editarFormaPagoController.lblTarifaTaxa.label')}" />
<checkbox id="chkCompoeTarifaETaxa" checked="false"/>
</row>
<row id="rowSomenteTarifa" >
<label
value="${c:l('editarFormaPagoController.lblSomenteTarifa.label')}" />
<checkbox id="chkCompoeTarifa" checked="false"/>
</row>
</rows>
</grid>
</window>
</zk>