64 lines
3.7 KiB
XML
64 lines
3.7 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="winEditarParamAcumulaMasivo"?>
|
|
<?taglib uri="http://www.zkoss.org/dsp/web/core" prefix="c"?>
|
|
|
|
<zk xmlns="http://www.zkoss.org/2005/zul">
|
|
<window id="winEditarParamAcumulaMasivo" border="normal"
|
|
apply="${editarParamAcumulaMasivoController}"
|
|
width="400px" height="457x" contentStyle="overflow:auto"
|
|
title="${c:l('editarParamAcumulaMasivoController.window.title')}">
|
|
<toolbar>
|
|
<hbox spacing="5px" style="padding:1px" align="right">
|
|
<button id="btnApagar" height="20"
|
|
image="/gui/img/remove.png" width="35px"
|
|
tooltiptext="${c:l('editarParamAcumulaMasivoController.btnApagar.tooltiptext')}"/>
|
|
<button id="btnSalvar" height="20"
|
|
image="/gui/img/save.png" width="35px"
|
|
tooltiptext="${c:l('editarParamAcumulaMasivoController.btnSalvar.tooltiptext')}"/>
|
|
<button id="btnFechar" height="20"
|
|
image="/gui/img/exit.png" width="35px"
|
|
onClick="winEditarParamAcumulaMasivo.detach()"
|
|
tooltiptext="${c:l('editarParamAcumulaMasivoController.btnFechar.tooltiptext')}"/>
|
|
</hbox>
|
|
</toolbar>
|
|
|
|
<grid fixedLayout="true">
|
|
<columns>
|
|
<column width="40%" />
|
|
<column width="60%" />
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label value="${c:l('editarParamAcumulaMasivoController.lhPunto.label')}"/>
|
|
<combobox id="cmbEmpresa" use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar" constraint="no empty"
|
|
mold="rounded" buttonVisible="true" width="90%"
|
|
model="@{winEditarParamAcumulaMasivo$composer.lsEmpresa}"
|
|
selectedItem="@{winEditarParamAcumulaMasivo$composer.paramAcumulaMasivo.empresa}"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('busquedaAcumulacionPorVentaController.lhFechainicial.label')}"/>
|
|
<datebox id="fecInicio" constraint="no empty, no past" mold="rounded" lenient="false"
|
|
value="@{winEditarParamAcumulaMasivo$composer.paramAcumulaMasivo.feciniciovigencia}"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('busquedaAcumulacionPorVentaController.lhFechafinal.label')}"/>
|
|
<datebox id="fecFinal" constraint="no empty" mold="rounded" lenient="false"
|
|
value="@{winEditarParamAcumulaMasivo$composer.paramAcumulaMasivo.fecfinvigencia}"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('editarParamAcumulaMasivoController.lhMin.label')}"/>
|
|
<spinner constraint="no negative,no zero,no empty" mold="rounded" id="min" maxlength="5"
|
|
value="@{winEditarParamAcumulaMasivo$composer.paramAcumulaMasivo.minpuntootorga}"/>
|
|
</row>
|
|
<row>
|
|
<label value="${c:l('editarParamAcumulaMasivoController.lhMax.label')}"/>
|
|
<spinner constraint="no negative,no zero,no empty" mold="rounded" id="max" maxlength="5"
|
|
value="@{winEditarParamAcumulaMasivo$composer.paramAcumulaMasivo.maxpuntootorga}"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</window>
|
|
</zk>
|