AdmMono/web/gui/tarifas/busquedaRedondeo.zul

76 lines
4.1 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="winBusquedaRedondo"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winBusquedaRedondo" title="${c:l('busquedaRedondeoController.window.title')}"
apply="${busquedaRedondeoController}" contentStyle="overflow:auto"
height="420px" width="700px" border="normal" >
<toolbar>
<button id="btnRefresh" image="/gui/img/refresh.png" width="35px"
tooltiptext="${c:l('busquedaRedondeoController.btnRefresh.tooltiptext')}" />
<separator orient="vertical" />
<button id="btnNovo" image="/gui/img/add.png" width="35px"
tooltiptext="${c:l('busquedaRedondeoController.btnNovo.tooltiptext')}" />
<separator orient="vertical" />
<button id="btnCerrar" onClick="winBusquedaRedondo.detach()" image="/gui/img/exit.png" width="35px"
tooltiptext="${c:l('busquedaRedondeoController.btnCerrar.tooltiptext')}"/>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="30%" />
<column width="70%" />
</columns>
<rows>
<row>
<label value="${c:l('busquedaRedondeoController.lhvalorinicial.label')}"/>
<textbox id="txtValorinicial" width="60%" precision="3" scale="2" maxlength="5"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" />
</row>
<row>
<label value="${c:l('busquedaRedondeoController.lhvalorfinal.label')}"/>
<textbox id="txtValorfinal" width="60%" precision="3" scale="2" maxlength="5"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" />
</row>
<row visible="false">
<label value="${c:l('busquedaRedondeoController.lhvalorredondeo.label')}"/>
<textbox id="txtValorredondeo" width="60%" precision="3" scale="2" maxlength="5" allowZero="true"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxDecimal" />
</row>
<row>
<label value="${c:l('editarRedondeoController.lhMarca.label')}"/>
<combobox id="cmbMarca" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded" buttonVisible="true" width="60%"
model="@{winBusquedaRedondo$composer.lsMarca}"/>
</row>
</rows>
</grid>
<toolbar>
<button id="btnPesquisa" image="/gui/img/find.png"
label="${c:l('busquedaRedondeoController.btnPesquisa.label')}"/>
</toolbar>
<paging id="pagingCtrlRedondeo" pageSize="15"/>
<listbox id="redondeoCtrlList" use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
multiple="false" height="70%">
<listhead sizable="true">
<listheader image="/gui/img/builder.gif"
label="${c:l('lb.id')}"
sort="auto(indaplicadescuento)" width="10%"/>
<listheader image="/gui/img/builder.gif" width="20%"
label="${c:l('busquedaRedondeoController.lhindaplicadescuento.label')}"
sort="auto(indaplicadescuento)"/>
<listheader image="/gui/img/builder.gif" width="20%"
label="${c:l('busquedaRedondeoController.lhindaplicapricing.label')}"
sort="auto(indaplicapricing)"/>
<listheader image="/gui/img/builder.gif" width="50%"
label="${c:l('editarRedondeoController.tabMarca.title')}"
/>
</listhead>
</listbox>
</window>
</zk>