Skip to content
Snippets Groups Projects
Commit 04d1fbe2 authored by Emmanuel Viennet's avatar Emmanuel Viennet
Browse files

col etudid in formsemestre_poursuite_report. Fix #849

parent c270c24c
No related branches found
No related tags found
No related merge requests found
......@@ -197,13 +197,15 @@ def formsemestre_poursuite_report(formsemestre_id, fmt="html"):
info = etud_get_poursuite_info(sem, etud)
idd = _flatten_info(info)
# On recupere la totalite des UEs dans ids
for id in idd:
if id not in ids:
ids += [id]
for key in idd:
if key not in ids:
ids += [key]
info["etudid"] = etud["etudid"]
infos.append(info)
#
column_ids = (
("civilite_str", "nom", "prenom", "annee", "date_naissance")
(("etudid",) if fmt.startswith("xls") else ())
+ ("civilite_str", "nom", "prenom", "annee", "date_naissance")
+ tuple(ids)
+ ("debouche",)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment