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>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.80.0</version>
|
||||
<version>1.80.1</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -539,7 +539,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
private Tab tabAnrifraude;
|
||||
private Tab tabExcecaoMultaCancelamento;
|
||||
private Tab tabHistorico;
|
||||
private Tab tabRecollecion;
|
||||
private Tab tabRecoleccion;
|
||||
private Paging pagingHistoricoFormaPago;
|
||||
private Paging pagingFormaPago;
|
||||
private Textbox txtLatitudeLongitude;
|
||||
|
@ -1148,6 +1148,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
|
||||
ptovtaExcecaoMultaCancList.setItemRenderer(new RenderPtovtaExcecaoMultaCanc());
|
||||
ptovtaExcecaoMultaCancList.setData(puntoVenta.getPtovtaExcecaoMultaCancList() == null ? Collections.emptyList() : puntoVenta.getPtovtaExcecaoMultaCancList());
|
||||
tabRecoleccion.setVisible(isPerfilFuncionRecollecion());
|
||||
validaPerfilFuncionBloqueiaDesbloqueiaPontoVenda();
|
||||
|
||||
txtLatitudeLongitude.addEventListener("onChanging", new EventListener() {
|
||||
|
@ -1202,7 +1203,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
|
|||
tabAnrifraude.setVisible(false);
|
||||
tabExcecaoMultaCancelamento.setVisible(false);
|
||||
tabHistorico.setVisible(false);
|
||||
tabRecollecion.setVisible(isPerfilFuncionRecollecion());
|
||||
tabRecoleccion.setVisible(false);
|
||||
//Campos
|
||||
txtNome.setDisabled(true);
|
||||
txtIdEquivalencia.setDisabled(true);
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
id="tabFormaPago"
|
||||
label="${c:l('indexController.mniFormaPago.label')}" />
|
||||
<tab
|
||||
id="tabRecoleccion"
|
||||
label="${c:l('editarPuntoVentaController.tab.label.recoleccion')}"
|
||||
visible="false" />
|
||||
<tab
|
||||
|
|
Loading…
Reference in New Issue