Spaces:
Running
Running
LaurentTRIPIED
commited on
Commit
•
c7aa45a
1
Parent(s):
8e89b5c
v3 04
Browse files- ActionsRSE.py +3 -3
ActionsRSE.py
CHANGED
@@ -8,7 +8,7 @@ def display_actions_rse():
|
|
8 |
|
9 |
if total_hits > 0:
|
10 |
# Correction des clés pour correspondre à celles des données
|
11 |
-
noms_entreprises = sorted({record.get("
|
12 |
secteurs = sorted({record.get("libelle_section_naf") for record in data if record.get("libelle_section_naf")})
|
13 |
|
14 |
# Interface utilisateur pour les filtres
|
@@ -18,7 +18,7 @@ def display_actions_rse():
|
|
18 |
# Filtrage des actions RSE
|
19 |
actions_filtrees = [
|
20 |
record for record in data
|
21 |
-
if (record.get("
|
22 |
and (record.get("libelle_section_naf") in secteurs_selectionnes or not secteurs_selectionnes)
|
23 |
]
|
24 |
|
@@ -26,7 +26,7 @@ def display_actions_rse():
|
|
26 |
if actions_filtrees:
|
27 |
for action in actions_filtrees:
|
28 |
# Assurez-vous que les clés utilisées ici sont correctes
|
29 |
-
st.write(f"Entreprise: {action.get('
|
30 |
else:
|
31 |
st.write("Aucune action RSE correspondante trouvée.")
|
32 |
else:
|
|
|
8 |
|
9 |
if total_hits > 0:
|
10 |
# Correction des clés pour correspondre à celles des données
|
11 |
+
noms_entreprises = sorted({record.get("nom_courant_denomination") for record in data if record.get("nom_courant_denomination")})
|
12 |
secteurs = sorted({record.get("libelle_section_naf") for record in data if record.get("libelle_section_naf")})
|
13 |
|
14 |
# Interface utilisateur pour les filtres
|
|
|
18 |
# Filtrage des actions RSE
|
19 |
actions_filtrees = [
|
20 |
record for record in data
|
21 |
+
if (record.get("nom_courant_denomination") in entreprises_selectionnees or not entreprises_selectionnees)
|
22 |
and (record.get("libelle_section_naf") in secteurs_selectionnes or not secteurs_selectionnes)
|
23 |
]
|
24 |
|
|
|
26 |
if actions_filtrees:
|
27 |
for action in actions_filtrees:
|
28 |
# Assurez-vous que les clés utilisées ici sont correctes
|
29 |
+
st.write(f"Entreprise: {action.get('nom_courant_denomination')}, Action: {action.get('action_rse')}")
|
30 |
else:
|
31 |
st.write("Aucune action RSE correspondante trouvée.")
|
32 |
else:
|