From e57ca91edbd460489ca80cf120733ade7e0db268 Mon Sep 17 00:00:00 2001 From: Mattia Gosetto Date: Mon, 14 Jun 2021 14:17:01 +0200 Subject: [PATCH] mappe --- .../it/mwg/sismica/bo/util/MappeUtil.java | 30 ++++++++++++++++--- .../docroot/WEB-INF/src/service.properties | 4 +-- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/mwg/sismica/bo/util/MappeUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/mwg/sismica/bo/util/MappeUtil.java index effdcc05..d945b8ed 100644 --- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/mwg/sismica/bo/util/MappeUtil.java +++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/service/it/mwg/sismica/bo/util/MappeUtil.java @@ -2,7 +2,9 @@ package it.mwg.sismica.bo.util; import it.tref.liferay.portos.bo.model.Comune; import it.tref.liferay.portos.bo.model.DettPratica; +import it.tref.liferay.portos.bo.model.IntPratica; import it.tref.liferay.portos.bo.service.ConfigurazioneLocalServiceUtil; +import it.tref.liferay.portos.bo.service.IntPraticaLocalServiceUtil; import it.tref.liferay.portos.bo.shared.util.ConfigurazioneConstants; import java.io.UnsupportedEncodingException; @@ -48,11 +50,16 @@ public class MappeUtil { return getUrlComune(request, baseUrl, dettPratica, comune, readOnly); } - private static String getUrlComune(HttpServletRequest request, String baseUrl, DettPratica dettPratica, - Comune comune, boolean readOnly) throws UnsupportedEncodingException, PortalException, SystemException { - + private static String getUrlComune(HttpServletRequest request, + String baseUrl, DettPratica dettPratica, Comune comune, + boolean readOnly) throws UnsupportedEncodingException, + PortalException, SystemException { + ThemeDisplay td = (ThemeDisplay) request.getAttribute(WebKeys.THEME_DISPLAY); long companyId = td.getCompanyId(); + + long intPraticaId = dettPratica.getIntPraticaId(); + IntPratica intPratica = IntPraticaLocalServiceUtil.getIntPratica(intPraticaId); String sharedSecret = ConfigurazioneLocalServiceUtil.findByC_ChiaveString(companyId, ConfigurazioneConstants.MAPPE_SHARED_SECRET); @@ -70,7 +77,22 @@ public class MappeUtil { url = url.replace("{{ESTREMI_CAT}}", urlEncode(dettPratica.getEstremiCatastali())); else url = url.replace("{{ESTREMI_CAT}}", ""); - + + String localizzazione = dettPratica.getLocalizzazioneGeografica(); + String lat = ""; + String lng = ""; + if(Validator.isNotNull(localizzazione)){ + String[] coordinate = StringUtils.split(localizzazione, "|"); + if(coordinate.length > 1){ + lat = coordinate[0]; + lng = coordinate[1]; + } + } + url = url.replace("{{LAT}}", lat); + url = url.replace("{{LNG}}", lng); + + url = url.replace("{{IDPRATICA}}", String.valueOf(intPraticaId)); + url = url.replace("{{NPRATICA}}", String.valueOf(intPratica.getNumeroProgetto())); url = url.replace("{{READONLY}}", (readOnly ? "true" : "false")); String query = StringPool.BLANK; diff --git a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/service.properties b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/service.properties index f482e965..201b21a9 100644 --- a/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/service.properties +++ b/liferay-plugins-sdk-6.2/portlets/portos-bo-portlet/docroot/WEB-INF/src/service.properties @@ -13,8 +13,8 @@ ## build.namespace=portos_bo - build.number=3150 - build.date=1621937915972 + build.number=3155 + build.date=1623147655039 build.auto.upgrade=true ##