Skip to content
Extraits de code Groupes Projets
Valider 0f78f102 rédigé par Benjamin - Le Filament's avatar Benjamin - Le Filament
Parcourir les fichiers

Merge branch '14-RV-20230727' into '14.0'

Corrections et ajouts suite demande Martin

See merge request !7
parents c0fc2122 839f021c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
1 requête de fusion!7Corrections et ajouts suite demande Martin
......@@ -229,6 +229,12 @@ class CgScopGendocFileServices(Component):
"coop_montant_rbst_ps_anterieur": self._getdecimal(
gfile.coop_montant_rbst_ps_anterieur
),
"coop_date_creation_anterieur": self._getdate(
gfile.coop_date_creation_anterieur
),
"organe_decision_anterieur": self._getstring(
gfile.organe_decision_anterieur
),
}
)
res["membres_anterieurs_pp"] = self._getmembrepp(gfile.membrepp_ids)
......@@ -264,6 +270,7 @@ class CgScopGendocFileServices(Component):
"nb_parts": self._getinteger(membre.membrepp_nb_parts),
"mail": self._getstring(membre.membrepp_mail),
"mobile": self._getstring(membre.membrepp_mobile),
"fonction": self._getstring(membre.membrepp_fonction),
}
)
return res
......@@ -291,6 +298,7 @@ class CgScopGendocFileServices(Component):
),
"mail": self._getstring(membre.membrepm_mail),
"mobile": self._getstring(membre.membrepm_mobile),
"fonction": self._getstring(membre.membrepp_fonction),
}
)
return res
......@@ -390,6 +398,8 @@ class CgScopGendocFileServices(Component):
"duree": self._getinteger(mand.mand_duree),
"identite_pere": self._getstring(mand.mand_identite_pere),
"identite_mere": self._getstring(mand.mand_identite_mere),
"categorie": self._getstring(mand.mand_categorie),
"college": self._getstring(mand.mand_college),
}
)
return res
......@@ -421,6 +431,8 @@ class CgScopGendocFileServices(Component):
"repr_identite_mere": self._getstring(
mand.mand_repr_identite_mere
),
"categorie": self._getstring(mand.mand_categorie),
"college": self._getstring(mand.mand_college),
}
)
return res
......@@ -455,6 +467,8 @@ class CgScopGendocFileServices(Component):
"repr_identite_mere": self._getstring(
mand.mand_repr_identite_mere
),
"categorie": self._getstring(mand.mand_categorie),
"college": self._getstring(mand.mand_college),
}
)
return res
......@@ -486,6 +500,8 @@ class CgScopGendocFileServices(Component):
"repr_identite_mere": self._getstring(
mand.mand_repr_identite_mere
),
"categorie": self._getstring(mand.mand_categorie),
"college": self._getstring(mand.mand_college),
}
)
return res
......@@ -511,6 +527,8 @@ class CgScopGendocFileServices(Component):
"repr_nationalite": self._getstring(oi.oi_repr_nationalite),
"repr_identite_pere": self._getstring(oi.oi_repr_identite_pere),
"repr_identite_mere": self._getstring(oi.oi_repr_identite_mere),
"categorie": self._getstring(oi.oi_categorie),
"college": self._getstring(oi.oi_college),
}
)
return res
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter