2021-08-07 15:20:30 +02:00
|
|
|
# -*- coding: UTF-8 -*
|
2022-07-20 15:07:31 +02:00
|
|
|
##############################################################################
|
|
|
|
# ScoDoc
|
2023-01-02 13:16:27 +01:00
|
|
|
# Copyright (c) 1999 - 2023 Emmanuel Viennet. All rights reserved.
|
2022-07-20 15:07:31 +02:00
|
|
|
# See LICENSE
|
|
|
|
##############################################################################
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2022-11-13 14:55:18 +01:00
|
|
|
# pylint génère trop de faux positifs avec les colonnes date:
|
|
|
|
# pylint: disable=no-member,not-an-iterable
|
|
|
|
|
2021-11-13 08:25:51 +01:00
|
|
|
"""ScoDoc models: formsemestre
|
2021-08-07 15:20:30 +02:00
|
|
|
"""
|
2021-12-04 21:04:09 +01:00
|
|
|
import datetime
|
2021-12-30 23:58:38 +01:00
|
|
|
from functools import cached_property
|
2023-04-03 17:46:31 +02:00
|
|
|
from operator import attrgetter
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2023-02-12 01:13:43 +01:00
|
|
|
from flask_login import current_user
|
2023-04-03 17:40:45 +02:00
|
|
|
|
2022-11-13 14:55:18 +01:00
|
|
|
from flask import flash, g
|
2022-07-05 16:09:26 +02:00
|
|
|
from sqlalchemy.sql import text
|
2021-11-17 10:28:51 +01:00
|
|
|
|
2022-11-13 14:55:18 +01:00
|
|
|
import app.scodoc.sco_utils as scu
|
|
|
|
from app import db, log
|
2023-02-12 01:13:43 +01:00
|
|
|
from app.auth.models import User
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.models import APO_CODE_STR_LEN, CODE_STR_LEN, SHORT_STR_LEN
|
2022-07-05 16:09:26 +02:00
|
|
|
from app.models.but_refcomp import (
|
|
|
|
ApcParcours,
|
2022-07-10 12:08:22 +02:00
|
|
|
ApcReferentielCompetences,
|
2022-11-13 14:55:18 +01:00
|
|
|
parcours_formsemestre,
|
2022-07-05 16:09:26 +02:00
|
|
|
)
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.models.config import ScoDocSiteConfig
|
2022-07-05 16:09:26 +02:00
|
|
|
from app.models.etudiants import Identite
|
2022-10-01 10:39:46 +02:00
|
|
|
from app.models.formations import Formation
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.models.groups import GroupDescr, Partition
|
2022-10-05 23:48:54 +02:00
|
|
|
from app.models.moduleimpls import ModuleImpl, ModuleImplInscription
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.models.modules import Module
|
2022-07-05 16:09:26 +02:00
|
|
|
from app.models.ues import UniteEns
|
2022-10-01 10:39:46 +02:00
|
|
|
from app.models.validations import ScolarFormSemestreValidation
|
2023-02-12 13:36:47 +01:00
|
|
|
from app.scodoc import codes_cursus, sco_preferences
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.scodoc.sco_exceptions import ScoValueError
|
2022-02-01 17:42:43 +01:00
|
|
|
from app.scodoc.sco_permissions import Permission
|
2023-05-30 15:11:09 +02:00
|
|
|
from app.scodoc.sco_utils import MONTH_NAMES_ABBREV, translate_assiduites_metric
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.scodoc.sco_vdi import ApoEtapeVDI
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2023-05-30 15:11:09 +02:00
|
|
|
from app.scodoc.sco_utils import translate_assiduites_metric
|
|
|
|
|
2023-05-15 23:39:08 +02:00
|
|
|
GROUPS_AUTO_ASSIGNMENT_DATA_MAX = 1024 * 1024 # bytes
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
class FormSemestre(db.Model):
|
2021-11-13 08:25:51 +01:00
|
|
|
"""Mise en oeuvre d'un semestre de formation"""
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
__tablename__ = "notes_formsemestre"
|
|
|
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
formsemestre_id = db.synonym("id")
|
2021-09-13 22:10:01 +02:00
|
|
|
# dept_id est aussi dans la formation, ajouté ici pour
|
2021-08-13 00:34:58 +02:00
|
|
|
# simplifier et accélérer les selects dans notesdb
|
|
|
|
dept_id = db.Column(db.Integer, db.ForeignKey("departement.id"), index=True)
|
2021-08-07 15:20:30 +02:00
|
|
|
formation_id = db.Column(db.Integer, db.ForeignKey("notes_formations.id"))
|
2021-08-10 00:23:30 +02:00
|
|
|
semestre_id = db.Column(db.Integer, nullable=False, default=1, server_default="1")
|
2023-01-09 12:12:31 +01:00
|
|
|
titre = db.Column(db.Text(), nullable=False)
|
|
|
|
date_debut = db.Column(db.Date(), nullable=False)
|
|
|
|
date_fin = db.Column(db.Date(), nullable=False)
|
2023-01-13 23:23:18 +01:00
|
|
|
etat = db.Column(db.Boolean(), nullable=False, default=True, server_default="true")
|
|
|
|
"False si verrouillé"
|
2021-08-14 18:54:32 +02:00
|
|
|
modalite = db.Column(
|
|
|
|
db.String(SHORT_STR_LEN), db.ForeignKey("notes_form_modalites.modalite")
|
2023-01-24 12:12:24 +01:00
|
|
|
)
|
|
|
|
"Modalité de formation: 'FI', 'FAP', 'FC', ..."
|
2021-08-10 00:23:30 +02:00
|
|
|
gestion_compensation = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="false"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"gestion compensation sem DUT (inutilisé en APC)"
|
2021-08-10 00:23:30 +02:00
|
|
|
bul_hide_xml = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="false"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"ne publie pas le bulletin XML ou JSON"
|
2021-09-16 22:24:08 +02:00
|
|
|
block_moyennes = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="false"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"Bloque le calcul des moyennes (générale et d'UE)"
|
2022-11-01 17:39:18 +01:00
|
|
|
block_moyenne_generale = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="false"
|
|
|
|
)
|
2023-01-13 23:50:24 +01:00
|
|
|
"Si vrai, la moyenne générale indicative BUT n'est pas calculée"
|
2021-08-10 00:23:30 +02:00
|
|
|
gestion_semestrielle = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="false"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"Semestres décalés (pour gestion jurys DUT, pas implémenté ou utile en BUT)"
|
2021-08-10 00:23:30 +02:00
|
|
|
bul_bgcolor = db.Column(
|
2023-01-09 12:12:31 +01:00
|
|
|
db.String(SHORT_STR_LEN),
|
|
|
|
default="white",
|
|
|
|
server_default="white",
|
|
|
|
nullable=False,
|
2021-08-10 00:23:30 +02:00
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"couleur fond bulletins HTML"
|
2021-08-10 00:23:30 +02:00
|
|
|
resp_can_edit = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="false"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"autorise resp. à modifier le formsemestre"
|
2021-08-10 00:23:30 +02:00
|
|
|
resp_can_change_ens = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=True, server_default="true"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"autorise resp. a modifier slt les enseignants"
|
2021-08-10 00:23:30 +02:00
|
|
|
ens_can_edit_eval = db.Column(
|
|
|
|
db.Boolean(), nullable=False, default=False, server_default="False"
|
|
|
|
)
|
2023-01-24 12:12:24 +01:00
|
|
|
"autorise les enseignants à créer des évals dans leurs modimpls"
|
2021-08-14 18:54:32 +02:00
|
|
|
elt_sem_apo = db.Column(db.Text()) # peut être fort long !
|
2023-01-24 12:12:24 +01:00
|
|
|
"code element semestre Apogee, eg 'VRTW1' ou 'V2INCS4,V2INLS4,...'"
|
2021-08-14 18:54:32 +02:00
|
|
|
elt_annee_apo = db.Column(db.Text())
|
2023-01-24 12:12:24 +01:00
|
|
|
"code element annee Apogee, eg 'VRT1A' ou 'V2INLA,V2INCA,...'"
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2023-05-15 23:39:08 +02:00
|
|
|
# Data pour groups_auto_assignment
|
|
|
|
# (ce champ est utilisé uniquement via l'API par le front js)
|
|
|
|
groups_auto_assignment_data = db.Column(db.LargeBinary(), nullable=True)
|
|
|
|
|
2021-10-16 19:19:07 +02:00
|
|
|
# Relations:
|
2021-08-07 15:20:30 +02:00
|
|
|
etapes = db.relationship(
|
2021-12-20 20:38:21 +01:00
|
|
|
"FormSemestreEtape", cascade="all,delete", backref="formsemestre"
|
2021-10-16 19:19:07 +02:00
|
|
|
)
|
2021-12-24 00:08:25 +01:00
|
|
|
modimpls = db.relationship(
|
|
|
|
"ModuleImpl",
|
|
|
|
backref="formsemestre",
|
|
|
|
lazy="dynamic",
|
2023-01-12 12:52:32 +01:00
|
|
|
cascade="all, delete-orphan",
|
2021-12-24 00:08:25 +01:00
|
|
|
)
|
2021-11-28 16:31:33 +01:00
|
|
|
etuds = db.relationship(
|
|
|
|
"Identite",
|
|
|
|
secondary="notes_formsemestre_inscription",
|
|
|
|
viewonly=True,
|
|
|
|
lazy="dynamic",
|
|
|
|
)
|
2021-12-04 21:04:09 +01:00
|
|
|
responsables = db.relationship(
|
|
|
|
"User",
|
|
|
|
secondary="notes_formsemestre_responsables",
|
|
|
|
lazy=True,
|
|
|
|
backref=db.backref("formsemestres", lazy=True),
|
|
|
|
)
|
2022-02-17 18:13:04 +01:00
|
|
|
partitions = db.relationship(
|
|
|
|
"Partition",
|
|
|
|
backref=db.backref("formsemestre", lazy=True),
|
|
|
|
lazy="dynamic",
|
2022-08-31 19:14:21 +02:00
|
|
|
order_by="Partition.numero",
|
2022-02-17 18:13:04 +01:00
|
|
|
)
|
2021-08-27 22:16:10 +02:00
|
|
|
# Ancien id ScoDoc7 pour les migrations de bases anciennes
|
2021-11-01 15:16:51 +01:00
|
|
|
# ne pas utiliser après migrate_scodoc7_dept_archives
|
2021-08-27 22:16:10 +02:00
|
|
|
scodoc7_id = db.Column(db.Text(), nullable=True)
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
# BUT
|
|
|
|
parcours = db.relationship(
|
|
|
|
"ApcParcours",
|
|
|
|
secondary=parcours_formsemestre,
|
|
|
|
lazy="subquery",
|
|
|
|
backref=db.backref("formsemestres", lazy=True),
|
2023-04-11 23:56:50 +02:00
|
|
|
order_by=(ApcParcours.numero, ApcParcours.code),
|
2022-07-05 16:09:26 +02:00
|
|
|
)
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super(FormSemestre, self).__init__(**kwargs)
|
|
|
|
if self.modalite is None:
|
2021-11-12 22:17:46 +01:00
|
|
|
self.modalite = FormationModalite.DEFAULT_MODALITE
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2022-01-25 10:45:13 +01:00
|
|
|
def __repr__(self):
|
2022-11-24 00:11:59 +01:00
|
|
|
return f"<{self.__class__.__name__} {self.id} {self.titre_annee()}>"
|
2022-01-25 10:45:13 +01:00
|
|
|
|
2023-03-20 11:17:38 +01:00
|
|
|
@classmethod
|
|
|
|
def get_formsemestre(cls, formsemestre_id: int) -> "FormSemestre":
|
|
|
|
""" "FormSemestre ou 404, cherche uniquement dans le département courant"""
|
|
|
|
if g.scodoc_dept:
|
|
|
|
return cls.query.filter_by(
|
|
|
|
id=formsemestre_id, dept_id=g.scodoc_dept_id
|
|
|
|
).first_or_404()
|
|
|
|
return cls.query.filter_by(id=formsemestre_id).first_or_404()
|
|
|
|
|
2023-01-14 18:01:54 +01:00
|
|
|
def sort_key(self) -> tuple:
|
|
|
|
"""clé pour tris par ordre alphabétique
|
|
|
|
(pour avoir le plus récent d'abord, sort avec reverse=True)"""
|
|
|
|
return (self.date_debut, self.semestre_id)
|
|
|
|
|
2022-07-21 14:21:06 +02:00
|
|
|
def to_dict(self, convert_objects=False) -> dict:
|
|
|
|
"""dict (compatible ScoDoc7).
|
|
|
|
If convert_objects, convert all attributes to native types
|
|
|
|
(suitable jor json encoding).
|
|
|
|
"""
|
2021-12-04 21:04:09 +01:00
|
|
|
d = dict(self.__dict__)
|
|
|
|
d.pop("_sa_instance_state", None)
|
|
|
|
# ScoDoc7 output_formators: (backward compat)
|
|
|
|
d["formsemestre_id"] = self.id
|
2022-02-13 23:53:11 +01:00
|
|
|
d["titre_num"] = self.titre_num()
|
2022-01-16 23:47:52 +01:00
|
|
|
if self.date_debut:
|
|
|
|
d["date_debut"] = self.date_debut.strftime("%d/%m/%Y")
|
|
|
|
d["date_debut_iso"] = self.date_debut.isoformat()
|
|
|
|
else:
|
|
|
|
d["date_debut"] = d["date_debut_iso"] = ""
|
|
|
|
if self.date_fin:
|
|
|
|
d["date_fin"] = self.date_fin.strftime("%d/%m/%Y")
|
|
|
|
d["date_fin_iso"] = self.date_fin.isoformat()
|
|
|
|
else:
|
|
|
|
d["date_fin"] = d["date_fin_iso"] = ""
|
2021-12-04 21:04:09 +01:00
|
|
|
d["responsables"] = [u.id for u in self.responsables]
|
2022-05-09 16:26:23 +02:00
|
|
|
d["titre_formation"] = self.titre_formation()
|
2023-05-11 14:01:23 +02:00
|
|
|
if convert_objects: # pour API
|
2022-12-17 14:05:13 +01:00
|
|
|
d["parcours"] = [p.to_dict() for p in self.get_parcours_apc()]
|
2022-07-27 17:42:58 +02:00
|
|
|
d["departement"] = self.departement.to_dict()
|
|
|
|
d["formation"] = self.formation.to_dict()
|
|
|
|
d["etape_apo"] = self.etapes_apo_str()
|
2023-05-11 14:01:23 +02:00
|
|
|
else:
|
|
|
|
# Converti les étapes Apogee sous forme d'ApoEtapeVDI (compat scodoc7)
|
|
|
|
d["etapes"] = [e.as_apovdi() for e in self.etapes]
|
2022-02-09 00:36:50 +01:00
|
|
|
return d
|
2022-01-16 23:47:52 +01:00
|
|
|
|
2022-05-04 16:28:34 +02:00
|
|
|
def to_dict_api(self):
|
|
|
|
"""
|
|
|
|
Un dict avec les informations sur le semestre destiné à l'api
|
|
|
|
"""
|
|
|
|
d = dict(self.__dict__)
|
|
|
|
d.pop("_sa_instance_state", None)
|
2022-08-03 21:51:45 +02:00
|
|
|
d["annee_scolaire"] = self.annee_scolaire()
|
2022-05-04 16:28:34 +02:00
|
|
|
if self.date_debut:
|
|
|
|
d["date_debut"] = self.date_debut.strftime("%d/%m/%Y")
|
|
|
|
d["date_debut_iso"] = self.date_debut.isoformat()
|
|
|
|
else:
|
|
|
|
d["date_debut"] = d["date_debut_iso"] = ""
|
|
|
|
if self.date_fin:
|
|
|
|
d["date_fin"] = self.date_fin.strftime("%d/%m/%Y")
|
|
|
|
d["date_fin_iso"] = self.date_fin.isoformat()
|
|
|
|
else:
|
|
|
|
d["date_fin"] = d["date_fin_iso"] = ""
|
2022-07-27 17:42:58 +02:00
|
|
|
d["departement"] = self.departement.to_dict()
|
2022-07-22 21:22:06 +02:00
|
|
|
d["etape_apo"] = self.etapes_apo_str()
|
|
|
|
d["formsemestre_id"] = self.id
|
2022-07-27 17:42:58 +02:00
|
|
|
d["formation"] = self.formation.to_dict()
|
2022-12-17 14:05:13 +01:00
|
|
|
d["parcours"] = [p.to_dict() for p in self.get_parcours_apc()]
|
2022-05-04 16:28:34 +02:00
|
|
|
d["responsables"] = [u.id for u in self.responsables]
|
|
|
|
d["titre_court"] = self.formation.acronyme
|
2022-12-19 00:26:17 +01:00
|
|
|
d["titre_formation"] = self.titre_formation()
|
2022-07-22 21:22:06 +02:00
|
|
|
d["titre_num"] = self.titre_num()
|
2022-07-20 08:19:24 +02:00
|
|
|
d["session_id"] = self.session_id()
|
2022-05-04 16:28:34 +02:00
|
|
|
return d
|
|
|
|
|
2022-02-09 00:36:50 +01:00
|
|
|
def get_infos_dict(self) -> dict:
|
|
|
|
"""Un dict avec des informations sur le semestre
|
|
|
|
pour les bulletins et autres templates
|
|
|
|
(contenu compatible scodoc7 / anciens templates)
|
|
|
|
"""
|
|
|
|
d = self.to_dict()
|
|
|
|
d["anneescolaire"] = self.annee_scolaire_str()
|
|
|
|
d["annee_debut"] = str(self.date_debut.year)
|
|
|
|
d["annee"] = d["annee_debut"]
|
|
|
|
d["annee_fin"] = str(self.date_fin.year)
|
2022-02-10 22:35:55 +01:00
|
|
|
if d["annee_fin"] != d["annee_debut"]:
|
|
|
|
d["annee"] += "-" + str(d["annee_fin"])
|
2022-02-09 00:36:50 +01:00
|
|
|
d["mois_debut_ord"] = self.date_debut.month
|
|
|
|
d["mois_fin_ord"] = self.date_fin.month
|
|
|
|
# La période: considère comme "S1" (ou S3) les débuts en aout-sept-octobre
|
2022-11-13 14:55:18 +01:00
|
|
|
# devrait sans doute pouvoir etre changé... XXX PIVOT
|
|
|
|
d["periode"] = self.periode()
|
2022-02-09 00:36:50 +01:00
|
|
|
if self.date_debut.month >= 8 and self.date_debut.month <= 10:
|
|
|
|
d["periode"] = 1 # typiquement, début en septembre: S1, S3...
|
|
|
|
else:
|
|
|
|
d["periode"] = 2 # typiquement, début en février: S2, S4...
|
2022-02-10 22:35:55 +01:00
|
|
|
d["titreannee"] = self.titre_annee()
|
2022-03-07 21:49:11 +01:00
|
|
|
d["mois_debut"] = self.mois_debut()
|
|
|
|
d["mois_fin"] = self.mois_fin()
|
2022-02-09 00:36:50 +01:00
|
|
|
d["titremois"] = "%s %s (%s - %s)" % (
|
|
|
|
d["titre_num"],
|
|
|
|
self.modalite or "",
|
|
|
|
d["mois_debut"],
|
|
|
|
d["mois_fin"],
|
|
|
|
)
|
|
|
|
d["session_id"] = self.session_id()
|
|
|
|
d["etapes"] = self.etapes_apo_vdi()
|
|
|
|
d["etapes_apo_str"] = self.etapes_apo_str()
|
2021-12-04 21:04:09 +01:00
|
|
|
return d
|
|
|
|
|
2023-02-21 21:34:38 +01:00
|
|
|
def flip_lock(self):
|
|
|
|
"""Flip etat (lock)"""
|
|
|
|
self.etat = not self.etat
|
|
|
|
db.session.add(self)
|
|
|
|
|
2022-12-17 13:43:47 +01:00
|
|
|
def get_parcours_apc(self) -> list[ApcParcours]:
|
|
|
|
"""Liste des parcours proposés par ce semestre.
|
|
|
|
Si aucun n'est coché et qu'il y a un référentiel, tous ceux du référentiel.
|
|
|
|
"""
|
2022-12-19 00:30:47 +01:00
|
|
|
r = self.parcours or (
|
2022-12-17 13:43:47 +01:00
|
|
|
self.formation.referentiel_competence
|
|
|
|
and self.formation.referentiel_competence.parcours
|
|
|
|
)
|
2022-12-19 00:30:47 +01:00
|
|
|
return r or []
|
2022-12-17 13:43:47 +01:00
|
|
|
|
2023-04-03 17:46:31 +02:00
|
|
|
def get_ues(self, with_sport=False) -> list[UniteEns]:
|
2021-12-20 20:38:21 +01:00
|
|
|
"""UE des modules de ce semestre, triées par numéro.
|
2021-11-17 10:28:51 +01:00
|
|
|
- Formations classiques: les UEs auxquelles appartiennent
|
|
|
|
les modules mis en place dans ce semestre.
|
2022-12-08 18:49:05 +01:00
|
|
|
- Formations APC / BUT: les UEs de la formation qui
|
2023-04-03 17:46:31 +02:00
|
|
|
- ont le même numéro de semestre que ce formsemestre;
|
|
|
|
- et sont associées à l'un des parcours de ce formsemestre
|
|
|
|
(ou à aucun, donc tronc commun).
|
2021-11-17 10:28:51 +01:00
|
|
|
"""
|
2023-04-03 17:46:31 +02:00
|
|
|
formation: Formation = self.formation
|
|
|
|
if formation.is_apc():
|
2023-05-15 11:05:51 +02:00
|
|
|
# UEs de tronc commun (sans parcours indiqué)
|
2023-04-03 17:46:31 +02:00
|
|
|
sem_ues = {
|
|
|
|
ue.id: ue
|
|
|
|
for ue in formation.query_ues_parcour(
|
|
|
|
None, with_sport=with_sport
|
|
|
|
).filter(UniteEns.semestre_idx == self.semestre_id)
|
|
|
|
}
|
2023-05-15 11:05:51 +02:00
|
|
|
# Ajoute les UE de parcours
|
2023-04-03 17:46:31 +02:00
|
|
|
for parcour in self.parcours:
|
|
|
|
sem_ues.update(
|
|
|
|
{
|
|
|
|
ue.id: ue
|
|
|
|
for ue in formation.query_ues_parcour(
|
|
|
|
parcour, with_sport=with_sport
|
|
|
|
).filter(UniteEns.semestre_idx == self.semestre_id)
|
|
|
|
}
|
2022-12-17 13:18:10 +01:00
|
|
|
)
|
2023-04-03 17:46:31 +02:00
|
|
|
ues = sem_ues.values()
|
|
|
|
return sorted(ues, key=attrgetter("numero"))
|
2021-11-17 10:28:51 +01:00
|
|
|
else:
|
|
|
|
sem_ues = db.session.query(UniteEns).filter(
|
|
|
|
ModuleImpl.formsemestre_id == self.id,
|
|
|
|
Module.id == ModuleImpl.module_id,
|
|
|
|
UniteEns.id == Module.ue_id,
|
|
|
|
)
|
2023-04-03 17:46:31 +02:00
|
|
|
if not with_sport:
|
|
|
|
sem_ues = sem_ues.filter(UniteEns.type != codes_cursus.UE_SPORT)
|
|
|
|
return sem_ues.order_by(UniteEns.numero).all()
|
2022-07-05 16:09:26 +02:00
|
|
|
|
2022-01-25 10:45:13 +01:00
|
|
|
@cached_property
|
|
|
|
def modimpls_sorted(self) -> list[ModuleImpl]:
|
2022-02-06 16:09:17 +01:00
|
|
|
"""Liste des modimpls du semestre (y compris bonus)
|
2022-01-25 10:45:13 +01:00
|
|
|
- triée par type/numéro/code en APC
|
|
|
|
- triée par numéros d'UE/matières/modules pour les formations standard.
|
|
|
|
"""
|
|
|
|
modimpls = self.modimpls.all()
|
|
|
|
if self.formation.is_apc():
|
|
|
|
modimpls.sort(
|
2022-03-02 16:31:42 +01:00
|
|
|
key=lambda m: (
|
2023-01-14 18:01:54 +01:00
|
|
|
m.module.module_type or 0, # ressources (2) avant SAEs (3)
|
2022-03-02 16:31:42 +01:00
|
|
|
m.module.numero or 0,
|
|
|
|
m.module.code or 0,
|
|
|
|
)
|
2022-01-25 10:45:13 +01:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
modimpls.sort(
|
|
|
|
key=lambda m: (
|
2022-02-02 09:51:28 +01:00
|
|
|
m.module.ue.numero or 0,
|
|
|
|
m.module.matiere.numero or 0,
|
|
|
|
m.module.numero or 0,
|
|
|
|
m.module.code or "",
|
2022-01-25 10:45:13 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
return modimpls
|
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
def modimpls_parcours(self, parcours: ApcParcours) -> list[ModuleImpl]:
|
|
|
|
"""Liste des modimpls du semestre (sans les bonus (?)) dans le parcours donné.
|
|
|
|
- triée par type/numéro/code ??
|
|
|
|
"""
|
|
|
|
cursor = db.session.execute(
|
|
|
|
text(
|
|
|
|
"""
|
|
|
|
SELECT modimpl.id
|
|
|
|
FROM notes_moduleimpl modimpl, notes_modules mod,
|
|
|
|
parcours_modules pm, parcours_formsemestre pf
|
|
|
|
WHERE modimpl.formsemestre_id = :formsemestre_id
|
|
|
|
AND modimpl.module_id = mod.id
|
|
|
|
AND pm.module_id = mod.id
|
|
|
|
AND pm.parcours_id = pf.parcours_id
|
|
|
|
AND pf.parcours_id = :parcours_id
|
|
|
|
AND pf.formsemestre_id = :formsemestre_id
|
|
|
|
"""
|
|
|
|
),
|
|
|
|
{"formsemestre_id": self.id, "parcours_id": parcours.id},
|
|
|
|
)
|
|
|
|
return [ModuleImpl.query.get(modimpl_id) for modimpl_id in cursor]
|
|
|
|
|
2022-02-01 17:42:43 +01:00
|
|
|
def can_be_edited_by(self, user):
|
2022-12-18 03:14:13 +01:00
|
|
|
"""Vrai si user peut modifier ce semestre (est chef ou l'un des responsables)"""
|
2022-02-01 17:42:43 +01:00
|
|
|
if not user.has_permission(Permission.ScoImplement): # pas chef
|
|
|
|
if not self.resp_can_edit or user.id not in [
|
|
|
|
resp.id for resp in self.responsables
|
|
|
|
]:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2021-12-04 21:04:09 +01:00
|
|
|
def est_courant(self) -> bool:
|
|
|
|
"""Vrai si la date actuelle (now) est dans le semestre
|
|
|
|
(les dates de début et fin sont incluses)
|
|
|
|
"""
|
|
|
|
today = datetime.date.today()
|
2022-11-13 14:55:18 +01:00
|
|
|
return self.date_debut <= today <= self.date_fin
|
2021-12-04 21:04:09 +01:00
|
|
|
|
2021-12-29 14:41:33 +01:00
|
|
|
def contient_periode(self, date_debut, date_fin) -> bool:
|
|
|
|
"""Vrai si l'intervalle [date_debut, date_fin] est
|
|
|
|
inclus dans le semestre.
|
2021-12-23 19:28:25 +01:00
|
|
|
(les dates de début et fin sont incluses)
|
|
|
|
"""
|
|
|
|
return (self.date_debut <= date_debut) and (date_fin <= self.date_fin)
|
|
|
|
|
2022-01-07 15:11:24 +01:00
|
|
|
def est_sur_une_annee(self):
|
|
|
|
"""Test si sem est entièrement sur la même année scolaire.
|
|
|
|
(ce n'est pas obligatoire mais si ce n'est pas le
|
|
|
|
cas les exports Apogée risquent de mal fonctionner)
|
2022-11-09 12:50:10 +01:00
|
|
|
Pivot au 1er août par défaut.
|
2022-01-07 15:11:24 +01:00
|
|
|
"""
|
|
|
|
if self.date_debut > self.date_fin:
|
2022-11-13 14:55:18 +01:00
|
|
|
flash(f"Dates début/fin inversées pour le semestre {self.titre_annee()}")
|
2022-01-07 15:11:24 +01:00
|
|
|
log(f"Warning: semestre {self.id} begins after ending !")
|
|
|
|
annee_debut = self.date_debut.year
|
2022-11-13 14:55:18 +01:00
|
|
|
month_debut_annee = ScoDocSiteConfig.get_month_debut_annee_scolaire()
|
|
|
|
if self.date_debut.month < month_debut_annee:
|
|
|
|
# début sur l'année scolaire précédente (juillet inclus par défaut)
|
2022-01-07 15:11:24 +01:00
|
|
|
annee_debut -= 1
|
|
|
|
annee_fin = self.date_fin.year
|
2022-11-13 14:55:18 +01:00
|
|
|
if self.date_fin.month < (month_debut_annee + 1):
|
|
|
|
# 9 (sept) pour autoriser un début en sept et une fin en août
|
2022-01-07 15:11:24 +01:00
|
|
|
annee_fin -= 1
|
|
|
|
return annee_debut == annee_fin
|
|
|
|
|
2021-12-04 21:04:09 +01:00
|
|
|
def est_decale(self):
|
|
|
|
"""Vrai si semestre "décalé"
|
2022-11-09 12:50:10 +01:00
|
|
|
c'est à dire semestres impairs commençant (par défaut)
|
|
|
|
entre janvier et juin et les pairs entre juillet et décembre.
|
2021-12-04 21:04:09 +01:00
|
|
|
"""
|
|
|
|
if self.semestre_id <= 0:
|
|
|
|
return False # formations sans semestres
|
2022-11-09 12:50:10 +01:00
|
|
|
return (
|
|
|
|
# impair
|
|
|
|
(
|
|
|
|
self.semestre_id % 2
|
2022-11-13 14:55:18 +01:00
|
|
|
and self.date_debut.month < scu.MONTH_DEBUT_ANNEE_SCOLAIRE
|
2022-11-09 12:50:10 +01:00
|
|
|
)
|
|
|
|
or
|
|
|
|
# pair
|
|
|
|
(
|
|
|
|
(not self.semestre_id % 2)
|
2022-11-13 14:55:18 +01:00
|
|
|
and self.date_debut.month >= scu.MONTH_DEBUT_ANNEE_SCOLAIRE
|
2022-11-09 12:50:10 +01:00
|
|
|
)
|
2021-12-04 21:04:09 +01:00
|
|
|
)
|
|
|
|
|
2023-02-19 02:54:29 +01:00
|
|
|
def est_terminal(self) -> bool:
|
|
|
|
"Vrai si dernier semestre de son cursus (ou formation mono-semestre)"
|
|
|
|
return (self.semestre_id < 0) or (
|
|
|
|
self.semestre_id == self.formation.get_cursus().NB_SEM
|
|
|
|
)
|
|
|
|
|
2022-11-13 14:55:18 +01:00
|
|
|
@classmethod
|
|
|
|
def comp_periode(
|
|
|
|
cls,
|
|
|
|
date_debut: datetime,
|
|
|
|
mois_pivot_annee=scu.MONTH_DEBUT_ANNEE_SCOLAIRE,
|
|
|
|
mois_pivot_periode=scu.MONTH_DEBUT_PERIODE2,
|
|
|
|
jour_pivot_annee=1,
|
|
|
|
jour_pivot_periode=1,
|
|
|
|
):
|
|
|
|
"""Calcule la session associée à un formsemestre commençant en date_debut
|
|
|
|
sous la forme (année, période)
|
|
|
|
année: première année de l'année scolaire
|
|
|
|
période = 1 (première période de l'année scolaire, souvent automne)
|
|
|
|
ou 2 (deuxième période de l'année scolaire, souvent printemps)
|
|
|
|
Les quatre derniers paramètres forment les dates pivots pour l'année
|
|
|
|
(1er août par défaut) et pour la période (1er décembre par défaut).
|
|
|
|
|
|
|
|
Les calculs se font à partir de la date de début indiquée.
|
|
|
|
Exemples dans tests/unit/test_periode
|
|
|
|
|
|
|
|
Implémentation:
|
|
|
|
Cas à considérer pour le calcul de la période
|
|
|
|
|
|
|
|
pa < pp -----------------|-------------------|---------------->
|
|
|
|
(A-1, P:2) pa (A, P:1) pp (A, P:2)
|
|
|
|
pp < pa -----------------|-------------------|---------------->
|
|
|
|
(A-1, P:1) pp (A-1, P:2) pa (A, P:1)
|
|
|
|
"""
|
|
|
|
pivot_annee = 100 * mois_pivot_annee + jour_pivot_annee
|
|
|
|
pivot_periode = 100 * mois_pivot_periode + jour_pivot_periode
|
|
|
|
pivot_sem = 100 * date_debut.month + date_debut.day
|
|
|
|
if pivot_sem < pivot_annee:
|
|
|
|
annee = date_debut.year - 1
|
|
|
|
else:
|
|
|
|
annee = date_debut.year
|
|
|
|
if pivot_annee < pivot_periode:
|
|
|
|
if pivot_sem < pivot_annee or pivot_sem >= pivot_periode:
|
|
|
|
periode = 2
|
|
|
|
else:
|
|
|
|
periode = 1
|
|
|
|
else:
|
|
|
|
if pivot_sem < pivot_periode or pivot_sem >= pivot_annee:
|
|
|
|
periode = 1
|
|
|
|
else:
|
|
|
|
periode = 2
|
|
|
|
return annee, periode
|
|
|
|
|
|
|
|
def periode(self) -> int:
|
|
|
|
"""La période:
|
|
|
|
* 1 : première période: automne à Paris
|
|
|
|
* 2 : deuxième période, printemps à Paris
|
|
|
|
"""
|
|
|
|
return FormSemestre.comp_periode(
|
|
|
|
self.date_debut,
|
|
|
|
mois_pivot_annee=ScoDocSiteConfig.get_month_debut_annee_scolaire(),
|
|
|
|
mois_pivot_periode=ScoDocSiteConfig.get_month_debut_periode2(),
|
|
|
|
)
|
|
|
|
|
2022-02-09 00:36:50 +01:00
|
|
|
def etapes_apo_vdi(self) -> list[ApoEtapeVDI]:
|
|
|
|
"Liste des vdis"
|
|
|
|
# was read_formsemestre_etapes
|
|
|
|
return [e.as_apovdi() for e in self.etapes if e.etape_apo]
|
|
|
|
|
2021-12-04 21:04:09 +01:00
|
|
|
def etapes_apo_str(self) -> str:
|
|
|
|
"""Chaine décrivant les étapes de ce semestre
|
|
|
|
ex: "V1RT, V1RT3, V1RT4"
|
|
|
|
"""
|
|
|
|
if not self.etapes:
|
|
|
|
return ""
|
2022-05-10 10:06:51 +02:00
|
|
|
return ", ".join(sorted([etape.etape_apo for etape in self.etapes if etape]))
|
2021-12-04 21:04:09 +01:00
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
def regroupements_coherents_etud(self) -> list[tuple[UniteEns, UniteEns]]:
|
|
|
|
"""Calcule la liste des regroupements cohérents d'UE impliquant ce
|
|
|
|
formsemestre.
|
|
|
|
Pour une année donnée: l'étudiant est inscrit dans ScoDoc soit dans le semestre
|
|
|
|
impair, soit pair, soit les deux (il est rare mais pas impossible d'avoir une
|
|
|
|
inscription seulement en semestre pair, par exemple suite à un transfert ou un
|
|
|
|
arrêt temporaire du cursus).
|
|
|
|
|
|
|
|
1. Déterminer l'*autre* formsemestre: semestre précédent ou suivant de la même
|
|
|
|
année, formation compatible (même référentiel de compétence) dans lequel
|
|
|
|
l'étudiant est inscrit.
|
|
|
|
|
|
|
|
2. Construire les couples d'UE (regroupements cohérents): apparier les UE qui
|
|
|
|
ont le même `ApcParcoursNiveauCompetence`.
|
|
|
|
"""
|
|
|
|
if not self.formation.is_apc():
|
|
|
|
return []
|
|
|
|
raise NotImplementedError() # XXX
|
|
|
|
|
2021-12-04 21:04:09 +01:00
|
|
|
def responsables_str(self, abbrev_prenom=True) -> str:
|
|
|
|
"""chaîne "J. Dupond, X. Martin"
|
|
|
|
ou "Jacques Dupond, Xavier Martin"
|
|
|
|
"""
|
2022-03-07 21:49:11 +01:00
|
|
|
# was "nomcomplet"
|
2021-12-04 21:04:09 +01:00
|
|
|
if not self.responsables:
|
|
|
|
return ""
|
|
|
|
if abbrev_prenom:
|
|
|
|
return ", ".join([u.get_prenomnom() for u in self.responsables])
|
|
|
|
else:
|
|
|
|
return ", ".join([u.get_nomcomplet() for u in self.responsables])
|
|
|
|
|
2023-02-12 01:13:43 +01:00
|
|
|
def est_responsable(self, user: User):
|
2022-03-15 21:50:37 +01:00
|
|
|
"True si l'user est l'un des responsables du semestre"
|
|
|
|
return user.id in [u.id for u in self.responsables]
|
|
|
|
|
2023-02-12 01:13:43 +01:00
|
|
|
def est_chef_or_diretud(self, user: User = None):
|
|
|
|
"Vrai si utilisateur (par def. current) est admin, chef dept ou responsable du semestre"
|
|
|
|
user = user or current_user
|
|
|
|
return user.has_permission(Permission.ScoImplement) or self.est_responsable(
|
|
|
|
user
|
|
|
|
)
|
|
|
|
|
|
|
|
def can_edit_jury(self, user: User = None):
|
|
|
|
"""Vrai si utilisateur (par def. current) peut saisir decision de jury
|
|
|
|
dans ce semestre: vérifie permission et verrouillage.
|
|
|
|
"""
|
|
|
|
user = user or current_user
|
|
|
|
return self.etat and self.est_chef_or_diretud(user)
|
|
|
|
|
|
|
|
def can_edit_pv(self, user: User = None):
|
|
|
|
"Vrai si utilisateur (par def. current) peut editer un PV de jury de ce semestre"
|
|
|
|
user = user or current_user
|
|
|
|
# Autorise les secrétariats, repérés via la permission ScoEtudChangeAdr
|
|
|
|
return self.est_chef_or_diretud(user) or user.has_permission(
|
|
|
|
Permission.ScoEtudChangeAdr
|
|
|
|
)
|
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
def annee_scolaire(self) -> int:
|
|
|
|
"""L'année de début de l'année scolaire.
|
2022-11-13 14:55:18 +01:00
|
|
|
Par exemple, 2022 si le semestre va de septembre 2022 à février 2023."""
|
2022-07-05 16:09:26 +02:00
|
|
|
return scu.annee_scolaire_debut(self.date_debut.year, self.date_debut.month)
|
|
|
|
|
2021-12-05 20:21:51 +01:00
|
|
|
def annee_scolaire_str(self):
|
|
|
|
"2021 - 2022"
|
|
|
|
return scu.annee_scolaire_repr(self.date_debut.year, self.date_debut.month)
|
|
|
|
|
2022-03-07 21:49:11 +01:00
|
|
|
def mois_debut(self) -> str:
|
|
|
|
"Oct 2021"
|
|
|
|
return f"{MONTH_NAMES_ABBREV[self.date_debut.month - 1]} {self.date_debut.year}"
|
|
|
|
|
|
|
|
def mois_fin(self) -> str:
|
|
|
|
"Jul 2022"
|
2022-03-14 20:23:56 +01:00
|
|
|
return f"{MONTH_NAMES_ABBREV[self.date_fin.month - 1]} {self.date_fin.year}"
|
2022-03-07 21:49:11 +01:00
|
|
|
|
2021-12-04 21:04:09 +01:00
|
|
|
def session_id(self) -> str:
|
|
|
|
"""identifiant externe de semestre de formation
|
|
|
|
Exemple: RT-DUT-FI-S1-ANNEE
|
|
|
|
|
|
|
|
DEPT-TYPE-MODALITE+-S?|SPECIALITE
|
|
|
|
|
|
|
|
TYPE=DUT|LP*|M*
|
|
|
|
MODALITE=FC|FI|FA (si plusieurs, en inverse alpha)
|
|
|
|
|
|
|
|
SPECIALITE=[A-Z]+ EON,ASSUR, ... (si pas Sn ou SnD)
|
|
|
|
|
|
|
|
ANNEE=annee universitaire de debut (exemple: un S2 de 2013-2014 sera S2-2013)
|
|
|
|
"""
|
2022-05-09 16:26:23 +02:00
|
|
|
prefs = sco_preferences.SemPreferences(dept_id=self.dept_id)
|
|
|
|
imputation_dept = prefs["ImputationDept"]
|
2021-12-04 21:04:09 +01:00
|
|
|
if not imputation_dept:
|
2022-05-09 16:26:23 +02:00
|
|
|
imputation_dept = prefs["DeptName"]
|
2021-12-04 21:04:09 +01:00
|
|
|
imputation_dept = imputation_dept.upper()
|
2023-02-12 13:36:47 +01:00
|
|
|
cursus_name = self.formation.get_cursus().NAME
|
2021-12-04 21:04:09 +01:00
|
|
|
modalite = self.modalite
|
|
|
|
# exception pour code Apprentissage:
|
|
|
|
modalite = (modalite or "").replace("FAP", "FA").replace("APP", "FA")
|
|
|
|
if self.semestre_id > 0:
|
|
|
|
decale = "D" if self.est_decale() else ""
|
|
|
|
semestre_id = f"S{self.semestre_id}{decale}"
|
|
|
|
else:
|
|
|
|
semestre_id = self.formation.code_specialite or ""
|
|
|
|
annee_sco = str(
|
|
|
|
scu.annee_scolaire_debut(self.date_debut.year, self.date_debut.month)
|
|
|
|
)
|
|
|
|
return scu.sanitize_string(
|
2023-02-12 13:36:47 +01:00
|
|
|
f"{imputation_dept}-{cursus_name}-{modalite}-{semestre_id}-{annee_sco}"
|
2021-12-04 21:04:09 +01:00
|
|
|
)
|
|
|
|
|
2022-02-10 22:35:55 +01:00
|
|
|
def titre_annee(self) -> str:
|
2022-11-13 14:55:18 +01:00
|
|
|
"""Le titre avec l'année
|
|
|
|
'DUT Réseaux et Télécommunications semestre 3 FAP 2020-2021'
|
|
|
|
"""
|
2022-02-10 22:35:55 +01:00
|
|
|
titre_annee = (
|
|
|
|
f"{self.titre_num()} {self.modalite or ''} {self.date_debut.year}"
|
|
|
|
)
|
|
|
|
if self.date_fin.year != self.date_debut.year:
|
|
|
|
titre_annee += "-" + str(self.date_fin.year)
|
|
|
|
return titre_annee
|
|
|
|
|
2023-02-12 23:03:12 +01:00
|
|
|
def titre_formation(self, with_sem_idx=False):
|
2022-05-09 16:26:23 +02:00
|
|
|
"""Titre avec formation, court, pour passerelle: "BUT R&T"
|
|
|
|
(méthode de formsemestre car on pourrait ajouter le semestre, ou d'autres infos, à voir)
|
|
|
|
"""
|
2023-02-12 23:03:12 +01:00
|
|
|
if with_sem_idx and self.semestre_id > 0:
|
|
|
|
return f"{self.formation.acronyme} S{self.semestre_id}"
|
2022-05-09 16:26:23 +02:00
|
|
|
return self.formation.acronyme
|
|
|
|
|
2021-12-10 00:54:57 +01:00
|
|
|
def titre_mois(self) -> str:
|
|
|
|
"""Le titre et les dates du semestre, pour affichage dans des listes
|
|
|
|
Ex: "BUT QLIO (PN 2022) semestre 1 FI (Sept 2022 - Jan 2023)"
|
|
|
|
"""
|
|
|
|
return f"""{self.titre_num()} {self.modalite or ''} ({
|
|
|
|
scu.MONTH_NAMES_ABBREV[self.date_debut.month-1]} {
|
|
|
|
self.date_debut.year} - {
|
|
|
|
scu.MONTH_NAMES_ABBREV[self.date_fin.month -1]} {
|
|
|
|
self.date_fin.year})"""
|
|
|
|
|
|
|
|
def titre_num(self) -> str:
|
2022-01-20 13:00:25 +01:00
|
|
|
"""Le titre et le semestre, ex ""DUT Informatique semestre 2"" """
|
2023-02-12 13:36:47 +01:00
|
|
|
if self.semestre_id == codes_cursus.NO_SEMESTRE_ID:
|
2021-12-10 00:54:57 +01:00
|
|
|
return self.titre
|
2023-02-12 13:36:47 +01:00
|
|
|
return f"{self.titre} {self.formation.get_cursus().SESSION_NAME} {self.semestre_id}"
|
2021-12-10 00:54:57 +01:00
|
|
|
|
2022-04-12 17:12:51 +02:00
|
|
|
def sem_modalite(self) -> str:
|
2022-04-20 22:55:40 +02:00
|
|
|
"""Le semestre et la modalité, ex "S2 FI" ou "S3 APP" """
|
2022-04-12 17:12:51 +02:00
|
|
|
if self.semestre_id > 0:
|
|
|
|
descr_sem = f"S{self.semestre_id}"
|
|
|
|
else:
|
|
|
|
descr_sem = ""
|
|
|
|
if self.modalite:
|
|
|
|
descr_sem += " " + self.modalite
|
|
|
|
return descr_sem
|
|
|
|
|
2021-12-11 16:46:15 +01:00
|
|
|
def get_abs_count(self, etudid):
|
|
|
|
"""Les comptes d'absences de cet étudiant dans ce semestre:
|
2022-02-21 19:25:38 +01:00
|
|
|
tuple (nb abs, nb abs justifiées)
|
2021-12-11 16:46:15 +01:00
|
|
|
Utilise un cache.
|
|
|
|
"""
|
|
|
|
from app.scodoc import sco_abs
|
|
|
|
|
2023-05-30 15:11:09 +02:00
|
|
|
metrique = sco_preferences.get_preference("assi_metrique", self.id)
|
|
|
|
return sco_abs.get_assiduites_count_in_interval(
|
|
|
|
etudid,
|
|
|
|
self.date_debut.isoformat(),
|
|
|
|
self.date_fin.isoformat(),
|
|
|
|
translate_assiduites_metric(metrique),
|
2021-12-11 16:46:15 +01:00
|
|
|
)
|
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
def get_codes_apogee(self, category=None) -> set[str]:
|
|
|
|
"""Les codes Apogée (codés en base comme "VRT1,VRT2")
|
|
|
|
category: None: tous, "etapes": étapes associées, "sem: code semestre", "annee": code annuel
|
|
|
|
"""
|
|
|
|
codes = set()
|
|
|
|
if category is None or category == "etapes":
|
|
|
|
codes |= {e.etape_apo for e in self.etapes if e}
|
|
|
|
if (category is None or category == "sem") and self.elt_sem_apo:
|
|
|
|
codes |= {x.strip() for x in self.elt_sem_apo.split(",") if x}
|
|
|
|
if (category is None or category == "annee") and self.elt_annee_apo:
|
|
|
|
codes |= {x.strip() for x in self.elt_annee_apo.split(",") if x}
|
|
|
|
return codes
|
|
|
|
|
2022-02-13 13:58:09 +01:00
|
|
|
def get_inscrits(self, include_demdef=False, order=False) -> list[Identite]:
|
2021-12-14 23:03:59 +01:00
|
|
|
"""Liste des étudiants inscrits à ce semestre
|
2022-01-16 23:47:52 +01:00
|
|
|
Si include_demdef, tous les étudiants, avec les démissionnaires
|
|
|
|
et défaillants.
|
2022-02-13 13:58:09 +01:00
|
|
|
Si order, tri par clé sort_key
|
2021-12-14 23:03:59 +01:00
|
|
|
"""
|
2022-01-16 23:47:52 +01:00
|
|
|
if include_demdef:
|
2022-02-12 22:57:46 +01:00
|
|
|
etuds = [ins.etud for ins in self.inscriptions]
|
2021-12-14 23:03:59 +01:00
|
|
|
else:
|
2022-02-12 22:57:46 +01:00
|
|
|
etuds = [ins.etud for ins in self.inscriptions if ins.etat == scu.INSCRIT]
|
2022-02-13 13:58:09 +01:00
|
|
|
if order:
|
2022-02-12 22:57:46 +01:00
|
|
|
etuds.sort(key=lambda e: e.sort_key)
|
|
|
|
return etuds
|
2021-12-14 23:03:59 +01:00
|
|
|
|
2022-01-30 13:11:17 +01:00
|
|
|
@cached_property
|
|
|
|
def etudids_actifs(self) -> set:
|
2022-03-24 14:01:57 +01:00
|
|
|
"Set des etudids inscrits non démissionnaires et non défaillants"
|
2022-01-30 13:11:17 +01:00
|
|
|
return {ins.etudid for ins in self.inscriptions if ins.etat == scu.INSCRIT}
|
|
|
|
|
2021-12-30 23:58:38 +01:00
|
|
|
@cached_property
|
|
|
|
def etuds_inscriptions(self) -> dict:
|
2022-01-16 23:47:52 +01:00
|
|
|
"""Map { etudid : inscription } (incluant DEM et DEF)"""
|
2021-12-30 23:58:38 +01:00
|
|
|
return {ins.etud.id: ins for ins in self.inscriptions}
|
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
def setup_parcours_groups(self) -> None:
|
|
|
|
"""Vérifie et créee si besoin la partition et les groupes de parcours BUT."""
|
|
|
|
if not self.formation.is_apc():
|
|
|
|
return
|
|
|
|
partition = Partition.query.filter_by(
|
|
|
|
formsemestre_id=self.id, partition_name=scu.PARTITION_PARCOURS
|
|
|
|
).first()
|
|
|
|
if partition is None:
|
|
|
|
# Création de la partition de parcours
|
|
|
|
partition = Partition(
|
|
|
|
formsemestre_id=self.id,
|
|
|
|
partition_name=scu.PARTITION_PARCOURS,
|
|
|
|
numero=-1,
|
2022-08-03 21:42:53 +02:00
|
|
|
groups_editable=False,
|
2022-07-05 16:09:26 +02:00
|
|
|
)
|
|
|
|
db.session.add(partition)
|
|
|
|
db.session.flush() # pour avoir un id
|
2022-08-30 20:31:05 +02:00
|
|
|
flash("Partition Parcours créée.")
|
2022-12-17 13:43:47 +01:00
|
|
|
elif partition.groups_editable:
|
|
|
|
# Il ne faut jamais laisser éditer cette partition de parcours
|
|
|
|
partition.groups_editable = False
|
|
|
|
db.session.add(partition)
|
2022-07-05 16:09:26 +02:00
|
|
|
|
2022-12-17 13:43:47 +01:00
|
|
|
for parcour in self.get_parcours_apc():
|
2022-07-05 16:09:26 +02:00
|
|
|
if parcour.code:
|
|
|
|
group = GroupDescr.query.filter_by(
|
|
|
|
partition_id=partition.id, group_name=parcour.code
|
|
|
|
).first()
|
|
|
|
if not group:
|
|
|
|
partition.groups.append(GroupDescr(group_name=parcour.code))
|
2022-11-01 19:25:15 +01:00
|
|
|
db.session.flush()
|
|
|
|
# S'il reste des groupes de parcours qui ne sont plus dans le semestre
|
2022-12-17 13:43:47 +01:00
|
|
|
# - s'ils n'ont pas d'inscrits, supprime-les.
|
|
|
|
# - s'ils ont des inscrits: avertissement
|
2022-11-01 19:25:15 +01:00
|
|
|
for group in GroupDescr.query.filter_by(partition_id=partition.id):
|
2022-12-17 14:05:13 +01:00
|
|
|
if group.group_name not in (p.code for p in self.get_parcours_apc()):
|
2022-12-17 13:43:47 +01:00
|
|
|
if (
|
|
|
|
len(
|
|
|
|
[
|
|
|
|
inscr
|
|
|
|
for inscr in self.inscriptions
|
|
|
|
if (inscr.parcour is not None)
|
|
|
|
and inscr.parcour.code == group.group_name
|
|
|
|
]
|
|
|
|
)
|
|
|
|
== 0
|
|
|
|
):
|
|
|
|
flash(f"Suppression du groupe de parcours vide {group.group_name}")
|
|
|
|
db.session.delete(group)
|
|
|
|
else:
|
|
|
|
flash(
|
|
|
|
f"""Attention: groupe de parcours {group.group_name} non vide:
|
|
|
|
réaffectez ses étudiants dans des parcours du semestre"""
|
|
|
|
)
|
2022-11-01 19:25:15 +01:00
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
def update_inscriptions_parcours_from_groups(self) -> None:
|
|
|
|
"""Met à jour les inscriptions dans les parcours du semestres en
|
|
|
|
fonction des groupes de parcours.
|
|
|
|
Les groupes de parcours sont ceux de la partition scu.PARTITION_PARCOURS
|
|
|
|
et leur nom est le code du parcours (eg "Cyber").
|
|
|
|
"""
|
|
|
|
partition = Partition.query.filter_by(
|
|
|
|
formsemestre_id=self.id, partition_name=scu.PARTITION_PARCOURS
|
|
|
|
).first()
|
|
|
|
if partition is None: # pas de partition de parcours
|
|
|
|
return
|
|
|
|
|
|
|
|
# Efface les inscriptions aux parcours:
|
|
|
|
db.session.execute(
|
|
|
|
text(
|
|
|
|
"""UPDATE notes_formsemestre_inscription
|
|
|
|
SET parcour_id=NULL
|
|
|
|
WHERE formsemestre_id=:formsemestre_id
|
|
|
|
"""
|
|
|
|
),
|
|
|
|
{
|
|
|
|
"formsemestre_id": self.id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
# Inscrit les étudiants des groupes de parcours:
|
|
|
|
for group in partition.groups:
|
2022-07-10 12:08:22 +02:00
|
|
|
query = (
|
|
|
|
ApcParcours.query.filter_by(code=group.group_name)
|
|
|
|
.join(ApcReferentielCompetences)
|
|
|
|
.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
)
|
2022-07-05 16:09:26 +02:00
|
|
|
if query.count() != 1:
|
|
|
|
log(
|
|
|
|
f"""update_inscriptions_parcours_from_groups: {
|
|
|
|
query.count()} parcours with code {group.group_name}"""
|
|
|
|
)
|
|
|
|
continue
|
|
|
|
parcour = query.first()
|
|
|
|
db.session.execute(
|
|
|
|
text(
|
|
|
|
"""UPDATE notes_formsemestre_inscription ins
|
|
|
|
SET parcour_id=:parcour_id
|
|
|
|
FROM group_membership gm
|
|
|
|
WHERE formsemestre_id=:formsemestre_id
|
|
|
|
AND gm.etudid = ins.etudid
|
|
|
|
AND gm.group_id = :group_id
|
|
|
|
"""
|
|
|
|
),
|
|
|
|
{
|
|
|
|
"formsemestre_id": self.id,
|
|
|
|
"parcour_id": parcour.id,
|
|
|
|
"group_id": group.id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
db.session.commit()
|
|
|
|
|
2022-10-01 10:39:46 +02:00
|
|
|
def etud_validations_description_html(self, etudid: int) -> str:
|
|
|
|
"""Description textuelle des validations de jury de cet étudiant dans ce semestre"""
|
2022-11-13 14:55:18 +01:00
|
|
|
from app.models.but_validations import ApcValidationAnnee, ApcValidationRCUE
|
2022-10-01 10:39:46 +02:00
|
|
|
|
|
|
|
vals_sem = ScolarFormSemestreValidation.query.filter_by(
|
|
|
|
etudid=etudid, formsemestre_id=self.id, ue_id=None
|
|
|
|
).all()
|
|
|
|
vals_ues = (
|
|
|
|
ScolarFormSemestreValidation.query.filter_by(
|
|
|
|
etudid=etudid, formsemestre_id=self.id
|
|
|
|
)
|
|
|
|
.join(UniteEns)
|
|
|
|
.order_by(UniteEns.numero)
|
|
|
|
.all()
|
|
|
|
)
|
|
|
|
# Validations BUT:
|
|
|
|
vals_rcues = (
|
|
|
|
ApcValidationRCUE.query.filter_by(etudid=etudid, formsemestre_id=self.id)
|
|
|
|
.join(UniteEns, ApcValidationRCUE.ue1)
|
|
|
|
.order_by(UniteEns.numero)
|
|
|
|
.all()
|
|
|
|
)
|
|
|
|
vals_annee = (
|
|
|
|
ApcValidationAnnee.query.filter_by(
|
|
|
|
etudid=etudid,
|
|
|
|
annee_scolaire=self.annee_scolaire(),
|
|
|
|
)
|
|
|
|
.join(ApcValidationAnnee.formsemestre)
|
|
|
|
.join(FormSemestre.formation)
|
|
|
|
.filter(Formation.formation_code == self.formation.formation_code)
|
|
|
|
.all()
|
|
|
|
)
|
|
|
|
H = []
|
|
|
|
for vals in (vals_sem, vals_ues, vals_rcues, vals_annee):
|
|
|
|
if vals:
|
|
|
|
H.append(
|
|
|
|
f"""<ul><li>{"</li><li>".join(str(x) for x in vals)}</li></ul>"""
|
|
|
|
)
|
|
|
|
return "\n".join(H)
|
|
|
|
|
2022-10-05 23:48:54 +02:00
|
|
|
def etud_set_all_missing_notes(self, etud: Identite, value=None) -> int:
|
|
|
|
"""Met toutes les notes manquantes de cet étudiant dans ce semestre
|
|
|
|
(ie dans toutes les évaluations des modules auxquels il est inscrit et n'a pas de note)
|
|
|
|
à la valeur donnée par value, qui est en général "ATT", "ABS", "EXC".
|
|
|
|
"""
|
|
|
|
from app.scodoc import sco_saisie_notes
|
|
|
|
|
|
|
|
inscriptions = (
|
|
|
|
ModuleImplInscription.query.filter_by(etudid=etud.id)
|
|
|
|
.join(ModuleImpl)
|
|
|
|
.filter_by(formsemestre_id=self.id)
|
|
|
|
)
|
|
|
|
nb_recorded = 0
|
|
|
|
for inscription in inscriptions:
|
|
|
|
for evaluation in inscription.modimpl.evaluations:
|
|
|
|
if evaluation.get_etud_note(etud) is None:
|
|
|
|
if not sco_saisie_notes.do_evaluation_set_etud_note(
|
|
|
|
evaluation, etud, value
|
|
|
|
):
|
|
|
|
raise ScoValueError(
|
|
|
|
"erreur lors de l'enregistrement de la note"
|
|
|
|
)
|
|
|
|
nb_recorded += 1
|
|
|
|
return nb_recorded
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
# Association id des utilisateurs responsables (aka directeurs des etudes) du semestre
|
|
|
|
notes_formsemestre_responsables = db.Table(
|
|
|
|
"notes_formsemestre_responsables",
|
|
|
|
db.Column(
|
|
|
|
"formsemestre_id",
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_formsemestre.id"),
|
|
|
|
),
|
|
|
|
db.Column("responsable_id", db.Integer, db.ForeignKey("user.id")),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-12-20 20:38:21 +01:00
|
|
|
class FormSemestreEtape(db.Model):
|
2022-04-16 15:34:40 +02:00
|
|
|
"""Étape Apogée associée au semestre"""
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
__tablename__ = "notes_formsemestre_etapes"
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
formsemestre_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_formsemestre.id"),
|
|
|
|
)
|
2022-05-10 10:06:51 +02:00
|
|
|
# etape_apo aurait du etre not null, mais oublié
|
2021-12-10 00:54:57 +01:00
|
|
|
etape_apo = db.Column(db.String(APO_CODE_STR_LEN), index=True)
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2022-05-10 10:06:51 +02:00
|
|
|
def __bool__(self):
|
|
|
|
"Etape False if code empty"
|
|
|
|
return self.etape_apo is not None and (len(self.etape_apo) > 0)
|
|
|
|
|
2021-12-04 21:04:09 +01:00
|
|
|
def __repr__(self):
|
2022-05-10 10:06:51 +02:00
|
|
|
return f"<Etape {self.id} apo={self.etape_apo!r}>"
|
2021-12-04 21:04:09 +01:00
|
|
|
|
2023-05-11 14:01:23 +02:00
|
|
|
def as_apovdi(self) -> ApoEtapeVDI:
|
2021-12-04 21:04:09 +01:00
|
|
|
return ApoEtapeVDI(self.etape_apo)
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2021-11-12 22:17:46 +01:00
|
|
|
class FormationModalite(db.Model):
|
2021-08-07 15:20:30 +02:00
|
|
|
"""Modalités de formation, utilisées pour la présentation
|
|
|
|
(grouper les semestres, générer des codes, etc.)
|
|
|
|
"""
|
|
|
|
|
2021-08-09 11:33:04 +02:00
|
|
|
__tablename__ = "notes_form_modalites"
|
|
|
|
|
2021-08-12 13:54:56 +02:00
|
|
|
DEFAULT_MODALITE = "FI"
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
2021-08-12 13:54:56 +02:00
|
|
|
modalite = db.Column(
|
2021-08-14 18:54:32 +02:00
|
|
|
db.String(SHORT_STR_LEN),
|
2021-08-12 13:54:56 +02:00
|
|
|
unique=True,
|
|
|
|
index=True,
|
|
|
|
default=DEFAULT_MODALITE,
|
|
|
|
server_default=DEFAULT_MODALITE,
|
|
|
|
) # code
|
2021-08-07 15:20:30 +02:00
|
|
|
titre = db.Column(db.Text()) # texte explicatif
|
|
|
|
# numero = ordre de presentation)
|
2023-04-03 17:46:31 +02:00
|
|
|
numero = db.Column(db.Integer, nullable=False, default=0)
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def insert_modalites():
|
|
|
|
"""Create default modalities"""
|
|
|
|
numero = 0
|
2021-08-09 23:23:11 +02:00
|
|
|
try:
|
2023-04-03 17:40:45 +02:00
|
|
|
for code, titre in (
|
2021-11-12 22:17:46 +01:00
|
|
|
(FormationModalite.DEFAULT_MODALITE, "Formation Initiale"),
|
2021-08-09 23:23:11 +02:00
|
|
|
("FAP", "Apprentissage"),
|
|
|
|
("FC", "Formation Continue"),
|
|
|
|
("DEC", "Formation Décalées"),
|
|
|
|
("LIC", "Licence"),
|
|
|
|
("CPRO", "Contrats de Professionnalisation"),
|
|
|
|
("DIST", "À distance"),
|
|
|
|
("ETR", "À l'étranger"),
|
|
|
|
("EXT", "Extérieur"),
|
|
|
|
("OTHER", "Autres formations"),
|
|
|
|
):
|
2021-11-12 22:17:46 +01:00
|
|
|
modalite = FormationModalite.query.filter_by(modalite=code).first()
|
2021-08-09 23:23:11 +02:00
|
|
|
if modalite is None:
|
2021-11-12 22:17:46 +01:00
|
|
|
modalite = FormationModalite(
|
2021-08-09 23:23:11 +02:00
|
|
|
modalite=code, titre=titre, numero=numero
|
|
|
|
)
|
|
|
|
db.session.add(modalite)
|
|
|
|
numero += 1
|
2021-08-07 15:20:30 +02:00
|
|
|
db.session.commit()
|
2021-08-09 23:23:11 +02:00
|
|
|
except:
|
|
|
|
db.session.rollback()
|
|
|
|
raise
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
|
2021-12-20 20:38:21 +01:00
|
|
|
class FormSemestreUECoef(db.Model):
|
2021-08-07 15:20:30 +02:00
|
|
|
"""Coef des UE capitalisees arrivant dans ce semestre"""
|
|
|
|
|
|
|
|
__tablename__ = "notes_formsemestre_uecoef"
|
|
|
|
__table_args__ = (db.UniqueConstraint("formsemestre_id", "ue_id"),)
|
|
|
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
formsemestre_uecoef_id = db.synonym("id")
|
|
|
|
formsemestre_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_formsemestre.id"),
|
2022-02-07 16:32:04 +01:00
|
|
|
index=True,
|
2021-08-07 15:20:30 +02:00
|
|
|
)
|
|
|
|
ue_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_ue.id"),
|
2022-02-07 16:32:04 +01:00
|
|
|
index=True,
|
2021-08-07 15:20:30 +02:00
|
|
|
)
|
|
|
|
coefficient = db.Column(db.Float, nullable=False)
|
|
|
|
|
|
|
|
|
2021-12-20 20:38:21 +01:00
|
|
|
class FormSemestreUEComputationExpr(db.Model):
|
2022-02-01 17:42:43 +01:00
|
|
|
"""Formules utilisateurs pour calcul moyenne UE (désactivées en 9.2+)."""
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
__tablename__ = "notes_formsemestre_ue_computation_expr"
|
|
|
|
__table_args__ = (db.UniqueConstraint("formsemestre_id", "ue_id"),)
|
|
|
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
notes_formsemestre_ue_computation_expr_id = db.synonym("id")
|
|
|
|
formsemestre_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_formsemestre.id"),
|
|
|
|
)
|
|
|
|
ue_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_ue.id"),
|
|
|
|
)
|
|
|
|
# formule de calcul moyenne
|
|
|
|
computation_expr = db.Column(db.Text())
|
|
|
|
|
|
|
|
|
2021-12-20 20:38:21 +01:00
|
|
|
class FormSemestreCustomMenu(db.Model):
|
2021-08-07 15:20:30 +02:00
|
|
|
"""Menu custom associe au semestre"""
|
|
|
|
|
|
|
|
__tablename__ = "notes_formsemestre_custommenu"
|
|
|
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
custommenu_id = db.synonym("id")
|
|
|
|
formsemestre_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_formsemestre.id"),
|
|
|
|
)
|
|
|
|
title = db.Column(db.Text())
|
|
|
|
url = db.Column(db.Text())
|
2021-08-10 00:23:30 +02:00
|
|
|
idx = db.Column(db.Integer, default=0, server_default="0") # rang dans le menu
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
|
2021-12-20 20:38:21 +01:00
|
|
|
class FormSemestreInscription(db.Model):
|
2021-08-07 15:20:30 +02:00
|
|
|
"""Inscription à un semestre de formation"""
|
|
|
|
|
|
|
|
__tablename__ = "notes_formsemestre_inscription"
|
|
|
|
__table_args__ = (db.UniqueConstraint("formsemestre_id", "etudid"),)
|
|
|
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
formsemestre_inscription_id = db.synonym("id")
|
|
|
|
|
2022-07-05 16:09:26 +02:00
|
|
|
etudid = db.Column(
|
|
|
|
db.Integer, db.ForeignKey("identite.id", ondelete="CASCADE"), index=True
|
|
|
|
)
|
2021-08-07 15:20:30 +02:00
|
|
|
formsemestre_id = db.Column(
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_formsemestre.id"),
|
2021-12-14 23:03:59 +01:00
|
|
|
index=True,
|
2021-08-07 15:20:30 +02:00
|
|
|
)
|
2021-11-18 23:53:57 +01:00
|
|
|
etud = db.relationship(
|
|
|
|
Identite,
|
|
|
|
backref=db.backref("formsemestre_inscriptions", cascade="all, delete-orphan"),
|
|
|
|
)
|
|
|
|
formsemestre = db.relationship(
|
|
|
|
FormSemestre,
|
2021-12-17 14:24:00 +01:00
|
|
|
backref=db.backref(
|
|
|
|
"inscriptions",
|
|
|
|
cascade="all, delete-orphan",
|
2021-12-20 20:38:21 +01:00
|
|
|
order_by="FormSemestreInscription.etudid",
|
2021-12-17 14:24:00 +01:00
|
|
|
),
|
2021-11-18 23:53:57 +01:00
|
|
|
)
|
2021-08-07 15:20:30 +02:00
|
|
|
# I inscrit, D demission en cours de semestre, DEF si "defaillant"
|
2021-12-14 23:03:59 +01:00
|
|
|
etat = db.Column(db.String(CODE_STR_LEN), index=True)
|
2022-07-05 16:09:26 +02:00
|
|
|
# Etape Apogée d'inscription (ajout 2020)
|
2021-08-07 15:20:30 +02:00
|
|
|
etape = db.Column(db.String(APO_CODE_STR_LEN))
|
2022-07-05 16:09:26 +02:00
|
|
|
# Parcours (pour les BUT)
|
2023-02-09 11:56:20 +01:00
|
|
|
parcour_id = db.Column(
|
|
|
|
db.Integer, db.ForeignKey("apc_parcours.id", ondelete="SET NULL"), index=True
|
|
|
|
)
|
2022-07-05 16:09:26 +02:00
|
|
|
parcour = db.relationship(ApcParcours)
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2022-03-29 00:03:38 +02:00
|
|
|
def __repr__(self):
|
2022-07-05 16:09:26 +02:00
|
|
|
return f"""<{self.__class__.__name__} {self.id} etudid={self.etudid} sem={
|
|
|
|
self.formsemestre_id} etat={self.etat} {
|
|
|
|
('parcours='+str(self.parcour)) if self.parcour else ''}>"""
|
2022-03-29 00:03:38 +02:00
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
|
|
|
|
class NotesSemSet(db.Model):
|
|
|
|
"""semsets: ensemble de formsemestres pour exports Apogée"""
|
|
|
|
|
|
|
|
__tablename__ = "notes_semset"
|
|
|
|
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
semset_id = db.synonym("id")
|
2021-08-13 00:34:58 +02:00
|
|
|
dept_id = db.Column(db.Integer, db.ForeignKey("departement.id"))
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
title = db.Column(db.Text)
|
|
|
|
annee_scolaire = db.Column(db.Integer, nullable=True, default=None)
|
2022-11-09 12:50:10 +01:00
|
|
|
sem_id = db.Column(db.Integer, nullable=False, default=0)
|
|
|
|
"période: 0 (année), 1 (Simpair), 2 (Spair)"
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2023-04-16 05:32:21 +02:00
|
|
|
def set_periode(self, periode: int):
|
|
|
|
"""Modifie la période 0 (année), 1 (Simpair), 2 (Spair)"""
|
|
|
|
if periode not in {0, 1, 2}:
|
|
|
|
raise ValueError("periode invalide")
|
|
|
|
self.sem_id = periode
|
|
|
|
log(f"semset.set_periode({self.id}, {periode})")
|
|
|
|
db.session.add(self)
|
|
|
|
db.session.commit()
|
|
|
|
|
2021-08-07 15:20:30 +02:00
|
|
|
|
2021-09-10 21:48:04 +02:00
|
|
|
# Association: many to many
|
2021-08-07 15:20:30 +02:00
|
|
|
notes_semset_formsemestre = db.Table(
|
|
|
|
"notes_semset_formsemestre",
|
|
|
|
db.Column("formsemestre_id", db.Integer, db.ForeignKey("notes_formsemestre.id")),
|
2021-09-10 21:48:04 +02:00
|
|
|
db.Column(
|
|
|
|
"semset_id",
|
|
|
|
db.Integer,
|
|
|
|
db.ForeignKey("notes_semset.id", ondelete="CASCADE"),
|
|
|
|
nullable=False,
|
|
|
|
),
|
2021-08-07 15:20:30 +02:00
|
|
|
db.UniqueConstraint("formsemestre_id", "semset_id"),
|
|
|
|
)
|