94 lines
5.1 KiB
XML
94 lines
5.1 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="winBusquedaEmpresa"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winBusquedaEmpresa" title="${c:l('busquedaEmpresaController.window.title')}"
|
|
apply="${busquedaEmpresaController}" contentStyle="overflow:auto"
|
|
height="450px" width="850px" border="normal" >
|
|
<toolbar>
|
|
<button id="btnRefresh" image="/gui/img/refresh.png" width="35px"
|
|
tooltiptext="${c:l('busquedaEmpresaController.btnRefresh.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnNovo" image="/gui/img/add.png" width="35px"
|
|
tooltiptext="${c:l('busquedaEmpresaController.btnNovo.tooltiptext')}" />
|
|
<separator orient="vertical" />
|
|
<button id="btnCerrar" onClick="winBusquedaEmpresa.detach()" image="/gui/img/exit.png" width="35px"
|
|
tooltiptext="${c:l('busquedaEmpresaController.btnCerrar.tooltiptext')}"/>
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="20%" />
|
|
<column width="80%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label value="${c:l('busquedaEmpresaController.txtNombre.label')}"/>
|
|
<textbox id="txtNombre" width="300px" use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('editarEmpresaController.IndTipo.label')}"/>
|
|
<combobox id="cmbIndTipo" width="90%" mold="rounded" buttonVisible="true" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar">
|
|
<comboitem value="1" label="${c:l('editarEmpresaController.IndTipo.1')}" />
|
|
<comboitem value="2" label="${c:l('editarEmpresaController.IndTipo.2')}" />
|
|
<comboitem value="3" label="${c:l('editarEmpresaController.IndTipo.3')}" />
|
|
</combobox>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('editarEmpresaController.externa.label')}"/>
|
|
<combobox id="cmbExterna" width="90%" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar" mold="rounded" buttonVisible="true">
|
|
<comboitem value="1" label="${c:l('MSG.SI')}" />
|
|
<comboitem value="0" label="${c:l('MSG.NO')}" />
|
|
</combobox>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('editarEmpresaController.rfc.label')}"/>
|
|
<textbox id="txtRFC" width="100px" maxlength="13"
|
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox"/>
|
|
</row>
|
|
<row id="rowEquivalencia">
|
|
<label value="${c:l('lb.Equivalencia')}"/>
|
|
<textbox id="txtEquivalencia" 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('busquedaEmpresaController.btnPesquisa.label')}"/>
|
|
</toolbar>
|
|
|
|
<paging id="pagingEmpresa" pageSize="20"/>
|
|
<listbox id="empresaList" 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('busquedaEmpresaController.lhId.label')}"
|
|
sort="auto(empresaId)"/>
|
|
<listheader id="lhDesc" image="/gui/img/create_doc.gif"
|
|
label="${c:l('busquedaEmpresaController.lhDesc.label')}"
|
|
sort="auto(nombempresa)"/>
|
|
<listheader image="/gui/img/create_doc.gif" width="100px"
|
|
label="${c:l('editarEmpresaController.externa.label')}"
|
|
sort="auto(indExterna)"/>
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('editarEmpresaController.IndTipo.label')}"
|
|
sort="auto(indTipo)"/>
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('editarEmpresaController.rfc.label')}"
|
|
sort="auto(rfc)"/>
|
|
<listheader image="/gui/img/create_doc.gif"
|
|
label="${c:l('editarEmpresaController.cnpj.label')}"
|
|
sort="auto(cnpj)"/>
|
|
<listheader id="headerEquivalencia" image="/gui/img/create_doc.gif"
|
|
label="${c:l('lb.Equivalencia')}"
|
|
sort="auto(equivalenciaId)"/>
|
|
</listhead>
|
|
</listbox>
|
|
</window>
|
|
</zk>
|