AdmMono/VentaBoletosAdm/web/gui/informes/pasajero_servicio/informePasajeroServico.zul

58 lines
2.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="winInformePasajeroServicio"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winInformePasajeroServicio" border="normal"
apply="${informePasajeroServicioController}"
width="400px" height="557x" contentStyle="overflow:auto"
title="${c:l('informePasajeroServicioController.window.title')}">
<toolbar>
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winInformePasajeroServicio.detach()"
tooltiptext="${c:l('informePasajeroServicioController.btnFechar.tooltiptext')}"/>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label value="${c:l('informePasajeroServicioController.cmbMarca.value')}"/>
<combobox id="cmbMarca" width="90%" mold="rounded" buttonVisible="true"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
model="@{winInformePasajeroServicio$composer.lsMarcas}"/>
</row>
<row>
<label value="${c:l('informePasajeroServicioController.cmbEmpresa.value')}"/>
<combobox id="cmbEmpresa" width="90%" mold="rounded" buttonVisible="true"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
model="@{winInformePasajeroServicio$composer.lsEmpresas}"/>
</row>
<row>
<label value="${c:l('informePasajeroServicioController.servicio.label')}"/>
<intbox id="intServicio"/>
</row>
<row>
<label value="${c:l('informePasajeroServicioController.lbFecInicio.value')}"/>
<datebox id="fecInicio" width="100px" mold="rounded" cols="8"
constraint="no empty"/>
</row>
<row>
<label value="${c:l('informePasajeroServicioController.lbFecFinal.value')}"/>
<datebox id="fecFinal" width="100px" mold="rounded"
constraint="no empty"/>
</row>
</rows>
</grid>
<toolbar>
<button id="btnInforme" height="20" image="/gui/img/vis.png" width="35px"/>
</toolbar>
</window>
</zk>