AdmMono/web/gui/gr/busquedaBilhetes.zul

95 lines
4.7 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page title="AIDF" contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winBusquedaBilhetes"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk>
<window id="winBusquedaBilhetes" title="${c:l('busquedaBilhetesController.window.title')}"
apply="${busquedaBilhetesController}" contentStyle="overflow:auto"
height="600px" width="800px" border="normal" >
<toolbar>
<button id="btnRefresh" image="/gui/img/refresh.png" width="35px"
tooltiptext="${c:l('busquedaBilhetesController.btnRefresh.tooltiptext')}" />
<separator orient="vertical" />
<separator orient="vertical" />
<button id="btnCerrar" onClick="winBusquedaBilhetes.detach()" image="/gui/img/exit.png" width="35px"
tooltiptext="${c:l('busquedaBilhetesController.btnCerrar.tooltiptext')}"/>
</toolbar>
<grid fixedLayout="true">
<rows>
<row>
<label
value="${c:l('winMovimentacionBilhetes.empresa.label')}" />
<combobox id="cmbEmpresa"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winBusquedaBilhetes$composer.lsEmpresas}" />
</row>
<row>
<cell width="10%">
<label
value="${c:l('busquedaBilhetesController.aidf.label')}"/>
</cell>
<combobox id="cmbAidf"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="50%" mold="rounded" buttonVisible="true" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetesPuntoVenta.forminicial.label')}" />
<textbox id="txtForminicial" width="100px"
maxlength="20"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetesPuntoVenta.formfinal.label')}" />
<textbox id="txtFormfinal" width="100px"
maxlength="20"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetesPuntoVenta.puntoventa.label')}" />
<combobox id="cmbPuntoVenta"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetesPuntoVenta$composer.lsPuntoVenta}"/>
</row>
</rows>
</grid>
<toolbar>
<button id="btnPesquisa" image="/gui/img/find.png"
label="${c:l('winBusquedaBilhetes.btnPesquisa.label')}"/>
</toolbar>
<paging id="pagingBilhetes" pageSize="10"/>
<listbox id="bilheteList" use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox" fixedLayout="true" vflex="true" hflex="min"
multiple="false" height="100%" width="100%">
<listhead sizable="true">
<listheader width="3%" image="/gui/img/create_doc.gif"
label="${c:l('lb.id')}" sort="auto(abastocentralId)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.aidf.label')}" sort="auto(aidf)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.numfoliopreimpreso.label')}" sort="auto(numfoliopreimpreso)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.numseriepreimpresa.label')}" sort="auto(numseriepreimpresa)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.numsubseriepreimpreso.label')}" sort="auto(numsubseriepreimpreso)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.puntoventa.label')}" sort="auto(puntoventa)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.estacion.label')}" sort="auto(estacion)"/>
<listheader image="/gui/img/create_doc.gif" align="right"
label="${c:l('busquedaBilhetesController.fecmodif.label')}" sort="auto(fecmodif)"/>
</listhead>
</listbox>
</window>
</zk>