2021-12-24 00:08:25 +01:00
|
|
|
##############################################################################
|
|
|
|
# ScoDoc
|
2022-01-01 14:51:28 +01:00
|
|
|
# Copyright (c) 1999 - 2022 Emmanuel Viennet. All rights reserved.
|
2021-12-24 00:08:25 +01:00
|
|
|
# See LICENSE
|
|
|
|
##############################################################################
|
|
|
|
|
2022-02-13 23:53:11 +01:00
|
|
|
from collections import Counter
|
2021-12-24 00:08:25 +01:00
|
|
|
from functools import cached_property
|
|
|
|
import numpy as np
|
|
|
|
import pandas as pd
|
2022-02-07 16:32:04 +01:00
|
|
|
|
2022-03-27 22:25:00 +02:00
|
|
|
from flask import g, url_for
|
2022-02-27 20:12:20 +01:00
|
|
|
|
2022-02-06 16:09:17 +01:00
|
|
|
from app.comp.res_cache import ResultatsCache
|
|
|
|
from app.comp import res_sem
|
2022-01-07 10:37:48 +01:00
|
|
|
from app.comp.moy_mod import ModuleImplResults
|
2022-02-27 20:12:20 +01:00
|
|
|
from app.models import FormSemestre, FormSemestreUECoef
|
|
|
|
from app.models import Identite
|
|
|
|
from app.models import ModuleImpl, ModuleImplInscription
|
2022-01-08 19:56:09 +01:00
|
|
|
from app.models.ues import UniteEns
|
2021-12-24 00:08:25 +01:00
|
|
|
from app.scodoc.sco_cache import ResultatsSemestreCache
|
2022-03-27 22:25:00 +02:00
|
|
|
from app.scodoc.sco_codes_parcours import UE_SPORT, DEF, DEM
|
2022-02-27 20:12:20 +01:00
|
|
|
from app.scodoc.sco_exceptions import ScoValueError
|
2022-03-27 22:25:00 +02:00
|
|
|
from app.scodoc import sco_groups
|
|
|
|
from app.scodoc import sco_users
|
|
|
|
from app.scodoc import sco_utils as scu
|
|
|
|
|
2021-12-24 00:08:25 +01:00
|
|
|
|
|
|
|
# Il faut bien distinguer
|
|
|
|
# - ce qui est caché de façon persistente (via redis):
|
|
|
|
# ce sont les attributs listés dans `_cached_attrs`
|
|
|
|
# le stockage et l'invalidation sont gérés dans sco_cache.py
|
|
|
|
#
|
|
|
|
# - les valeurs cachées durant le temps d'une requête
|
|
|
|
# (durée de vie de l'instance de ResultatsSemestre)
|
|
|
|
# qui sont notamment les attributs décorés par `@cached_property``
|
|
|
|
#
|
2022-02-06 16:09:17 +01:00
|
|
|
class ResultatsSemestre(ResultatsCache):
|
2022-03-27 22:25:00 +02:00
|
|
|
"""Les résultats (notes, ...) d'un formsemestre
|
|
|
|
Classe commune à toutes les formations (classiques, BUT)
|
|
|
|
"""
|
|
|
|
|
2021-12-24 00:08:25 +01:00
|
|
|
_cached_attrs = (
|
2021-12-30 23:58:38 +01:00
|
|
|
"etud_moy_gen_ranks",
|
|
|
|
"etud_moy_gen",
|
2021-12-24 00:08:25 +01:00
|
|
|
"etud_moy_ue",
|
2021-12-30 23:58:38 +01:00
|
|
|
"modimpl_inscr_df",
|
2021-12-26 19:15:47 +01:00
|
|
|
"modimpls_results",
|
2022-01-16 23:47:52 +01:00
|
|
|
"etud_coef_ue_df",
|
2022-02-21 17:36:50 +01:00
|
|
|
"moyennes_matieres",
|
2021-12-24 00:08:25 +01:00
|
|
|
)
|
|
|
|
|
2021-12-30 23:58:38 +01:00
|
|
|
def __init__(self, formsemestre: FormSemestre):
|
2022-02-06 16:09:17 +01:00
|
|
|
super().__init__(formsemestre, ResultatsSemestreCache)
|
2021-12-26 19:15:47 +01:00
|
|
|
# BUT ou standard ? (apc == "approche par compétences")
|
|
|
|
self.is_apc = formsemestre.formation.is_apc()
|
2022-01-07 10:37:48 +01:00
|
|
|
# Attributs "virtuels", définis dans les sous-classes
|
2022-01-08 19:56:09 +01:00
|
|
|
# ResultatsSemestreBUT ou ResultatsSemestreClassic
|
2021-12-26 19:15:47 +01:00
|
|
|
self.etud_moy_ue = {}
|
2022-01-08 19:56:09 +01:00
|
|
|
"etud_moy_ue: DataFrame columns UE, rows etudid"
|
2022-03-27 22:25:00 +02:00
|
|
|
self.etud_moy_gen: pd.Series = None
|
2021-12-26 19:15:47 +01:00
|
|
|
self.etud_moy_gen_ranks = {}
|
2022-02-13 13:58:09 +01:00
|
|
|
self.etud_moy_gen_ranks_int = {}
|
2022-03-27 22:25:00 +02:00
|
|
|
self.modimpl_inscr_df: pd.DataFrame = None
|
|
|
|
"Inscriptions: row etudid, col modimlpl_id"
|
2022-01-07 10:37:48 +01:00
|
|
|
self.modimpls_results: ModuleImplResults = None
|
2022-02-06 16:09:17 +01:00
|
|
|
"Résultats de chaque modimpl: dict { modimpl.id : ModuleImplResults(Classique ou BUT) }"
|
2022-01-16 23:47:52 +01:00
|
|
|
self.etud_coef_ue_df = None
|
2022-02-06 16:09:17 +01:00
|
|
|
"""coefs d'UE effectifs pour chaque étudiant (pour form. classiques)"""
|
2022-03-27 22:25:00 +02:00
|
|
|
self.modimpl_coefs_df: pd.DataFrame = None
|
|
|
|
"""Coefs APC: rows = UEs (sans bonus), columns = modimpl, value = coef."""
|
|
|
|
|
2022-02-07 16:32:04 +01:00
|
|
|
self.validations = None
|
2022-02-21 17:36:50 +01:00
|
|
|
self.moyennes_matieres = {}
|
|
|
|
"""Moyennes de matières, si calculées. { matiere_id : Series, index etudid }"""
|
2021-12-24 00:08:25 +01:00
|
|
|
|
2022-03-15 21:50:37 +01:00
|
|
|
def __repr__(self):
|
2022-03-21 19:41:14 +01:00
|
|
|
return f"<{self.__class__.__name__}(formsemestre='{self.formsemestre}')>"
|
2022-03-15 21:50:37 +01:00
|
|
|
|
2021-12-24 00:08:25 +01:00
|
|
|
def compute(self):
|
|
|
|
"Charge les notes et inscriptions et calcule toutes les moyennes"
|
|
|
|
# voir ce qui est chargé / calculé ici et dans les sous-classes
|
2021-12-26 19:15:47 +01:00
|
|
|
raise NotImplementedError()
|
2021-12-24 00:08:25 +01:00
|
|
|
|
2022-01-16 23:47:52 +01:00
|
|
|
def get_inscriptions_counts(self) -> Counter:
|
|
|
|
"""Nombre d'inscrits, défaillants, démissionnaires.
|
|
|
|
|
|
|
|
Exemple: res.get_inscriptions_counts()[scu.INSCRIT]
|
|
|
|
|
|
|
|
Result: a collections.Counter instance
|
|
|
|
"""
|
|
|
|
return Counter(ins.etat for ins in self.formsemestre.inscriptions)
|
|
|
|
|
2021-12-24 00:08:25 +01:00
|
|
|
@cached_property
|
2022-01-16 23:47:52 +01:00
|
|
|
def etuds(self) -> list[Identite]:
|
|
|
|
"Liste des inscrits au semestre, avec les démissionnaires et les défaillants"
|
2021-12-30 23:58:38 +01:00
|
|
|
# nb: si la liste des inscrits change, ResultatsSemestre devient invalide
|
2022-01-16 23:47:52 +01:00
|
|
|
return self.formsemestre.get_inscrits(include_demdef=True)
|
2021-12-24 00:08:25 +01:00
|
|
|
|
|
|
|
@cached_property
|
2022-01-16 23:47:52 +01:00
|
|
|
def etud_index(self) -> dict[int, int]:
|
2021-12-24 00:08:25 +01:00
|
|
|
"dict { etudid : indice dans les inscrits }"
|
|
|
|
return {e.id: idx for idx, e in enumerate(self.etuds)}
|
|
|
|
|
2022-01-09 21:02:07 +01:00
|
|
|
@cached_property
|
2022-01-16 23:47:52 +01:00
|
|
|
def etuds_dict(self) -> dict[int, Identite]:
|
|
|
|
"""dict { etudid : Identite } inscrits au semestre,
|
|
|
|
avec les démissionnaires et defs."""
|
2022-01-09 21:02:07 +01:00
|
|
|
return {etud.id: etud for etud in self.etuds}
|
|
|
|
|
2021-12-24 00:08:25 +01:00
|
|
|
@cached_property
|
2022-01-16 23:47:52 +01:00
|
|
|
def ues(self) -> list[UniteEns]:
|
2022-01-25 10:45:13 +01:00
|
|
|
"""Liste des UEs du semestre (avec les UE bonus sport)
|
2022-02-06 16:09:17 +01:00
|
|
|
(indices des DataFrames).
|
|
|
|
Note: un étudiant n'est pas nécessairement inscrit dans toutes ces UEs.
|
2022-01-09 21:02:07 +01:00
|
|
|
"""
|
|
|
|
return self.formsemestre.query_ues(with_sport=True).all()
|
2021-12-24 00:08:25 +01:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def ressources(self):
|
|
|
|
"Liste des ressources du semestre, triées par numéro de module"
|
|
|
|
return [
|
2022-01-25 10:45:13 +01:00
|
|
|
m
|
|
|
|
for m in self.formsemestre.modimpls_sorted
|
|
|
|
if m.module.module_type == scu.ModuleType.RESSOURCE
|
2021-12-24 00:08:25 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def saes(self):
|
|
|
|
"Liste des SAÉs du semestre, triées par numéro de module"
|
2022-01-25 10:45:13 +01:00
|
|
|
return [
|
|
|
|
m
|
|
|
|
for m in self.formsemestre.modimpls_sorted
|
|
|
|
if m.module.module_type == scu.ModuleType.SAE
|
|
|
|
]
|
2021-12-24 00:08:25 +01:00
|
|
|
|
2022-02-06 16:09:17 +01:00
|
|
|
def get_etud_ue_validables(self, etudid: int) -> list[UniteEns]:
|
|
|
|
"""Liste des UEs du semestre qui doivent être validées
|
|
|
|
|
|
|
|
Rappel: l'étudiant est inscrit à des modimpls et non à des UEs.
|
|
|
|
|
|
|
|
- En BUT: on considère que l'étudiant va (ou non) valider toutes les UEs des modules
|
|
|
|
du parcours. XXX notion à implémenter, pour l'instant toutes les UE du semestre.
|
|
|
|
|
2022-03-22 08:58:47 +01:00
|
|
|
- En classique: toutes les UEs des modimpls auxquels l'étudiant est inscrit sont
|
2022-02-06 16:09:17 +01:00
|
|
|
susceptibles d'être validées.
|
|
|
|
|
|
|
|
Les UE "bonus" (sport) ne sont jamais "validables".
|
2022-01-08 19:56:09 +01:00
|
|
|
"""
|
2022-02-06 16:09:17 +01:00
|
|
|
if self.is_apc:
|
|
|
|
# TODO: introduire la notion de parcours (#sco93)
|
|
|
|
return self.formsemestre.query_ues().filter(UniteEns.type != UE_SPORT).all()
|
|
|
|
else:
|
|
|
|
# restreint aux UE auxquelles l'étudiant est inscrit (dans l'un des modimpls)
|
|
|
|
ues = {
|
|
|
|
modimpl.module.ue
|
|
|
|
for modimpl in self.formsemestre.modimpls_sorted
|
|
|
|
if self.modimpl_inscr_df[modimpl.id][etudid]
|
|
|
|
}
|
|
|
|
ues = sorted(list(ues), key=lambda x: x.numero or 0)
|
|
|
|
return ues
|
2022-01-08 19:56:09 +01:00
|
|
|
|
2022-03-27 22:25:00 +02:00
|
|
|
def modimpls_in_ue(self, ue_id, etudid, with_bonus=True) -> list[ModuleImpl]:
|
2022-03-12 09:38:48 +01:00
|
|
|
"""Liste des modimpl de cette UE auxquels l'étudiant est inscrit.
|
|
|
|
Utile en formations classiques, surchargée pour le BUT.
|
2022-03-27 22:25:00 +02:00
|
|
|
Inclus modules bonus le cas échéant.
|
2022-03-12 09:38:48 +01:00
|
|
|
"""
|
2022-01-29 23:36:07 +01:00
|
|
|
# sert pour l'affichage ou non de l'UE sur le bulletin
|
2022-03-27 22:25:00 +02:00
|
|
|
# Méthode surchargée en BUT
|
|
|
|
modimpls = [
|
2022-01-29 23:36:07 +01:00
|
|
|
modimpl
|
|
|
|
for modimpl in self.formsemestre.modimpls_sorted
|
|
|
|
if modimpl.module.ue.id == ue_id
|
|
|
|
and self.modimpl_inscr_df[modimpl.id][etudid]
|
|
|
|
]
|
2022-03-27 22:25:00 +02:00
|
|
|
if not with_bonus:
|
|
|
|
return [
|
|
|
|
modimpl for modimpl in modimpls if modimpl.module.ue.type != UE_SPORT
|
|
|
|
]
|
|
|
|
return modimpls
|
2022-01-29 23:36:07 +01:00
|
|
|
|
2022-01-08 19:56:09 +01:00
|
|
|
@cached_property
|
|
|
|
def ue_au_dessus(self, seuil=10.0) -> pd.DataFrame:
|
|
|
|
"""DataFrame columns UE, rows etudid, valeurs: bool
|
|
|
|
Par exemple, pour avoir le nombre d'UE au dessus de 10 pour l'étudiant etudid
|
|
|
|
nb_ues_ok = sum(res.ue_au_dessus().loc[etudid])
|
|
|
|
"""
|
|
|
|
return self.etud_moy_ue > (seuil - scu.NOTES_TOLERANCE)
|
|
|
|
|
2022-02-07 16:32:04 +01:00
|
|
|
def apply_capitalisation(self):
|
|
|
|
"""Recalcule la moyenne générale pour prendre en compte d'éventuelles
|
|
|
|
UE capitalisées.
|
|
|
|
"""
|
|
|
|
# Supposant qu'il y a peu d'UE capitalisées,
|
|
|
|
# on va soustraire la moyenne d'UE et ajouter celle de l'UE capitalisée.
|
|
|
|
if not self.validations:
|
|
|
|
self.validations = res_sem.load_formsemestre_validations(self.formsemestre)
|
|
|
|
ue_capitalisees = self.validations.ue_capitalisees
|
|
|
|
for etudid in ue_capitalisees.index:
|
|
|
|
recompute_mg = False
|
|
|
|
# ue_codes = set(ue_capitalisees.loc[etudid]["ue_code"])
|
|
|
|
# for ue_code in ue_codes:
|
|
|
|
# ue = ue_by_code.get(ue_code)
|
|
|
|
# if ue is None:
|
|
|
|
# ue = self.formsemestre.query_ues.filter_by(ue_code=ue_code)
|
|
|
|
# ue_by_code[ue_code] = ue
|
|
|
|
|
|
|
|
# Quand il y a une capitalisation, vérifie toutes les UEs
|
|
|
|
sum_notes_ue = 0.0
|
|
|
|
sum_coefs_ue = 0.0
|
|
|
|
for ue in self.formsemestre.query_ues():
|
|
|
|
ue_cap = self.get_etud_ue_status(etudid, ue.id)
|
2022-02-21 15:10:10 +01:00
|
|
|
if ue_cap is None:
|
|
|
|
continue
|
|
|
|
if ue_cap["is_capitalized"]:
|
2022-02-07 16:32:04 +01:00
|
|
|
recompute_mg = True
|
|
|
|
coef = ue_cap["coef_ue"]
|
2022-02-28 15:07:48 +01:00
|
|
|
if not np.isnan(ue_cap["moy"]) and coef:
|
2022-02-07 16:32:04 +01:00
|
|
|
sum_notes_ue += ue_cap["moy"] * coef
|
|
|
|
sum_coefs_ue += coef
|
|
|
|
|
|
|
|
if recompute_mg and sum_coefs_ue > 0.0:
|
|
|
|
# On doit prendre en compte une ou plusieurs UE capitalisées
|
|
|
|
# et donc recalculer la moyenne générale
|
|
|
|
self.etud_moy_gen[etudid] = sum_notes_ue / sum_coefs_ue
|
2022-02-21 15:10:10 +01:00
|
|
|
# Ajoute le bonus sport
|
|
|
|
if self.bonus is not None and self.bonus[etudid]:
|
|
|
|
self.etud_moy_gen[etudid] += self.bonus[etudid]
|
|
|
|
self.etud_moy_gen[etudid] = max(
|
|
|
|
0.0, min(self.etud_moy_gen[etudid], 20.0)
|
|
|
|
)
|
2022-02-07 16:32:04 +01:00
|
|
|
|
2022-02-27 20:12:20 +01:00
|
|
|
def _get_etud_ue_cap(self, etudid: int, ue: UniteEns) -> dict:
|
|
|
|
"""Donne les informations sur la capitalisation de l'UE ue pour cet étudiant.
|
|
|
|
Résultat:
|
|
|
|
Si pas capitalisée: None
|
|
|
|
Si capitalisée: un dict, avec les colonnes de validation.
|
|
|
|
"""
|
2022-02-07 16:32:04 +01:00
|
|
|
capitalisations = self.validations.ue_capitalisees.loc[etudid]
|
|
|
|
if isinstance(capitalisations, pd.DataFrame):
|
|
|
|
ue_cap = capitalisations[capitalisations["ue_code"] == ue.ue_code]
|
2022-02-27 20:12:20 +01:00
|
|
|
if ue_cap.empty:
|
|
|
|
return None
|
|
|
|
if isinstance(ue_cap, pd.DataFrame):
|
2022-02-07 16:32:04 +01:00
|
|
|
# si plusieurs fois capitalisée, prend le max
|
|
|
|
cap_idx = ue_cap["moy_ue"].values.argmax()
|
|
|
|
ue_cap = ue_cap.iloc[cap_idx]
|
|
|
|
else:
|
|
|
|
if capitalisations["ue_code"] == ue.ue_code:
|
|
|
|
ue_cap = capitalisations
|
|
|
|
else:
|
2022-02-27 20:12:20 +01:00
|
|
|
return None
|
|
|
|
# converti la Series en dict, afin que les np.int64 reviennent en int
|
|
|
|
return ue_cap.to_dict()
|
2022-02-07 16:32:04 +01:00
|
|
|
|
|
|
|
def get_etud_ue_status(self, etudid: int, ue_id: int) -> dict:
|
|
|
|
"""L'état de l'UE pour cet étudiant.
|
2022-02-11 23:12:40 +01:00
|
|
|
Result: dict, ou None si l'UE n'est pas dans ce semestre.
|
2022-02-07 16:32:04 +01:00
|
|
|
"""
|
|
|
|
ue = UniteEns.query.get(ue_id) # TODO cacher nos UEs ?
|
2022-02-09 00:36:50 +01:00
|
|
|
if ue.type == UE_SPORT:
|
|
|
|
return {
|
|
|
|
"is_capitalized": False,
|
2022-02-13 15:50:16 +01:00
|
|
|
"was_capitalized": False,
|
2022-02-09 00:36:50 +01:00
|
|
|
"is_external": False,
|
|
|
|
"coef_ue": 0.0,
|
|
|
|
"cur_moy_ue": 0.0,
|
|
|
|
"moy": 0.0,
|
|
|
|
"event_date": None,
|
|
|
|
"ue": ue.to_dict(),
|
|
|
|
"formsemestre_id": None,
|
|
|
|
"capitalized_ue_id": None,
|
2022-02-09 18:43:03 +01:00
|
|
|
"ects_pot": 0.0,
|
2022-02-09 00:36:50 +01:00
|
|
|
}
|
2022-02-12 10:31:52 +01:00
|
|
|
if not ue_id in self.etud_moy_ue:
|
|
|
|
return None
|
|
|
|
if not self.validations:
|
|
|
|
self.validations = res_sem.load_formsemestre_validations(self.formsemestre)
|
2022-02-07 16:32:04 +01:00
|
|
|
cur_moy_ue = self.etud_moy_ue[ue_id][etudid]
|
|
|
|
moy_ue = cur_moy_ue
|
2022-02-13 15:50:16 +01:00
|
|
|
is_capitalized = False # si l'UE prise en compte est une UE capitalisée
|
2022-02-28 11:00:24 +01:00
|
|
|
# s'il y a precedemment une UE capitalisée (pas forcement meilleure):
|
|
|
|
was_capitalized = False
|
2022-02-07 16:32:04 +01:00
|
|
|
if etudid in self.validations.ue_capitalisees.index:
|
|
|
|
ue_cap = self._get_etud_ue_cap(etudid, ue)
|
2022-02-27 20:12:20 +01:00
|
|
|
if ue_cap and not np.isnan(ue_cap["moy_ue"]):
|
2022-02-13 15:50:16 +01:00
|
|
|
was_capitalized = True
|
2022-02-09 18:43:03 +01:00
|
|
|
if ue_cap["moy_ue"] > cur_moy_ue or np.isnan(cur_moy_ue):
|
2022-02-07 16:32:04 +01:00
|
|
|
moy_ue = ue_cap["moy_ue"]
|
|
|
|
is_capitalized = True
|
2022-02-09 18:43:03 +01:00
|
|
|
|
2022-02-27 20:12:20 +01:00
|
|
|
# Coef l'UE dans le semestre courant:
|
|
|
|
if self.is_apc:
|
|
|
|
# utilise les ECTS comme coef.
|
|
|
|
coef_ue = ue.ects
|
|
|
|
else:
|
|
|
|
# formations classiques
|
|
|
|
coef_ue = self.etud_coef_ue_df[ue_id][etudid]
|
|
|
|
if (not coef_ue) and is_capitalized: # étudiant non inscrit dans l'UE courante
|
|
|
|
if self.is_apc:
|
|
|
|
# Coefs de l'UE capitalisée en formation APC: donné par ses ECTS
|
|
|
|
ue_capitalized = UniteEns.query.get(ue_cap["ue_id"])
|
|
|
|
coef_ue = ue_capitalized.ects
|
|
|
|
if coef_ue is None:
|
|
|
|
orig_sem = FormSemestre.query.get(ue_cap["formsemestre_id"])
|
|
|
|
raise ScoValueError(
|
|
|
|
f"""L'UE capitalisée {ue_capitalized.acronyme}
|
|
|
|
du semestre {orig_sem.titre_annee()}
|
|
|
|
n'a pas d'indication d'ECTS.
|
|
|
|
Corrigez ou faite corriger le programme
|
|
|
|
<a href="{url_for('notes.ue_table', scodoc_dept=g.scodoc_dept,
|
|
|
|
formation_id=ue_capitalized.formation_id)}">via cette page</a>.
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
# Coefs de l'UE capitalisée en formation classique:
|
|
|
|
# va chercher le coef dans le semestre d'origine
|
|
|
|
coef_ue = ModuleImplInscription.sum_coefs_modimpl_ue(
|
|
|
|
ue_cap["formsemestre_id"], etudid, ue_cap["ue_id"]
|
|
|
|
)
|
2022-02-07 16:32:04 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
"is_capitalized": is_capitalized,
|
2022-02-13 15:50:16 +01:00
|
|
|
"was_capitalized": was_capitalized,
|
2022-02-07 16:32:04 +01:00
|
|
|
"is_external": ue_cap["is_external"] if is_capitalized else ue.is_external,
|
|
|
|
"coef_ue": coef_ue,
|
2022-02-09 18:43:03 +01:00
|
|
|
"ects_pot": ue.ects or 0.0,
|
2022-02-07 16:32:04 +01:00
|
|
|
"cur_moy_ue": cur_moy_ue,
|
|
|
|
"moy": moy_ue,
|
|
|
|
"event_date": ue_cap["event_date"] if is_capitalized else None,
|
|
|
|
"ue": ue.to_dict(),
|
|
|
|
"formsemestre_id": ue_cap["formsemestre_id"] if is_capitalized else None,
|
|
|
|
"capitalized_ue_id": ue_cap["ue_id"] if is_capitalized else None,
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_etud_ue_cap_coef(self, etudid, ue, ue_cap):
|
|
|
|
"""Calcule le coefficient d'une UE capitalisée, pour cet étudiant,
|
|
|
|
injectée dans le semestre courant.
|
|
|
|
|
|
|
|
ue : ue du semestre courant
|
|
|
|
|
|
|
|
ue_cap = resultat de formsemestre_get_etud_capitalisation
|
|
|
|
{ 'ue_id' (dans le semestre source),
|
|
|
|
'ue_code', 'moy', 'event_date','formsemestre_id' }
|
|
|
|
"""
|
|
|
|
# 1- Coefficient explicitement déclaré dans le semestre courant pour cette UE ?
|
|
|
|
ue_coef_db = FormSemestreUECoef.query.filter_by(
|
|
|
|
formsemestre_id=self.formsemestre.id, ue_id=ue.id
|
|
|
|
).first()
|
|
|
|
if ue_coef_db is not None:
|
|
|
|
return ue_coef_db.coefficient
|
|
|
|
|
|
|
|
# En APC: somme des coefs des modules vers cette UE
|
|
|
|
# En classique: Capitalisation UE externe: quel coef appliquer ?
|
|
|
|
# En ScoDoc 7, calculait la somme des coefs dans l'UE du semestre d'origine
|
|
|
|
# ici si l'étudiant est inscrit dans le semestre courant,
|
|
|
|
# somme des coefs des modules de l'UE auxquels il est inscrit
|
|
|
|
return self.compute_etud_ue_coef(etudid, ue)
|
|
|
|
|
2022-03-27 22:25:00 +02:00
|
|
|
# --- TABLEAU RECAP
|
|
|
|
|
|
|
|
def get_table_recap(self, convert_values=False):
|
|
|
|
"""Result: tuple avec
|
|
|
|
- rows: liste de dicts { column_id : value }
|
|
|
|
- titles: { column_id : title }
|
|
|
|
- columns_ids: (liste des id de colonnes)
|
|
|
|
|
|
|
|
. Si convert_values, transforme les notes en chaines ("12.34").
|
|
|
|
Les colonnes générées sont:
|
|
|
|
etudid
|
|
|
|
rang : rang indicatif (basé sur moy gen)
|
|
|
|
moy_gen : moy gen indicative
|
|
|
|
moy_ue_<ue_id>, ..., les moyennes d'UE
|
|
|
|
moy_res_<modimpl_id>_<ue_id>, ... les moyennes de ressources dans l'UE
|
|
|
|
moy_sae_<modimpl_id>_<ue_id>, ... les moyennes de SAE dans l'UE
|
|
|
|
|
|
|
|
On ajoute aussi des attributs:
|
|
|
|
- pour les lignes:
|
|
|
|
_css_row_class (inutilisé pour le monent)
|
|
|
|
_<column_id>_class classe css:
|
|
|
|
- la moyenne générale a la classe col_moy_gen
|
|
|
|
- les colonnes SAE ont la classe col_sae
|
|
|
|
- les colonnes Resources ont la classe col_res
|
|
|
|
- les colonnes d'UE ont la classe col_ue
|
|
|
|
- les colonnes de modules (SAE ou res.) d'une UE ont la classe mod_ue_<ue_id>
|
|
|
|
_<column_id>_order : clé de tri
|
2022-02-06 18:29:22 +01:00
|
|
|
"""
|
|
|
|
|
2022-03-27 22:25:00 +02:00
|
|
|
if convert_values:
|
|
|
|
fmt_note = scu.fmt_note
|
2022-02-09 23:22:00 +01:00
|
|
|
else:
|
2022-03-27 22:25:00 +02:00
|
|
|
fmt_note = lambda x: x
|
2022-02-09 23:22:00 +01:00
|
|
|
|
2022-03-27 22:25:00 +02:00
|
|
|
barre_moy = (
|
|
|
|
self.formsemestre.formation.get_parcours().BARRE_MOY - scu.NOTES_TOLERANCE
|
2022-02-23 09:42:41 +01:00
|
|
|
)
|
2022-03-27 22:25:00 +02:00
|
|
|
barre_valid_ue = self.formsemestre.formation.get_parcours().NOTES_BARRE_VALID_UE
|
|
|
|
NO_NOTE = "-" # contenu des cellules sans notes
|
|
|
|
rows = []
|
|
|
|
titles = {"rang": "Rg"} # column_id : title
|
|
|
|
# les titres en footer: les mêmes, mais avec des bulles et liens:
|
|
|
|
titles_bot = {}
|
|
|
|
|
|
|
|
def add_cell(
|
|
|
|
row: dict, col_id: str, title: str, content: str, classes: str = ""
|
|
|
|
):
|
|
|
|
"Add a row to our table. classes is a list of css class names"
|
|
|
|
row[col_id] = content
|
|
|
|
if classes:
|
|
|
|
row[f"_{col_id}_class"] = classes
|
|
|
|
if not col_id in titles:
|
|
|
|
titles[col_id] = title
|
|
|
|
if classes:
|
|
|
|
titles[f"_{col_id}_class"] = classes
|
2021-12-24 00:08:25 +01:00
|
|
|
|
2021-12-30 23:58:38 +01:00
|
|
|
etuds_inscriptions = self.formsemestre.etuds_inscriptions
|
2022-02-10 23:15:03 +01:00
|
|
|
ues = self.formsemestre.query_ues(with_sport=True) # avec bonus
|
2022-03-27 22:25:00 +02:00
|
|
|
modimpl_ids = set() # modimpl effectivement présents dans la table
|
2021-12-30 23:58:38 +01:00
|
|
|
for etudid in etuds_inscriptions:
|
2022-03-27 22:25:00 +02:00
|
|
|
etud = Identite.query.get(etudid)
|
|
|
|
row = {"etudid": etudid}
|
|
|
|
# --- Rang
|
|
|
|
add_cell(row, "rang", "Rg", self.etud_moy_gen_ranks[etudid], "rang")
|
|
|
|
row["_rang_order"] = f"{self.etud_moy_gen_ranks_int[etudid]:05d}"
|
|
|
|
# --- Identité étudiant
|
|
|
|
add_cell(row, "civilite_str", "Civ.", etud.civilite_str, "identite_detail")
|
|
|
|
add_cell(row, "nom_disp", "Nom", etud.nom_disp(), "identite_detail")
|
|
|
|
add_cell(row, "prenom", "Prénom", etud.prenom, "identite_detail")
|
|
|
|
add_cell(row, "nom_short", "Nom", etud.nom_short, "identite_court")
|
|
|
|
row["_nom_short_target"] = url_for(
|
|
|
|
"notes.formsemestre_bulletinetud",
|
|
|
|
scodoc_dept=g.scodoc_dept,
|
|
|
|
formsemestre_id=self.formsemestre.id,
|
|
|
|
etudid=etudid,
|
|
|
|
)
|
|
|
|
row["_nom_short_target_attrs"] = f'class="etudinfo" id="{etudid}"'
|
|
|
|
row["_nom_disp_target"] = row["_nom_short_target"]
|
|
|
|
row["_nom_disp_target_attrs"] = row["_nom_short_target_attrs"]
|
|
|
|
self._recap_etud_groups_infos(etudid, row, titles)
|
|
|
|
# --- Moyenne générale
|
2021-12-30 23:58:38 +01:00
|
|
|
moy_gen = self.etud_moy_gen.get(etudid, False)
|
2022-03-27 22:25:00 +02:00
|
|
|
note_class = ""
|
2021-12-30 23:58:38 +01:00
|
|
|
if moy_gen is False:
|
2022-03-27 22:25:00 +02:00
|
|
|
moy_gen = NO_NOTE
|
|
|
|
elif isinstance(moy_gen, float) and moy_gen < barre_moy:
|
|
|
|
note_class = " moy_inf"
|
|
|
|
add_cell(
|
|
|
|
row,
|
|
|
|
"moy_gen",
|
|
|
|
"Moy",
|
|
|
|
fmt_note(moy_gen),
|
|
|
|
"col_moy_gen" + note_class,
|
|
|
|
)
|
|
|
|
titles_bot["_moy_gen_target_attrs"] = (
|
|
|
|
'title="moyenne indicative"' if self.is_apc else ""
|
|
|
|
)
|
|
|
|
# --- Moyenne d'UE
|
|
|
|
for ue in [ue for ue in ues if ue.type != UE_SPORT]:
|
|
|
|
ue_status = self.get_etud_ue_status(etudid, ue.id)
|
|
|
|
if ue_status is not None:
|
|
|
|
col_id = f"moy_ue_{ue.id}"
|
|
|
|
val = ue_status["moy"]
|
|
|
|
note_class = ""
|
|
|
|
if isinstance(val, float):
|
|
|
|
if val < barre_moy:
|
|
|
|
note_class = " moy_inf"
|
|
|
|
elif val >= barre_valid_ue:
|
|
|
|
note_class = " moy_ue_valid"
|
|
|
|
add_cell(
|
|
|
|
row,
|
|
|
|
col_id,
|
|
|
|
ue.acronyme,
|
|
|
|
fmt_note(val),
|
|
|
|
"col_ue" + note_class,
|
|
|
|
)
|
|
|
|
titles_bot[
|
|
|
|
f"_{col_id}_target_attrs"
|
|
|
|
] = f"""title="{ue.titre} S{ue.semestre_idx or '?'}" """
|
|
|
|
# Les moyennes des modules (ou ressources et SAÉs) dans cette UE
|
|
|
|
for modimpl in self.modimpls_in_ue(ue.id, etudid, with_bonus=False):
|
|
|
|
if ue_status["is_capitalized"]:
|
|
|
|
val = "-c-"
|
|
|
|
else:
|
|
|
|
modimpl_results = self.modimpls_results.get(modimpl.id)
|
|
|
|
if modimpl_results: # pas bonus
|
|
|
|
if self.is_apc: # BUT
|
|
|
|
moys_vers_ue = modimpl_results.etuds_moy_module.get(
|
|
|
|
ue.id
|
|
|
|
)
|
|
|
|
val = (
|
|
|
|
moys_vers_ue.get(etudid, "?")
|
|
|
|
if moys_vers_ue is not None
|
|
|
|
else ""
|
|
|
|
)
|
|
|
|
else: # classique: Series indépendante de l'UE
|
|
|
|
val = modimpl_results.etuds_moy_module.get(
|
|
|
|
etudid, "?"
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
val = ""
|
|
|
|
|
|
|
|
col_id = (
|
|
|
|
f"moy_{modimpl.module.type_abbrv()}_{modimpl.id}_{ue.id}"
|
|
|
|
)
|
|
|
|
add_cell(
|
|
|
|
row,
|
|
|
|
col_id,
|
|
|
|
modimpl.module.code,
|
|
|
|
fmt_note(val),
|
|
|
|
# class col_res mod_ue_123
|
|
|
|
f"col_{modimpl.module.type_abbrv()} mod_ue_{ue.id}",
|
|
|
|
)
|
|
|
|
titles_bot[f"_{col_id}_target"] = url_for(
|
|
|
|
"notes.moduleimpl_status",
|
|
|
|
scodoc_dept=g.scodoc_dept,
|
|
|
|
moduleimpl_id=modimpl.id,
|
|
|
|
)
|
|
|
|
titles_bot[
|
|
|
|
f"_{col_id}_target_attrs"
|
|
|
|
] = f"""
|
|
|
|
title="{modimpl.module.titre}
|
|
|
|
({sco_users.user_info(modimpl.responsable_id)['nomcomplet']})" """
|
|
|
|
modimpl_ids.add(modimpl.id)
|
|
|
|
|
|
|
|
rows.append(row)
|
|
|
|
|
|
|
|
# tri par rang croissant
|
|
|
|
rows.sort(key=lambda e: e["_rang_order"])
|
|
|
|
|
|
|
|
# INFOS POUR FOOTER
|
|
|
|
bottom_infos = self._recap_bottom_infos(
|
|
|
|
[ue for ue in ues if ue.type != UE_SPORT], modimpl_ids, fmt_note
|
|
|
|
)
|
2021-12-30 23:58:38 +01:00
|
|
|
|
2022-03-27 22:25:00 +02:00
|
|
|
# --- TABLE FOOTER: ECTS, moyennes, min, max...
|
|
|
|
footer_rows = []
|
|
|
|
for bottom_line in bottom_infos:
|
|
|
|
row = bottom_infos[bottom_line]
|
|
|
|
# Cases vides à styler:
|
|
|
|
row["moy_gen"] = row.get("moy_gen", "")
|
|
|
|
row["_moy_gen_class"] = "col_moy_gen"
|
|
|
|
# titre de la ligne:
|
|
|
|
row["prenom"] = row["nom_short"] = bottom_line.capitalize()
|
|
|
|
row["_tr_class"] = bottom_line.lower()
|
|
|
|
footer_rows.append(row)
|
|
|
|
titles_bot.update(titles)
|
|
|
|
footer_rows.append(titles_bot)
|
|
|
|
return (
|
|
|
|
rows,
|
|
|
|
footer_rows,
|
|
|
|
titles,
|
|
|
|
[title for title in titles if not title.startswith("_")],
|
|
|
|
)
|
|
|
|
|
|
|
|
def _recap_bottom_infos(self, ues, modimpl_ids: set, fmt_note) -> dict:
|
|
|
|
"""Les informations à mettre en bas de la table: min, max, moy, ECTS"""
|
|
|
|
bottom_infos = { # { key : row } avec key = min, max, moy, coef
|
|
|
|
"min": {},
|
|
|
|
"max": {},
|
|
|
|
"moy": {},
|
|
|
|
"coef": {},
|
2021-12-30 23:58:38 +01:00
|
|
|
}
|
2022-03-27 22:25:00 +02:00
|
|
|
# --- ECTS
|
|
|
|
row = {}
|
|
|
|
for ue in ues:
|
|
|
|
row[f"moy_ue_{ue.id}"] = ue.ects
|
|
|
|
row[f"_moy_ue_{ue.id}_class"] = "col_ue"
|
|
|
|
# style cases vides pour borders verticales
|
|
|
|
bottom_infos["coef"][f"moy_ue_{ue.id}"] = ""
|
|
|
|
bottom_infos["coef"][f"_moy_ue_{ue.id}_class"] = "col_ue"
|
|
|
|
row["moy_gen"] = sum([ue.ects or 0 for ue in ues if ue.type != UE_SPORT])
|
|
|
|
row["_moy_gen_class"] = "col_moy_gen"
|
|
|
|
bottom_infos["ects"] = row
|
|
|
|
|
|
|
|
# --- MIN, MAX, MOY
|
|
|
|
row_min, row_max, row_moy = {}, {}, {}
|
|
|
|
row_min["moy_gen"] = fmt_note(self.etud_moy_gen.min())
|
|
|
|
row_max["moy_gen"] = fmt_note(self.etud_moy_gen.max())
|
|
|
|
row_moy["moy_gen"] = fmt_note(self.etud_moy_gen.mean())
|
|
|
|
for ue in [ue for ue in ues if ue.type != UE_SPORT]:
|
|
|
|
col_id = f"moy_ue_{ue.id}"
|
|
|
|
row_min[col_id] = fmt_note(self.etud_moy_ue[ue.id].min())
|
|
|
|
row_max[col_id] = fmt_note(self.etud_moy_ue[ue.id].max())
|
|
|
|
row_moy[col_id] = fmt_note(self.etud_moy_ue[ue.id].mean())
|
|
|
|
row_min[f"_{col_id}_class"] = "col_ue"
|
|
|
|
row_max[f"_{col_id}_class"] = "col_ue"
|
|
|
|
row_moy[f"_{col_id}_class"] = "col_ue"
|
|
|
|
|
|
|
|
for modimpl in self.formsemestre.modimpls_sorted:
|
|
|
|
if modimpl.id in modimpl_ids:
|
|
|
|
col_id = f"moy_{modimpl.module.type_abbrv()}_{modimpl.id}_{ue.id}"
|
|
|
|
if self.is_apc:
|
|
|
|
coef = self.modimpl_coefs_df[modimpl.id][ue.id] * (
|
|
|
|
modimpl.module.coefficient or 0.0
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
coef = modimpl.module.coefficient or 0
|
|
|
|
bottom_infos["coef"][col_id] = fmt_note(coef)
|
|
|
|
notes = self.modimpl_notes(modimpl.id, ue.id)
|
|
|
|
row_min[col_id] = fmt_note(np.nanmin(notes))
|
|
|
|
row_max[col_id] = fmt_note(np.nanmax(notes))
|
|
|
|
row_moy[col_id] = fmt_note(np.nanmean(notes))
|
|
|
|
|
|
|
|
bottom_infos["min"] = row_min
|
|
|
|
bottom_infos["max"] = row_max
|
|
|
|
bottom_infos["moy"] = row_moy
|
|
|
|
return bottom_infos
|
|
|
|
|
|
|
|
def _recap_etud_groups_infos(self, etudid: int, row: dict, titles: dict):
|
|
|
|
"""Table recap: ajoute à row les colonnes sur les groupes pour cet etud"""
|
|
|
|
# dec = self.get_etud_decision_sem(etudid)
|
|
|
|
# if dec:
|
|
|
|
# codes_nb[dec["code"]] += 1
|
|
|
|
row_class = ""
|
|
|
|
etud_etat = self.get_etud_etat(etudid) # dans NotesTableCompat, à revoir
|
|
|
|
if etud_etat == DEM:
|
|
|
|
gr_name = "Dém."
|
|
|
|
row_class = "dem"
|
|
|
|
elif etud_etat == DEF:
|
|
|
|
gr_name = "Déf."
|
|
|
|
row_class = "def"
|
|
|
|
else:
|
|
|
|
# XXX probablement à revoir pour utiliser données cachées,
|
|
|
|
# via get_etud_groups_in_partition ou autre
|
|
|
|
group = sco_groups.get_etud_main_group(etudid, self.formsemestre.id)
|
|
|
|
gr_name = group["group_name"] or ""
|
|
|
|
row["group"] = gr_name
|
|
|
|
row["_group_class"] = "group"
|
|
|
|
if row_class:
|
|
|
|
row["_tr_class"] = " ".join([row.get("_tr_class", ""), row_class])
|
|
|
|
titles["group"] = "Gr"
|