Merge pull request 'fixes bug #AL-4474' (!539) from AL-4474 into master
Reviewed-on: adm/VentaBoletosAdm#539 Reviewed-by: wallace <wallace@rjconsultores.com.br>master 1.80.1
commit
881152be76
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.80.0</version>
|
<version>1.80.1</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -539,7 +539,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
private Tab tabAnrifraude;
|
private Tab tabAnrifraude;
|
||||||
private Tab tabExcecaoMultaCancelamento;
|
private Tab tabExcecaoMultaCancelamento;
|
||||||
private Tab tabHistorico;
|
private Tab tabHistorico;
|
||||||
private Tab tabRecollecion;
|
private Tab tabRecoleccion;
|
||||||
private Paging pagingHistoricoFormaPago;
|
private Paging pagingHistoricoFormaPago;
|
||||||
private Paging pagingFormaPago;
|
private Paging pagingFormaPago;
|
||||||
private Textbox txtLatitudeLongitude;
|
private Textbox txtLatitudeLongitude;
|
||||||
|
@ -1148,6 +1148,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
ptovtaExcecaoMultaCancList.setItemRenderer(new RenderPtovtaExcecaoMultaCanc());
|
ptovtaExcecaoMultaCancList.setItemRenderer(new RenderPtovtaExcecaoMultaCanc());
|
||||||
ptovtaExcecaoMultaCancList.setData(puntoVenta.getPtovtaExcecaoMultaCancList() == null ? Collections.emptyList() : puntoVenta.getPtovtaExcecaoMultaCancList());
|
ptovtaExcecaoMultaCancList.setData(puntoVenta.getPtovtaExcecaoMultaCancList() == null ? Collections.emptyList() : puntoVenta.getPtovtaExcecaoMultaCancList());
|
||||||
|
tabRecoleccion.setVisible(isPerfilFuncionRecollecion());
|
||||||
validaPerfilFuncionBloqueiaDesbloqueiaPontoVenda();
|
validaPerfilFuncionBloqueiaDesbloqueiaPontoVenda();
|
||||||
|
|
||||||
txtLatitudeLongitude.addEventListener("onChanging", new EventListener() {
|
txtLatitudeLongitude.addEventListener("onChanging", new EventListener() {
|
||||||
|
@ -1202,7 +1203,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
||||||
tabAnrifraude.setVisible(false);
|
tabAnrifraude.setVisible(false);
|
||||||
tabExcecaoMultaCancelamento.setVisible(false);
|
tabExcecaoMultaCancelamento.setVisible(false);
|
||||||
tabHistorico.setVisible(false);
|
tabHistorico.setVisible(false);
|
||||||
tabRecollecion.setVisible(isPerfilFuncionRecollecion());
|
tabRecoleccion.setVisible(false);
|
||||||
//Campos
|
//Campos
|
||||||
txtNome.setDisabled(true);
|
txtNome.setDisabled(true);
|
||||||
txtIdEquivalencia.setDisabled(true);
|
txtIdEquivalencia.setDisabled(true);
|
||||||
|
|
|
@ -61,6 +61,7 @@
|
||||||
id="tabFormaPago"
|
id="tabFormaPago"
|
||||||
label="${c:l('indexController.mniFormaPago.label')}" />
|
label="${c:l('indexController.mniFormaPago.label')}" />
|
||||||
<tab
|
<tab
|
||||||
|
id="tabRecoleccion"
|
||||||
label="${c:l('editarPuntoVentaController.tab.label.recoleccion')}"
|
label="${c:l('editarPuntoVentaController.tab.label.recoleccion')}"
|
||||||
visible="false" />
|
visible="false" />
|
||||||
<tab
|
<tab
|
||||||
|
|
Loading…
Reference in New Issue