MurciaSalud
Recursos humanos y empleo
An error occurred while processing the template.
Java method "sms.object.instancer.service.SmsObjectInstancerServiceImpl.getAssetEntryCategory(String)" threw an exception when invoked on sms.object.instancer.service.SmsObjectInstancerServiceImpl object "sms.object.instancer.service.SmsObjectInstancerServiceImpl@76fd70d2"; see cause exception in the Java stack trace.
----
FTL stack trace ("~" means nesting-related):
- Failed at: #assign yearCategory = smsObjectInsta... [in template "20101#20128#154301" at line 15, column 9]
----
1<!--
2plantilla que enumera las entradas del publicador si se corresponden con la categoría de año que viene
3por parámetro.
4-->
5<#assign httpRequest = portalUtil.getOriginalServletRequest(portalUtil.getHttpServletRequest(renderRequest)) />
6
7<#if httpRequest.getParameter("p_r_p_categoryId1")?has_content && httpRequest.getParameter("p_r_p_categoryId")?has_content>
8
9 <#assign yearParamcatId = "" />
10 <#assign yearCategoryName = "" />
11 <#if httpRequest.getParameter("p_r_p_categoryId1")?has_content>
12 <#assign yearParamcatId = httpRequest.getParameter("p_r_p_categoryId1") />
13 </#if>
14 <#if yearParamcatId?has_content>
15 <#assign yearCategory = smsObjectInstancer.getAssetEntryCategory(yearParamcatId) />
16 <#assign yearCategoryName = yearCategory.getDescription(locale) />
17 <#if !yearCategoryName?has_content>
18 <#assign yearCategoryName = "Oposiciones del SMS " + yearCategory.getName() />
19 </#if>
20 </#if>
21
22 <#assign grupoCatId = "" />
23 <#assign grupoCategoryName = "" />
24 <#if httpRequest.getParameter("p_r_p_categoryId")?has_content>
25 <#assign grupoCatId = httpRequest.getParameter("p_r_p_categoryId") />
26 </#if>
27 <#if grupoCatId?has_content>
28 <#assign grupoCategoryName = smsObjectInstancer.getAssetEntryCategory(grupoCatId).getName() />
29 </#if>
30
31 <#assign addLineJump = false />
32
33 <#if yearCategoryName?has_content && grupoCategoryName?has_content >
34 <#assign addLineJump = true />
35 </#if>
36
37 <h3>${yearCategoryName}<#if addLineJump><br></#if>${grupoCategoryName}</h3>
38 <div class="mb-3">
39 <#if entries?has_content>
40 <#list entries as curEntry>
41 <#list curEntry.getCategories() as categoriaHija>
42 <#if categoriaHija.categoryId?c == yearParamcatId>
43
44 <div class="border rounded p-3 m-3 sms-oposiciones-cards">
45 <p class="h5 pb-4">
46 ${curEntry.getTitle(locale)}
47 </p>
48 <#assign assetRenderer=curEntry.getAssetRenderer()
49 journalArticle=assetRenderer.getAssetObject() />
50 <@liferay_journal["journal-article"]
51 articleId=journalArticle.getArticleId()
52 groupId=journalArticle.getGroupId() />
53 <#if themeDisplay.isSignedIn()>
54 <@liferay_journal["journal-article"]
55 articleId=journalArticle.getArticleId()
56 ddmTemplateKey="9941888"
57 groupId=journalArticle.getGroupId() />
58
59 </#if>
60 </div>
61
62 </#if>
63 </#list>
64 </#list>
65 </#if>
66 </div>
67
68<#else>
69
70 <div>
71
72 <p>No se ha podido mostrar ningun resultado por falta de información</p>
73
74 <a href="/web/recursos-humanos-y-empleo/oposiciones"
75 title="Volver al inicio de la sección oposiciones">Ir a la página principal de oposiciones</a>
76
77 </div>
78
79</#if>
80
81 <style>
82 #iconoOposiciones {
83 height: 20px !important;
84 }
85 </style>