AdmMono/web/gui/gr/movimentacionBilhetesPuntoV...

92 lines
3.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?page title="Movimentação de Estoque - Agência" contentType="text/html;charset=UTF-8"?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" arg0="winMovimentacionBilhetesPuntoVenta"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk>
<window id="winMovimentacionBilhetesPuntoVenta" title="${c:l('movimentacionBilhetesController.window.title')}"
apply="${movimentacionBilhetesPuntoVentaController}" contentStyle="overflow:auto"
height="300px" 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('movimentacionBilhetesPuntoVentaController.btnSalvar.tooltiptext')}" />
<button id="btnFechar" height="20"
image="/gui/img/exit.png" width="35px"
onClick="winMovimentacionBilhetesPuntoVenta.detach()"
tooltiptext="${c:l('movimentacionBilhetesPuntoVentaController.btnFechar.tooltiptext')}" />
</hbox>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="40%" />
<column width="60%" />
</columns>
<rows>
<row>
<label
value="${c:l('winMovimentacionBilhetesPuntoVenta.tipoMovimentacion.label')}" />
<combobox id="cmbTipoMovimentacion"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetesPuntoVenta$composer.lsTipoMovimentacion}"/>
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetesPuntoVenta.puntoventa.label')}" />
<combobox id="cmbPuntoVenta"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxPuntoVenta"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetesPuntoVenta$composer.lsPuntoVenta}"/>
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetesPuntoVenta.origem.label')}" />
<combobox id="cmbEstacionOrigem"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetesPuntoVenta$composer.lsEstacion}"/>
</row>
<row>
<label
value="${c:l('winMovimentacionBilhetesPuntoVenta.destino.label')}" />
<combobox id="cmbEstacionDestino"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetesPuntoVenta$composer.lsEstacion}"/>
</row>
<row>
<label value="${c:l('winMovimentacionBilhetesPuntoVenta.numSerie.label')}" />
<combobox id="cmbNumSerie"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
width="70%" mold="rounded" buttonVisible="true"
model="@{winMovimentacionBilhetesPuntoVenta$composer.lsNumSerie}"/>
</row>
<row>
<label value="${c:l('winMovimentacionBilhetesPuntoVenta.forminicial.label')}" />
<textbox id="txtForminicial" width="100px"
maxlength="20"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
<row>
<label value="${c:l('winMovimentacionBilhetesPuntoVenta.formfinal.label')}" />
<textbox id="txtFormfinal" width="100px"
maxlength="20"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
</row>
</rows>
</grid>
</window>
</zk>