Tutte le funzionalità di Sella Leasing Web

Sella Leasing Web è una soluzione che ti permette di gestire in modo semplice e veloce i tuoi contratti di leasing. Attraverso questa piattaforma, puoi monitorare le scadenze dei pagamenti, visualizzare i dettagli dei contratti, ottenere informazioni sui canoni, fornire l’accesso ai tuoi collaboratori e molto altro ancora.

Grazie a questi brevi video tutorial scoprirai nel dettaglio tutte le funzionalità e potrai iniziare a gestire i tuoi contratti in autonomia e senza difficoltà.

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> portletDisplay.getPortletSetup  [in template "20099#20135#4561989" at line 8, 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: preferences = portletDisplay.getPortl...  [in template "20099#20135#4561989" at line 8, column 9]
----
1<#if entries?has_content>  
2 
3<div class="product-carousel container-widget"> 
4         
5    <#assign portlet_title = htmlUtil.escape(portletDisplay.getTitle()) /> 
6 
7    <#assign  
8        preferences = portletDisplay.getPortletSetup()  
9        useCustomTitle = "portletSetupUseCustomTitle" 
10        anchor = preferences.getValue('customAnchorTitle','') 
11    /> 
12 
13    <#if anchor != ""> 
14    <a class="nav-anchor" id="${anchor}" name="${anchor}"></a> 
15    </#if> 
16 
17    <#if preferences.getValue(useCustomTitle,"") == "true"> 
18        <#assign customTitle = preferences.getValue("portletSetupTitle_" + themeDisplay.getLanguageId(),"") /> 
19        <#if customTitle == ""> 
20            <#assign customTitle=preferences.getValue("portletSetupTitle_it_IT","") /> 
21        </#if> 
22    <#else> 
23        <#assign customTitle = ""/> 
24    </#if> 
25 
26    <#if customTitle != ""> 
27        <div class="content-container container-fluid"> 
28            <h3 class="text-intro"> 
29                ${customTitle} 
30            </h3> 
31        </div> 
32    </#if> 
33 
34    <div class="content-container container-fluid"> 
35        <div class="row"> 
36 
37            <#list entries as curEntry>  
38                <div class="col-sm-6 col-md-4 col-lg-3"> 
39                 
40                <@liferay_asset["asset-display"] 
41                className=curEntry.className 
42                classPK=getterUtil.getLong(curEntry.classPK, 0) 
43                template="full_content" 
44                /> 
45 
46                </div> 
47 
48            </#list> 
49 
50        </div> 
51    </div> 
52</div> 
53 
54</#if>