En Clivet, la contribución de cada miembro de nuestro equipo marca la diferencia. Consulta nuestras oportunidades de empleo actuales y descubre cómo formar parte del equipo Clivet.
Trabajo con nosotros!
Aporta innovación al clima del mañana

Llevamos más de 35 años ofreciendo soluciones para el confort sostenible y el bienestar de las personas y el medio ambiente, utilizando tecnologías innovadoras y de elevada eficiencia energética. Únete a nosotros en este viaje hacia un futuro más sostenible.
Tu futuro comienza aquí
Java method "jdk.proxy3.$Proxy164.getCategory(long)" threw an exception when invoked on jdk.proxy3.$Proxy164 object "com.liferay.portlet.asset.service.impl.AssetCategoryServiceImpl@64912693"; see cause exception in the Java stack trace.
----
FTL stack trace ("~" means nesting-related):
- Failed at: #assign categoryTitle = assetCategory... [in template "10110#2640274#72734807" at line 89, column 57]
----
1<#assign hasCategories = false />
2<#assign assetCategoryService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryService") />
3<#assign assetCategoryPropertyLocalService = serviceLocator.findService("com.liferay.asset.category.property.service.AssetCategoryPropertyLocalService") />
4<#assign randomNamespace="0.${turnoverstr(.now?long?string)}"?number?string?replace(".", "") />
5
6<style>
7 .n_${randomNamespace}.categories-filter .dropdown-toggle {
8 text-transform: capitalize;
9 display: flex;
10 flex-direction: row;
11 justify-content: space-between;
12 align-items: center;
13 height: 50px;
14 min-width: 240px;
15 border-color: #E7E7E7;
16 border-radius: 8px;
17 background-color: #fff;
18 font-weight: 400;
19 }
20 .n_${randomNamespace}.categories-filter .dropdown-toggle::after {
21 display: block;
22 /* margin-left: .255em; */
23 /* vertical-align: .255em; */
24 content: "";
25 /* border-top: .3em solid; */
26 /* border-right: .3em solid transparent; */
27 /* border-bottom: 0; */
28 /* border-left: .3em solid transparent; */
29 background-image: url(/o/clivet-liferay-nuance-theme/images/icons/chevron.svg);
30 width: 24px;
31 height: 24px;
32 color: #000;
33 transform: rotate(0deg);
34 }
35 .n_${randomNamespace}.categories-filter .dropdown-item {
36 text-transform: capitalize;
37 color: #000 !important;
38 font-size: 16px;
39 font-weight: 400;
40 }
41 .n_${randomNamespace}.filter-label {
42 color: #717171;
43 font-size: 16px;
44 font-style: normal;
45 font-weight: 400;
46 }
47 @media only screen and (max-width: 991.98px) {
48 .n_${randomNamespace}.categories-filter .dropdown,
49 .n_${randomNamespace}.categories-filter .dropdown-toggle {
50 width: 100%;
51 }
52 }
53</style>
54
55<#macro displayCategories
56 categories
57>
58 <#if categories?has_content>
59 <#list categories as category>
60 <#assign categoryURL = renderResponse.createRenderURL() />
61
62 ${categoryURL.setParameter("resetCur", "true")}
63 ${categoryURL.setParameter("categoryId", category.getCategoryId()?string)}
64 <#assign categoryURLs = categoryURL.toString()?replace("#p_"+themeDisplay.getPortletDisplay().getId(),"") />
65 <a href="${categoryURLs}" class="dropdown-item"><span class="text-truncate">${category.getTitle(themeDisplay.getLocale())}</span></a>
66
67 <#if serviceLocator??>
68 <#assign childCategories = assetCategoryService.getChildCategories(category.getCategoryId()) />
69 <@displayCategories categories=childCategories />
70 </#if>
71 </#list>
72 </#if>
73</#macro>
74
75<#assign categoryId = paramUtil.getLong(renderRequest, "categoryId") />
76<#assign firstButtonId = "" />
77<#if entries?has_content>
78 <div class="n_${randomNamespace} categories-filter container">
79 <div class="n_${randomNamespace} filter-label mb-2 mb-lg-0"><@liferay_ui.message key="filter-by" />:</div>
80 <div class="d-flex flex-column flex-lg-row justify-content-center align-items-center g-3">
81 <#assign index = 0/>
82 <#list entries as entry>
83 <#assign categories = entry.getCategories() />
84 <#assign categories = filterVisibleCategories(categories) />
85 <#if categories?has_content>
86 <#assign hasCategories = true />
87 <#assign categoryTitle = entry.getUnambiguousTitle(entries, themeDisplay.getSiteGroupId(), themeDisplay.getLocale()) />
88 <#if validator.isNotNull(categoryId) && containsCategory(categories, categoryId)>
89 <#assign categoryTitle = assetCategoryService.getCategory(categoryId).getName() />
90 </#if>
91 <div class="dropdown">
92 <#if index == 0 >
93 <#assign firstButtonId = "n_${randomNamespace}dropdownMenuButton" />
94 </#if>
95 <button class="btn dropdown-toggle" type="button" id="n_${randomNamespace}dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
96 ${categoryTitle}
97 </button>
98 <div class="dropdown-menu" aria-labelledby="n_${randomNamespace}dropdownMenuButton">
99 <@displayCategories categories=categories />
100 </div>
101 </div>
102 </#if>
103 <#assign index = index + 1/>
104 </#list>
105 <#if hasCategories>
106 <#assign resetCategoryURL = renderResponse.createRenderURL() />
107 ${resetCategoryURL.setParameter("resetCur", "true")}
108 ${resetCategoryURL.setParameter("categoryId", "")}
109 <a href="${resetCategoryURL}" class="reset-item btn btn-primary m-auto m-lg-0 justify-content-center"><span class="text-truncate"><@liferay.language key="reset" /></span></a>
110 </#if>
111 <#if !hasCategories>
112 ${renderRequest.setAttribute("PORTLET_CONFIGURATOR_VISIBILITY", true)}
113
114 <div class="alert alert-info w-100">
115 <@liferay_ui.message key="there-are-no-categories" />
116 </div>
117 </#if>
118 </div>
119 </div>
120</#if>
121
122<#function containsCategory
123 categories
124 lookup
125>
126 <#if categories?has_content>
127 <#list categories as category>
128 <#if category.getCategoryId() == lookup>
129 <#return true />
130 </#if>
131 <#assign childCategories = assetCategoryService.getChildCategories(category.getCategoryId()) />
132 <#if childCategories?has_content>
133 <#return containsCategory(childCategories, lookup)/>
134 </#if>
135 </#list>
136 </#if>
137 <#return false />
138</#function>
139
140<#function filterVisibleCategories categories>
141 <#assign result = [] />
142 <#if categories?has_content>
143 <#list categories as category>
144 <#attempt>
145 <#assign visibilityProp = assetCategoryPropertyLocalService.fetchCategoryProperty(category.getCategoryId(), "VISIBILITY_FILTER") />
146 <#if visibilityProp?? && visibilityProp.getValue() == "TRUE">
147 <#assign result = result + [category] />
148 </#if>
149 <#recover>
150 </#recover>
151 </#list>
152 </#if>
153 <#return result />
154</#function>
155
156<#function random >
157 <#local h="0.${turnoverstr(.now?long?string)}" />
158 <#local r=h?number + rnd />
159 <#if r >= 1>
160 <#local r=r-1 />
161 </#if>
162 <#assign rnd=r />
163 <#return r/>
164</#function>
165
166<#function turnoverstr str >
167 <#local l = str?length />
168 <#local r = ""/>
169 <#list 1..l as i>
170 <#local r = r+str?substring(l-i,l-i+1)/>
171 </#list>
172 <#return r/>
173</#function>
174
175
176<#assign selectedOptionName = "default_value">
177<#if filterType?? && filterType.getData()?has_content>
178 <#if filterType.getData() == 'opzione11682098'>
179 <#assign selectedOptionName = 'product_filter'>
180 <#elseif filterType.getData() == 'opzione80749396'>
181 <#assign selectedOptionName = 'use_case_filter'>
182 <#elseif filterType.getData() == 'opzione61712593'>
183 <#assign selectedOptionName = 'job_filter'>
184 <#elseif filterType.getData() == 'opzione71672717'>
185 <#assign selectedOptionName = 'content_type_filter'>
186 <#elseif filterType.getData() == 'opzione22125586'>
187 <#assign selectedOptionName = 'operator_filter'>
188 </#if>
189</#if>
190
191<script>
192
193 $(".n_${randomNamespace}.categories-filter .dropdown-item").on('click', function(event) {
194 if (typeof sendMeasurementEventFilter === 'function') {
195 var filterName = $(this).text();
196 var filterType = '${selectedOptionName}';
197 sendMeasurementEventFilter('Filter', filterType, filterName, 'no_type');
198 } else {
199 console.error('sendMeasurementEventFilter not defined');
200 }
201 });
202
203 function fn_${randomNamespace}_fixLabel() {
204 let leftBtn = $("#${firstButtonId}").offset().left;
205 let leftLabel = $(".n_${randomNamespace}.filter-label").offset().left;
206 $(".n_${randomNamespace}.filter-label").css("paddingLeft", (leftBtn - leftLabel)+'px');
207
208
209 }
210 $(window).on('resize', function(){
211 fn_${randomNamespace}_fixLabel();
212 });
213 fn_${randomNamespace}_fixLabel();
214</script>
Are you passionate about innovation and continuous improvement? Do you feel the aim to transform production processes through cutting-edge solutions and LEAN principles? Then you are the person we are looking for!
We are looking for a highly motivated and detail-oriented Process Engineer to join our Industrialization team at Clivet Spa. You will cooperate to promote technological improvements, automation and innovative processes, increasing yield, reducing costs and optimizing processes with a view to operational excellence.
You will be responsible for managing the development of the production process and all activities aimed at its engineering and optimization.
More specifically, within the operational team the resource you will be responsible for:
- Process design and optimization: develop and improve production processes, applying time and method analysis tools and balancing production lines to guarantee efficiency and flexibility.
- Technological innovation: identify and implement innovative and technological solutions to improve production and logistics flows.
- Process digitalization: Collaborate with operations teams to introduce automation and digital tools to simplify and enhance production.
- Line engineering: designing production lines and departments, coordinating logistics activities, managing materials and supervising suppliers and subcontractors for the creation of the lines.
- Analysis and problem solving: carry out analyzes of non-conformities, propose targeted solutions and define procedures to guarantee the quality and sustainability of the processes.
- Training and leadership: develop and transfer operational skills by training operators and promoting a corporate culture oriented towards innovation and continuous improvement.
Essential Requirements:
- Degree in Engineering (Mechanics, Automation, Management or equivalent).
- Good knowledge of English language.
- Knowledge, even basic, of lean manufacturing.
- Familiarity with metallurgical, technological and plant engineering aspects related to metalworking processes.
- Knowledge of systems, processes and procedures related to industrial production.
It will be even more interesting if you could bring us:
- Previous experience in the industrial/metalworking sector in areas such as maintenance, production or planning.
- Proactive approach and leadership skills.
- Excellent analytical, organizational and problem solving skills.