AdmMono/web/gui/tarifas/busquedaPrecioVentaja.zul

78 lines
4.2 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="winPrecioVentaja"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk>
<window id="winPrecioVentaja" title="${c:l('busquedaPrecioVentajaController.window.title')}"
apply="${busquedaPrecioVentajaController}" contentStyle="overflow:auto"
height="500px" width="750px" border="normal" >
<toolbar>
<button id="btnRefresh" image="/gui/img/refresh.png" width="35px"
tooltiptext="${c:l('busquedaPrecioVentajaController.btnRefresh.tooltiptext')}" />
<separator orient="vertical" />
<button id="btnNovo" image="/gui/img/add.png" width="35px"
tooltiptext="${c:l('busquedaPrecioVentajaController.btnNovo.tooltiptext')}" />
<separator orient="vertical" />
<button id="btnCerrar" onClick="winPrecioVentaja.detach()" image="/gui/img/exit.png" width="35px"
tooltiptext="${c:l('busquedaPrecioVentajaController.btnCerrar.tooltiptext')}"/>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="20%" />
<column width="80%" />
</columns>
<rows>
<row>
<label value="${c:l('busquedaPrecioVentajaController.servico.label')}"/>
<intbox id="itxCorrida" width="47%" maxlength="7" />
</row>
<row>
<label value="${c:l('busquedaPrecioVentajaController.linha.label')}"/>
<combobox id="cmbRuta" width="47%" mold="rounded" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
model="@{winPrecioVentaja$composer.lsRuta}" />
</row>
<row>
<label value="${c:l('busquedaPrecioVentajaController.origem.label')}"/>
<combobox id="cmbOrigem" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParada"
mold="rounded" buttonVisible="true" width="47%" sinTodos="true"/>
</row>
<row>
<label value="${c:l('busquedaPrecioVentajaController.destino.label')}"/>
<combobox id="cmbDestino" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParada"
mold="rounded" buttonVisible="true" width="47%" sinTodos="true"/>
</row>
</rows>
</grid>
<toolbar>
<button id="btnPesquisa" image="/gui/img/find.png"
label="${c:l('busquedaTarifaController.btnPesquisa.label')}"/>
</toolbar>
<paging id="pagingPrecioVentaja" pageSize="10"/>
<listbox id="precioVentajaList" use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox" multiple="false">
<listhead sizable="true">
<listheader width="50px" image="/gui/img/builder.gif"
label="${c:l('busquedaPrecioVentajaController.precioVentajaID.label')}"
sort="auto(precioVentajaId)"/>
<listheader width="70px" image="/gui/img/builder.gif"
label="${c:l('busquedaPrecioVentajaController.servico.label')}"
sort="auto(corridaId)"/>
<listheader width="240px" image="/gui/img/builder.gif"
label="${c:l('busquedaPrecioVentajaController.linha.label')}"
sort="auto(rutaPrecioId.descruta)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaPrecioVentajaController.origem.label')}"
sort="auto(origenPrecioId.descparada)"/>
<listheader image="/gui/img/builder.gif"
label="${c:l('busquedaPrecioVentajaController.destino.label')}"
sort="auto(destinoPrecioId.descparada)"/>
</listhead>
</listbox>
</window>
</zk>