2023-02-19 02:54:29 +01:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
#
|
|
|
|
# Copyright (c) 1999 - 2023 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
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""Ancienne fonction de synthèse des information jury
|
|
|
|
(pour formations classiques)
|
|
|
|
"""
|
|
|
|
from operator import itemgetter
|
|
|
|
|
|
|
|
from app import log
|
|
|
|
from app.comp import res_sem
|
|
|
|
from app.comp.res_compat import NotesTableCompat
|
|
|
|
from app.models import (
|
|
|
|
Formation,
|
|
|
|
FormSemestre,
|
|
|
|
Identite,
|
|
|
|
ScolarAutorisationInscription,
|
|
|
|
UniteEns,
|
|
|
|
but_validations,
|
|
|
|
)
|
|
|
|
from app.scodoc import codes_cursus
|
2023-02-19 23:06:44 +01:00
|
|
|
from app.scodoc import sco_edit_ue
|
2023-02-19 02:54:29 +01:00
|
|
|
from app.scodoc import sco_etud
|
|
|
|
from app.scodoc import sco_formsemestre
|
|
|
|
from app.scodoc import sco_cursus
|
|
|
|
from app.scodoc import sco_cursus_dut
|
|
|
|
import app.scodoc.notesdb as ndb
|
|
|
|
import app.scodoc.sco_utils as scu
|
|
|
|
|
|
|
|
|
|
|
|
def dict_pvjury(
|
|
|
|
formsemestre_id,
|
|
|
|
etudids=None,
|
|
|
|
with_prev=False,
|
|
|
|
with_parcours_decisions=False,
|
|
|
|
):
|
|
|
|
"""Données pour édition jury
|
|
|
|
etudids == None => tous les inscrits, sinon donne la liste des ids
|
|
|
|
Si with_prev: ajoute infos sur code jury semestre precedent
|
|
|
|
Si with_parcours_decisions: ajoute infos sur code decision jury de tous les semestre du parcours
|
|
|
|
Résultat:
|
|
|
|
{
|
|
|
|
'date' : date de la decision la plus recente,
|
|
|
|
'formsemestre' : sem,
|
|
|
|
'is_apc' : bool,
|
|
|
|
'formation' : { 'acronyme' :, 'titre': ... }
|
|
|
|
'decisions' : { [ { 'identite' : {'nom' :, 'prenom':, ...,},
|
|
|
|
'etat' : I ou D ou DEF
|
|
|
|
'decision_sem' : {'code':, 'code_prev': },
|
|
|
|
'decisions_ue' : { ue_id : { 'code' : ADM|CMP|AJ, 'event_date' :,
|
|
|
|
'acronyme', 'numero': } },
|
|
|
|
'autorisations' : [ { 'semestre_id' : { ... } } ],
|
|
|
|
'validation_parcours' : True si parcours validé (diplome obtenu)
|
|
|
|
'prev_code' : code (calculé slt si with_prev),
|
|
|
|
'mention' : mention (en fct moy gen),
|
|
|
|
'sum_ects' : total ECTS acquis dans ce semestre (incluant les UE capitalisées)
|
|
|
|
'sum_ects_capitalises' : somme des ECTS des UE capitalisees
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
'decisions_dict' : { etudid : decision (comme ci-dessus) },
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
formsemestre: FormSemestre = FormSemestre.query.get_or_404(formsemestre_id)
|
|
|
|
nt: NotesTableCompat = res_sem.load_formsemestre_results(formsemestre)
|
|
|
|
if etudids is None:
|
|
|
|
etudids = nt.get_etudids()
|
|
|
|
if not etudids:
|
|
|
|
return {}
|
|
|
|
cnx = ndb.GetDBConnexion()
|
|
|
|
sem = sco_formsemestre.get_formsemestre(formsemestre_id)
|
|
|
|
max_date = "0000-01-01"
|
|
|
|
has_prev = False # vrai si au moins un etudiant a un code prev
|
|
|
|
semestre_non_terminal = False # True si au moins un etudiant a un devenir
|
|
|
|
|
|
|
|
decisions = []
|
|
|
|
D = {} # même chose que decisions, mais { etudid : dec }
|
|
|
|
for etudid in etudids:
|
|
|
|
etud: Identite = Identite.query.get(etudid)
|
|
|
|
Se = sco_cursus.get_situation_etud_cursus(
|
|
|
|
etud.to_dict_scodoc7(), formsemestre_id
|
|
|
|
)
|
|
|
|
semestre_non_terminal = semestre_non_terminal or Se.semestre_non_terminal
|
|
|
|
d = {}
|
|
|
|
d["identite"] = nt.identdict[etudid]
|
|
|
|
d["etat"] = nt.get_etud_etat(
|
|
|
|
etudid
|
|
|
|
) # I|D|DEF (inscription ou démission ou défaillant)
|
|
|
|
d["decision_sem"] = nt.get_etud_decision_sem(etudid)
|
2023-02-19 23:06:44 +01:00
|
|
|
d["decisions_ue"] = nt.get_etud_decisions_ue(etudid)
|
2023-02-19 02:54:29 +01:00
|
|
|
if formsemestre.formation.is_apc():
|
|
|
|
d.update(but_validations.dict_decision_jury(etud, formsemestre))
|
|
|
|
d["last_formsemestre_id"] = Se.get_semestres()[
|
|
|
|
-1
|
|
|
|
] # id du dernier semestre (chronologiquement) dans lequel il a été inscrit
|
|
|
|
|
|
|
|
ects_capitalises_by_ue_code = _comp_ects_capitalises_by_ue_code(nt, etudid)
|
|
|
|
d["sum_ects_capitalises"] = sum(ects_capitalises_by_ue_code.values())
|
|
|
|
ects_by_ue_code = _comp_ects_by_ue_code(nt, d["decisions_ue"])
|
|
|
|
d["sum_ects"] = _sum_ects_dicts(ects_capitalises_by_ue_code, ects_by_ue_code)
|
|
|
|
|
|
|
|
if d["decision_sem"] and codes_cursus.code_semestre_validant(
|
|
|
|
d["decision_sem"]["code"]
|
|
|
|
):
|
|
|
|
d["mention"] = scu.get_mention(nt.get_etud_moy_gen(etudid))
|
|
|
|
else:
|
|
|
|
d["mention"] = ""
|
|
|
|
# Versions "en français": (avec les UE capitalisées d'ailleurs)
|
|
|
|
dec_ue_list = _descr_decisions_ues(
|
|
|
|
nt, etudid, d["decisions_ue"], d["decision_sem"]
|
|
|
|
)
|
|
|
|
d["decisions_ue_nb"] = len(
|
|
|
|
dec_ue_list
|
|
|
|
) # avec les UE capitalisées, donc des éventuels doublons
|
|
|
|
# Mais sur la description (eg sur les bulletins), on ne veut pas
|
|
|
|
# afficher ces doublons: on uniquifie sur ue_code
|
|
|
|
_codes = set()
|
|
|
|
ue_uniq = []
|
|
|
|
for ue in dec_ue_list:
|
|
|
|
if ue["ue_code"] not in _codes:
|
|
|
|
ue_uniq.append(ue)
|
|
|
|
_codes.add(ue["ue_code"])
|
|
|
|
|
|
|
|
d["decisions_ue_descr"] = ", ".join([ue["acronyme"] for ue in ue_uniq])
|
|
|
|
if nt.is_apc:
|
|
|
|
d["decision_sem_descr"] = "" # pas de validation de semestre en BUT
|
|
|
|
else:
|
|
|
|
d["decision_sem_descr"] = _descr_decision_sem(d["etat"], d["decision_sem"])
|
|
|
|
|
|
|
|
autorisations = ScolarAutorisationInscription.query.filter_by(
|
|
|
|
etudid=etudid, origin_formsemestre_id=formsemestre_id
|
|
|
|
).all()
|
|
|
|
d["autorisations"] = [a.to_dict() for a in autorisations]
|
2023-02-27 17:45:20 +01:00
|
|
|
d["autorisations_descr"] = descr_autorisations(autorisations)
|
2023-02-19 02:54:29 +01:00
|
|
|
|
|
|
|
d["validation_parcours"] = Se.parcours_validated()
|
|
|
|
d["parcours"] = Se.get_cursus_descr(filter_futur=True)
|
|
|
|
if with_parcours_decisions:
|
|
|
|
d["parcours_decisions"] = Se.get_parcours_decisions()
|
|
|
|
# Observations sur les compensations:
|
|
|
|
compensators = sco_cursus_dut.scolar_formsemestre_validation_list(
|
|
|
|
cnx, args={"compense_formsemestre_id": formsemestre_id, "etudid": etudid}
|
|
|
|
)
|
|
|
|
obs = []
|
|
|
|
for compensator in compensators:
|
|
|
|
# nb: il ne devrait y en avoir qu'un !
|
|
|
|
csem = sco_formsemestre.get_formsemestre(compensator["formsemestre_id"])
|
|
|
|
obs.append(
|
|
|
|
"%s compensé par %s (%s)"
|
|
|
|
% (sem["sem_id_txt"], csem["sem_id_txt"], csem["anneescolaire"])
|
|
|
|
)
|
|
|
|
|
|
|
|
if d["decision_sem"] and d["decision_sem"]["compense_formsemestre_id"]:
|
|
|
|
compensed = sco_formsemestre.get_formsemestre(
|
|
|
|
d["decision_sem"]["compense_formsemestre_id"]
|
|
|
|
)
|
|
|
|
obs.append(
|
|
|
|
f"""{sem["sem_id_txt"]} compense {compensed["sem_id_txt"]} ({compensed["anneescolaire"]})"""
|
|
|
|
)
|
|
|
|
|
|
|
|
d["observation"] = ", ".join(obs)
|
|
|
|
|
|
|
|
# Cherche la date de decision (sem ou UE) la plus récente:
|
|
|
|
if d["decision_sem"]:
|
|
|
|
date = ndb.DateDMYtoISO(d["decision_sem"]["event_date"])
|
|
|
|
if date and date > max_date: # decision plus recente
|
|
|
|
max_date = date
|
|
|
|
if d["decisions_ue"]:
|
|
|
|
for dec_ue in d["decisions_ue"].values():
|
|
|
|
if dec_ue:
|
|
|
|
date = ndb.DateDMYtoISO(dec_ue["event_date"])
|
|
|
|
if date and date > max_date: # decision plus recente
|
|
|
|
max_date = date
|
|
|
|
# Code semestre precedent
|
|
|
|
if with_prev: # optionnel car un peu long...
|
|
|
|
info = sco_etud.get_etud_info(etudid=etudid, filled=True)
|
|
|
|
if not info:
|
|
|
|
continue # should not occur
|
|
|
|
etud = info[0]
|
|
|
|
if Se.prev and Se.prev_decision:
|
|
|
|
d["prev_decision_sem"] = Se.prev_decision
|
|
|
|
d["prev_code"] = Se.prev_decision["code"]
|
|
|
|
d["prev_code_descr"] = _descr_decision_sem(
|
|
|
|
scu.INSCRIT, Se.prev_decision
|
|
|
|
)
|
|
|
|
d["prev"] = Se.prev
|
|
|
|
has_prev = True
|
|
|
|
else:
|
|
|
|
d["prev_decision_sem"] = None
|
|
|
|
d["prev_code"] = ""
|
|
|
|
d["prev_code_descr"] = ""
|
|
|
|
d["Se"] = Se
|
|
|
|
|
|
|
|
decisions.append(d)
|
|
|
|
D[etudid] = d
|
|
|
|
|
|
|
|
return {
|
|
|
|
"date": ndb.DateISOtoDMY(max_date),
|
|
|
|
"formsemestre": sem,
|
|
|
|
"is_apc": nt.is_apc,
|
|
|
|
"has_prev": has_prev,
|
|
|
|
"semestre_non_terminal": semestre_non_terminal,
|
|
|
|
"formation": Formation.query.get_or_404(sem["formation_id"]).to_dict(),
|
|
|
|
"decisions": decisions,
|
|
|
|
"decisions_dict": D,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def _comp_ects_capitalises_by_ue_code(nt: NotesTableCompat, etudid: int):
|
|
|
|
"""Calcul somme des ECTS des UE capitalisees"""
|
|
|
|
ues = nt.get_ues_stat_dict()
|
|
|
|
ects_by_ue_code = {}
|
|
|
|
for ue in ues:
|
|
|
|
ue_status = nt.get_etud_ue_status(etudid, ue["ue_id"])
|
|
|
|
if ue_status and ue_status["is_capitalized"]:
|
|
|
|
ects_val = float(ue_status["ue"]["ects"] or 0.0)
|
|
|
|
ects_by_ue_code[ue["ue_code"]] = ects_val
|
|
|
|
|
|
|
|
return ects_by_ue_code
|
|
|
|
|
|
|
|
|
2023-02-19 23:06:44 +01:00
|
|
|
def _comp_ects_by_ue_code(nt, decisions_ue):
|
2023-02-19 02:54:29 +01:00
|
|
|
"""Calcul somme des ECTS validés dans ce semestre (sans les UE capitalisées)
|
2023-02-19 23:06:44 +01:00
|
|
|
decisions_ue est le resultat de nt.get_etud_decisions_ue
|
2023-02-19 02:54:29 +01:00
|
|
|
Chaque resultat est un dict: { ue_code : ects }
|
|
|
|
"""
|
2023-02-19 23:06:44 +01:00
|
|
|
if not decisions_ue:
|
2023-02-19 02:54:29 +01:00
|
|
|
return {}
|
|
|
|
|
|
|
|
ects_by_ue_code = {}
|
2023-02-19 23:06:44 +01:00
|
|
|
for ue_id in decisions_ue:
|
|
|
|
d = decisions_ue[ue_id]
|
2023-02-19 02:54:29 +01:00
|
|
|
ue = UniteEns.query.get(ue_id)
|
|
|
|
ects_by_ue_code[ue.ue_code] = d["ects"]
|
|
|
|
|
|
|
|
return ects_by_ue_code
|
|
|
|
|
|
|
|
|
2023-02-27 17:45:20 +01:00
|
|
|
def descr_autorisations(autorisations: list[ScolarAutorisationInscription]) -> str:
|
2023-02-19 02:54:29 +01:00
|
|
|
"résumé textuel des autorisations d'inscription (-> 'S1, S3' )"
|
|
|
|
return ", ".join([f"S{a.semestre_id}" for a in autorisations])
|
|
|
|
|
|
|
|
|
|
|
|
def _descr_decisions_ues(nt, etudid, decisions_ue, decision_sem) -> list[dict]:
|
|
|
|
"""Liste des UE validées dans ce semestre (incluant les UE capitalisées)"""
|
|
|
|
if not decisions_ue:
|
|
|
|
return []
|
|
|
|
uelist = []
|
|
|
|
# Les UE validées dans ce semestre:
|
2023-02-19 23:06:44 +01:00
|
|
|
for ue_id in decisions_ue:
|
|
|
|
if decisions_ue[ue_id] and (
|
|
|
|
codes_cursus.code_ue_validant(decisions_ue[ue_id].get("code"))
|
|
|
|
or (
|
|
|
|
(not nt.is_apc)
|
|
|
|
and (
|
|
|
|
# XXX ceci devrait dépendre du parcours et non pas être une option ! #sco8
|
|
|
|
decision_sem
|
|
|
|
and scu.CONFIG.CAPITALIZE_ALL_UES
|
|
|
|
and decision_sem
|
|
|
|
and codes_cursus.code_semestre_validant(decision_sem.get("code"))
|
2023-02-19 02:54:29 +01:00
|
|
|
)
|
|
|
|
)
|
2023-02-19 23:06:44 +01:00
|
|
|
):
|
|
|
|
ue = sco_edit_ue.ue_list(args={"ue_id": ue_id})[0]
|
|
|
|
uelist.append(ue)
|
2023-02-19 02:54:29 +01:00
|
|
|
# Les UE capitalisées dans d'autres semestres:
|
|
|
|
if etudid in nt.validations.ue_capitalisees.index:
|
|
|
|
for ue_id in nt.validations.ue_capitalisees.loc[[etudid]]["ue_id"]:
|
|
|
|
try:
|
|
|
|
uelist.append(nt.get_etud_ue_status(etudid, ue_id)["ue"])
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
pass
|
|
|
|
uelist.sort(key=itemgetter("numero"))
|
|
|
|
|
|
|
|
return uelist
|
|
|
|
|
|
|
|
|
|
|
|
def _descr_decision_sem(etat, decision_sem):
|
|
|
|
"résumé textuel de la décision de semestre"
|
|
|
|
if etat == "D":
|
|
|
|
decision = "Démission"
|
|
|
|
else:
|
|
|
|
if decision_sem:
|
|
|
|
cod = decision_sem["code"]
|
2023-02-19 19:26:57 +01:00
|
|
|
decision = (
|
|
|
|
# exception pour AJ afin de ne pas mentionner le BUT
|
|
|
|
codes_cursus.CODES_EXPL.get(cod, "")
|
|
|
|
if cod != "AJ"
|
|
|
|
else "Ajourné"
|
|
|
|
)
|
2023-02-19 02:54:29 +01:00
|
|
|
else:
|
|
|
|
decision = ""
|
|
|
|
return decision
|
|
|
|
|
|
|
|
|
|
|
|
def _sum_ects_dicts(s, t):
|
|
|
|
"""Somme deux dictionnaires { ue_code : ects },
|
|
|
|
quand une UE de même code apparait deux fois, prend celle avec le plus d'ECTS.
|
|
|
|
"""
|
|
|
|
sum_ects = sum(s.values()) + sum(t.values())
|
|
|
|
for ue_code in set(s).intersection(set(t)):
|
|
|
|
sum_ects -= min(s[ue_code], t[ue_code])
|
|
|
|
return sum_ects
|