|
|
|
@ -1,13 +1,22 @@
|
|
|
|
|
<%@page import="com.liferay.portal.kernel.util.HtmlUtil"%> |
|
|
|
|
<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.util.SoggettiUtil"%> |
|
|
|
|
<%@page import="com.liferay.portal.kernel.portlet.LiferayWindowState"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.shared.util.PortletKeys"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.accesso.atti.model.RichiestaAccessoAtti"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.accesso.atti.service.RichiestaAccessoAttiLocalServiceUtil"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.DettPraticaLocalServiceUtil"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.util.AzioniPraticheUtil"%> |
|
|
|
|
<%@page import="com.liferay.portal.kernel.servlet.ServletContextPool"%> |
|
|
|
|
|
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.util.PagamentiCommonUtil"%> |
|
|
|
|
<%@page import="java.text.NumberFormat"%> |
|
|
|
|
<%@page import="java.math.BigDecimal"%> |
|
|
|
|
|
|
|
|
|
<%@page import="java.util.Date"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.IntPraticaLocalServiceUtil"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.SoggettoLocalServiceUtil"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.DettPraticaServiceUtil"%> |
|
|
|
|
<%@page import="com.liferay.portal.kernel.util.KeyValuePair"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.ProvinciaLocalServiceUtil"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.ComuneLocalServiceUtil"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.service.TerritorioLocalServiceUtil"%> |
|
|
|
@ -16,47 +25,56 @@
|
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.model.Territorio"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.model.IntPratica"%> |
|
|
|
|
<%@page import="it.tref.liferay.portos.bo.model.DettPratica"%> |
|
|
|
|
<%@page import="java.util.ArrayList"%> |
|
|
|
|
<%@page import="java.util.regex.Pattern"%> |
|
|
|
|
<%@page import="com.liferay.portal.kernel.bean.BeanPropertiesUtil"%> |
|
|
|
|
<%@include file="init.jsp" %> |
|
|
|
|
|
|
|
|
|
<% |
|
|
|
|
long accessoAttiId = ParamUtil.getLong(request, "accessoAttiId" , 0L); |
|
|
|
|
%> |
|
|
|
|
<div style="width:30%"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div style="width:30%;"> |
|
|
|
|
<liferay-ui:error key="no-atto-trovato" message="Nessun atto trovato per questa richiesta" /> |
|
|
|
|
<liferay-ui:error key="accesso-token-invalido" message="Access Token non valido" /> |
|
|
|
|
<liferay-ui:error key="accesso-token-scaduto" message="Access Token scaduto" /> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<c:if test="<%=accessoAttiId == 0L %>"> |
|
|
|
|
<liferay-portlet:actionURL name="visualizzaAtto" var="visualizzaAttoURL" /> |
|
|
|
|
|
|
|
|
|
<aui:form action="<%=visualizzaAttoURL %>"> |
|
|
|
|
<div class="row-fluid" style="margin-top: 10px;"> |
|
|
|
|
<div class="span12"> |
|
|
|
|
<aui:input name="accessToken" label="Codice di Accesso " style="width:20%"> |
|
|
|
|
<aui:input name="accessToken" label="Codice di Accesso " style="width:20%;"> |
|
|
|
|
<aui:validator name="required" /> |
|
|
|
|
</aui:input> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row-fluid" style="margin-top: 10px"> |
|
|
|
|
<div class="row-fluid" style="margin-top: 10px;"> |
|
|
|
|
<div class="span12"> |
|
|
|
|
<aui:button type="submit" value="Visualizza Atto" /> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</aui:form> |
|
|
|
|
</c:if> |
|
|
|
|
|
|
|
|
|
<c:if test="<%=accessoAttiId != 0L %>"> |
|
|
|
|
<% |
|
|
|
|
RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichiestaAccessoAtti(accessoAttiId); |
|
|
|
|
%> |
|
|
|
|
<c:if test="<%=accettoAtti.getIntPraticaId() != 0L %>"> |
|
|
|
|
|
|
|
|
|
<% |
|
|
|
|
long intPraticaId = accettoAtti.getIntPraticaId(); |
|
|
|
|
long dettPraticaId = ParamUtil.getLong(request, "dettPraticaId", 0); |
|
|
|
|
long dettPraticaId = ParamUtil.getLong(request, "dettPraticaId", 0l); |
|
|
|
|
|
|
|
|
|
DettPratica dettPratica = null; |
|
|
|
|
IntPratica intPratica = null; |
|
|
|
|
if (intPraticaId != 0) { |
|
|
|
|
if(intPraticaId !=0l ){ |
|
|
|
|
intPratica = IntPraticaLocalServiceUtil.getIntPratica(intPraticaId); |
|
|
|
|
if (dettPraticaId != 0) { |
|
|
|
|
if(dettPraticaId != 0l){ |
|
|
|
|
dettPratica = DettPraticaLocalServiceUtil.getDettPratica(dettPraticaId); |
|
|
|
|
} else { |
|
|
|
|
dettPratica = DettPraticaLocalServiceUtil.getLastEditableByIntPratica(intPraticaId); |
|
|
|
@ -66,23 +84,30 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
dettPraticaId = dettPratica.getDettPraticaId(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Territorio territorio = TerritorioLocalServiceUtil.getTerritorio(intPratica.getTerritorioId()); |
|
|
|
|
Comune comune = ComuneLocalServiceUtil.getComune(territorio.getComuneId()); |
|
|
|
|
Provincia provincia = ProvinciaLocalServiceUtil.fetchByC_C(territorio.getCompanyId(), |
|
|
|
|
territorio.getCodiceProvincia()); |
|
|
|
|
Provincia provincia = ProvinciaLocalServiceUtil.fetchByC_C(territorio.getCompanyId(), territorio.getCodiceProvincia()); |
|
|
|
|
%> |
|
|
|
|
|
|
|
|
|
<liferay-ui:error key="error-download-pdf-domanda" message="error-download-pdf-domanda" /> |
|
|
|
|
|
|
|
|
|
<liferay-portlet:actionURL name="salvaStampaPratica" var="salvaStampaPraticaURL"> |
|
|
|
|
<liferay-portlet:param name="intPraticaId" value="<%=String.valueOf(intPraticaId) %>"/> |
|
|
|
|
<liferay-portlet:param name="mvcPath" value="/html/fascicolofe/view_fascicolo_dettagli.jsp"/> |
|
|
|
|
</liferay-portlet:actionURL> |
|
|
|
|
|
|
|
|
|
<%-- <aui:form name="fm_salvaStampa" action="<%=salvaStampaPraticaURL %>" method="post"> --%> |
|
|
|
|
<%-- <aui:button cssClass="pull-right" type="submit" value="Stampa" icon="icon-print" iconAlign="left"/> --%> |
|
|
|
|
<%-- </aui:form> --%> |
|
|
|
|
|
|
|
|
|
<h3><%=intPratica.getTitle(true) %></h3> |
|
|
|
|
|
|
|
|
|
<liferay-ui:panel-container extended="true" id="outerPanelContainer"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" |
|
|
|
|
title="fascicolo_title_decreto_min"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="fascicolo_title_decreto_min" > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-6 col-md-3"> |
|
|
|
@ -103,9 +128,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<%= LanguageUtil.get(pageContext, "dp-range-ag") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-3"> |
|
|
|
|
<%= BeanPropertiesUtil.getString(territorio, "agMin") %> |
|
|
|
|
- |
|
|
|
|
<%= BeanPropertiesUtil.getString(territorio, "agMax") %> |
|
|
|
|
<%= BeanPropertiesUtil.getString(territorio, "agMin") %> - <%= BeanPropertiesUtil.getString(territorio, "agMax") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-3"> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "ag") %> |
|
|
|
@ -115,26 +138,22 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dp-sensi") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<c:if test="<%= intPratica.isDeposito() %>"> |
|
|
|
|
<c:if test="<%= AzioniPraticheUtil.isDeposito(intPratica.getIntPraticaId()) %>"> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%= BeanPropertiesUtil |
|
|
|
|
.getBoolean(dettPratica, "normDpr01Dep") |
|
|
|
|
? "fa fa-check-circle-o txt-green" |
|
|
|
|
: "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDpr01Dep") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dpr01-dep") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%= BeanPropertiesUtil |
|
|
|
|
.getBoolean(dettPratica, "normDpr02Dep") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDpr02Dep") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dpr02-dep") %> |
|
|
|
|
</div> |
|
|
|
|
</c:if> |
|
|
|
|
<c:if test="<%= intPratica.isAutorizzazione() %>"> |
|
|
|
|
<c:if test="<%= AzioniPraticheUtil.isAutorizzazione(intPratica.getIntPraticaId()) %>"> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDpr01Aut") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dpr01-aut") %> |
|
|
|
@ -146,7 +165,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</c:if> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dp-rispetto") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -155,20 +174,40 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDm2018") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dm2018") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDm01") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dm01") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDm02") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dm02") %> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dp-normativa") %>:</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDm03") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dm03") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDprg01") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dprg01") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normDprg02") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-dprg02") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-6"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normAnr") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "norm-anr") %> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -193,7 +232,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "collaudoStatico") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "collaudo-statico") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="container-regolamento"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normArt3com3") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>' style="margin-right: 10px;"></span></strong> |
|
|
|
|
<p style="display: inline;"><%= LanguageUtil.get(pageContext, "norm-art3com3") %>:</p> |
|
|
|
@ -205,7 +244,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="container-regolamento" style="display: inline-block;vertical-align: top;"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "normArt3com4") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>' style="margin-right: 10px;"></span></strong> |
|
|
|
|
<p style="display: inline;"><%= LanguageUtil.get(pageContext, "norm-art3com4") %></p> |
|
|
|
@ -219,11 +258,11 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="fascicolo_title_descrizione" > |
|
|
|
|
<div class="prog-description"> |
|
|
|
|
<%= HtmlUtil.escape(BeanPropertiesUtil.getString(dettPratica, "descLongIntervento")) %> |
|
|
|
|
<%=BeanPropertiesUtil.getString(dettPratica, "descLongIntervento") %> |
|
|
|
|
</div> |
|
|
|
|
</liferay-ui:panel> |
|
|
|
|
</div> |
|
|
|
@ -232,12 +271,12 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="fascicolo_title_dettagli" > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row">Ubicazione</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -351,7 +390,9 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
value='<%=geolocalization.length>1?geolocalization[1]:StringPool.BLANK %>'/> |
|
|
|
|
</div> |
|
|
|
|
<aui:input type="hidden" name="geoIsEditable" value='<%= false %>' label=""/> |
|
|
|
|
|
|
|
|
|
<liferay-portlet:runtime portletName="5_WAR_trefmapitmapportlet" /> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -362,14 +403,15 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="destinazione" > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<% |
|
|
|
|
String label = BeanPropertiesUtil.getString(dettPratica, "destinazione"); |
|
|
|
|
|
|
|
|
|
String uso = ""; |
|
|
|
|
String title = ""; |
|
|
|
|
if(label.length() > 1){ |
|
|
|
@ -390,7 +432,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="fascicolo_title_intervento" > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
@ -412,6 +454,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<li> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "tcAdeguamentoSismico") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%=LanguageUtil.get(pageContext, "tc-adeguamento-sismico") %> |
|
|
|
|
|
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "tcMiglioramentoSismico") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
@ -429,15 +472,16 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="fascicolo_title_tipologia_costruttiva" > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-3 col-md-3"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "tcInCA") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%=LanguageUtil.get(pageContext, "tc-in-c-a") %> |
|
|
|
|
<%=LanguageUtil.get(pageContext, "tc-in-ca") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-3 col-md-3"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "tcInOpera") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
@ -483,7 +527,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "tcAltro") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%=LanguageUtil.get(pageContext, "tc-altro") %></br> |
|
|
|
|
<span style="margin-left:20px"><strong><%=BeanPropertiesUtil.getString(dettPratica, "tcAltroDescrizione") %></strong></span> |
|
|
|
@ -502,35 +546,40 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12 anagrafica-soggetti"> |
|
|
|
|
<div class="col-sm-12 col-md-12 anagrafica-soggetti"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="fascicolo_title_soggetti" > |
|
|
|
|
<div class="row container-soggetti__bo "> |
|
|
|
|
<div class="col-sm-12 container-soggetti__bo-dettagli"> |
|
|
|
|
<div class="col-sm-12 col-md-12 container-soggetti__bo-dettagli"> |
|
|
|
|
<liferay-ui:search-container emptyResultsMessage="no-soggetti-presenti"> |
|
|
|
|
<liferay-ui:search-container-results |
|
|
|
|
results="<%=SoggettoLocalServiceUtil.findByIntPratica(dettPratica.getIntPraticaId())%>" |
|
|
|
|
total="<%=SoggettoLocalServiceUtil.countByIntPratica(dettPratica.getIntPraticaId())%>" |
|
|
|
|
/> |
|
|
|
|
|
|
|
|
|
<liferay-ui:search-container-row |
|
|
|
|
className="it.tref.liferay.portos.bo.model.Soggetto" |
|
|
|
|
modelVar="soggetto" |
|
|
|
|
> |
|
|
|
|
<% |
|
|
|
|
boolean isSoggettoPrincipale = dettPratica.isSoggettoPrincipale(soggetto.getSoggettoId()); |
|
|
|
|
boolean isSoggettoPrincipale = SoggettiUtil.isSoggettoPrincipale(soggetto.getSoggettoId(), dettPratica.getDettPraticaId()); |
|
|
|
|
%> |
|
|
|
|
|
|
|
|
|
<liferay-portlet:renderURL portletName="<%=PortletKeys.SOGGETTI %>" var="detailsURL" windowState="<%=LiferayWindowState.POP_UP.toString() %>"> |
|
|
|
|
<liferay-portlet:param name="mvcPath" value="/html/soggettipratica/edit_soggetto.jsp"/> |
|
|
|
|
<liferay-portlet:param name="soggettoId" value="<%=String.valueOf(soggetto.getSoggettoId()) %>"/> |
|
|
|
|
<liferay-portlet:param name="inBO" value="true"/> |
|
|
|
|
<liferay-portlet:param name="isEditable" value="false"/> |
|
|
|
|
</liferay-portlet:renderURL> |
|
|
|
|
|
|
|
|
|
<liferay-ui:search-container-column-text name="Stato" cssClass="text-center"> |
|
|
|
|
<span class='fa fa-circle <%= soggetto.getRimosso() ? "txt-red" : "txt-green" %>'></span> |
|
|
|
|
</liferay-ui:search-container-column-text> |
|
|
|
|
|
|
|
|
|
<liferay-ui:search-container-column-text name="principale" cssClass="text-center"> |
|
|
|
|
<span class='<%= isSoggettoPrincipale ? "fa fa-star txt-orange" : "fa fa-star-o" %>'></span> |
|
|
|
|
</liferay-ui:search-container-column-text> |
|
|
|
|
|
|
|
|
|
<liferay-ui:search-container-column-text name="ruolo"> |
|
|
|
|
<%= soggetto.getFullTipologiaSoggetto() %> |
|
|
|
|
</liferay-ui:search-container-column-text> |
|
|
|
@ -566,18 +615,25 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
} |
|
|
|
|
%> |
|
|
|
|
</liferay-ui:search-container-column-text> |
|
|
|
|
|
|
|
|
|
</liferay-ui:search-container-row> |
|
|
|
|
<liferay-ui:search-iterator paginate="<%= false %>" /> |
|
|
|
|
</liferay-ui:search-container> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</liferay-ui:panel> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="Dati Metrici Descrittivi" > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
@ -613,6 +669,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<strong><%=LanguageUtil.get(pageContext, |
|
|
|
|
"de-interrati-"+deInterrati)%></strong> |
|
|
|
|
</c:if> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-6 col-md-4"> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "de-superficie") %>: |
|
|
|
@ -706,7 +763,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title='<%= LanguageUtil.get(pageContext, "dcc")%>' > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
@ -716,7 +773,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
%> |
|
|
|
|
<c:if test="<%= Validator.isNotNull(fondazioni) %>"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dcc-fondazioni") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -731,12 +788,12 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</c:if> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dcc-strutture-ele") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12" > |
|
|
|
|
<div class="col-sm-12 col-md-12" > |
|
|
|
|
<%= LanguageUtil.get(pageContext, "dcc-strutture-ele-murature") %>: |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -794,7 +851,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
<div class="separator"></div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "dcc-strutture-ele-misto") %>: |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -825,8 +882,9 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<span style="margin-left:20px"><strong><%=BeanPropertiesUtil.getString(dettPratica, "dccStruttureEleAltroDescrizione") %></strong></span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dcc-orizzontamenti") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -857,8 +915,9 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<span style="margin-left:20px"><strong><%=BeanPropertiesUtil.getString(dettPratica, "dccOrizzontamentiAltroDescrizione") %></strong></span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dcc-copertura") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -867,7 +926,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
String copertura = BeanPropertiesUtil.getString(dettPratica, "dccCopertura"); |
|
|
|
|
%> |
|
|
|
|
<c:if test="<%= Validator.isNotNull(copertura) %>"> |
|
|
|
|
<div class="col-sm-12" > |
|
|
|
|
<div class="col-sm-12 col-md-12" > |
|
|
|
|
<strong><%=LanguageUtil.get(pageContext, |
|
|
|
|
"dcc-copertura-"+BeanPropertiesUtil.getString(dettPratica, "dccCopertura"))%></strong> |
|
|
|
|
</div> |
|
|
|
@ -906,8 +965,9 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<span style="margin-left:20px"><strong><%=BeanPropertiesUtil.getString(dettPratica, "dccCoperturaAltroDesrizione") %></strong></span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dcc-elem-non-strut") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -928,14 +988,15 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "dccElemNonStrutLegno") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "dcc-elem-non-strut-legno") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-12" > |
|
|
|
|
<div class="col-sm-12 col-md-12" > |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "dccElemNonStrutAltro") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "dcc-elem-non-strut-altro") %> |
|
|
|
|
<span style="margin-left:20px"><strong><%=BeanPropertiesUtil.getString(dettPratica, "dccElemNonStrutAltroDescrizione") %></strong></span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "dcc-opere-di-rinforzo") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -972,7 +1033,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "dccOpereDiRinforzoInsRompitratta") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "dcc-opere-di-rinforzo-ins-rompitratta") %> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-sm-12" > |
|
|
|
|
<div class="col-sm-12 col-md-12" > |
|
|
|
|
<strong><span class='<%=BeanPropertiesUtil.getBoolean(dettPratica, "dccOpereDiRinforzoAltro") ? "fa fa-check-circle-o txt-green" : "fa fa-circle-o" %>'></span></strong> |
|
|
|
|
<%= LanguageUtil.get(pageContext, "dcc-opere-di-rinforzo-altro") %> |
|
|
|
|
<span style="margin-left:20px"><strong><%=BeanPropertiesUtil.getString(dettPratica, "dccOpereDiRinforzoAltroDescrizione") %></strong></span> |
|
|
|
@ -984,12 +1045,12 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title='<%= LanguageUtil.get(pageContext, "di") %>' > |
|
|
|
|
<div class="container-fluid"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%= LanguageUtil.get(pageContext, "de-inf") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -1072,7 +1133,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title='<%= LanguageUtil.get(pageContext, "geo") %>' > |
|
|
|
|
|
|
|
|
@ -1088,10 +1149,11 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
<c:if test="<%=Validator.isNotNull(geoDate) %>"> |
|
|
|
|
<strong><%= dateFormatDate.format(geoDate) %></strong> |
|
|
|
|
</c:if> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="fascicolo_header_row"><%=LanguageUtil.get(pageContext, "geo-scheda-title") %></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -1296,7 +1358,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group allegati-dettagli"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="Allegati Geologici" > |
|
|
|
|
<div class="row" id="<portlet:namespace/>allegati-geologica-table"> |
|
|
|
@ -1315,7 +1377,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-sm-12"> |
|
|
|
|
<div class="col-sm-12 col-md-12"> |
|
|
|
|
<div class="module-group allegati-dettagli"> |
|
|
|
|
<liferay-ui:panel extended="false" defaultState="open" collapsible="false" title="Allegati Domanda" > |
|
|
|
|
<div class="row" id="<portlet:namespace/>allegati-table"> |
|
|
|
@ -1338,7 +1400,7 @@ RichiestaAccessoAtti accettoAtti = RichiestaAccessoAttiLocalServiceUtil.getRichi
|
|
|
|
|
|
|
|
|
|
<c:if test="<%=accettoAtti.getIntPraticaId() == 0L %>"> |
|
|
|
|
<h3> |
|
|
|
|
Questo fascicolo non è disponibile sotto forma digitale. Potrà ritirare una copia cartacea presso uno degli Uffici del Settore Sismica. |
|
|
|
|
Questo fascicolo non è disponibile sotto forma digitale. Potrà ritirare una copia cartacea presso uno degli Uffici del Settore Sismica. |
|
|
|
|
</h3> |
|
|
|
|
</c:if> |
|
|
|
|
|
|
|
|
|