Buscando, por favor espere....

Inicio - València

Se ha producido un error al procesar la plantilla.
Java method "com.sun.proxy.$Proxy936.fetchLatestArticle(long)" threw an exception when invoked on com.sun.proxy.$Proxy936 object "com.liferay.journal.service.impl.JournalArticleLocalServiceImpl@614acb92"; see cause exception in the Java stack trace.

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign article = JournalArticleServi...  [in template "20115#20151#16184865" at line 29, column 33]
----
1<#assign liferay_theme = PortletJspTagLibs["/META-INF/liferay-theme.tld"] /> 
2<@liferay_theme["defineObjects"] /> 
3<#assign themeRootPath = themeDisplay.getPathThemeRoot() /> 
4<#assign themeImagesPath = themeDisplay.getPathThemeImages() /> 
5<#assign customTitle= themeDisplay.getPortletDisplay().getTitle() /> 
6<#assign urlActual = themeDisplay.getURLCurrent() /> 
7<#assign portlet_setup = portletDisplay.getPortletSetup()> 
8<#assign portlet_show_title = portlet_setup.getValue("portletSetupUseCustomTitle","Boolean")> 
9 
10 
11<#if entries?has_content> 
12<#assign JournalArticleService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
13<#assign plantilla = '16220865' /> 
14<div class="container"> 
15    <#if portlet_show_title?has_content && portlet_show_title=="true"> 
16        <h2 class="bloque_titulo">${customTitle}</h2> 
17    </#if> 
18		<#if entries?has_content> 
19			<#assign z=0> 
20			<#list entries as curEntry>  
21				<#if z%4 == 0> 
22					<#if z == 0> 
23						<div class="row"> 
24					<#else> 
25						</div> 
26						<div class="row">  
27					</#if> 
28				</#if>  
29				<#assign article = JournalArticleService.fetchLatestArticle(getterUtil.getLong(curEntry.getClassPK())) /> 
30				<#if !article.isExpired()> 
31					<div class="col-lg-3 col-md-6 col-sm-12 div-bloque-enlace"> 
32						<@liferay_journal["journal-article"] 
33								articleId=article.getArticleId() 
34								ddmTemplateKey=plantilla 
35								groupId=article.getGroupId() 
36						/> 
37					</div> 
38				</#if> 
39				<#if curEntry?is_last> 
40					</div> 
41				</#if> 
42				<#assign z++>				 
43			</#list> 
44		</#if> 
45    </div> 
46</div> 
47</#if> 
48 
49<style> 
50.div-bloque-enlace{ 
51   display: grid; 
52   margin-bottom: 3em; 
53
54</style>