AdmMono/web/gui/senda_amigo/busquedaCanjeDePuntos.zul

78 lines
4.3 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="winBusquedaParamCanjePunto"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winBusquedaParamCanjePunto" title="${c:l('busquedaParamCanjePuntoController.window.title')}"
apply="${busquedaParamCanjePuntoController}" contentStyle="overflow:auto"
height="500px" width="900px" border="normal" >
<toolbar>
<button id="btnRefresh" image="/gui/img/refresh.png" width="35px"
tooltiptext="${c:l('tooltiptext.btnActualizar')}" />
<separator orient="vertical" />
<button id="btnNovo" image="/gui/img/add.png" width="35px"
tooltiptext="${c:l('tooltiptext.btnAgregar')}" />
<separator orient="vertical" />
<button id="btnCerrar" onClick="winBusquedaParamCanjePunto.detach()" image="/gui/img/exit.png" width="35px"
tooltiptext="${c:l('tooltiptext.btnFechar')}"/>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="20%" />
<column width="80%" />
</columns>
<rows>
<row>
<label value="${c:l('busquedaParamCanjePuntoController.lhVigencia.label')}"/>
<hbox style="padding: 8px" align="center">
<label value="${c:l('busquedaParamCanjePuntoController.lhFechainicial.label')}"/>
<datebox id="fecInicio" width="100px" mold="rounded" lenient="false"/>
<label value="${c:l('busquedaParamCanjePuntoController.lhFechafinal.label')}"/>
<datebox id="fecFinal" width="100px" mold="rounded" lenient="false"/>
</hbox>
</row>
<row>
<label value="${c:l('busquedaParamCanjePuntoController.lhOrigen.label')}"/>
<combobox id="cmbOrigem" autodrop="false" mold="rounded" buttonVisible="true" width="90%" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParada"/>
</row>
<row>
<label value="${c:l('busquedaParamCanjePuntoController.lhDestino.label')}"/>
<combobox id="cmbDestino" autodrop="false" mold="rounded" buttonVisible="true" width="90%" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParada"/>
</row>
</rows>
</grid>
<toolbar>
<button id="btnPesquisa" image="/gui/img/find.png"
label="${c:l('busquedaParamCanjePuntoController.btnPesquisa.label')}"/>
</toolbar>
<paging id="pagingParamCanjePunto" use="com.rjconsultores.ventaboletos.web.utilerias.MyPaging" />
<listbox id="paramCanjePuntoList" use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
multiple="false" height="70%">
<listhead sizable="true">
<listheader width="50px" image="/gui/img/builder.gif"
label="${c:l('lb.id')}"
sort="auto(paramcanjepuntoId)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaParamCanjePuntoController.lhOrigen.label')}"
sort="auto(origem.descparada)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaParamCanjePuntoController.lhDestino.label')}"
sort="auto(destino.descparada)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaParamCanjePuntoController.lhFechainicial.label')}"
sort="auto(feciniciovigencia)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaParamCanjePuntoController.lhFechafinal.label')}"
sort="auto(fecfinvigencia)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaParamCanjePuntoController.lhPorcentaje.label')}"
sort="auto(porcentaje)"/>
</listhead>
</listbox>
</window>
</zk>