File size: 12,057 Bytes
c8c3cc4
98691d1
fb86b93
 
98691d1
c8c3cc4
 
98691d1
 
 
 
 
 
 
 
c8c3cc4
98691d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fb86b93
98691d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fb86b93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98691d1
 
fb86b93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98691d1
 
fb86b93
 
 
 
 
 
 
 
 
 
 
 
 
98691d1
 
 
 
 
 
 
 
 
fb86b93
 
 
 
 
 
 
 
 
 
 
 
 
 
98691d1
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import streamlit as st
from ISO26000 import classify_actions_rse_ISO26000 as classify_iso26000
from ODD import classify_actions_rse_ODD as classify_odd
from impactscore import classify_actions_rse_IMPACTSCORE as classify_impactscore
from impactscore import classify_actions_rse_IMPACTSCORE as classify_impactscore
from data_manager import get_data

criteria = {}
if "Autres" not in criteria:
    criteria["Autres"] = []

company_info = "Some company info"

criteria["Autres"].append(company_info)

def display_analyse_actions_rse():
    st.markdown("## IA RSE :mag_right:")
    st.markdown("### Classification des actions RSE selon 3 approches :")

    approach = st.radio(
        "Choisissez l'approche de classification :point_down:",
        
        ["Norme ISO 26000", "ODD Objectifs de Développement Durable (en cours de développement)","Impact Score (en cours de développement)"],
        index=0,
        format_func=lambda x: x.split(" :")[0]
    )

    if approach == "Norme ISO 26000":
        # Récupérer les données depuis data_manager.py
        data, total_hits = get_data()

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)

        st.markdown("""
                    :earth_africa: **QU'EST-CE QUE LA NORME ISO 26000 ?**
                    
                    La norme ISO 26000 propose une grille de lecture de la thématique développement durable ultra-pratique pour déployer une politique RSE d'entreprise bien structurée, qui ne laisse rien de côté. Publiée en 2010, cette norme volontaire a été élaborée en concertation avec près de 90 pays à travers le monde, dont la France.
                    
                    **COMMENT EST-ELLE STRUCTURÉE ?**
                    
                    ISO 26000 : Une grille de lecture à 7 entrées
                    
                    - 🏢 La gouvernance de la structure
                    - 👨‍👩‍👧‍👦 Les droits humains
                    - 🤝 Les conditions et relations de travail
                    - 🌱 La responsabilité environnementale
                    - ⚖️ La loyauté des pratiques
                    - 🛍️ Les questions relatives au consommateur et à la protection du consommateur
                    - 🌍 Les communautés et le développement local.
                """)
        st.markdown("""<small>Source AFNOR : <a href="https://www.afnor.org/developpement-durable/demarche-iso-26000/" target="_blank">www.afnor.org/developpement-durable/demarche-iso-26000/</a></small>""", unsafe_allow_html=True)

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)
        st.markdown("### Classification des actions RSE selon ISO 26000")

        pictograms = {
            "Gouvernance de la structure": "🏢",
            "Droits humains": "👨‍👩‍👧‍👦",
            "Conditions et relations de travail": "🤝",
            "Responsabilité environnementale": "🌱",
            "Loyauté des pratiques": "⚖️",
            "Questions relatives au consommateur": "🛍️",
            "Communautés et développement local": "🌍",
            "Autres": "❓"
        }

        criteria_counts = classify_iso26000(data)

        total_actions = 0

        for category, actions in criteria_counts.items():
            if category in pictograms:
                st.subheader(f"{pictograms[category]} {category}")
            else:
                st.subheader(f"{pictograms['Autres']} Autres")
            total_actions += len(actions)
            for action in actions:
                nom_entreprise = action.get('nom_courant_denomination', 'Information non disponible')
                st.write(f"Entreprise : {action.get('name','N/A')}, Action RSE : {action.get('action_rse', 'N/A')}, Activité : {action.get('activity', 'N/A')}, Ville : {action.get('city', 'N/A')}")

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)
        st.markdown(f"**Total des actions RSE :** {total_actions}")

    elif approach == "ODD Objectifs de Développement Durable (en cours de développement)":
         # Récupérer les données depuis data_manager.py
        data, total_hits = get_data()

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)

        st.markdown("""
                    🌳 **QU'EST-CE QUE LES 17 ODD ?**
                    
                    Au cœur de l’Agenda 2030, 17 Objectifs de développement durable (ODD) ont été fixés. Ils couvrent l’intégralité des enjeux de développement dans tous les pays tels que le climat, la biodiversité, l’énergie, l’eau, la pauvreté, l’égalité des genres, la prospérité économique ou encore la paix, l’agriculture, l’éducation, etc.
                    
                    **COMMENT SONT-ILS STRUCTURÉS ?**
                                                
                    - ODD n°1 - Pas de pauvreté
                    - ODD n°2 - Faim « Zéro »
                    - ODD n°3 - Bonne santé et bien-être
                    - ODD n°4 - Éducation de qualité
                    - ODD n°5 - Égalité entre les sexes
                    - ODD n°6 - Eau propre et assainissement
                    - ODD n°7 - Énergie propre et d'un coût abordable
                    - ODD n°8 - Travail décent et croissance économique
                    - ODD n°9 - Industrie, innovation et infrastructure
                    - ODD n°10 - Inégalités réduites
                    - ODD n°11 - Villes et communautés durable
                    - ODD n°12 - Consommation et production responsables
                    - ODD n°13 - Lutte contre les changements climatiques
                    - ODD n°14 - Vie aquatique
                    - ODD n°15 - Vie terrestre
                    - ODD n°16 - Paix, justice et institutions efficaces
                    - ODD n°17 - Partenariats pour la réalisation des objectifs
                    
                    """)
        
     
        st.markdown("""<small>Source AGENDA 2030 EN FRANCE : <a href="https://www.agenda-2030.fr/17-objectifs-de-developpement-durable/?" target="_blank">https://impactscore.fr/comprendre-limpact-score/</a></small>""", unsafe_allow_html=True)

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)
        
        pictograms = {
            "Pas de pauvreté": "🏚️",
            "Faim « Zéro »": "🌾",
            "Bonne santé et bien-être": "🏥",
            "Éducation de qualité": "🎓",
            "Égalité entre les sexes": "⚧️",
            "Eau propre et assainissement": "💧",
            "Énergie propre et d'un coût abordable": "⚡",
            "Travail décent et croissance économique": "👷",
            "Industrie, innovation et infrastructure": "🏭",
            "Inégalités réduites": "⚖️",
            "Villes et communautés durables": "🏙️",
            "Consommation et production responsables": "♻️",
            "Lutte contre les changements climatiques": "🌍",
            "Vie aquatique": "🐟",
            "Vie terrestre": "🌳",
            "Paix, justice et institutions efficaces": "⚖️",
            "Partenariats pour la réalisation des objectifs": "🤝",
            "Autres": "❓"
        }


        criteria_counts = classify_odd(data)

        total_actions = 0

        for category, actions in criteria_counts.items():
            if category in pictograms:
                st.subheader(f"{pictograms[category]} {category}")
            else:
                st.subheader(f"{pictograms['Autres']} Autres")
            total_actions += len(actions)
            for action in actions:
                nom_entreprise = action.get('nom_courant_denomination', 'Information non disponible')
                st.write(f"Entreprise : {action.get('name','N/A')}, Action RSE : {action.get('action_rse', 'N/A')}, Activité : {action.get('activity', 'N/A')}, Ville : {action.get('city', 'N/A')}")

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)
        st.markdown(f"**Total des actions RSE :** {total_actions}")

   ### OBJECTIF DE DEVELOPPEMENT DURABLE ###
    elif approach == "Impact Score (en cours de développement)":
        # Récupérer les données depuis data_manager.py
        data, total_hits = get_data()

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)

        st.markdown("""
                    🌳 **QU'EST-CE QUE L'IMPACT SCORE ?**
                    
                    Ce référentiel commun et unique a été co-construit par 30 réseaux d’entreprises afin de publier en transparence leurs données d’impact, exigence européenne depuis 2024.
                    
                    **COMMENT EST-IL STRUCTURÉE ?**
                    
                    IMPACT SCORE repose sur 3 piliers essentiels : 
                    
                    - 🚫 LIMITATION DES EXTERNALITÉS NÉGATIVES
                    - 💡 PARTAGE DU POUVOIR ET DE LA VALEUR
                    - 🎯 STRATÉGIE À IMPACT
                                    """)
        
     
        st.markdown("""<small>Source MOUVEMENT IMPACT FRANCE : <a href="https://impactscore.fr/comprendre-limpact-score/" target="_blank">https://impactscore.fr/comprendre-limpact-score/</a></small>""", unsafe_allow_html=True)

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)

        pictograms = {
            "Initiatives pour réduire l'empreinte carbone": "🌍",
            "Amélioration des conditions de travail": "👷",
            "Promotion du recyclage": "♻️",
            "Autres": "❓"
        }

        criteria_counts = classify_impactscore(data)
     
        total_actions = 0

        for category, actions in criteria_counts.items():
            if category in pictograms:
                st.subheader(f"{pictograms[category]} {category}")
            else:
                st.subheader(f"{pictograms['Autres']} Autres")
            total_actions += len(actions)
            for action in actions:
                nom_entreprise = action.get('nom_courant_denomination', 'Information non disponible')
                st.write(f"Entreprise : {action.get('name','N/A')}, Action RSE : {action.get('action_rse', 'N/A')}, Activité : {action.get('activity', 'N/A')}, Ville : {action.get('city', 'N/A')}")

        st.markdown("""<hr style='border-color: darkgrey;'>""", unsafe_allow_html=True)
        st.markdown(f"**Total des actions RSE :** {total_actions}")

    if approach == "Norme ISO 26000":
        st.subheader("Synthèse par catégorie ISO 26000")
        synthesis = {category: len(actions) for category, actions in criteria_counts.items()}
        synthesis_sorted = dict(sorted(synthesis.items(), key=lambda item: item[1], reverse=True))
        for category, count in synthesis_sorted.items():
            st.write(f"{category}: {count} action(s) RSE")

    if approach == "ODD Objectifs de Développement Durable (en cours de développement)":
        st.subheader("Synthèse par catégorie ODD")
        synthesis = {category: len(actions) for category, actions in criteria_counts.items()}
        synthesis_sorted = dict(sorted(synthesis.items(), key=lambda item: item[1], reverse=True))
        for category, count in synthesis_sorted.items():
            st.write(f"{category}: {count} action(s) RSE")

    if approach == "Impact Score (en cours de développement)":
        st.subheader("Synthèse par catégorie ODD")
        synthesis = {category: len(actions) for category, actions in criteria_counts.items()}
        synthesis_sorted = dict(sorted(synthesis.items(), key=lambda item: item[1], reverse=True))
        for category, count in synthesis_sorted.items():
            st.write(f"{category}: {count} action(s) RSE")

if __name__ == "__main__":
    display_analyse_actions_rse()