AdmMono/web/gui/ingreso/busquedaBanco.zul

88 lines
4.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="winBusquedaBanco"?>
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winBusquedaBanco" title="${c:l('busquedaBancoController.window.title')}"
apply="${busquedaBancoController}" contentStyle="overflow:auto"
height="450px" width="850px" border="normal" >
<toolbar>
<button id="btnRefresh" image="/gui/img/refresh.png" width="35px"
tooltiptext="${c:l('busquedaBancoController.btnRefresh.tooltiptext')}" />
<separator orient="vertical" />
<button id="btnNovo" image="/gui/img/add.png" width="35px"
tooltiptext="${c:l('busquedaBancoController.btnNovo.tooltiptext')}" />
<separator orient="vertical" />
<button id="btnCerrar" onClick="winBusquedaBanco.detach()" image="/gui/img/exit.png" width="35px"
tooltiptext="${c:l('busquedaBancoController.btnCerrar.tooltiptext')}"/>
</toolbar>
<grid fixedLayout="true">
<columns>
<column width="20%" />
<column width="80%" />
</columns>
<rows>
<!--row>
<label value="${c:l('busquedaBancoController.idBanco.label')}"/>
<intbox id="idBanco" width="100px" use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
</row-->
<row>
<label value="${c:l('busquedaBancoController.nombre.label')}"/>
<textbox id="txtNombre" width="300px" use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
</row>
<row>
<label value="${c:l('busquedaBancoController.numCuenta.label')}"/>
<intbox id="txtNumCuenta" width="100px" maxlength="13"
/>
</row>
<!--row>
<label value="${c:l('busquedaBancoController.clave.label')}"/>
<textbox id="txtClaveSucursal" width="100px" maxlength="10"
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
</row-->
</rows>
</grid>
<toolbar>
<button id="btnPesquisa" image="/gui/img/find.png"
label="${c:l('busquedaBancoController.btnPesquisa.label')}"/>
</toolbar>
<paging id="pagingBanco" pageSize="15"/>
<listbox id="bancoList" use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
vflex="true" multiple="false">
<listhead sizable="true">
<listheader id="lhId" width="70px" image="/gui/img/builder.gif"
label="${c:l('busquedaBancoController.lhId.label')}"
sort="auto(bancoId)"/>
<listheader id="lhDesc" image="/gui/img/create_doc.gif"
label="${c:l('busquedaBancoController.puntoVenta.label')}"
sort="auto(puntoVenta.nombpuntoventa)"/>
<listheader image="/gui/img/create_doc.gif" width="100px"
label="${c:l('busquedaBancoController.empresa.label')}"
/>
<listheader image="/gui/img/create_doc.gif" width="100px"
label="${c:l('busquedaBancoController.moneda.label')}"
sort="auto(moneda.descmoneda)"/>
<listheader image="/gui/img/create_doc.gif" width="100px"
label="${c:l('busquedaBancoController.banco.label')}"
sort="auto(nombbanco)"/>
<listheader image="/gui/img/create_doc.gif"
label="${c:l('busquedaBancoController.numCuenta.label')}"
sort="auto(numcuenta)"/>
<!--RETIRADO A PEDIDO DE PAULO MARCIO
listheader image="/gui/img/create_doc.gif"
label="${c:l('busquedaBancoController.algoritmo.label')}"
sort="auto(algoritmoref)"/-->
<!--RETIRADO A PEDIDO DE PAULO MARCIO
listheader image="/gui/img/create_doc.gif"
label="${c:l('busquedaBancoController.concepto.label')}"
sort="auto(concepto)"/-->
</listhead>
</listbox>
</window>
</zk>