2023-04-17 15:43:58 +02:00
|
|
|
"""
|
|
|
|
Commande permettant de supprimer les assiduités et les justificatifs
|
|
|
|
|
|
|
|
Ecrit par Matthias HARTMANN
|
|
|
|
"""
|
2023-07-11 14:45:48 +02:00
|
|
|
import sqlalchemy as sa
|
2023-04-17 15:43:58 +02:00
|
|
|
|
|
|
|
from app import db
|
|
|
|
from app.models import Justificatif, Assiduite, Departement
|
|
|
|
from app.scodoc.sco_archives_justificatifs import JustificatifArchiver
|
|
|
|
from app.scodoc.sco_utils import TerminalColor
|
|
|
|
|
|
|
|
|
|
|
|
def downgrade_module(
|
|
|
|
dept: str = None, assiduites: bool = False, justificatifs: bool = False
|
|
|
|
):
|
|
|
|
"""
|
|
|
|
Supprime les assiduités et/ou justificatifs du dept sélectionné ou de tous les départements
|
|
|
|
|
|
|
|
Args:
|
|
|
|
dept (str, optional): l'acronym du département. Par défaut tous les départements.
|
|
|
|
assiduites (bool, optional): suppression des assiduités. Par défaut : Non
|
|
|
|
justificatifs (bool, optional): supression des justificatifs. Par défaut : Non
|
|
|
|
"""
|
|
|
|
|
|
|
|
dept_etudid: list[int] = None
|
|
|
|
dept_id: int = None
|
|
|
|
|
|
|
|
if dept is not None:
|
|
|
|
departement: Departement = Departement.query.filter_by(acronym=dept).first()
|
|
|
|
|
|
|
|
assert departement is not None, "Le département n'existe pas."
|
|
|
|
|
|
|
|
dept_etudid = [etud.id for etud in departement.etudiants]
|
|
|
|
dept_id = departement.id
|
|
|
|
|
|
|
|
if assiduites:
|
|
|
|
_remove_assiduites(dept_etudid)
|
|
|
|
|
|
|
|
if justificatifs:
|
|
|
|
_remove_justificatifs(dept_etudid)
|
|
|
|
_remove_justificatifs_archive(dept_id)
|
|
|
|
|
|
|
|
if dept is None:
|
|
|
|
if assiduites:
|
2023-07-11 14:45:48 +02:00
|
|
|
db.session.execute(
|
|
|
|
sa.text("ALTER SEQUENCE assiduites_id_seq RESTART WITH 1")
|
|
|
|
)
|
2023-04-17 15:43:58 +02:00
|
|
|
if justificatifs:
|
2023-07-11 14:45:48 +02:00
|
|
|
db.session.execute(
|
|
|
|
sa.text("ALTER SEQUENCE justificatifs_id_seq RESTART WITH 1")
|
|
|
|
)
|
2023-04-17 15:43:58 +02:00
|
|
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
print(
|
|
|
|
f"{TerminalColor.GREEN}Le module assiduité a bien été remis à zero.{TerminalColor.RESET}"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _remove_assiduites(dept_etudid: str = None):
|
|
|
|
if dept_etudid is None:
|
|
|
|
Assiduite.query.delete()
|
|
|
|
else:
|
|
|
|
Assiduite.query.filter(Assiduite.etudid.in_(dept_etudid)).delete()
|
|
|
|
|
|
|
|
|
|
|
|
def _remove_justificatifs(dept_etudid: str = None):
|
|
|
|
if dept_etudid is None:
|
|
|
|
Justificatif.query.delete()
|
|
|
|
else:
|
|
|
|
Justificatif.query.filter(Justificatif.etudid.in_(dept_etudid)).delete()
|
|
|
|
|
|
|
|
|
|
|
|
def _remove_justificatifs_archive(dept_id: int = None):
|
|
|
|
JustificatifArchiver().remove_dept_archive(dept_id)
|