71 lines
2.4 KiB
XML
71 lines
2.4 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="${relatorioArquivoBGMController}"
|
|
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('relatorioArquivoBGMController.lbDataIni.value')}" />
|
|
<datebox id="datInicial"
|
|
format="dd/MM/yyyy" constraint="no empty"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioArquivoBGMController.lbDataFin.value')}" />
|
|
<datebox id="datFinal"
|
|
format="dd/MM/yyyy" constraint="no empty"
|
|
maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioArquivoBGMController.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('relatorioArquivoBGMController.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('relatorioArquivoBGMController.txtArquivo.value')}" />
|
|
|
|
<textbox id="txtArquivo" disabled="true"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('relatorioArquivoBGMController.lbTipoRelatorio.value')}" />
|
|
<radiogroup Id="rgLayout" >
|
|
<label value="${c:l('relatorioArquivoBGMController.lbTipoPadrao.value')}" />
|
|
<radio value="PADRÃO" checked = "true"/>
|
|
<label value="${c:l('relatorioArquivoBGMController.lbTipoNovo.value')}" />
|
|
<radio value="NOVO" />
|
|
</radiogroup>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<toolbar>
|
|
<button id="btnExecutarRelatorio" image="/gui/img/find.png"
|
|
label="${c:l('relatorio.lb.btnExecutarRelatorio')}" />
|
|
</toolbar>
|
|
</window>
|
|
</zk> |