Voltar
NOTA RECOMENDATÓRIA AO PROCESSO SELETIVO INTERNO PARA FORMAÇÃO DO QUADRO DE ACESSO POR MÉRITO INTELECTUAL PARA PROMOÇÃO À GRADUAÇÃO DE 3º SARGENTO.
Um erro ocorreu enquanto processava o modelo.
Error on line 126, column 9 in 20154#20194#8025976 dlFileEntryUtil.getDLFileEntryByUuidAndGroupId(arq_uuid,groupId) is undefined. It cannot be assigned to arquivo_dlFile
1<#assign ano_Data = getterUtil.getLong(ano.getData()) />
2<#assign ano_DateObj = dateUtil.newDate(ano_Data) />
3<#assign data_promo = dateUtil.getDate(ano_DateObj, "dd MMM yyyy", locale) />
4
5<#assign resumo = resumo.getData() />
6<#assign texto = Texto_do_Link.getData() />
7<#-- <#assign link = url.getData() /> -->
8
9<#assign dlFileEntryUtil = serviceLocator.findService("com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService") />
10
11<style>
12.body {
13 font-family: "Helvetica Neue", Helvetica, Arial;
14 font-size: 14px;
15 line-height: 20px;
16 font-weight: 400;
17 color: #3b3b3b;
18 -webkit-font-smoothing: antialiased;
19 font-smoothing: antialiased;
20 background: #2b2b2b;
21}
22
23.wrapper {
24 margin: 0 auto;
25 padding: 0px;
26 max-width: 800px;
27}
28
29.table {
30 margin: 0 0 10px 0;
31 width: 100%;
32 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
33 display: table;
34}
35@media screen and (max-width: 580px) {
36 .table {
37 display: block;
38 }
39}
40
41.row {
42 display: table-row;
43 background: #f6f6f6;
44}
45.row:nth-of-type(odd) {
46 background: #e9e9e9;
47}
48.row.header {
49 font-weight: 900;
50 color: #ffffff;
51 background: #ea6153;
52}
53.row.green {
54 background: #27ae60;
55}
56.row.blue {
57 background: #1255a6;
58}
59.cell.blue { background: #2980b9; color:#FFF;
60}
61@media screen and (max-width: 580px) {
62 .row {
63 padding: 8px 0;
64 display: block;
65 }
66}
67
68.cell {
69 padding: 6px 12px;
70 display: table-cell;
71}
72
73@media screen and (max-width: 580px) {
74 .cell {
75 padding: 2px 12px;
76 display: block;
77 }
78
79}
80
81</style>
82
83<div class="wrapper">
84
85
86 <div class="table">
87
88 <div class="row header blue">
89 <div class="cell"> </div>
90 <div class="cell"> Documentos e Link da Seleção Interna </div>
91
92 </div>
93 <div class="row">
94 <div class="cell blue">
95 Data de Edital:
96 </div>
97 <div class="cell" style="min-width:75%;">
98 ${data_promo!}
99 </div>
100 </div>
101</div>
102<div class="table" style="padding-top:0px;">
103 <div class="row">
104 <div class="cell" style="min-width:100%;">
105 ${resumo!}
106 </div>
107 </div>
108</div>
109<div class="table">
110
111<#--Arquivos gerais -->
112<#if (arquivo.getData()?trim!) != "" >
113 <div class="row header blue">
114 <div class="cell"> </div>
115 <div class="cell"> Lista de arquivos da Seleção Interna : ${arquivo.getSiblings()?size} </div>
116 </div>
117
118 <#assign quant = arquivo.getSiblings()?size />
119
120 <#list 1..arquivo.getSiblings()?size as i >
121 <#assign index = arquivo.getSiblings()?size />
122 <#assign index = index - i />
123 <#assign cur_arquivo = arquivo.getSiblings()[index] />
124 <#assign indice = cur_arquivo.getData()?split("/")?size - 1 />
125 <#assign arq_uuid = cur_arquivo.getData()?split("/")[indice] />
126 <#assign arquivo_dlFile = dlFileEntryUtil.getDLFileEntryByUuidAndGroupId(arq_uuid,groupId) />
127 <#assign linha = quant+1-i />
128
129 <div class="row">
130 <div class="cell blue">
131 <#if i == 1 > Arquivo </#if>
132 </div>
133 <div class="cell" style="min-width:75%;">
134 <a href="${cur_arquivo.getData()}" target="_blank"> ${linha} →
135 ${arquivo_dlFile.getTitle()!}
136 </a>
137 </div>
138 </div>
139
140 </#list>
141</#if>
142 <#-- <#if (texto.getData()?trim!) != "" >
143 ${texto}
144 <br> ${url}-->
145 <#if texto?has_content >
146
147 <#assign cont = 1 />
148 <div class="row header blue">
149 <div class="cell"> </div>
150 <div class="cell"> Links</div>
151 </div>
152 <#list 1..Texto_do_Link.getSiblings()?size as j >
153 <#assign index = Texto_do_Link.getSiblings()?size />
154 <#assign index = index - j />
155 <#assign cur_link = Texto_do_Link.getSiblings()[index] />
156 <div class="row">
157 <div class="cell blue">
158 <#if cont == 1 > Clique no link ao lado </#if>
159 </div>
160
161 <div class="cell" style="min-width:75%;">
162 <a href="http://${cur_link.getChildren()[0].getData()}" target="_blank">${cur_link.getData()!}</a> <br>
163 <#assign cont = cont + 1 />
164 </div>
165 </div>
166
167 </#list>
168 <#-- --> </#if>
169
170 </div>
171</div>
172
173<br>