Ultimas Actualizaciones

Resolución No. 086 de 2024

Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing:
==> Archivo  [in template "20100#20136#4071330" at line 10, column 16]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: ${Archivo.getData()}  [in template "20100#20136#4071330" at line 10, column 14]
----
1<#-- 
2Web content templates are used to lay out the fields defined in a web 
3content structure. 
4 
5Please use the left panel to quickly add commonly used variables. 
6Autocomplete is also available and can be invoked by typing "${". 
7--> 
8<div class="card border-primary"> 
9  <div class="card-header text-white bg-primary"> 
10    <a href="${Archivo.getData()}" target="_blank" class="text-white card-title" onclick="ga('send', 'event', 'Resoluciones', 'click', 'res_${.vars["reserved-article-title"].data}');" title="Leer la ${.vars['reserved-article-title'].data}">${.vars['reserved-article-title'].data}</a> 
11  </div> 
12  <div class="card-body border-primary"> 
13    <p class="card-text">${description.getData()}</p> 
14	<#if FechaExpedicion1.getData()?has_content> 
15		<p class="card-text"><small class="text-muted">Fecha Expedición: <#assign FechaExpedicion1_Data = getterUtil.getString(FechaExpedicion1.getData())> <#if validator.isNotNull(FechaExpedicion1_Data)> <#assign FechaExpedicion11_DateObj = dateUtil.parseDate("yyyy-MM-dd", FechaExpedicion_Data, locale)> ${dateUtil.getDate(FechaExpedicion1_DateObj, "dd MMM yyyy", locale)} </#if></small></p> 
16	</#if> 
17  </div> 
18  <div class="card-footer text-muted border-primary"> 
19	<#if Anexos1.getData()?has_content> 
20		<#if Anexos1.getSiblings()?has_content> 
21		<p class="card-text card-title">Anexos: <#list Anexos1.getSiblings() as cur_Anexos1>  
22		<#assign fil1AID = cur_Anexos1.getData()?string?split("/")[5]?split("?")[0]> 
23		<#assign file1AEntry = staticUtil["com.liferay.document.library.kernel.service.DLFileEntryLocalServiceUtil"]> 
24		<#assign file1A=file1AEntry.getFileEntryByUuidAndGroupId(fil1AID, groupId) > 
25		<small class="text-muted"><a href="${cur_Anexos1.getData()}">${file1A.getTitle()} </a></small> </#list></p><#else></#if> 
26	</#if> 
27  </div> 
28</div>