Spaces:
Running
Running
pierreguillou
commited on
Commit
•
0417125
1
Parent(s):
4543f49
Update helpers/rapport_generator.py
Browse files
helpers/rapport_generator.py
CHANGED
@@ -172,7 +172,7 @@ class RapportGenerator:
|
|
172 |
civilite = self._get_safe_value(item, f'CIVILITE_{title.rstrip("S")}', '')
|
173 |
prenom = self._get_safe_value(item, f'PRENOM_{title.rstrip("S")}', '')
|
174 |
nom = self._get_safe_value(item, f'NOM_{title.rstrip("S")}', '')
|
175 |
-
nom_complet = f"{civilite} {prenom} {nom}".strip()
|
176 |
|
177 |
# Ajout du nom
|
178 |
if nom_complet and nom_complet != "Non spécifié":
|
@@ -217,7 +217,7 @@ class RapportGenerator:
|
|
217 |
civilite_avocat = self._get_safe_value(avocat, f'CIVILITE_AVOCAT_{title.rstrip("S")}', '')
|
218 |
prenom_avocat = self._get_safe_value(avocat, f'PRENOM_AVOCAT_{title.rstrip("S")}', '')
|
219 |
nom_avocat = self._get_safe_value(avocat, f'NOM_AVOCAT_{title.rstrip("S")}', '')
|
220 |
-
nom_complet_avocat = f"{civilite_avocat} {prenom_avocat} {nom_avocat}".strip()
|
221 |
|
222 |
if nom_complet_avocat and nom_complet_avocat != "Non spécifié":
|
223 |
p = self.doc.add_paragraph(style='List Bullet')
|
|
|
172 |
civilite = self._get_safe_value(item, f'CIVILITE_{title.rstrip("S")}', '')
|
173 |
prenom = self._get_safe_value(item, f'PRENOM_{title.rstrip("S")}', '')
|
174 |
nom = self._get_safe_value(item, f'NOM_{title.rstrip("S")}', '')
|
175 |
+
nom_complet = f"{civilite} {prenom} {nom}".replace("Non spécifié", "").strip()
|
176 |
|
177 |
# Ajout du nom
|
178 |
if nom_complet and nom_complet != "Non spécifié":
|
|
|
217 |
civilite_avocat = self._get_safe_value(avocat, f'CIVILITE_AVOCAT_{title.rstrip("S")}', '')
|
218 |
prenom_avocat = self._get_safe_value(avocat, f'PRENOM_AVOCAT_{title.rstrip("S")}', '')
|
219 |
nom_avocat = self._get_safe_value(avocat, f'NOM_AVOCAT_{title.rstrip("S")}', '')
|
220 |
+
nom_complet_avocat = f"{civilite_avocat} {prenom_avocat} {nom_avocat}".replace("Non spécifié", "").strip()
|
221 |
|
222 |
if nom_complet_avocat and nom_complet_avocat != "Non spécifié":
|
223 |
p = self.doc.add_paragraph(style='List Bullet')
|