2024-01-25 17:17:01 +01:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
#
|
|
|
|
# Copyright (c) 1999 - 2024 Emmanuel Viennet. All rights reserved.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# Emmanuel Viennet emmanuel.viennet@viennet.net
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Module "Avis de poursuite d'étude"
|
|
|
|
# conçu et développé par Cléo Baras (IUT de Grenoble)
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""
|
|
|
|
Created on Fri Sep 9 09:15:05 2016
|
|
|
|
|
|
|
|
@author: barasc
|
|
|
|
"""
|
|
|
|
|
|
|
|
# ----------------------------------------------------------
|
|
|
|
# Ensemble des fonctions et des classes
|
|
|
|
# permettant les calculs preliminaires (hors affichage)
|
|
|
|
# a l'edition d'un jury de poursuites d'etudes
|
|
|
|
# ----------------------------------------------------------
|
|
|
|
|
|
|
|
import io
|
|
|
|
import os
|
|
|
|
from zipfile import ZipFile
|
|
|
|
|
2024-01-27 08:22:36 +01:00
|
|
|
from app.scodoc.gen_tables import SeqGenTable
|
2024-01-25 17:17:01 +01:00
|
|
|
from app.pe.pe_etudiant import EtudiantsJuryPE
|
|
|
|
from app.pe.pe_trajectoire import TrajectoiresJuryPE, Trajectoire
|
|
|
|
import app.pe.pe_comp as pe_comp
|
2024-01-27 08:22:36 +01:00
|
|
|
import app.pe.pe_affichage as pe_affichage
|
2024-01-25 17:17:01 +01:00
|
|
|
from app.pe.pe_semtag import SemestreTag
|
|
|
|
from app.pe.pe_interclasstag import AggregatInterclasseTag
|
|
|
|
from app.pe.pe_trajectoiretag import TrajectoireTag
|
|
|
|
import app.pe.pe_affichage as pe_affichage
|
|
|
|
|
|
|
|
import pandas as pd
|
|
|
|
|
|
|
|
|
|
|
|
class JuryPE(object):
|
|
|
|
"""Classe mémorisant toutes les informations nécessaires pour établir un jury de PE.
|
2024-01-25 19:42:22 +01:00
|
|
|
Modèle basé sur NotesTable.
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-25 19:42:22 +01:00
|
|
|
Attributs :
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-25 19:42:22 +01:00
|
|
|
* diplome : l'année d'obtention du diplome BUT et du jury de PE (généralement février XXXX)
|
|
|
|
* juryEtudDict : dictionnaire récapitulant les étudiants participant au jury PE (données administratives +
|
|
|
|
celles des semestres valides à prendre en compte permettant le calcul des moyennes ...
|
|
|
|
``{'etudid : { 'nom', 'prenom', 'civilite', 'diplome', '', }}``
|
|
|
|
a
|
|
|
|
Rq: il contient à la fois les étudiants qui vont être diplomés à la date prévue
|
|
|
|
et ceux qui sont éliminés (abandon, redoublement, ...) pour affichage alternatif
|
2024-01-25 17:17:01 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
# Variables de classe décrivant les aggrégats, leur ordre d'apparition temporelle et
|
|
|
|
# leur affichage dans les avis latex
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------------------------------------------
|
|
|
|
def __init__(self, diplome, formation_id):
|
|
|
|
"""
|
|
|
|
Création d'une table PE sur la base d'un semestre selectionné. De ce semestre est déduit :
|
|
|
|
1. l'année d'obtention du DUT,
|
|
|
|
2. tous les étudiants susceptibles à ce stade (au regard de leur parcours) d'être diplomés.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
sem_base: le FormSemestre donnant le semestre à la base du jury PE
|
|
|
|
semBase: le dictionnaire sem donnant la base du jury (CB: TODO: A supprimer à long term)
|
|
|
|
meme_programme: si True, impose un même programme pour tous les étudiants participant au jury,
|
|
|
|
si False, permet des programmes differents
|
|
|
|
"""
|
|
|
|
self.diplome = diplome
|
2024-01-26 10:18:46 +01:00
|
|
|
"L'année du diplome"
|
2024-01-25 17:17:01 +01:00
|
|
|
|
|
|
|
self.formation_id = formation_id
|
2024-01-26 10:18:46 +01:00
|
|
|
"La formation associée au diplome"
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-25 21:54:22 +01:00
|
|
|
self.nom_export_zip = f"Jury_PE_{self.diplome}"
|
2024-01-26 10:18:46 +01:00
|
|
|
"Nom du zip où ranger les fichiers générés"
|
|
|
|
|
2024-01-25 17:17:01 +01:00
|
|
|
self.zipdata = io.BytesIO()
|
2024-01-26 10:18:46 +01:00
|
|
|
with ZipFile(self.zipdata, "w") as zipfile:
|
|
|
|
# Chargement des étudiants à prendre en compte dans le jury
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(
|
2024-01-26 10:18:46 +01:00
|
|
|
f"""*** Recherche et chargement des étudiants diplômés en {
|
|
|
|
self.diplome} pour la formation {self.formation_id}"""
|
|
|
|
)
|
|
|
|
self.etudiants = EtudiantsJuryPE(
|
|
|
|
self.diplome
|
|
|
|
) # Les infos sur les étudiants
|
|
|
|
self.etudiants.find_etudiants(self.formation_id)
|
|
|
|
self.diplomes_ids = self.etudiants.diplomes_ids
|
|
|
|
|
|
|
|
# Génère les semestres taggués (avec le calcul des moyennes) pour le jury PE
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print("*** Génère les semestres taggués")
|
2024-01-26 10:18:46 +01:00
|
|
|
self.semestres_taggues = compute_semestres_tag(self.etudiants)
|
|
|
|
|
2024-01-27 08:22:36 +01:00
|
|
|
# Intègre le bilan des semestres taggués au zip final
|
|
|
|
output = io.BytesIO()
|
|
|
|
with pd.ExcelWriter(output, engine="openpyxl") as writer:
|
2024-01-26 10:18:46 +01:00
|
|
|
for formsemestretag in self.semestres_taggues.values():
|
2024-01-27 08:22:36 +01:00
|
|
|
onglet = formsemestretag.nom
|
|
|
|
df = formsemestretag.df_semtag()
|
|
|
|
# écriture dans l'onglet
|
|
|
|
df.to_excel(writer, onglet, index=True, header=True)
|
|
|
|
output.seek(0)
|
|
|
|
|
|
|
|
self.add_file_to_zip(
|
|
|
|
zipfile,
|
|
|
|
f"semestres_taggues_{self.diplome}.xlsx",
|
|
|
|
output.read(),
|
|
|
|
path="details",
|
|
|
|
)
|
2024-01-26 10:18:46 +01:00
|
|
|
|
|
|
|
# Génère les trajectoires (combinaison de semestres suivis
|
|
|
|
# par un étudiant pour atteindre le semestre final d'un aggrégat)
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(
|
2024-01-26 10:18:46 +01:00
|
|
|
"*** Génère les trajectoires (différentes combinaisons de semestres) des étudiants"
|
|
|
|
)
|
|
|
|
self.trajectoires = TrajectoiresJuryPE(self.diplome)
|
|
|
|
self.trajectoires.cree_trajectoires(self.etudiants)
|
|
|
|
|
|
|
|
# Génère les moyennes par tags des trajectoires
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(
|
2024-01-26 10:18:46 +01:00
|
|
|
"*** Calcule les moyennes par tag des trajectoires possibles"
|
|
|
|
)
|
|
|
|
self.trajectoires_tagguees = compute_trajectoires_tag(
|
|
|
|
self.trajectoires, self.etudiants, self.semestres_taggues
|
|
|
|
)
|
|
|
|
|
2024-01-27 08:22:36 +01:00
|
|
|
if pe_affichage.PE_DEBUG:
|
2024-01-26 10:18:46 +01:00
|
|
|
# Intègre le bilan des trajectoires tagguées au zip final
|
|
|
|
for trajectoire_tagguee in self.trajectoires_tagguees.values():
|
|
|
|
filename = trajectoire_tagguee.get_repr().replace(" ", "_") + ".csv"
|
2024-01-27 08:22:36 +01:00
|
|
|
# pe_affichage.pe_print(f" - Export csv de {filename} ")
|
2024-01-26 10:18:46 +01:00
|
|
|
self.add_file_to_zip(
|
|
|
|
zipfile,
|
|
|
|
filename,
|
|
|
|
trajectoire_tagguee.str_tagtable(),
|
|
|
|
path="details_semestres",
|
|
|
|
)
|
|
|
|
|
|
|
|
# Génère les interclassements (par promo et) par (nom d') aggrégat
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print("*** Génère les interclassements par aggrégat")
|
2024-01-26 10:18:46 +01:00
|
|
|
self.interclassements_taggues = compute_interclassements(
|
|
|
|
self.etudiants, self.trajectoires, self.trajectoires_tagguees
|
|
|
|
)
|
|
|
|
|
2024-01-27 08:22:36 +01:00
|
|
|
if pe_affichage.PE_DEBUG:
|
2024-01-26 10:18:46 +01:00
|
|
|
# Intègre le bilan des aggrégats (par promo) au zip final
|
|
|
|
for interclass_tag in self.interclassements_taggues.values():
|
|
|
|
filename = interclass_tag.get_repr().replace(" ", "_") + ".csv"
|
2024-01-27 08:22:36 +01:00
|
|
|
# pe_affichage.pe_print(f" - Export csv de {filename} ")
|
2024-01-26 10:18:46 +01:00
|
|
|
self.add_file_to_zip(
|
|
|
|
zipfile,
|
|
|
|
filename,
|
|
|
|
interclass_tag.str_tagtable(),
|
|
|
|
path="details_semestres",
|
|
|
|
)
|
|
|
|
|
|
|
|
# Synthèse des éléments du jury PE
|
|
|
|
self.synthese = self.synthetise_juryPE()
|
|
|
|
|
|
|
|
# Export des données => mode 1 seule feuille -> supprimé
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print("*** Export du jury de synthese")
|
2024-01-26 10:18:46 +01:00
|
|
|
output = io.BytesIO()
|
|
|
|
|
|
|
|
with pd.ExcelWriter(output, engine="openpyxl") as writer:
|
|
|
|
for onglet, df in self.synthese.items():
|
|
|
|
# écriture dans l'onglet:
|
|
|
|
df.to_excel(writer, onglet, index=True, header=True)
|
|
|
|
output.seek(0)
|
|
|
|
|
|
|
|
self.add_file_to_zip(
|
|
|
|
zipfile, f"synthese_jury_{self.diplome}.xlsx", output.read()
|
|
|
|
)
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-25 21:54:22 +01:00
|
|
|
# Fin !!!! Tada :)
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-26 10:18:46 +01:00
|
|
|
def add_file_to_zip(self, zipfile: ZipFile, filename: str, data, path=""):
|
|
|
|
"""Add a file to given zip
|
2024-01-25 17:17:01 +01:00
|
|
|
All files under NOM_EXPORT_ZIP/
|
|
|
|
path may specify a subdirectory
|
|
|
|
|
|
|
|
Args:
|
2024-01-26 10:18:46 +01:00
|
|
|
zipfile: ZipFile
|
2024-01-25 17:17:01 +01:00
|
|
|
filename: Le nom du fichier à intégrer au zip
|
|
|
|
data: Les données du fichier
|
|
|
|
path: Un dossier dans l'arborescence du zip
|
|
|
|
"""
|
2024-01-25 19:42:22 +01:00
|
|
|
path_in_zip = os.path.join(path, filename) # self.nom_export_zip,
|
2024-01-26 10:18:46 +01:00
|
|
|
zipfile.writestr(path_in_zip, data)
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-26 10:18:46 +01:00
|
|
|
def get_zipped_data(self) -> io.BytesIO | None:
|
2024-01-25 17:17:01 +01:00
|
|
|
"""returns file-like data with a zip of all generated (CSV) files.
|
2024-01-26 10:18:46 +01:00
|
|
|
Warning: reset stream to the begining.
|
2024-01-25 17:17:01 +01:00
|
|
|
"""
|
|
|
|
self.zipdata.seek(0)
|
|
|
|
return self.zipdata
|
|
|
|
|
|
|
|
def do_tags_list(self, interclassements: dict[str, AggregatInterclasseTag]):
|
|
|
|
"""La liste des tags extraites des interclassements"""
|
|
|
|
tags = []
|
|
|
|
for aggregat in interclassements:
|
|
|
|
interclass = interclassements[aggregat]
|
|
|
|
if interclass.tags_sorted:
|
|
|
|
tags.extend(interclass.tags_sorted)
|
|
|
|
tags = sorted(set(tags))
|
|
|
|
return tags
|
|
|
|
|
|
|
|
# **************************************************************************************************************** #
|
|
|
|
# Méthodes pour la synthèse du juryPE
|
|
|
|
# *****************************************************************************************************************
|
|
|
|
|
|
|
|
def synthetise_juryPE(self):
|
|
|
|
"""Synthétise tous les résultats du jury PE dans des dataframes"""
|
|
|
|
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print("*** Synthèse finale des moyennes ***")
|
2024-01-25 17:17:01 +01:00
|
|
|
|
|
|
|
synthese = {}
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(" -> Synthèse des données administratives")
|
2024-01-25 17:17:01 +01:00
|
|
|
synthese["administratif"] = self.df_administratif()
|
|
|
|
|
|
|
|
tags = self.do_tags_list(self.interclassements_taggues)
|
|
|
|
for tag in tags:
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(f" -> Synthèse du tag {tag}")
|
2024-01-25 17:17:01 +01:00
|
|
|
synthese[tag] = self.df_tag(tag)
|
|
|
|
return synthese
|
|
|
|
|
|
|
|
def df_administratif(self):
|
|
|
|
"""Synthétise toutes les données administratives des étudiants"""
|
|
|
|
|
|
|
|
etudids = list(self.diplomes_ids)
|
|
|
|
|
2024-01-25 21:54:22 +01:00
|
|
|
# Récupération des données des étudiants
|
2024-01-25 17:17:01 +01:00
|
|
|
administratif = {}
|
|
|
|
nbre_semestres_max = self.etudiants.nbre_etapes_max_diplomes()
|
|
|
|
|
|
|
|
for etudid in etudids:
|
|
|
|
etudiant = self.etudiants.identites[etudid]
|
|
|
|
cursus = self.etudiants.cursus[etudid]
|
|
|
|
formsemestres = cursus["formsemestres"]
|
|
|
|
|
2024-01-26 07:13:09 +01:00
|
|
|
if cursus["diplome"]:
|
|
|
|
diplome = cursus["diplome"]
|
|
|
|
else:
|
|
|
|
diplome = "indéterminé"
|
|
|
|
|
2024-01-25 17:17:01 +01:00
|
|
|
administratif[etudid] = {
|
|
|
|
"Nom": etudiant.nom,
|
|
|
|
"Prenom": etudiant.prenom,
|
|
|
|
"Civilite": etudiant.civilite_str,
|
2024-01-25 19:42:22 +01:00
|
|
|
"Age": pe_comp.calcul_age(etudiant.date_naissance),
|
2024-01-25 17:17:01 +01:00
|
|
|
"Date d'entree": cursus["entree"],
|
2024-01-26 07:13:09 +01:00
|
|
|
"Date de diplome": diplome,
|
2024-01-25 19:42:22 +01:00
|
|
|
"Nbre de semestres": len(formsemestres),
|
2024-01-25 17:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Ajout des noms de semestres parcourus
|
|
|
|
etapes = pe_affichage.etapes_du_cursus(formsemestres, nbre_semestres_max)
|
|
|
|
administratif[etudid] |= etapes
|
|
|
|
|
2024-01-25 21:54:22 +01:00
|
|
|
# Construction du dataframe
|
2024-01-25 19:42:22 +01:00
|
|
|
df = pd.DataFrame.from_dict(administratif, orient="index")
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-25 21:54:22 +01:00
|
|
|
# Tri par nom/prénom
|
|
|
|
df.sort_values(by=["Nom", "Prenom"], inplace=True)
|
2024-01-25 19:42:22 +01:00
|
|
|
return df
|
2024-01-25 17:17:01 +01:00
|
|
|
|
|
|
|
def df_tag(self, tag):
|
|
|
|
"""Génère le DataFrame synthétisant les moyennes/classements (groupe,
|
|
|
|
interclassement promo) pour tous les aggrégats prévus,
|
|
|
|
tels que fourni dans l'excel final.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
tag: Un des tags (a minima `but`)
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
"""
|
|
|
|
|
|
|
|
etudids = list(self.diplomes_ids)
|
|
|
|
aggregats = pe_comp.TOUS_LES_PARCOURS
|
|
|
|
|
|
|
|
donnees = {}
|
|
|
|
|
|
|
|
for etudid in etudids:
|
|
|
|
etudiant = self.etudiants.identites[etudid]
|
|
|
|
donnees[etudid] = {
|
|
|
|
"Nom": etudiant.nom,
|
|
|
|
"Prenom": etudiant.prenom,
|
|
|
|
"Civilite": etudiant.civilite_str,
|
|
|
|
}
|
|
|
|
|
|
|
|
for aggregat in aggregats:
|
2024-01-27 07:24:52 +01:00
|
|
|
# La trajectoire de l'étudiant sur l'aggrégat
|
2024-01-25 17:17:01 +01:00
|
|
|
trajectoire = self.trajectoires.suivi[etudid][aggregat]
|
2024-01-27 07:24:52 +01:00
|
|
|
|
|
|
|
# Les moyennes par tag de cette trajectoire
|
|
|
|
donnees[etudid] |= {
|
|
|
|
f"{aggregat} notes ": "-",
|
|
|
|
f"{aggregat} class. (groupe)": "-",
|
2024-01-27 08:22:36 +01:00
|
|
|
f"{aggregat} min | moy | max (groupe)": "-",
|
2024-01-27 07:24:52 +01:00
|
|
|
}
|
2024-01-25 17:17:01 +01:00
|
|
|
if trajectoire:
|
2024-01-25 19:42:22 +01:00
|
|
|
trajectoire_tagguee = self.trajectoires_tagguees[
|
|
|
|
trajectoire.trajectoire_id
|
|
|
|
]
|
2024-01-27 07:24:52 +01:00
|
|
|
if tag in trajectoire_tagguee.moyennes_tags:
|
|
|
|
bilan = trajectoire_tagguee.moyennes_tags[tag]
|
|
|
|
|
|
|
|
donnees[etudid] |= {
|
2024-01-27 08:22:36 +01:00
|
|
|
f"{aggregat} notes ": round(bilan["notes"].loc[etudid], 2),
|
2024-01-27 07:24:52 +01:00
|
|
|
f"{aggregat} class. (groupe)": f"{bilan['classements'].loc[etudid]}/{bilan['nb_inscrits']}",
|
2024-01-27 08:22:36 +01:00
|
|
|
f"{aggregat} min | moy | max (groupe)": f"{bilan['min']:.1f} | {bilan['moy']:.1f} | {bilan['max']:.1f}",
|
2024-01-27 07:24:52 +01:00
|
|
|
}
|
2024-01-25 17:17:01 +01:00
|
|
|
|
|
|
|
"""L'interclassement"""
|
|
|
|
interclass = self.interclassements_taggues[aggregat]
|
2024-01-27 07:24:52 +01:00
|
|
|
donnees[etudid] |= {
|
|
|
|
f"{aggregat} class. (promo)": "-",
|
2024-01-27 08:22:36 +01:00
|
|
|
f"{aggregat} min | moy | max (promo)": "-",
|
2024-01-27 07:24:52 +01:00
|
|
|
}
|
2024-01-25 17:17:01 +01:00
|
|
|
if tag in interclass.moyennes_tags:
|
|
|
|
bilan = interclass.moyennes_tags[tag]
|
|
|
|
|
|
|
|
donnees[etudid] |= {
|
2024-01-25 19:42:22 +01:00
|
|
|
f"{aggregat} class. (promo)": f"{bilan['classements'].loc[etudid]}/{bilan['nb_inscrits']}",
|
2024-01-27 08:22:36 +01:00
|
|
|
f"{aggregat} min | moy | max (promo)": f"{bilan['min']:.1f} | {bilan['moy']:.1f} | {bilan['max']:.1f}",
|
2024-01-25 17:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Fin de l'aggrégat
|
2024-01-25 21:54:22 +01:00
|
|
|
# Construction du dataFrame
|
2024-01-25 19:42:22 +01:00
|
|
|
df = pd.DataFrame.from_dict(donnees, orient="index")
|
2024-01-25 17:17:01 +01:00
|
|
|
|
2024-01-25 21:54:22 +01:00
|
|
|
# Tri par nom/prénom
|
|
|
|
df.sort_values(by=["Nom", "Prenom"], inplace=True)
|
2024-01-25 17:17:01 +01:00
|
|
|
return df
|
|
|
|
|
|
|
|
def table_syntheseJury(self, mode="singlesheet"): # was str_syntheseJury
|
|
|
|
"""Table(s) du jury
|
|
|
|
mode: singlesheet ou multiplesheet pour export excel
|
|
|
|
"""
|
|
|
|
sT = SeqGenTable() # le fichier excel à générer
|
|
|
|
|
|
|
|
if mode == "singlesheet":
|
|
|
|
return sT.get_genTable("singlesheet")
|
|
|
|
else:
|
|
|
|
return sT
|
|
|
|
|
|
|
|
|
2024-01-25 20:04:42 +01:00
|
|
|
def compute_semestres_tag(etudiants: EtudiantsJuryPE) -> dict:
|
2024-01-25 17:17:01 +01:00
|
|
|
"""Créé les semestres taggués, de type 'S1', 'S2', ..., pour un groupe d'étudiants donnés.
|
|
|
|
Chaque semestre taggué est rattaché à l'un des FormSemestre faisant partie du cursus scolaire
|
|
|
|
des étudiants (cf. attribut etudiants.cursus).
|
|
|
|
En crééant le semestre taggué, sont calculées les moyennes/classements par tag associé.
|
|
|
|
.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
etudiants: Un groupe d'étudiants participant au jury
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Un dictionnaire {fid: SemestreTag(fid)}
|
|
|
|
"""
|
|
|
|
|
|
|
|
"""Création des semestres taggués, de type 'S1', 'S2', ..."""
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print("*** Création des semestres taggués")
|
2024-01-25 17:17:01 +01:00
|
|
|
|
|
|
|
formsemestres = etudiants.get_formsemestres(
|
|
|
|
semestres_recherches=pe_comp.TOUS_LES_SEMESTRES
|
|
|
|
)
|
|
|
|
|
|
|
|
semestres_tags = {}
|
|
|
|
for frmsem_id, formsemestre in formsemestres.items():
|
2024-01-25 21:54:22 +01:00
|
|
|
# Crée le semestre_tag et exécute les calculs de moyennes
|
2024-01-27 08:22:36 +01:00
|
|
|
formsemestretag = SemestreTag(frmsem_id)
|
|
|
|
pe_affichage.pe_print(
|
|
|
|
f" --> Semestre taggué {formsemestretag.nom} sur la base de {formsemestre}"
|
|
|
|
)
|
2024-01-25 21:54:22 +01:00
|
|
|
# Stocke le semestre taggué
|
2024-01-25 17:17:01 +01:00
|
|
|
semestres_tags[frmsem_id] = formsemestretag
|
|
|
|
|
|
|
|
return semestres_tags
|
|
|
|
|
|
|
|
|
|
|
|
def compute_trajectoires_tag(
|
|
|
|
trajectoires: TrajectoiresJuryPE,
|
|
|
|
etudiants: EtudiantsJuryPE,
|
|
|
|
semestres_taggues: dict[int, SemestreTag],
|
|
|
|
):
|
|
|
|
"""Créée les trajectoires tagguées (combinaison aggrégeant plusieurs semestres au sens
|
|
|
|
d'un aggrégat (par ex: '3S')),
|
|
|
|
en calculant les moyennes et les classements par tag pour chacune.
|
|
|
|
|
|
|
|
Pour rappel : Chaque trajectoire est identifiée un nom d'aggrégat et par un formsemestre terminal.
|
|
|
|
|
|
|
|
Par exemple :
|
|
|
|
|
|
|
|
* combinaisons '3S' : S1+S2+S3 en prenant en compte tous les S3 qu'ont fréquenté les
|
|
|
|
étudiants du jury PE. Ces S3 marquent les formsemestre terminal de chaque combinaison.
|
|
|
|
|
|
|
|
* combinaisons 'S2' : 1 seul S2 pour des étudiants n'ayant pas redoublé, 2 pour des redoublants (dont les
|
|
|
|
notes seront moyennées sur leur 2 semestres S2). Ces combinaisons ont pour formsemestre le dernier S2 en
|
|
|
|
date (le S2 redoublé par les redoublants est forcément antérieur)
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
etudiants: Les données des étudiants
|
|
|
|
semestres_tag: Les semestres tag (pour lesquels des moyennes par tag ont été calculés)
|
|
|
|
|
|
|
|
Return:
|
2024-01-27 08:22:36 +01:00
|
|
|
Un dictionnaire de la forme ``{nom_aggregat: {fid_terminal: SetTag(fid_terminal)} }``
|
2024-01-25 17:17:01 +01:00
|
|
|
"""
|
|
|
|
trajectoires_tagguees = {}
|
|
|
|
|
2024-01-27 08:22:36 +01:00
|
|
|
for trajectoire_id, trajectoire in trajectoires.trajectoires.items():
|
2024-01-25 17:17:01 +01:00
|
|
|
nom = trajectoire.get_repr()
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(f" --> Aggrégat {nom}")
|
|
|
|
# Trajectoire_tagguee associée
|
2024-01-26 16:54:50 +01:00
|
|
|
trajectoire_tagguee = TrajectoireTag(nom, trajectoire, semestres_taggues)
|
2024-01-27 08:22:36 +01:00
|
|
|
# Mémorise le résultat
|
2024-01-25 17:17:01 +01:00
|
|
|
trajectoires_tagguees[trajectoire_id] = trajectoire_tagguee
|
|
|
|
|
|
|
|
return trajectoires_tagguees
|
|
|
|
|
|
|
|
|
|
|
|
def compute_interclassements(
|
|
|
|
etudiants: EtudiantsJuryPE,
|
|
|
|
trajectoires_jury_pe: TrajectoiresJuryPE,
|
|
|
|
trajectoires_tagguees: dict[tuple, Trajectoire],
|
|
|
|
):
|
|
|
|
"""Interclasse les étudiants, (nom d') aggrégat par aggrégat,
|
|
|
|
pour fournir un classement sur la promo. Le classement est établi au regard du nombre
|
|
|
|
d'étudiants ayant participé au même aggrégat.
|
|
|
|
"""
|
|
|
|
aggregats_interclasses_taggues = {}
|
|
|
|
for nom_aggregat in pe_comp.TOUS_LES_SEMESTRES + pe_comp.TOUS_LES_AGGREGATS:
|
2024-01-27 08:22:36 +01:00
|
|
|
pe_affichage.pe_print(f" --> Interclassement {nom_aggregat}")
|
2024-01-25 17:17:01 +01:00
|
|
|
interclass = AggregatInterclasseTag(
|
|
|
|
nom_aggregat, etudiants, trajectoires_jury_pe, trajectoires_tagguees
|
|
|
|
)
|
|
|
|
aggregats_interclasses_taggues[nom_aggregat] = interclass
|
|
|
|
return aggregats_interclasses_taggues
|