0011158: ESPEC 7 364 - Alterar cadastro de Ponto de Venda
fixes bug#11158 dev:Emerson qua:Renato git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@85204 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
b8755e80d8
commit
ffacbe0f69
|
@ -314,6 +314,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
private Combobox cmbEmpresas;
|
private Combobox cmbEmpresas;
|
||||||
private MyComboboxEstandar cmbEmpresasContaBancarias;
|
private MyComboboxEstandar cmbEmpresasContaBancarias;
|
||||||
private Combobox cmbCategorias;
|
private Combobox cmbCategorias;
|
||||||
|
private Combobox cmbUsuarioEmpresa;
|
||||||
private Combobox cmbEmpresaFechamentoParamptovta;
|
private Combobox cmbEmpresaFechamentoParamptovta;
|
||||||
private Combobox cmbLogFiles;
|
private Combobox cmbLogFiles;
|
||||||
private Combobox cmbLogFilesAG;
|
private Combobox cmbLogFilesAG;
|
||||||
|
@ -490,7 +491,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
aplicarMascara();
|
aplicarMascara();
|
||||||
|
|
||||||
popularCombobox(cmbTipoConta, cmbPessoa, cmbForm, cmbLote, cmbPosicao, cmbReceita, cmbEmpresas, cmbCategorias);
|
popularCombobox(cmbTipoConta, cmbPessoa, cmbForm, cmbLote, cmbPosicao, cmbReceita, cmbEmpresas, cmbCategorias, cmbUsuarioEmpresa);
|
||||||
|
|
||||||
ptovtaEmpresasBloqueadasList.setItemRenderer(new RenderEmpresaBloquear());
|
ptovtaEmpresasBloqueadasList.setItemRenderer(new RenderEmpresaBloquear());
|
||||||
ptovtaPtoVtaCheckinList.setItemRenderer(new RenderParadaPtoVtaCheckin());
|
ptovtaPtoVtaCheckinList.setItemRenderer(new RenderParadaPtoVtaCheckin());
|
||||||
|
@ -926,7 +927,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void popularCombobox(Combobox cmbConta, Combobox cmbPessoa, Combobox cmbForm, Combobox cmbLote, Combobox cmbPosicao, Combobox cmbReceita, Combobox cmbEmpresas, Combobox cmbCategorias) throws Exception {
|
public void popularCombobox(Combobox cmbConta, Combobox cmbPessoa, Combobox cmbForm, Combobox cmbLote, Combobox cmbPosicao, Combobox cmbReceita, Combobox cmbEmpresas, Combobox cmbCategorias, Combobox cmbUsuarioEmpresa) throws Exception {
|
||||||
|
|
||||||
clearCombobox(cmbConta);
|
clearCombobox(cmbConta);
|
||||||
clearCombobox(cmbPessoa);
|
clearCombobox(cmbPessoa);
|
||||||
|
@ -935,6 +936,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
clearCombobox(cmbPosicao);
|
clearCombobox(cmbPosicao);
|
||||||
clearCombobox(cmbEmpresas);
|
clearCombobox(cmbEmpresas);
|
||||||
clearCombobox(cmbCategorias);
|
clearCombobox(cmbCategorias);
|
||||||
|
clearCombobox(cmbUsuarioEmpresa);
|
||||||
|
|
||||||
for (Empresa e : lsEmpresasBloquear) {
|
for (Empresa e : lsEmpresasBloquear) {
|
||||||
Comboitem comboItem = new Comboitem(e.getNombempresa());
|
Comboitem comboItem = new Comboitem(e.getNombempresa());
|
||||||
|
@ -984,6 +986,16 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
comboItem.setParent(cmbCategorias);
|
comboItem.setParent(cmbCategorias);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (lsEmpresas != null && !lsEmpresas.isEmpty()) {
|
||||||
|
Empresa empresaTodos = new Empresa(-1, "TODAS");
|
||||||
|
lsEmpresas.add(empresaTodos);
|
||||||
|
for (Empresa e : lsEmpresas) {
|
||||||
|
Comboitem comboItem = new Comboitem(e.getNombempresa());
|
||||||
|
comboItem.setValue(e);
|
||||||
|
comboItem.setParent(cmbUsuarioEmpresa);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onSelect$cmbBanco() {
|
public void onSelect$cmbBanco() {
|
||||||
|
@ -1363,7 +1375,8 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
PtovtaCatInd pto = new PtovtaCatInd();
|
PtovtaCatInd pto = new PtovtaCatInd();
|
||||||
pto.setCategoria(categoria);
|
pto.setCategoria(categoria);
|
||||||
pto.setPuntoVenta(puntoVenta);
|
pto.setPuntoVenta(puntoVenta);
|
||||||
pto.setUsuarioBloqueado((Usuario)cmbUsuarioBloq.getSelectedItem().getValue());
|
pto.setUsuarioBloqueado((Usuario) cmbUsuarioBloq.getSelectedItem().getValue());
|
||||||
|
pto.setEmpresa((Empresa) cmbUsuarioEmpresa.getSelectedItem().getValue());
|
||||||
puntoVenta.addPtovtaCatInd(pto);
|
puntoVenta.addPtovtaCatInd(pto);
|
||||||
|
|
||||||
ptovtaCatIndList.setData(puntoVenta.getPtovtaCatIndList());
|
ptovtaCatIndList.setData(puntoVenta.getPtovtaCatIndList());
|
||||||
|
|
|
@ -17,6 +17,9 @@ public class RenderPtovtaCatInd implements ListitemRenderer {
|
||||||
lc = new Listcell(pto.getUsuarioBloqueado().getName());
|
lc = new Listcell(pto.getUsuarioBloqueado().getName());
|
||||||
lc.setParent(lstm);
|
lc.setParent(lstm);
|
||||||
|
|
||||||
|
lc = new Listcell(pto.getEmpresa().getNombempresa());
|
||||||
|
lc.setParent(lstm);
|
||||||
|
|
||||||
lstm.setAttribute("data", pto);
|
lstm.setAttribute("data", pto);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,10 +77,9 @@
|
||||||
label="${c:l('editarPuntoVentaController.tab.label.integracaoag')}"
|
label="${c:l('editarPuntoVentaController.tab.label.integracaoag')}"
|
||||||
visible="@{winEditarPuntoVenta$composer.integracionAG}" />
|
visible="@{winEditarPuntoVenta$composer.integracionAG}" />
|
||||||
<tab
|
<tab
|
||||||
label="${c:l('editarPuntoVentaController.tab.label.historico')}"
|
label="${c:l('editarPuntoVentaController.tab.label.historico')}" />
|
||||||
/>
|
|
||||||
<tab
|
<tab
|
||||||
label="${c:l('editarPuntoVentaController.tab.label.bloqueiaVendaImpPosterior')}"/>
|
label="${c:l('editarPuntoVentaController.tab.label.bloqueiaVendaImpPosterior')}" />
|
||||||
</tabs>
|
</tabs>
|
||||||
|
|
||||||
<tabpanels>
|
<tabpanels>
|
||||||
|
@ -100,17 +99,17 @@
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.nombpuntoventa}"
|
value="@{winEditarPuntoVenta$composer.puntoVenta.nombpuntoventa}"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<!--ID Equivalencia-->
|
<!--ID Equivalencia-->
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbIdEquivalencia.value')}" />
|
value="${c:l('editarPuntoVentaController.lbIdEquivalencia.value')}" />
|
||||||
<textbox id="txtIdEquivalencia"
|
<textbox id="txtIdEquivalencia"
|
||||||
width="70%" maxlength="30"
|
width="70%" maxlength="30"
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.equivalenciaId}"
|
value="@{winEditarPuntoVenta$composer.puntoVenta.equivalenciaId}"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lblNumPuntoVenda')}" />
|
value="${c:l('editarPuntoVentaController.lblNumPuntoVenda')}" />
|
||||||
|
@ -196,9 +195,11 @@
|
||||||
selectedItem="@{winEditarPuntoVenta$composer.puntoVenta.puntoVentaPadre}" />
|
selectedItem="@{winEditarPuntoVenta$composer.puntoVenta.puntoVentaPadre}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
|
|
||||||
<label value="${c:l('editarPuntoVentaController.lbdataAbertura.value')}" />
|
<label
|
||||||
<datebox id="dateAbertura" mold="rounded" format="dd/MM/yyyy" />
|
value="${c:l('editarPuntoVentaController.lbdataAbertura.value')}" />
|
||||||
|
<datebox id="dateAbertura"
|
||||||
|
mold="rounded" format="dd/MM/yyyy" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<!-- Status Aprobacion -->
|
<!-- Status Aprobacion -->
|
||||||
|
@ -212,12 +213,14 @@
|
||||||
label="${c:l('editarCatalogoDeRutaController.radAprobacionLatente.value')}" />
|
label="${c:l('editarCatalogoDeRutaController.radAprobacionLatente.value')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
<row id= "rowDateFechamento"
|
<row id="rowDateFechamento"
|
||||||
visible="false">
|
visible="false">
|
||||||
<label value="${c:l('editarPuntoVentaController.lbdataFechamento.value')}" />
|
<label
|
||||||
<datebox id="dateFechamento" mold="rounded" format="dd/MM/yyyy" />
|
value="${c:l('editarPuntoVentaController.lbdataFechamento.value')}" />
|
||||||
|
<datebox id="dateFechamento"
|
||||||
|
mold="rounded" format="dd/MM/yyyy" />
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<!-- Tel1 -->
|
<!-- Tel1 -->
|
||||||
<label
|
<label
|
||||||
|
@ -365,15 +368,19 @@
|
||||||
<row>
|
<row>
|
||||||
<!-- Taxa de Conveniencia % -->
|
<!-- Taxa de Conveniencia % -->
|
||||||
<label value="Taxa de Conveniencia %" />
|
<label value="Taxa de Conveniencia %" />
|
||||||
<decimalbox id="txtTaxaConvenienciaPorc" format=",###.##" constraint="no negative" maxlength="6"
|
<decimalbox id="txtTaxaConvenienciaPorc"
|
||||||
|
format=",###.##" constraint="no negative" maxlength="6"
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.taxaConvenienciaPorc}" />
|
value="@{winEditarPuntoVenta$composer.puntoVenta.taxaConvenienciaPorc}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<!--Máximo Taxa de Conveniencia -->
|
<!--Máximo Taxa de Conveniencia -->
|
||||||
<label value="Máximo Taxa de Conveniencia" />
|
<label
|
||||||
<doublebox id="txtMaximoTaxaConveniencia" format=",###.##" constraint="no negative"
|
value="Máximo Taxa de Conveniencia" />
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.maximoTaxaConveniencia}" />
|
<doublebox
|
||||||
|
id="txtMaximoTaxaConveniencia" format=",###.##"
|
||||||
|
constraint="no negative"
|
||||||
|
value="@{winEditarPuntoVenta$composer.puntoVenta.maximoTaxaConveniencia}" />
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
|
@ -385,20 +392,20 @@
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbPodeCancelarPassage.value')}" />
|
value="${c:l('editarPuntoVentaController.lbPodeCancelarPassage.value')}" />
|
||||||
<checkbox id="checkCancelaPassNormal"
|
<checkbox id="checkCancelaPassNormal"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.indBloqueaCancTrocaPassNormal}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.indBloqueaCancTrocaPassNormal}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbPodeCancelarPTA.value')}" />
|
value="${c:l('editarPuntoVentaController.lbPodeCancelarPTA.value')}" />
|
||||||
<checkbox id="checkCancelaPTA"
|
<checkbox id="checkCancelaPTA"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.indBloqueaCancTrocaPTA}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.indBloqueaCancTrocaPTA}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbUTRRepasse.value')}" />
|
value="${c:l('editarPuntoVentaController.lbUTRRepasse.value')}" />
|
||||||
<checkbox id="checkUTRRepasse"
|
<checkbox id="checkUTRRepasse"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.indRepassaUTR}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.indRepassaUTR}" />
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
|
@ -442,8 +449,8 @@
|
||||||
<!-- descCorreo -->
|
<!-- descCorreo -->
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbDescCorreo.value')}" />
|
value="${c:l('editarPuntoVentaController.lbDescCorreo.value')}" />
|
||||||
<textbox id="descCorreo"
|
<textbox id="descCorreo" width="70%"
|
||||||
width="70%" maxlength="60"
|
maxlength="60"
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.descCorreo}"
|
value="@{winEditarPuntoVenta$composer.puntoVenta.descCorreo}"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||||
</row>
|
</row>
|
||||||
|
@ -468,7 +475,7 @@
|
||||||
<!--CEP-->
|
<!--CEP-->
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbCP.value')}" />
|
value="${c:l('editarPuntoVentaController.lbCP.value')}" />
|
||||||
<textbox id="txtCP"
|
<textbox id="txtCP"
|
||||||
constraint="no empty" width="70%" maxlength="8"
|
constraint="no empty" width="70%" maxlength="8"
|
||||||
value="@{winEditarPuntoVenta$composer.puntoVenta.codpostal}" />
|
value="@{winEditarPuntoVenta$composer.puntoVenta.codpostal}" />
|
||||||
</row>
|
</row>
|
||||||
|
@ -493,7 +500,7 @@
|
||||||
constraint="no empty" mold="rounded" buttonVisible="true"
|
constraint="no empty" mold="rounded" buttonVisible="true"
|
||||||
width="70%"
|
width="70%"
|
||||||
model="@{winEditarPuntoVenta$composer.lsEmpresaComissao}" />
|
model="@{winEditarPuntoVenta$composer.lsEmpresaComissao}" />
|
||||||
|
|
||||||
<button
|
<button
|
||||||
id="btnAdicionarEmpresaComissao" height="20"
|
id="btnAdicionarEmpresaComissao" height="20"
|
||||||
image="/gui/img/add.png" width="35px" disabled="true"
|
image="/gui/img/add.png" width="35px" disabled="true"
|
||||||
|
@ -533,14 +540,15 @@
|
||||||
<h:tr>
|
<h:tr>
|
||||||
|
|
||||||
<h:td>
|
<h:td>
|
||||||
<textbox id="txtNomeBanco" width="50px" disabled="true" />
|
<textbox
|
||||||
|
id="txtNomeBanco" width="50px" disabled="true" />
|
||||||
|
|
||||||
</h:td>
|
</h:td>
|
||||||
<h:td>
|
<h:td>
|
||||||
<combobox id="cmbBanco"
|
<combobox id="cmbBanco"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
||||||
width="353px" mold="rounded" buttonVisible="true"
|
width="353px" mold="rounded" buttonVisible="true"
|
||||||
model="@{winEditarPuntoVenta$composer.lsBanco}" />
|
model="@{winEditarPuntoVenta$composer.lsBanco}" />
|
||||||
</h:td>
|
</h:td>
|
||||||
|
|
||||||
</h:tr>
|
</h:tr>
|
||||||
|
@ -557,14 +565,14 @@
|
||||||
<h:tr>
|
<h:tr>
|
||||||
|
|
||||||
<h:td>
|
<h:td>
|
||||||
<textbox id="txtNumAg"
|
<textbox id="txtNumAg"
|
||||||
width="70%" maxlength="5"
|
width="70%" maxlength="5"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||||
</h:td>
|
</h:td>
|
||||||
<h:td>
|
<h:td>
|
||||||
<label value=" - " />
|
<label value=" - " />
|
||||||
<textbox id="txtDigitoAg"
|
<textbox
|
||||||
width="20%" maxlength="1"
|
id="txtDigitoAg" width="20%" maxlength="1"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||||
</h:td>
|
</h:td>
|
||||||
|
|
||||||
|
@ -731,45 +739,45 @@
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionDiversosController.lbInformatizada.value')}" />
|
value="${c:l('editarConfiguracionDiversosController.lbInformatizada.value')}" />
|
||||||
<checkbox id="checkInformatizada"
|
<checkbox id="checkInformatizada"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.informatizada}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.informatizada}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionDiversosController.lbBilheteInfo.value')}" />
|
value="${c:l('editarConfiguracionDiversosController.lbBilheteInfo.value')}" />
|
||||||
<checkbox id="checkBilheteInfo"
|
<checkbox id="checkBilheteInfo"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.bilheteInfo}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.bilheteInfo}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionDiversosController.lbVendaInternet.value')}" />
|
value="${c:l('editarConfiguracionDiversosController.lbVendaInternet.value')}" />
|
||||||
<checkbox id="checkVendaInternet"
|
<checkbox id="checkVendaInternet"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.vendaInternet}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.vendaInternet}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionDiversosController.lbTeleEntrega.value')}" />
|
value="${c:l('editarConfiguracionDiversosController.lbTeleEntrega.value')}" />
|
||||||
<checkbox id="checkTeleEntrega"
|
<checkbox id="checkTeleEntrega"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.teleEntrega}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.teleEntrega}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionDiversosController.lbDigitacao.value')}" />
|
value="${c:l('editarConfiguracionDiversosController.lbDigitacao.value')}" />
|
||||||
<checkbox id="checkDigitacao"
|
<checkbox id="checkDigitacao"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.digitacaoSeq}"/>
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.digitacaoSeq}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionDiversosController.lbTrabalha.value')}" />
|
value="${c:l('editarConfiguracionDiversosController.lbTrabalha.value')}" />
|
||||||
<hbox>
|
<hbox>
|
||||||
<checkbox id="checkBilhete"
|
<checkbox id="checkBilhete"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.trabalhaBilhete}"
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.trabalhaBilhete}"
|
||||||
label="${c:l('editarConfiguracionDiversosController.lbBilhete.value')}" />
|
label="${c:l('editarConfiguracionDiversosController.lbBilhete.value')}" />
|
||||||
<checkbox id="checkOfpsPropria"
|
<checkbox id="checkOfpsPropria"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.ofpsPropria}"
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.ofpsPropria}"
|
||||||
label="${c:l('editarConfiguracionDiversosController.lbOfpsPropria.value')}" />
|
label="${c:l('editarConfiguracionDiversosController.lbOfpsPropria.value')}" />
|
||||||
<checkbox id="checkOfpsTerceiros"
|
<checkbox id="checkOfpsTerceiros"
|
||||||
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.ofpsTerceiros}"
|
checked="@{winEditarPuntoVenta$composer.puntoVenta.diversosId.ofpsTerceiros}"
|
||||||
label="${c:l('editarConfiguracionDiversosController.lbOfpsTerceiros.value')}" />
|
label="${c:l('editarConfiguracionDiversosController.lbOfpsTerceiros.value')}" />
|
||||||
</hbox>
|
</hbox>
|
||||||
</row>
|
</row>
|
||||||
|
@ -789,7 +797,8 @@
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarConfiguracionAntecipaComController.lbData.value')}" />
|
value="${c:l('editarConfiguracionAntecipaComController.lbData.value')}" />
|
||||||
<datebox id="dateAntecipData" mold="rounded" constraint="no empty" width="70%" />
|
<datebox id="dateAntecipData"
|
||||||
|
mold="rounded" constraint="no empty" width="70%" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
|
@ -845,9 +854,10 @@
|
||||||
<column width="70%" />
|
<column width="70%" />
|
||||||
</columns>
|
</columns>
|
||||||
<rows>
|
<rows>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<label value="${c:l('editarConfiguracionCorridaController.lbSemana.value')}" />
|
<label
|
||||||
|
value="${c:l('editarConfiguracionCorridaController.lbSemana.value')}" />
|
||||||
<hbox>
|
<hbox>
|
||||||
<checkbox id="checkLun"
|
<checkbox id="checkLun"
|
||||||
label="${c:l('editarConfiguracionCorridaController.lbL.value')}" />
|
label="${c:l('editarConfiguracionCorridaController.lbL.value')}" />
|
||||||
|
@ -901,9 +911,9 @@
|
||||||
label="${c:l('editarConfiguracionHorarioController.lblInicio.value')}" />
|
label="${c:l('editarConfiguracionHorarioController.lblInicio.value')}" />
|
||||||
<listheader id="lhFim"
|
<listheader id="lhFim"
|
||||||
image="/gui/img/builder.gif"
|
image="/gui/img/builder.gif"
|
||||||
label="${c:l('editarConfiguracionHorarioController.lblFim.value')}" />
|
label="${c:l('editarConfiguracionHorarioController.lblFim.value')}" />
|
||||||
<listheader id="lhDias"
|
<listheader id="lhDias"
|
||||||
image="/gui/img/builder.gif"
|
image="/gui/img/builder.gif"
|
||||||
label="${c:l('editarExcepcionPeajeController.lbDias.value')}" />
|
label="${c:l('editarExcepcionPeajeController.lbDias.value')}" />
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
|
@ -931,16 +941,17 @@
|
||||||
<combobox id="cmbEmpresaFormaPago"
|
<combobox id="cmbEmpresaFormaPago"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
||||||
constraint="no empty" mold="rounded" buttonVisible="true"
|
constraint="no empty" mold="rounded" buttonVisible="true"
|
||||||
width="70%" model="@{winEditarPuntoVenta$composer.lsEmpresasFormapago}" />
|
width="70%"
|
||||||
</row>
|
model="@{winEditarPuntoVenta$composer.lsEmpresasFormapago}" />
|
||||||
<!--
|
|
||||||
<row>
|
|
||||||
<label id="lblCargosExtras"
|
|
||||||
value="${c:l('editarConfiguracionFormaPagoController.lblCargosExtras.value')}" />
|
|
||||||
<doublebox id="txtCargosExtras"
|
|
||||||
width="80%" value="0.0" maxlength="7"
|
|
||||||
constraint="no empty, no negative" />
|
|
||||||
</row>
|
</row>
|
||||||
|
<!--
|
||||||
|
<row>
|
||||||
|
<label id="lblCargosExtras"
|
||||||
|
value="${c:l('editarConfiguracionFormaPagoController.lblCargosExtras.value')}" />
|
||||||
|
<doublebox id="txtCargosExtras"
|
||||||
|
width="80%" value="0.0" maxlength="7"
|
||||||
|
constraint="no empty, no negative" />
|
||||||
|
</row>
|
||||||
-->
|
-->
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
|
@ -1036,40 +1047,39 @@
|
||||||
<combobox id="cmbEmpresaPtoVta"
|
<combobox id="cmbEmpresaPtoVta"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
||||||
constraint="no empty" mold="rounded" buttonVisible="true"
|
constraint="no empty" mold="rounded" buttonVisible="true"
|
||||||
width="100%" model="@{winEditarPuntoVenta$composer.lsEmpresas}" />
|
width="100%"
|
||||||
|
model="@{winEditarPuntoVenta$composer.lsEmpresas}" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbEmpresaContaBancaria.value')}" />
|
value="${c:l('editarPuntoVentaController.lbEmpresaContaBancaria.value')}" />
|
||||||
<listbox id="empresaContaBancariaList"
|
<listbox id="empresaContaBancariaList"
|
||||||
multiple="true"
|
multiple="true" checkmark="true" height="60px"
|
||||||
checkmark="true"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox" />
|
||||||
height="60px"
|
</row>
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"/>
|
|
||||||
</row>
|
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbEmpresaTerceirizada.value')}" />
|
value="${c:l('editarPuntoVentaController.lbEmpresaTerceirizada.value')}" />
|
||||||
<checkbox id="checkPtoVtaEmpresaIndTerceirizada"
|
<checkbox
|
||||||
checked="false" />
|
id="checkPtoVtaEmpresaIndTerceirizada" checked="false" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbEmpresaBloqueada.value')}" />
|
value="${c:l('editarPuntoVentaController.lbEmpresaBloqueada.value')}" />
|
||||||
<checkbox id="checkPtoVtaEmpresaIndBloqueada"
|
<checkbox
|
||||||
checked="false" />
|
id="checkPtoVtaEmpresaIndBloqueada" checked="false" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbMostrarCaja.value')}" />
|
value="${c:l('editarPuntoVentaController.lbMostrarCaja.value')}" />
|
||||||
<checkbox id="checkPtoVtaEmpresaIndMostrarCaja"
|
<checkbox
|
||||||
checked="false" />
|
id="checkPtoVtaEmpresaIndMostrarCaja" checked="false" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbImpCompCartao.value')}" />
|
value="${c:l('editarPuntoVentaController.lbImpCompCartao.value')}" />
|
||||||
<checkbox id="checkPtoVtaEmpresaIndImpCompCartao"
|
<checkbox
|
||||||
checked="false" />
|
id="checkPtoVtaEmpresaIndImpCompCartao" checked="false" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
|
@ -1102,13 +1112,27 @@
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
||||||
vflex="true" multiple="false">
|
vflex="true" multiple="false">
|
||||||
<listhead sizable="true">
|
<listhead sizable="true">
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbEmpresa.value')}" width="20%"/>
|
<listheader image="/gui/img/builder.gif"
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbEmpresaTerceirizada.value')}" width="20%" />
|
label="${c:l('editarPuntoVentaController.lbEmpresa.value')}"
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbEmpresaBloqueada.value')}" width="20%" />
|
width="20%" />
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbNumeroSitef.value')}" width="20%" />
|
<listheader image="/gui/img/builder.gif"
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbEmpresaContaBancaria.value')}" width="20%" />
|
label="${c:l('editarPuntoVentaController.lbEmpresaTerceirizada.value')}"
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbMostrarCaja.value')}" width="20%" />
|
width="20%" />
|
||||||
<listheader image="/gui/img/builder.gif" label="${c:l('editarPuntoVentaController.lbImpCompCartao.value')}" width="20%" />
|
<listheader image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('editarPuntoVentaController.lbEmpresaBloqueada.value')}"
|
||||||
|
width="20%" />
|
||||||
|
<listheader image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('editarPuntoVentaController.lbNumeroSitef.value')}"
|
||||||
|
width="20%" />
|
||||||
|
<listheader image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('editarPuntoVentaController.lbEmpresaContaBancaria.value')}"
|
||||||
|
width="20%" />
|
||||||
|
<listheader image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('editarPuntoVentaController.lbMostrarCaja.value')}"
|
||||||
|
width="20%" />
|
||||||
|
<listheader image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('editarPuntoVentaController.lbImpCompCartao.value')}"
|
||||||
|
width="20%" />
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
|
@ -1121,7 +1145,7 @@
|
||||||
<column width="60%" />
|
<column width="60%" />
|
||||||
</columns>
|
</columns>
|
||||||
<rows>
|
<rows>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbEmpresa.value')}" />
|
value="${c:l('editarPuntoVentaController.lbEmpresa.value')}" />
|
||||||
<combobox
|
<combobox
|
||||||
|
@ -1365,50 +1389,59 @@
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbEstanSegTabela.value')}" />
|
value="${c:l('editarPuntoVentaController.lbEstanSegTabela.value')}" />
|
||||||
<radiogroup Id="indestansegtabela" >
|
<radiogroup Id="indestansegtabela">
|
||||||
<radio id="radIndestansegtabelaSi"
|
<radio id="radIndestansegtabelaSi"
|
||||||
label="${c:l('MSG.SI')}" disabled="true"/>
|
label="${c:l('MSG.SI')}" disabled="true" />
|
||||||
<radio id="radIndestansegtabelaNo"
|
<radio id="radIndestansegtabelaNo"
|
||||||
label="${c:l('MSG.NO')}" checked="true" disabled="true"/>
|
label="${c:l('MSG.NO')}" checked="true" disabled="true" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.lbIndEstanTasaEmbarque.value')}" />
|
value="${c:l('editarPuntoVentaController.label.lbIndEstanTasaEmbarque.value')}" />
|
||||||
<radiogroup Id="indEstanTasaEmbarque">
|
<radiogroup Id="indEstanTasaEmbarque">
|
||||||
<radio id="radIndEstanTasaEmbarqueSi"
|
<radio
|
||||||
label="${c:l('MSG.SI')}" checked="true" />
|
id="radIndEstanTasaEmbarqueSi" label="${c:l('MSG.SI')}"
|
||||||
<radio id="radIndEstanTasaEmbarqueNo"
|
checked="true" />
|
||||||
label="${c:l('MSG.NO')}" />
|
<radio
|
||||||
|
id="radIndEstanTasaEmbarqueNo" label="${c:l('MSG.NO')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarque.value')}" />
|
value="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarque.value')}" />
|
||||||
<radiogroup Id="indPermisoTasaEmbarque">
|
<radiogroup
|
||||||
<radio id="radIndPermisoTasaEmbarqueSi"
|
Id="indPermisoTasaEmbarque">
|
||||||
label="${c:l('MSG.SI')}" checked="true" />
|
<radio
|
||||||
<radio id="radIndPermisoTasaEmbarqueNo"
|
id="radIndPermisoTasaEmbarqueSi" label="${c:l('MSG.SI')}"
|
||||||
label="${c:l('MSG.NO')}" />
|
checked="true" />
|
||||||
|
<radio
|
||||||
|
id="radIndPermisoTasaEmbarqueNo" label="${c:l('MSG.NO')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaManual.value')}" />
|
value="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaManual.value')}" />
|
||||||
<radiogroup Id="indPermisoTasaEmbarqueVtaManual">
|
<radiogroup
|
||||||
<radio id="radIndPermisoTasaEmbarqueVtaManualSi"
|
Id="indPermisoTasaEmbarqueVtaManual">
|
||||||
|
<radio
|
||||||
|
id="radIndPermisoTasaEmbarqueVtaManualSi"
|
||||||
label="${c:l('MSG.SI')}" checked="true" />
|
label="${c:l('MSG.SI')}" checked="true" />
|
||||||
<radio id="radIndPermisoTasaEmbarqueVtaManualNo"
|
<radio
|
||||||
|
id="radIndPermisoTasaEmbarqueVtaManualNo"
|
||||||
label="${c:l('MSG.NO')}" />
|
label="${c:l('MSG.NO')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaAgencia.value')}" />
|
value="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaAgencia.value')}" />
|
||||||
<radiogroup Id="indPermisoTasaEmbarqueVtaAgencia">
|
<radiogroup
|
||||||
<radio id="radIndPermisoTasaEmbarqueVtaAgenciaSi"
|
Id="indPermisoTasaEmbarqueVtaAgencia">
|
||||||
|
<radio
|
||||||
|
id="radIndPermisoTasaEmbarqueVtaAgenciaSi"
|
||||||
label="${c:l('MSG.SI')}" checked="true" />
|
label="${c:l('MSG.SI')}" checked="true" />
|
||||||
<radio id="radIndPermisoTasaEmbarqueVtaAgenciaNo"
|
<radio
|
||||||
|
id="radIndPermisoTasaEmbarqueVtaAgenciaNo"
|
||||||
label="${c:l('MSG.NO')}" />
|
label="${c:l('MSG.NO')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
|
@ -1450,10 +1483,11 @@
|
||||||
<listheader id="lhIndPermisoTasaEmbarque"
|
<listheader id="lhIndPermisoTasaEmbarque"
|
||||||
image="/gui/img/builder.gif"
|
image="/gui/img/builder.gif"
|
||||||
label="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarque.value')}" />
|
label="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarque.value')}" />
|
||||||
<listheader id="lhIndPermisoTasaEmbarqueVtaMan"
|
<listheader
|
||||||
image="/gui/img/builder.gif"
|
id="lhIndPermisoTasaEmbarqueVtaMan" image="/gui/img/builder.gif"
|
||||||
label="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaManual.value')}" />
|
label="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaManual.value')}" />
|
||||||
<listheader id="lhIndPermisoTasaEmbarqueVtaAgencia"
|
<listheader
|
||||||
|
id="lhIndPermisoTasaEmbarqueVtaAgencia"
|
||||||
image="/gui/img/builder.gif"
|
image="/gui/img/builder.gif"
|
||||||
label="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaAgencia.value')}" />
|
label="${c:l('editarPuntoVentaController.label.lbIndPermisoTasaEmbarqueVtaAgencia.value')}" />
|
||||||
</listhead>
|
</listhead>
|
||||||
|
@ -1485,6 +1519,14 @@
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxUsuario"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxUsuario"
|
||||||
width="70%" mold="rounded" buttonVisible="true" />
|
width="70%" mold="rounded" buttonVisible="true" />
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<label
|
||||||
|
value="${c:l('editarEmpresaController.window.title')}" />
|
||||||
|
<combobox id="cmbUsuarioEmpresa"
|
||||||
|
constraint="no empty"
|
||||||
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
||||||
|
width="70%" mold="rounded" buttonVisible="true" />
|
||||||
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
<toolbar>
|
<toolbar>
|
||||||
|
@ -1508,6 +1550,9 @@
|
||||||
<listheader id="lUsuario"
|
<listheader id="lUsuario"
|
||||||
image="/gui/img/builder.gif"
|
image="/gui/img/builder.gif"
|
||||||
label="${c:l('editarPuntoVentaController.label.usuario')}" />
|
label="${c:l('editarPuntoVentaController.label.usuario')}" />
|
||||||
|
<listheader id="lUsuarioEmpresa"
|
||||||
|
image="/gui/img/builder.gif"
|
||||||
|
label="${c:l('editarEmpresaController.window.title')}" />
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
|
@ -1550,24 +1595,21 @@
|
||||||
id="radIntervalofechamentoMensal"
|
id="radIntervalofechamentoMensal"
|
||||||
label="${c:l('editarPuntoVentaController.radIntervalofechamentoMensal.value')}" />
|
label="${c:l('editarPuntoVentaController.radIntervalofechamentoMensal.value')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.diasemtransito.label')}" />
|
value="${c:l('editarPuntoVentaController.diasemtransito.label')}" />
|
||||||
<textbox id="txtDiasemtransito"
|
<textbox id="txtDiasemtransito"
|
||||||
width="50px"
|
width="50px"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextbox" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.tipopagamento.label')}" />
|
value="${c:l('editarPuntoVentaController.tipopagamento.label')}" />
|
||||||
<radiogroup
|
<radiogroup Id="radTipoPagamento">
|
||||||
Id="radTipoPagamento">
|
<radio id="radTipoPagamentoBoleto"
|
||||||
<radio
|
|
||||||
id="radTipoPagamentoBoleto"
|
|
||||||
label="${c:l('editarPuntoVentaController.radTipoPagamentoBoleto.value')}" />
|
label="${c:l('editarPuntoVentaController.radTipoPagamentoBoleto.value')}" />
|
||||||
<radio
|
<radio id="radTipoPagamentoDeposito"
|
||||||
id="radTipoPagamentoDeposito"
|
|
||||||
label="${c:l('editarPuntoVentaController.radTipoPagamentoDeposito.value')}" />
|
label="${c:l('editarPuntoVentaController.radTipoPagamentoDeposito.value')}" />
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
</row>
|
</row>
|
||||||
|
@ -1611,7 +1653,8 @@
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
|
|
||||||
<!-- INTEGRACAO -->
|
<!-- INTEGRACAO -->
|
||||||
<tabpanel height="100%" visible="@{winEditarPuntoVenta$composer.integracionTotvs}">
|
<tabpanel height="100%"
|
||||||
|
visible="@{winEditarPuntoVenta$composer.integracionTotvs}">
|
||||||
<grid fixedLayout="true">
|
<grid fixedLayout="true">
|
||||||
<columns>
|
<columns>
|
||||||
<column width="30%" />
|
<column width="30%" />
|
||||||
|
@ -1621,16 +1664,17 @@
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.fecIntegracion')}" />
|
value="${c:l('editarPuntoVentaController.label.fecIntegracion')}" />
|
||||||
<datebox id="fecIntegracion" constraint="no empty" width="60%" mold="rounded" />
|
<datebox id="fecIntegracion"
|
||||||
|
constraint="no empty" width="60%" mold="rounded" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<checkbox id="checkSimulaIntegracion"
|
<checkbox id="checkSimulaIntegracion"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckSimulaIntegracion.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckSimulaIntegracion.value')}"
|
||||||
checked="false" />
|
checked="false" />
|
||||||
<checkbox id="checkTodosPuntosVenta"
|
<checkbox id="checkTodosPuntosVenta"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckTodosPuntoVenta.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckTodosPuntoVenta.value')}"
|
||||||
checked="false" />
|
checked="false" />
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
<grid fixedLayout="true">
|
<grid fixedLayout="true">
|
||||||
|
@ -1643,52 +1687,52 @@
|
||||||
</columns>
|
</columns>
|
||||||
<rows>
|
<rows>
|
||||||
<row>
|
<row>
|
||||||
<checkbox id="checkDinheiro"
|
<checkbox id="checkDinheiro"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckDinheiro.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckDinheiro.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkCredito"
|
<checkbox id="checkCredito"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckCredito.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckCredito.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkDebito"
|
<checkbox id="checkDebito"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckDebito.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckDebito.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkTF"
|
<checkbox id="checkTF"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckTF.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckTF.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkBOL"
|
<checkbox id="checkBOL"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckBoletos.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckBoletos.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
<toolbar>
|
<toolbar>
|
||||||
<hbox spacing="5px" style="padding:1px"
|
<hbox spacing="5px" style="padding:1px"
|
||||||
align="right">
|
align="right">
|
||||||
<button id="btnGeraTitulos"
|
<button id="btnGeraTitulos" height="20"
|
||||||
height="20" label="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}"
|
label="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}"
|
||||||
tooltiptext="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}" />
|
tooltiptext="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}" />
|
||||||
<button id="btnIntegracao"
|
<button id="btnIntegracao" height="20"
|
||||||
height="20" label="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}"
|
label="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}"
|
||||||
tooltiptext="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}" />
|
tooltiptext="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}" />
|
||||||
</hbox>
|
</hbox>
|
||||||
<hbox spacing="5px" style="padding:1px" align="right">
|
<hbox spacing="5px" style="padding:1px"
|
||||||
|
align="right">
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbFileLog.value')}" />
|
value="${c:l('editarPuntoVentaController.lbFileLog.value')}" />
|
||||||
<combobox
|
<combobox id="cmbLogFiles" mold="rounded"
|
||||||
id="cmbLogFiles"
|
buttonVisible="true"
|
||||||
mold="rounded" buttonVisible="true"
|
|
||||||
model="@{winEditarPuntoVenta$composer.lsLogFiles}" />
|
model="@{winEditarPuntoVenta$composer.lsLogFiles}" />
|
||||||
<button id="btnDownload"
|
<button id="btnDownload" height="20"
|
||||||
height="20"
|
label="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}"
|
||||||
label="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}"
|
tooltiptext="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}" />
|
||||||
tooltiptext="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}" />
|
|
||||||
</hbox>
|
</hbox>
|
||||||
</toolbar>
|
</toolbar>
|
||||||
|
|
||||||
<textbox width="100%" rows="18" id="logResult"/>
|
<textbox width="100%" rows="18" id="logResult" />
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
<!-- INTEGRACAO AG -->
|
<!-- INTEGRACAO AG -->
|
||||||
<tabpanel height="100%" visible="@{winEditarPuntoVenta$composer.integracionAG}">
|
<tabpanel height="100%"
|
||||||
|
visible="@{winEditarPuntoVenta$composer.integracionAG}">
|
||||||
<grid fixedLayout="true">
|
<grid fixedLayout="true">
|
||||||
<columns>
|
<columns>
|
||||||
<column width="30%" />
|
<column width="30%" />
|
||||||
|
@ -1698,18 +1742,22 @@
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.fecInicioAG')}" />
|
value="${c:l('editarPuntoVentaController.label.fecInicioAG')}" />
|
||||||
<datebox id="fecInicioAG" constraint="no empty" width="60%" mold="rounded" lenient="false"/>
|
<datebox id="fecInicioAG"
|
||||||
|
constraint="no empty" width="60%" mold="rounded"
|
||||||
|
lenient="false" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.label.fecFimAG')}" />
|
value="${c:l('editarPuntoVentaController.label.fecFimAG')}" />
|
||||||
<datebox id="fecFimAG" constraint="no empty" width="60%" mold="rounded" lenient="false"/>
|
<datebox id="fecFimAG"
|
||||||
|
constraint="no empty" width="60%" mold="rounded"
|
||||||
|
lenient="false" />
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<checkbox id="checkTodosPuntosVentaAG"
|
<checkbox id="checkTodosPuntosVentaAG"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckTodosPuntoVenta.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckTodosPuntoVenta.value')}"
|
||||||
checked="false" />
|
checked="false" />
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
<grid fixedLayout="true">
|
<grid fixedLayout="true">
|
||||||
|
@ -1722,48 +1770,47 @@
|
||||||
</columns>
|
</columns>
|
||||||
<rows>
|
<rows>
|
||||||
<row>
|
<row>
|
||||||
<checkbox id="checkAdiantamentoAG"
|
<checkbox id="checkAdiantamentoAG"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckAdiantamentoAG.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckAdiantamentoAG.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkCartaoAG"
|
<checkbox id="checkCartaoAG"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckCartaoAG.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckCartaoAG.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkBoletoAG"
|
<checkbox id="checkBoletoAG"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckBoletoAG.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckBoletoAG.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
<checkbox id="checkDepositoAG"
|
<checkbox id="checkDepositoAG"
|
||||||
label="${c:l('editarPuntoVentaController.lbCheckDepositoAG.value')}"
|
label="${c:l('editarPuntoVentaController.lbCheckDepositoAG.value')}"
|
||||||
checked="true" />
|
checked="true" />
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
<toolbar>
|
<toolbar>
|
||||||
<hbox spacing="5px" style="padding:1px"
|
<hbox spacing="5px" style="padding:1px"
|
||||||
align="right">
|
align="right">
|
||||||
<button id="btnGeraTitulosAG"
|
<button id="btnGeraTitulosAG" height="20"
|
||||||
height="20" label="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}"
|
label="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}"
|
||||||
tooltiptext="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}" />
|
tooltiptext="${c:l('busquedaEmpresaController.btnGeraTitulos.tooltiptext')}" />
|
||||||
<button id="btnEnviaAG"
|
<button id="btnEnviaAG" height="20"
|
||||||
height="20" label="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}"
|
label="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}"
|
||||||
tooltiptext="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}" />
|
tooltiptext="${c:l('busquedaEmpresaController.btnIntegracao.tooltiptext')}" />
|
||||||
</hbox>
|
</hbox>
|
||||||
<hbox spacing="5px" style="padding:1px" align="right">
|
<hbox spacing="5px" style="padding:1px"
|
||||||
|
align="right">
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.lbFileLog.value')}" />
|
value="${c:l('editarPuntoVentaController.lbFileLog.value')}" />
|
||||||
<combobox
|
<combobox id="cmbLogFilesAG" mold="rounded"
|
||||||
id="cmbLogFilesAG"
|
buttonVisible="true"
|
||||||
mold="rounded" buttonVisible="true"
|
|
||||||
model="@{winEditarPuntoVenta$composer.lsLogFiles}" />
|
model="@{winEditarPuntoVenta$composer.lsLogFiles}" />
|
||||||
<button id="btnDownloadAG"
|
<button id="btnDownloadAG" height="20"
|
||||||
height="20"
|
label="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}"
|
||||||
label="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}"
|
tooltiptext="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}" />
|
||||||
tooltiptext="${c:l('editarPuntoVentaController.btnDownload.tooltiptext')}" />
|
|
||||||
</hbox>
|
</hbox>
|
||||||
</toolbar>
|
</toolbar>
|
||||||
|
|
||||||
<textbox width="100%" rows="18" id="logResultAG"/>
|
<textbox width="100%" rows="18" id="logResultAG" />
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
|
|
||||||
<!-- DADOS HISTORICO -->
|
<!-- DADOS HISTORICO -->
|
||||||
<tabpanel>
|
<tabpanel>
|
||||||
<listbox id="ptovtaHistoricoList"
|
<listbox id="ptovtaHistoricoList"
|
||||||
|
@ -1780,7 +1827,7 @@
|
||||||
</listbox>
|
</listbox>
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
<!-- BLOQUEIA VENDA IMPRESSÃO POSTERIOR -->
|
<!-- BLOQUEIA VENDA IMPRESSÃO POSTERIOR -->
|
||||||
<tabpanel height="400px" >
|
<tabpanel height="400px">
|
||||||
<grid fixedLayout="true">
|
<grid fixedLayout="true">
|
||||||
<columns>
|
<columns>
|
||||||
<column width="30%" />
|
<column width="30%" />
|
||||||
|
@ -1793,29 +1840,32 @@
|
||||||
<combobox id="cmbBloqVendaImpPosterior"
|
<combobox id="cmbBloqVendaImpPosterior"
|
||||||
mold="rounded" buttonVisible="true"
|
mold="rounded" buttonVisible="true"
|
||||||
model="@{winEditarPuntoVenta$composer.lsCategoriaBloquear}" />
|
model="@{winEditarPuntoVenta$composer.lsCategoriaBloquear}" />
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
<toolbar>
|
<toolbar>
|
||||||
<hbox spacing="5px" style="padding:1px"
|
<hbox spacing="5px" style="padding:1px"
|
||||||
align="right">
|
align="right">
|
||||||
<button id="btnAddCategoriaBloqueioImpPosterior"
|
<button
|
||||||
height="20" image="/gui/img/add.png" width="35px"
|
id="btnAddCategoriaBloqueioImpPosterior" height="20"
|
||||||
|
image="/gui/img/add.png" width="35px"
|
||||||
tooltiptext="${c:l('editarPuntoVentaController.btnAddCategoriaBloqueioImpPosterior.tooltiptext')}" />
|
tooltiptext="${c:l('editarPuntoVentaController.btnAddCategoriaBloqueioImpPosterior.tooltiptext')}" />
|
||||||
<button id="btnRemoveCategoriaBloqueioImpPosterior"
|
<button
|
||||||
height="20" image="/gui/img/remove.png" width="35px"
|
id="btnRemoveCategoriaBloqueioImpPosterior" height="20"
|
||||||
|
image="/gui/img/remove.png" width="35px"
|
||||||
tooltiptext="${c:l('editarPuntoVentaController.btnRemoveCategoriaBloqueioImpPosterior.tooltiptext')}" />
|
tooltiptext="${c:l('editarPuntoVentaController.btnRemoveCategoriaBloqueioImpPosterior.tooltiptext')}" />
|
||||||
</hbox>
|
</hbox>
|
||||||
</toolbar>
|
</toolbar>
|
||||||
<listbox id="categoriasBloqImpPosteriorList"
|
<listbox id="categoriasBloqImpPosteriorList"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyListbox"
|
||||||
vflex="true" multiple="false" style="overflow:auto" >
|
vflex="true" multiple="false" style="overflow:auto">
|
||||||
<listhead sizable="true" style="overflow:auto" >
|
<listhead sizable="true"
|
||||||
|
style="overflow:auto">
|
||||||
<listheader id="lhCategoria"
|
<listheader id="lhCategoria"
|
||||||
image="/gui/img/create_doc.gif"
|
image="/gui/img/create_doc.gif"
|
||||||
label="${c:l('editarPuntoVentaController.lbCategoria.value')}" />
|
label="${c:l('editarPuntoVentaController.lbCategoria.value')}" />
|
||||||
</listhead>
|
</listhead>
|
||||||
</listbox>
|
</listbox>
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
</tabpanels>
|
</tabpanels>
|
||||||
</tabbox>
|
</tabbox>
|
||||||
|
|
Loading…
Reference in New Issue