65 lines
3.8 KiB
XML
65 lines
3.8 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="winEditarConfiguracionFormaPago"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winEditarConfiguracionFormaPago" border="normal"
|
|
apply="${editarConfiguracionFormaPagoController}"
|
|
width="400px" height="400x" contentStyle="overflow:auto"
|
|
title="${c:l('editarConfiguracionFormaPagoController.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('editarConfiguracionFormaPagoController.btnApagar.tooltiptext')}"/>
|
|
<button id="btnSalvar" height="20"
|
|
image="/gui/img/save.png" width="35px"
|
|
tooltiptext="${c:l('editarConfiguracionFormaPagoController.btnSalvar.tooltiptext')}"/>
|
|
<button id="btnFechar" height="20"
|
|
image="/gui/img/exit.png" width="35px"
|
|
onClick="winEditarConfiguracionFormaPago.detach()"
|
|
tooltiptext="${c:l('editarConfiguracionFormaPagoController.btnFechar.tooltiptext')}"/>
|
|
</hbox>
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="40%" />
|
|
<column width="60%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label id="lblFormaPago" value="${c:l('editarConfiguracionFormaPagoController.lblFormaPago.value')}"/>
|
|
<combobox id="cmbFormaPago" autodrop="true" constraint="no empty"
|
|
mold="rounded" buttonVisible="true" readonly="false"
|
|
model="@{winEditarConfiguracionFormaPago$composer.lsFormaPago}"
|
|
selectedItem="@{winEditarConfiguracionFormaPago$composer.formaPagoDet.formaPago}"/>
|
|
</row>
|
|
<row>
|
|
<label id="lblPuntoVenta" value="${c:l('editarConfiguracionFormaPagoController.lblPuntoVenta.value')}"/>
|
|
<combobox id="cmbPuntoVenta" autodrop="true" constraint="no empty"
|
|
mold="rounded" buttonVisible="true" readonly="false"
|
|
model="@{winEditarConfiguracionFormaPago$composer.lsPuntosVentas}"
|
|
selectedItem="@{winEditarConfiguracionFormaPago$composer.formaPagoDet.puntoVenta}"/>
|
|
</row>
|
|
<row>
|
|
<label id="lblEmpresa" value="${c:l('editarConfiguracionFormaPagoController.lblEmpresa.value')}"/>
|
|
<combobox id="cmbRestriccionFormaPago" autodrop="true" constraint="no empty"
|
|
mold="rounded" buttonVisible="true" readonly="false"
|
|
model="@{winEditarConfiguracionFormaPago$composer.lsEmpresas}"
|
|
selectedItem="@{winEditarConfiguracionFormaPago$composer.formaPagoDet.empresa}"/>
|
|
</row>
|
|
<row>
|
|
<label id="lblCargosExtras" value="${c:l('editarConfiguracionFormaPagoController.lblCargosExtras.value')}"/>
|
|
<textbox id="txtCargosExtras" constraint="no empty" width="100%" maxlength="30"
|
|
value="@{winEditarConfiguracionFormaPago$composer.formaPagoDet.cargosextras}"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
</window>
|
|
</zk>
|