forked from ScoDoc/ScoDoc
Fix: Affichage moyenne promo par évaluation sur bulletin
This commit is contained in:
parent
2b5a470516
commit
6af4c6a2fd
@ -544,8 +544,7 @@ class BulletinGeneratorStandard(sco_bulletins_generator.BulletinGenerator):
|
|||||||
rowstyle="",
|
rowstyle="",
|
||||||
hidden=False,
|
hidden=False,
|
||||||
):
|
):
|
||||||
"""Liste dans la table les descriptions des modules et, si version != short, des évaluations.
|
"""Liste dans la table les descriptions des modules et, si version != short, des évaluations."""
|
||||||
"""
|
|
||||||
if ue_type == "cur": # UE courante non prise en compte (car capitalisee)
|
if ue_type == "cur": # UE courante non prise en compte (car capitalisee)
|
||||||
pdf_style_bg = [("BACKGROUND", (0, 0), (-1, 0), self.PDF_UE_CUR_BG)]
|
pdf_style_bg = [("BACKGROUND", (0, 0), (-1, 0), self.PDF_UE_CUR_BG)]
|
||||||
else:
|
else:
|
||||||
@ -666,6 +665,8 @@ class BulletinGeneratorStandard(sco_bulletins_generator.BulletinGenerator):
|
|||||||
)
|
)
|
||||||
t["min"] = fmt_note(etat["mini"])
|
t["min"] = fmt_note(etat["mini"])
|
||||||
t["max"] = fmt_note(etat["maxi"])
|
t["max"] = fmt_note(etat["maxi"])
|
||||||
|
if prefs["bul_show_moypromo"]:
|
||||||
|
t["moy"] = fmt_note(etat["moy"])
|
||||||
P.append(t)
|
P.append(t)
|
||||||
nbeval += 1
|
nbeval += 1
|
||||||
return nbeval
|
return nbeval
|
||||||
|
Loading…
Reference in New Issue
Block a user