Download
INTEGRATED REPORT
The Integrated Report is a new approach to corporate reporting that integrates financial and economic information from the financial statements, the strategic outlook, and social and environmental performance into a single document.
It is a clear, comprehensive, concise and comparable tool that addresses all stakeholders and provides a holistic view of the company's ability to create value in the short, medium and long term in a sustainable and responsible manner.
By choosing the Integrated Report, Coopservice intends to:
- Witness its commitment to sustainability, a key factor in its strategic vision;
- Demonstrate the value of corporate social responsibility;
- Improve communication and involvement of all stakeholders;
- Describe the deep relationship between financial and non-financial indicators and the ability to create value over time;
- Consolidate trust.
The Integrated Report 2022 complies with the "Global Reporting Initiative Sustainability Reporting Standards" defined by the GRI - Global Reporting Initiative as attested by the Limited Assurance issued by the auditing firm Deloitte & Touche.
In parallel with the drafting of the GRI version, the preparation of the Integrated Report 2022 was started based on the new European Sustainability Reporting Standards (ESRS), published in draft in November 2022 and then later in final version on July 31, 2023.
The European Sustainability Reporting Standards (ESRS) are the standards that companies subject to the Corporate Sustainability Reporting Directive (CSRD) will be obliged to use to report their sustainability disclosures, with the specific aim of addressing and "measuring" environmental, social and governance issues, as well as more appropriately assessing measures and actions to combat climate change, protect biodiversity and ensure respect for human rights.
Coopservice has embarked on this path voluntarily and in advance (with respect to the deadline defined by the European Commission, which for Coopservice corresponds to the financial year 2025) with the aim of understanding how the new CSRD requirements affect the corporate sustainability reporting process and implementing in time all the necessary actions to collect data and information on performance, useful for the creation of the report according to the new standards.
The result is a document that combines the concepts of conciseness, clarity and connectivity of information, characteristic of Integrated Reporting, with the completeness and analytical function of ESRS standards to present stakeholders with a fair and transparent representation of Coopservice's performance, its commitment to sustainability and its ability to create value over time.
The Integrated Report 2022 can be downloaded in the GRI version (with Limited Assurance) and the ESRS version.
COMPANY PROFILE
Coopservice Group Corporate Profile - Updated January 2024
The brochure presents the corporate structure and data on the latest approved financial statements, service offerings, and elements of excellence in the Coopservice identity.
The following has evaluated to null or missing: ==> fileFormat [in template "20101#20128#41986" at line 100, column 49] ---- Tip: If the failing expression is known to be 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: ${fileFormat} [in template "20101#20128#41986" at line 100, column 47] ----
1<#assign dlFileEntry = serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")>
2
3<#if NomeAllegato?? && NomeAllegato.getSiblings()?has_content>
4 <div class="attachment-container container">
5 <#if Titolo.getData() != "">
6 <h3 class="title">${Titolo.getData()}</h3>
7 </#if>
8
9 <#list NomeAllegato.getSiblings() as attachment>
10 <#if attachment.getData() != "">
11
12 <#list attachment.Allegato.getData()?split("/") as x>
13 <#if x?counter ==3>
14 <#assign groupId = x?number>
15 </#if>
16
17 <#if x?counter ==6>
18 <#assign uuId = x?keep_before("?")>
19 </#if>
20 </#list>
21
22 <#if (uuId??) && (groupId??)>
23 <#assign file = dlFileEntry.getFileEntryByUuidAndGroupId(uuId,groupId) >
24 <#assign fileSizeBig = file.getSize() / 1000000 >
25 <#list fileSizeBig?split(".") as x >
26 <#if x?index == 0>
27 <#assign fileSize1 = x + '.' >
28 <#else>
29 <#assign fileSize2 = x?substring(0, 2)>
30 </#if>
31 </#list>
32 <#assign fileSize = fileSize1 + fileSize2 >
33 <#assign originalFileFormat = file.getExtension() >
34
35 <#switch originalFileFormat>
36 <#case "pptx">
37 <#case "ppt">
38 <#assign fileFormat = 'ppt'>
39 <#break>
40 <#case "doc">
41 <#case "docx">
42 <#case "txt">
43 <#case "rtf">
44 <#assign fileFormat = 'doc'>
45 <#break>
46 <#case "xlsx">
47 <#case "xls">
48 <#assign fileFormat = 'xls'>
49 <#break>
50 <#case "pptx">
51 <#case "ppt">
52 <#assign fileFormat = 'ppt'>
53 <#break>
54 <#case "jpg">
55 <#case "jpeg">
56 <#case "tif">
57 <#case "tiff">
58 <#case "png">
59 <#case "gif">
60 <#case "bmp">
61 <#assign fileFormat = 'img'>
62 <#break>
63 <#case "mp4">
64 <#case "mpg">
65 <#case "mpeg">
66 <#case "mov">
67 <#case "ogg">
68 <#case "ogv">
69 <#assign fileFormat = 'video'>
70 <#break>
71 <#case "mp3">
72 <#case "aac">
73 <#case "wav">
74 <#case "aif">
75 <#assign fileFormat = 'audio'>
76 <#break>
77 <#case "pdf">
78 <#assign fileFormat = 'pdf'>
79 <#break>
80 <#case "zip">
81 <#case "rar">
82 <#case "gzip">
83 <#case "7zip">
84 <#assign fileFormat = 'zip'>
85 <#break>
86 <#default>
87 <#assign fileFormat = 'code'>
88 </#switch>
89
90 <#if fileFormat == 'pptx'>
91 <#assign fileFormat = 'ppt'>
92 </#if>
93
94 <#if fileFormat == 'docx'>
95 <#assign fileFormat = 'doc'>
96 </#if>
97 </#if>
98
99 <a class="single-attachment" href="${attachment.Allegato.getData()}">
100 <div class="file-icon icn-${fileFormat}"></div>
101 <div class="name">${attachment.getData()}</div>
102 <div class="format">${originalFileFormat}</div>
103 <div class="size">${fileSize} Mb</div>
104 </a>
105
106 </#if>
107 </#list>
108 </div>
109</#if>
CLEANING SERVICES
Coopservice works every day to provide its customers with an excellent and professional cleaning, hygiene and sanitisation service in the industrial, civil and health sectors.
LOGISTICS SERVICES
Coopservice has developed a wide-ranging and integrated offer of specialised logistics services to meet the needs of companies wishing to outsource the transport, management and handling of goods. We operate in the following sectors: industrial and textile, laundry and hospital, mmovings and handling, healthcare logistics, special waste transport, archives and works of art.