Resultados
Se han encontrado 1258 resultados
Obras del Proyecto Complementario de las Obras de Urbanización de la Actuación Mixta “Loma de Colmenar” 2ª Fase, en Ceuta.
Expediente Exp. 112661
Simplificado
Obras de Desvío de línea Aérea de Alta Tensión de 66 KV en las Parcelas 97,98 y 99 de la Actuación Industrial L’Alfac III Fase Este, en Ibi (Alicante)
Expediente Exp. 112593
Simplificado
Adjudicación Única del contrato de Coordinador de Seguridad y Salud de las Obras del Proyecto refundido de Urbanización de la UE2 del Sector SUP-PA-01 y Proyecto de Retirada de Vertidos y Estudio de Gestión de Residuos de la Actuación “El Prado Ampliación”, en Mérida, Badajoz.
Expediente Exp. 112569
Simplificado
Produciuse un erro ao procesar o modelo.
The following has evaluated to null or missing:==> dataCategory.taxonomyVocabularyId [in template "28836040233256#36598#88738" at line 24, column 23]----Tip: It's the step after the last dot that caused this error, not those before it.----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: #assign vocabularyId = dataCategory.t... [in template "28836040233256#36598#88738" at line 24, column 1]----
1<#--
2Add elements from the sidebar to define your template. Type "${" to use the
3autocomplete feature.
4-->
5
6<#if (descripcion.getData())??>
7<div class="resultados-licitaciones">
8${descripcion.getData()}
9</div>
10</#if>
11<#assign primPK=.vars["reserved-article-resource-prim-key"].data>
12
13
14
15<div class="d-flex align-items-center mb-3">
16<#if (numExpediente.getData())??>
17<p class="text-green-2 font-weight-bold mb-0">Expediente ${numExpediente.getData()}</p> <img src="/documents/d/guest/sepes-line-green">
18</#if>
19
20<#assign data = restClient.get("/headless-delivery/v1.0/structured-contents/"+primPK) />
21<#assign categories=data.taxonomyCategoryBriefs>
22<#list categories as cat>
23<#assign dataCategory=restClient.get("/headless-admin-taxonomy/v1.0/taxonomy-categories/"+cat.taxonomyCategoryId) />
24<#assign vocabularyId=dataCategory.taxonomyVocabularyId>
25<#if isParentCategoryCorrect(vocabularyId,54548)>
26<p class="text-green-2 font-weight-bold mb-0">${cat.taxonomyCategoryName}</p>
27</#if>
28</#list>
29</div>
30
31
32<div>
33<a class="ver-mas d-flex position-relative" href="${friendlyURL}">
34 <div class="mas-a">
35 <p class="mb-0">Ver más</p>
36 <span class="ml-2 icono-plus"></span>
37 </div>
38<div class="position-absolute linia-verde w-100"></div>
39</a>
40
41</div>
42<hr/>
43
44<#assign classPK= .vars["reserved-article-resource-prim-key"].data>
45
46
47<#function isParentCategoryCorrect category parentCategory>
48<#assign bool=false>
49<#if parentCategory?string==category?string>
50 <#assign bool=true>
51</#if>
52<#return bool>
53</#function>