62 lines
2.1 KiB
XML
62 lines
2.1 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="winRelatorioArquivoBGM"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winRelatorioArquivoBGM"
|
|
apply="${relatorioReceitasDespesasDivController}"
|
|
contentStyle="overflow:auto" height="250px" width="560px"
|
|
border="normal">
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="30%" />
|
|
<column width="70%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioReceitasDespesasDivController.lbDataIni.value')}" />
|
|
<datebox id="datInicial"
|
|
format="dd/MM/yyyy" constraint="no empty, no future, no today"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioReceitasDespesasDivController.lbDataFin.value')}" />
|
|
<datebox id="datFinal"
|
|
format="dd/MM/yyyy" constraint="no empty, no future, no today"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioReceitasDespesasDivController.lbEmpresa.value')}" />
|
|
<combobox id="cmbEmpresa"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEmpresa"
|
|
mold="rounded" buttonVisible="true" constraint="no empty"
|
|
width="70%" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioReceitasDespesasDivController.lbPuntoVenta.value')}" />
|
|
<combobox id="cmbPuntoVenta"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
|
|
mold="rounded" buttonVisible="true" constraint="no empty"
|
|
width="70%" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioReceitasDespesasDivController.txtArquivo.value')}" />
|
|
|
|
<textbox id="txtArquivo" disabled="true"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<toolbar>
|
|
<button id="btnExecutarRelatorio" image="/gui/img/find.png"
|
|
label="${c:l('relatorio.lb.btnExecutarRelatorio')}" />
|
|
</toolbar>
|
|
</window>
|
|
</zk> |