76 lines
2.9 KiB
XML
76 lines
2.9 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="winFiltroRelatorioVendasCartoes"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winFiltroRelatorioVendasCartoes"
|
|
apply="${relatorioVendasCartoesController}"
|
|
contentStyle="overflow:auto" height="250px" width="600px"
|
|
border="normal">
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="20%" />
|
|
<column width="30%" />
|
|
<column width="20%" />
|
|
<column width="30%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioVendasCartoesController.lbDatInicial.value')}" />
|
|
<datebox id="datInicial" width="100%" mold="rounded"
|
|
format="dd/MM/yyyy" constraint="no empty" maxlength="10" />
|
|
<label
|
|
value="${c:l('relatorioVendasCartoesController.lbDatFinal.value')}" />
|
|
<datebox id="datFinal" width="100%" mold="rounded"
|
|
format="dd/MM/yyyy" constraint="no empty" maxlength="10" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioVendasCartoesController.lbEmpresa.value')}" />
|
|
<combobox id="cmbEmpresa" buttonVisible="true"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
|
model="@{winFiltroRelatorioVendasCartoes$composer.lsEmpresa}"
|
|
constraint="no empty" width="100%" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioVendasCartoesController.lb.puntoVenta.value')}" />
|
|
<combobox id="cmbPuntoVenta"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
|
|
width="100%" mold="rounded" buttonVisible="true" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioVendasCartoesController.lb.estacao.value')}" />
|
|
<combobox id="cmbEstacion"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstacion"
|
|
width="100%" mold="rounded" buttonVisible="true" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioVendasCartoesController.lb.usuario.value')}" />
|
|
<combobox id="cmbUsuario"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxUsuario"
|
|
mold="rounded" buttonVisible="true" width="100%" />
|
|
</row>
|
|
<row spans="4" >
|
|
<radiogroup style="margin-left: 20%; spacing=15%;" >
|
|
<radio id="radioDataVenda" selected="true"
|
|
label="${c:l('relatorioVendasCartoesController.lb.buscarDataVenda.value')}" />
|
|
<radio id="radioDataCorte"
|
|
label="${c:l('relatorioVendasCartoesController.lb.bucarDataCorte.value')}" />
|
|
</radiogroup>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<toolbar>
|
|
<button id="btnExecutarRelatorio" image="/gui/img/find.png"
|
|
label="${c:l('relatorio.lb.btnExecutarRelatorio')}" />
|
|
</toolbar>
|
|
</window>
|
|
</zk>
|
|
|