Si è verificato un errore nell'elaborarazione del modello.
Java method "com.sun.proxy.$Proxy1781.getArticle(long, String)" threw an exception when invoked on com.sun.proxy.$Proxy1781 object "com.liferay.journal.service.impl.JournalArticleLocalServiceImpl@3c37f1f5"; see cause exception in the Java stack trace. ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign personaJournalArticle = journ... [in template "BOX-CONTATTI" at line 11, column 9] - Reached through: #include "${templatesPath}/BOX-CONTATTI" [in template "A-CHI-RIVOLGERSI" at line 37, column 33] - Reached through: #include "${templatesPath}/A-CHI-RIVO... [in template "20097#20123#DETTAGLIO-SERVIZIO" at line 120, column 1] ----
1<#include "${templatesPath}/MACRO-DETAIL-PAGE" />
2
3<div class="webcontent-detail">
4 <div class="container">
5 <div class="row">
6 <nav class="col-md-4">
7 <div class="webcontent-detail__nav">
8 <ul>
9 <#if cose.getData() != "">
10 <li><a href="#section-1">${languageUtil.get(locale, "aire.service.what")}</a></li>
11 </#if>
12 <#if descrizione.getData() != "">
13 <li><a href="#section-1">${languageUtil.get(locale, "description")}</a></li>
14 </#if>
15 <#if quanto_costa.getData() != "">
16 <li><a href="#section-2">${languageUtil.get(locale, "aire.service.price")}</a></li>
17 </#if>
18 <#if perche_farlo.getData() != "">
19 <li><a href="#section-3">${languageUtil.get(locale, "aire.service.why")}</a></li>
20 </#if>
21 <#if chi_lo_fa.getData() != "">
22 <li><a href="#section-4">${languageUtil.get(locale, "aire.service.who")}</a></li>
23 </#if>
24 <#if adesione_al_servizio.getData() != "">
25 <li><a href="#section-5">${languageUtil.get(locale, "aire.service.join")}</a></li>
26 </#if>
27 <#if documenti_allegati.getSiblings()[0].getData() != "">
28 <li><a href="#section-6">${languageUtil.get(locale, "aire.section.documents")}</a></li>
29 </#if>
30 </ul>
31 <#if tags?has_content>
32 <div class="webcontent-detail__box">
33 <div class="webcontent-detail__box-title">${languageUtil.get(locale, "aire.section.tag")}</div>
34 <div>
35 <#list tags as tag>
36 <a href="/ricerca?tag=${tag.getTagId()}" title="${tag.getName()}" class="webcontent-detail__tag">#${tag.getName()}</a>
37 </#list>
38 </div>
39 </div>
40 </#if>
41 </div>
42 </nav>
43 <div class="col-md-8">
44 <div class="webcontent-detail__main">
45 <div class="d-flex justify-content-between">
46 <div class="webcontent-detail__category">
47 <#list categorieTema as categoria>
48 <span>${categoria.getName()?upper_case}</span>
49 </#list>
50 </div>
51 <div class="bookmark position-relative">
52 <@bookmarkCheck className=className classPK=classPK structureId=structureId />
53 </div>
54 </div>
55 <#if cose.getData() != "">
56 <section id="section-1" class="webcontent-detail__section">
57 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.service.what")}</h2>
58 <#if immagine.getData() != "">
59 <img src="${immagine.getData()}" alt="${titolo.getData()}" class="webcontent-detail__img" />
60 </#if>
61 ${cose.getData()}
62 </section>
63 </#if>
64 <#if descrizione.getData() != "">
65 <section id="section-1" class="webcontent-detail__section">
66 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "description")}</h2>
67 ${descrizione.getData()}
68 </section>
69 </#if>
70 <#if quanto_costa.getData() != "">
71 <section id="section-2" class="webcontent-detail__section">
72 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.service.price")}</h2>
73 ${quanto_costa.getData()}
74 </section>
75 </#if>
76 <#if perche_farlo.getData() != "">
77 <section id="section-3" class="webcontent-detail__section">
78 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.service.why")}</h2>
79 ${perche_farlo.getData()}
80 </section>
81 </#if>
82 <#if chi_lo_fa.getData() != "">
83 <section id="section-4" class="webcontent-detail__section">
84 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.service.who")}</h2>
85 ${chi_lo_fa.getData()}
86 </section>
87 </#if>
88 <#if adesione_al_servizio.getData() != "">
89 <section id="section-5" class="webcontent-detail__section">
90 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.service.join")}</h2>
91 ${adesione_al_servizio.getData()}
92 </section>
93 </#if>
94 <#if documenti_allegati.getSiblings()[0].getData() != "">
95 <section id="section-6" class="webcontent-detail__section">
96 <h2 class="webcontent-detail__section-title">${languageUtil.get(locale, "aire.section.documents")}</h2>
97 <#list documenti_allegati.getSiblings() as allegato>
98 <#if allegato.getData() != "">
99 <@mostraAllegato allegato />
100 <#if allegato.titolo_doc.getData() != "">
101 <#assign titoloAllegato = allegato.titolo_doc.getData()>
102 <#else>
103 <#assign titoloAllegato = allegatoTitle>
104 </#if>
105 <a href="${fileEntryDownloadURL}" title="${titoloAllegato}" class="webcontent-detail__attachment d-flex align-items-end w-100">
106 <svg class="ico-svg">
107 <use xlink:href="${themeIconsPath}#arrow-to-bottom-light"></use>
108 </svg>
109 <span>${titoloAllegato}</span>
110 </a>
111 </#if>
112 </#list>
113 </section>
114 </#if>
115 </div>
116 </div>
117 </div>
118 </div>
119</div>
120<#include "${templatesPath}/A-CHI-RIVOLGERSI" />