AdmMono/VentaBoletosAdm/web/gui/relatorios/filtroRelatorioObservacaoBi...

75 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="winRelatorioObservacaoBilhetes"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winRelatorioObservacaoBilhetes"
title="${c:l('relatorioObservacaoBilhetesController.window.title')}"
apply="${relatorioObservacaoBilhetesController}"
contentStyle="overflow:auto"
height="190px"
width="500px"
border="normal" >
<toolbar>
<button id="btnCerrar"
onClick="winRelatorioObservacaoBilhetes.detach()"
image="/gui/img/exit.png"
width="35px"
tooltiptext="${c:l('relatorioObservacaoBilhetesController.btnCerrar.tooltiptext')}"/>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="20%" />
<column width="30%" />
<column width="20%" />
<column width="30%" />
</columns>
<rows>
<row>
<label value="${c:l('relatorioObservacaoBilhetesController.lbDataIni.value')}" />
<datebox id="dataInicial"
width="100%"
mold="rounded"
format="dd/MM/yyyy"
constraint="no empty"
maxlength="10" />
<label value="${c:l('relatorioObservacaoBilhetesController.lbDataFin.value')}" />
<datebox id="dataFinal"
width="100%"
mold="rounded"
format="dd/MM/yyyy"
constraint="no empty"
maxlength="10" />
</row>
<row spans="1,3">
<label value="${c:l('relatorioObservacaoBilhetesController.lbEmpresa.value')}" />
<combobox id="cmbEmpresa"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEmpresa"
constraint="no empty"
mold="rounded"
buttonVisible="true"
width="90%"
selectedItem="@{winRelatorioObservacaoBilhetes$composer.empresa}" />
</row>
<row spans="1,3">
<label value="${c:l('relatorioObservacaoBilhetesController.lbPuntoVenta.value')}" />
<combobox id="cmbPuntoVenta"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
mold="rounded"
buttonVisible="true"
width="90%"
selectedItem="@{winRelatorioObservacaoBilhetes$composer.puntoVenta}" />
</row>
</rows>
</grid>
<toolbar>
<button id="btnRelatorio"
image="/gui/img/find.png"
label="${c:l('relatorio.lb.btnExecutarRelatorio')}"/>
</toolbar>
</window>
</zk>