83 lines
3.6 KiB
XML
83 lines
3.6 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="winFiltroRelatorioDescontos"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winFiltroRelatorioDescontos" apply="${relatorioDescontosController}" contentStyle="overflow:auto" height="340px" width="570px" border="normal">
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="30%" />
|
|
<column width="70%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label value="${c:l('relatorioDescontosController.lbCodConvenio.value')}" />
|
|
<textbox id="txtCodConvenio" maxlength="20" use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" width="50%"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('relatorioDescontosController.lbPeriodoVendaInicial.value')}" />
|
|
<datebox id="fecVentaInicial" format="dd/MM/yyyy" constraint="no empty" width="50%"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('relatorioDescontosController.lbPeriodoVendaFinal.value')}" />
|
|
<datebox id="fecVentaFinal" format="dd/MM/yyyy" constraint="no empty" width="50%"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('relatorioDescontosController.lbAgencia.value')}" />
|
|
<combobox id="cmbAgencia" width="100%" maxlength="60" mold="rounded" buttonVisible="true"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('relatorioDescontosController.lbEmpresa.value')}"/>
|
|
<bandbox id="bbPesquisaEmpresa" width="100%" mold="rounded" readonly="true">
|
|
<bandpopup>
|
|
<vbox>
|
|
<hbox>
|
|
<label
|
|
value="${c:l('relatorioDescontosController.lbEmpresa.value')}" />
|
|
<textbox id="txtNombreEmpresa"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"
|
|
width="300px" mold="rounded" />
|
|
<button id="btnPesquisa"
|
|
image="/gui/img/find.png"
|
|
label="${c:l('relatorioDescontosController.btnPesquisa.label')}" />
|
|
<button id="btnLimpar"
|
|
image="/gui/img/eraser.png"
|
|
label="${c:l('relatorioDescontosController.btnLimpar.label')}" />
|
|
</hbox>
|
|
<paging id="pagingEmpresa" pageSize="10" />
|
|
<listbox id="empresaList"
|
|
mold="paging"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
|
vflex="true" height="100%" width="700px">
|
|
<listhead>
|
|
<listheader width="10%"
|
|
label="${c:l('relatorioDescontosController.lbIdEmpresa.value')}" />
|
|
<listheader width="90%"
|
|
label="${c:l('relatorioDescontosController.lbEmpresa.value')}" />
|
|
</listhead>
|
|
</listbox>
|
|
</vbox>
|
|
</bandpopup>
|
|
</bandbox>
|
|
</row>
|
|
<row spans="2">
|
|
<listbox id="empresaSelList" mold="paging"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
|
vflex="true" height="100px" width="100%">
|
|
<listhead>
|
|
<listheader width="10%" label="${c:l('relatorioDescontosController.lbIdEmpresa.value')}" />
|
|
<listheader width="90%" label="${c:l('relatorioDescontosController.lbEmpresa.value')}" />
|
|
</listhead>
|
|
</listbox>
|
|
<paging id="pagingEmpresaSel" pageSize="10" />
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<toolbar>
|
|
<button id="btnExecutarRelatorio" image="/gui/img/find.png" label="${c:l('relatorio.lb.btnExecutarRelatorio')}"/>
|
|
</toolbar>
|
|
</window>
|
|
</zk> |