AdmMono/web/gui/relatorios/filtroRelatorioTaxasLinha.zul

103 lines
3.5 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="winFiltroRelatorioTaxasLinha"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winFiltroRelatorioTaxasLinha"
apply="${relatorioTaxasLinhaController}" contentStyle="overflow:auto"
height="200px" width="600px" border="normal">
<grid fixedLayout="true">
<columns>
<column width="15%" />
<column width="35%" />
<column width="15%" />
<column width="35%" />
</columns>
<rows>
<row>
<label
value="${c:l('relatorioTaxasLinhaController.lbDatInicial.value')}" />
<datebox id="datInicial" format="dd/MM/yyyy"
lenient="false" constraint="no empty" maxlength="10" />
<label
value="${c:l('relatorioTaxasLinhaController.lbDatFinal.value')}" />
<datebox id="datFinal" format="dd/MM/yyyy"
lenient="false" constraint="no empty" maxlength="10" />
</row>
<row>
<label
value="${c:l('relatorioTaxasLinhaController.lbCidadaOrigem.value')}" />
<cell>
<combobox id="cmbParadaOrigemCve"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParadaCve"
mold="rounded" buttonVisible="true" width="25%" />
<combobox id="cmbParadaOrigem"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParada"
mold="rounded" buttonVisible="true" width="70%" />
</cell>
<label
value="${c:l('relatorioTaxasLinhaController.lbCidadeDestino.value')}" />
<cell>
<combobox id="cmbParadaDestinoCve"
autodrop="false"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParadaCve"
mold="rounded" buttonVisible="true" width="25%" />
<combobox id="cmbParadaDestino" autodrop="false"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxParada"
mold="rounded" buttonVisible="true" width="70%" />
</cell>
</row>
<row>
<label
value="${c:l('relatorioTaxasLinhaController.lbEmpresa.value')}" />
<combobox id="cmbEmpresa" mold="rounded"
buttonVisible="true"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
model="@{winFiltroRelatorioTaxasLinha$composer.lsEmpresa}"
width="180px" />
<label
value="${c:l('relatorioTaxasLinhaController.lbPuntoVenta.value')}" />
<textbox id="txtNumPuntoVenta"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"
maxlength="7" width="180px" />
</row>
<row>
<label
value="${c:l('relatorioTaxasLinhaController.lbTipoData.value')}" />
<cell>
<radiogroup id="rdGroupTipoData">
<radio radiogroup="rdGroupTipoData"
value="1" checked="true"
label="${c:l('relatorioTaxasLinhaController.lbTipoData.venda.value')}" />
<radio radiogroup="rdGroupTipoData"
value="2"
label="${c:l('relatorioTaxasLinhaController.lbTipoData.servico.value')}" />
</radiogroup>
</cell>
<cell colspan="2">
<checkbox id="chkSubtrairIcms"
label="${c:l('relatorioTaxasLinhaController.lbChkSubtrairIcms.value')}" />
</cell>
</row>
</rows>
</grid>
<toolbar>
<button id="btnExecutarRelatorio" image="/gui/img/find.png"
label="${c:l('relatorio.lb.btnExecutarRelatorio')}" />
</toolbar>
</window>
</zk>