alexandre.lima 2017-07-26 19:59:58 +00:00
parent a994c4aa41
commit 7c2aa3fa32
1 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<?page title="RelgerencialEmpresa" contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winFinanceiroGrupoLinhas"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk>
<window id="winFinanceiroGrupoLinhas"
title="${c:l('financeiroGrupoLinhasController.window.title')}"
apply="${financeiroGrupoLinhasController}"
contentStyle="overflow:auto" width="660px" border="normal">
<grid fixedLayout="true">
<columns>
<column width="50%" />
<column width="50%" />
</columns>
<rows>
<row>
<label value="${c:l('financeiroGrupoLinhasController.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('financeiroGrupoLinhasController.lbDataIni.value')}" />
<datebox id="fecInicio" width="90%"
format="dd/MM/yyyy" constraint="no empty"
maxlength="10" />
</row>
<row>
<label
value="${c:l('financeiroGrupoLinhasController.lbDataFin.value')}" />
<datebox id="fecFinal" width="90%"
format="dd/MM/yyyy" constraint="no empty"
maxlength="10" />
</row>
<row>
<label
value="${c:l('financeiroGrupoLinhasController.lbEmpresa.value')}" />
<combobox id="cmbEmpresa"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded" buttonVisible="true" constraint="no empty"
width="70%"
model="@{winFinanceiroGrupoLinhas$composer.lsEmpresas}"/>
</row>
<row>
<label
value="${c:l('financeiroGrupoLinhasController.label.somenteCancelados')}" />
<checkbox id="somenteCancelados"/>
</row>
</rows>
</grid>
<toolbar>
<button id="btnInforme" height="20" image="/gui/img/vis.png" width="35px"/>
</toolbar>
</window>
</zk>