68 lines
2.6 KiB
XML
68 lines
2.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="winFiltroRelatorioSaldosContratos"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winFiltroRelatorioSaldosContratos"
|
|
apply="${relatorioSaldosContratosController}"
|
|
contentStyle="overflow:auto" width="420px" border="normal">
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="30%" />
|
|
<column width="70%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioSaldosContratosController.lblDataInicial.value')}" />
|
|
<datebox id="datInicial" width="100%" mold="rounded"
|
|
format="dd/MM/yyyy" maxlength="10" />
|
|
</row>
|
|
<row>
|
|
<label
|
|
value="${c:l('relatorioSaldosContratosController.lblDataFinal.value')}" />
|
|
<datebox id="datFinal" width="100%" mold="rounded"
|
|
format="dd/MM/yyyy" maxlength="10" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioOrigemDestinoController.lblEmpresa.value')}" />
|
|
<combobox id="cmbEmpresa"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEmpresa"
|
|
mold="rounded" buttonVisible="true" width="40%"
|
|
model="@{winFiltroRelatorioSaldosContratos$composer.lsEmpresa}" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioSaldosContratosController.lblNumContrato.value')}" />
|
|
<textbox id="txtNumContrato" maxlength="10"
|
|
width="100%"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
|
</row>
|
|
<row spans="1,3">
|
|
<label
|
|
value="${c:l('relatorioSaldosContratosController.lblGrupoContrato.value')}" />
|
|
<combobox id="cmbGrupoContrato"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
|
mold="rounded" buttonVisible="true" width="40%"
|
|
model="@{winFiltroRelatorioSaldosContratos$composer.lsGrupoContrato}" />
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('label.status')}" />
|
|
<radiogroup id="rdgStatus">
|
|
<radio id="rdgAtivo" label="${c:l('label.status.ativo')}" value="1" selected="true" />
|
|
<radio id="rdgDigitado" label="${c:l('label.status.digitado')}" value="2" style="padding: 40px; " />
|
|
<radio id="rdgInativo" label="${c:l('label.status.inativo')}" value="0" style="padding: 5px; " />
|
|
</radiogroup>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
<toolbar>
|
|
<button id="btnExecutarRelatorio" image="/gui/img/find.png"
|
|
label="${c:l('relatorio.lb.btnExecutarRelatorio')}" />
|
|
</toolbar>
|
|
</window>
|
|
</zk> |