2018-12-19 - València
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> cur_ordenDelDia.numOrdenEpigrafe [in template "20115#20151#281818" at line 67, column 36] ---- 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 numEpi = "0000" + cur_ordenDe... [in template "20115#20151#281818" at line 67, column 9] ----
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
6<#assign backUrl = "" />
7<#if request.getHeader("Referer")?? >
8 <#assign backUrl = request.getHeader("Referer") />
9</#if>
10
11<div class="row clearmargin">
12 <div>
13 <span class="volver"><img src="${themeImagesPath}/icons/icono_volver.svg"> <@liferay.language key="volver" />
14 </span>
15 </div>
16</div>
17
18<h2 class="bloque_titulo"><@liferay.language key="actividad-organos-gobierno-consejosectorial" />:<br />
19 <#if locale=="es_ES">
20 ${OrganoHistorico4.getData()}
21 <#else>
22 ${OrganoHistorico5.getData()}
23 </#if>
24</h2>
25
26<div class="row">
27 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-fecha" />: </strong></div>
28 <#assign fecha = fecha.getData()>
29 <#assign dia = fecha?substring(8,10)>
30 <#assign mes = fecha?substring(5,7)>
31 <#assign anyo = fecha?substring(0,4)>
32 <div class="col-xs-3">${dia}-${mes}-${anyo}</div>
33 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-hora" />: </strong></div>
34 <div class="col-xs-3">${hora.getData()}</div>
35
36 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-organo" />: </strong></div>
37 <div class="col-xs-3">${organo.getData()}</div>
38 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-caracter" />: </strong></div>
39 <div class="col-xs-3">${caracter.getData()}</div>
40
41 <div class="col-xs-3"><strong><@liferay.language key="actividad-organos-gobierno-observaciones" />: </strong></div>
42 <div class="col-xs-9">${observaciones.getData()}</div>
43</div>
44<hr>
45
46<#assign showPDFs = false>
47<#if actas?has_content && actas.getSiblings()?has_content>
48 <#list actas.getSiblings() as cur_acta>
49 <#if cur_acta.enlaceOrden?has_content && cur_acta.enlaceOrden.getData()?has_content>
50 <a href="${cur_acta.enlaceOrden.getData()}" rel="link" target="_blank"><img align="midle" width="20px" src="${themeImagesPath}/icons/icono_down_pdf.svg" /> <@liferay.language key="actividad-organos-gobierno-descargarorden" /></a><br />
51 <#assign showPDFs = true>
52 </#if>
53 <#if cur_acta.enlaceActa?has_content && cur_acta.enlaceActa.getData()?has_content>
54 <a href="${cur_acta.enlaceActa.getData()}" rel="link" target="_blank" ><img align="midle" width="20px" src="${themeImagesPath}/icons/icono_down_pdf.svg" /> <@liferay.language key="actividad-organos-gobierno-descargaracta" /></a><br />
55 <#assign showPDFs = true>
56 </#if>
57 </#list>
58</#if>
59<#if showPDFs>
60 <hr>
61</#if>
62
63<#if ordenDelDia?? && ordenDelDia.getSiblings()?has_content>
64 <h4 class="actasyordenes_h4"><@liferay.language key="actividad-organos-gobierno-ordendeldia" />:</h4>
65
66 <#list ordenDelDia.getSiblings() as cur_ordenDelDia>
67 <#assign numEpi = "0000" + cur_ordenDelDia.numOrdenEpigrafe.getData()>
68 <#assign nEpi = numEpi?substring(numEpi?length-4, numEpi?length)>
69
70 <div class="ficha">
71 <div class="row">
72 <div class="col-xs-12">
73 <#if nEpi != "0000">
74 ${nEpi} -
75 </#if>
76 ${cur_ordenDelDia.epigrafe.getData()}
77
78 <#if cur_ordenDelDia.numExpediente.getData()?trim?length != 0 >
79 <br /><@liferay.language key="actividad-organos-gobierno-expediente" />: ${cur_ordenDelDia.numExpediente.getData()} -
80 </#if>
81 <#if cur_ordenDelDia.numExpediente.getData()?trim?length == 0 >
82 <br />
83 </#if>
84 <#if cur_ordenDelDia.estadoAcuerdo.getData()== "A" >
85 <strong><@liferay.language key="aprobado" /></strong>
86 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "Q">
87 <strong><@liferay.language key="enterado" /></strong>
88 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "E">
89 <strong><@liferay.language key="enmiendas" /></strong>
90 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "R">
91 <strong><@liferay.language key="rechazado" /></strong>
92 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "P">
93 <strong><@liferay.language key="alternativa" /></strong>
94 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "C">
95 <strong><@liferay.language key="contestada" /></strong>
96 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "U">
97 <strong><@liferay.language key="urgencia" /></strong>
98 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "-">
99 <strong><@liferay.language key="retirado" /></strong>
100 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "S">
101 <strong><@liferay.language key="sobrelamesa" /></strong>
102 <#elseif cur_ordenDelDia.estadoAcuerdo.getData()== "X">
103 <strong><@liferay.language key="proximasesion" /></strong>
104 </#if>
105 </div>
106 </div>
107 </div>
108 </#list>
109</#if>
110<script>
111$(document).ready(function() {
112 $(".autofit-row").remove();
113 var backUrl = "${backUrl}";
114
115 $(".h2").remove();
116 $(".volver").on("click", function(){
117 if(backUrl == ""
118 ||(backUrl.length > 6 && backUrl.substring(backUrl.length-7, backUrl.length).toLowerCase() == "/client")) {
119 history.go(-1);
120 }else{
121 window.location.href = backUrl;
122 }
123 });
124});
125</script>
Composición de los Consejos Sectoriales
Consejo Municipal de Cooperación de València (pdf. 173 Kb).
Consejo Local de Inmigración e Interculturalidad (177 Kb).
Consejo Municipal de Acción Social (pdf. 175 Kb).
Consejo Municipal de las Mujeres y por la Igualdad (pdf 29 Kb)
Consejo Municipal de Medio Ambiente (pdf. 163 Kb).
Consejo Local de Comercio (pdf. 16 Kb).
Consejo Municipal de Turismo (pdf. 421 Kb).
Consejo Municipal de Personas con Discapacidad (pdf 35 Kb).
Reglamentos de los Consejos Sectoriales
Reglamento Consejo Municipal de Cooperación de València
Reglamento Consejo Local de Inmigración e Interculturalidad
Reglamento Consejo Municipal de Acción Social
Reglamento Consejo Municipal de las Mujeres y por la Igualdad
Reglamento Consejo Municipal de Medio Ambiente
Reglamento Consejo Local de Comercio
Nodo: sweb741:8080: