AdmMono/web/gui/gr/movimentacionBilhetes.zul

116 lines
4.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page title="Movimentação de Estoque" contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winMovimentacionBilhetes"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk>
<window id="winMovimentacionBilhetes" title="${c:l('movimentacionBilhetesController.window.title')}"
apply="${movimentacionBilhetesController}" contentStyle="overflow:auto"
height="450px" width="450px" border="normal" >
<toolbar>
<hbox spacing="5px" style="padding:1px" align="right">
<button id="btnSalvar" height="20"
image="/gui/img/save.png" width="35px"
tooltiptext="${c:l('movimentacionBilhetesController.btnSalvar.tooltiptext')}" />
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winMovimentacionBilhetes.detach()"
tooltiptext="${c:l('movimentacionBilhetesController.btnFechar.tooltiptext')}" />
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label value="${c:l('winMovimentacionBilhetes.fecmovimentacion.label')}" />
<datebox id="dtbFecMovimentacion" width="90%"
format="dd/MM/yyyy" maxlength="10"
value="@{winMovimentacionBilhetes$composer.fecmovimentacion}" />
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetes.tipoMovimentacion.label')}" />
<combobox id="cmbTipoMovimentacion"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetes$composer.lsTipoMovimentacion}"/>
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetes.origem.label')}" />
<combobox id="cmbPuntoVentaOrigem"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetes$composer.lsPuntoVenta}" constraint="no empty"/>
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetes.destino.label')}" />
<combobox id="cmbPuntoVentaDestino"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetes$composer.lsPuntoVenta}" constraint="no empty"/>
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetes.empresa.label')}" />
<combobox id="cmbEmpresa"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetes$composer.lsEmpresas}" />
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetes.aidf.label')}" />
<combobox id="cmbAidf"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true" constraint="no empty" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetes.estado.label')}" />
<label id="aidfEstado" style="font-style:bold" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetes.serie.label')}" />
<label id="aidfSerie" style="font-style:bold" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetes.subserie.label')}" />
<label id="aidfSubserie" style="font-style:bold" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetes.cantidad.label')}" />
<longbox id="txtCantidad" width="100px"
maxlength="20"/>
</row>
<row>
<label value="${c:l('winMovimentacionBilhetes.forminicial.label')}" />
<textbox id="txtForminicial" width="100px"
maxlength="20"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetes.formfinal.label')}" />
<textbox id="txtFormfinal" width="100px"
maxlength="20"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
</rows>
</grid>
</window>
</zk>