2020-09-26 16:19:37 +02:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
#
|
2023-01-02 13:16:27 +01:00
|
|
|
# Copyright (c) 1999 - 2023 Emmanuel Viennet. All rights reserved.
|
2020-09-26 16:19:37 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""Import / Export de formations
|
|
|
|
"""
|
2021-02-03 22:00:41 +01:00
|
|
|
import xml.dom.minidom
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-08-01 10:16:16 +02:00
|
|
|
import flask
|
2023-03-21 21:14:38 +01:00
|
|
|
from flask import flash, g, url_for
|
2021-09-18 13:42:19 +02:00
|
|
|
from flask_login import current_user
|
2021-08-01 10:16:16 +02:00
|
|
|
|
2021-06-19 23:21:37 +02:00
|
|
|
import app.scodoc.sco_utils as scu
|
|
|
|
import app.scodoc.notesdb as ndb
|
2021-11-30 11:07:17 +01:00
|
|
|
from app import db
|
2021-08-29 19:57:32 +02:00
|
|
|
from app import log
|
2023-02-21 00:34:39 +01:00
|
|
|
from app.models import Formation, FormSemestre, Module, UniteEns
|
2022-04-12 17:12:51 +02:00
|
|
|
from app.models import ScolarNews
|
2022-10-24 23:18:45 +02:00
|
|
|
from app.models.but_refcomp import (
|
|
|
|
ApcAppCritique,
|
|
|
|
ApcCompetence,
|
|
|
|
ApcNiveau,
|
|
|
|
ApcParcours,
|
|
|
|
ApcReferentielCompetences,
|
|
|
|
)
|
2022-10-23 23:28:24 +02:00
|
|
|
from app.scodoc import sco_cache
|
2023-02-12 13:36:47 +01:00
|
|
|
from app.scodoc import codes_cursus
|
2021-06-21 10:17:16 +02:00
|
|
|
from app.scodoc import sco_edit_matiere
|
|
|
|
from app.scodoc import sco_edit_module
|
|
|
|
from app.scodoc import sco_edit_ue
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc import sco_preferences
|
2021-06-21 10:17:16 +02:00
|
|
|
from app.scodoc import sco_tag_module
|
2021-07-13 09:38:31 +02:00
|
|
|
from app.scodoc import sco_xml
|
2021-08-21 17:07:44 +02:00
|
|
|
import sco_version
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc.gen_tables import GenTable
|
2021-12-03 14:13:49 +01:00
|
|
|
from app.scodoc.sco_exceptions import ScoValueError, ScoFormatError
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc.sco_permissions import Permission
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-06-13 18:29:53 +02:00
|
|
|
_formationEditor = ndb.EditableTable(
|
|
|
|
"notes_formations",
|
|
|
|
"formation_id",
|
|
|
|
(
|
|
|
|
"formation_id",
|
|
|
|
"acronyme",
|
|
|
|
"titre",
|
|
|
|
"titre_officiel",
|
|
|
|
"version",
|
|
|
|
"formation_code",
|
|
|
|
"type_parcours",
|
|
|
|
"code_specialite",
|
2022-07-13 19:23:55 +02:00
|
|
|
"referentiel_competence_id",
|
2023-01-30 18:08:40 +01:00
|
|
|
"commentaire",
|
2021-06-13 18:29:53 +02:00
|
|
|
),
|
2021-08-13 00:34:58 +02:00
|
|
|
filter_dept=True,
|
2021-06-13 18:29:53 +02:00
|
|
|
sortkey="acronyme",
|
|
|
|
)
|
|
|
|
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2023-02-18 00:13:00 +01:00
|
|
|
def formation_list(formation_id=None, args={}): ### XXX obsolete, à supprimer
|
2021-06-16 18:18:32 +02:00
|
|
|
"""List formation(s) with given id, or matching args
|
|
|
|
(when args is given, formation_id is ignored).
|
|
|
|
"""
|
|
|
|
if not args:
|
|
|
|
if formation_id is None:
|
|
|
|
args = {}
|
|
|
|
else:
|
|
|
|
args = {"formation_id": formation_id}
|
|
|
|
cnx = ndb.GetDBConnexion()
|
|
|
|
r = _formationEditor.list(cnx, args=args)
|
|
|
|
return r
|
|
|
|
|
|
|
|
|
2023-03-21 21:14:38 +01:00
|
|
|
def formation_export_dict(
|
|
|
|
formation: Formation,
|
2021-10-24 11:43:53 +02:00
|
|
|
export_ids=False,
|
|
|
|
export_tags=True,
|
|
|
|
export_external_ues=False,
|
2023-01-25 15:17:52 +01:00
|
|
|
export_codes_apo=True,
|
2023-03-21 21:14:38 +01:00
|
|
|
ac_as_list=False,
|
|
|
|
ue_reference_style="id",
|
|
|
|
) -> dict:
|
|
|
|
"""Get a formation, with UE, matieres, modules...
|
|
|
|
as a deep dict.
|
|
|
|
ac_as_list spécifie le format des Appentissages Critiques.
|
2020-09-26 16:19:37 +02:00
|
|
|
"""
|
2022-10-24 23:18:45 +02:00
|
|
|
f_dict = formation.to_dict(with_refcomp_attrs=True)
|
2023-01-25 15:17:52 +01:00
|
|
|
if not export_ids:
|
2023-01-31 18:58:24 +01:00
|
|
|
del f_dict["id"]
|
2023-01-25 15:17:52 +01:00
|
|
|
del f_dict["formation_id"]
|
|
|
|
del f_dict["dept_id"]
|
|
|
|
ues = formation.ues
|
2021-10-24 11:43:53 +02:00
|
|
|
if not export_external_ues:
|
2023-01-25 15:17:52 +01:00
|
|
|
ues = ues.filter_by(is_external=False)
|
|
|
|
ues = ues.all()
|
|
|
|
ues.sort(key=lambda u: (u.semestre_idx or 0, u.numero or 0, u.acronyme))
|
|
|
|
f_dict["ue"] = []
|
|
|
|
for ue in ues:
|
|
|
|
ue_dict = ue.to_dict()
|
|
|
|
f_dict["ue"].append(ue_dict)
|
|
|
|
ue_dict.pop("module_ue_coefs", None)
|
2022-10-24 23:18:45 +02:00
|
|
|
if formation.is_apc():
|
|
|
|
# BUT: indique niveau de compétence associé à l'UE
|
|
|
|
if ue.niveau_competence:
|
|
|
|
ue_dict["apc_niveau_libelle"] = ue.niveau_competence.libelle
|
|
|
|
ue_dict["apc_niveau_annee"] = ue.niveau_competence.annee
|
|
|
|
ue_dict["apc_niveau_ordre"] = ue.niveau_competence.ordre
|
2023-05-14 15:00:15 +02:00
|
|
|
|
2023-03-21 21:14:38 +01:00
|
|
|
# pour les coefficients:
|
|
|
|
ue_dict["reference"] = ue.id if ue_reference_style == "id" else ue.acronyme
|
2020-09-26 16:19:37 +02:00
|
|
|
if not export_ids:
|
2023-01-25 15:17:52 +01:00
|
|
|
for id_id in (
|
|
|
|
"id",
|
|
|
|
"ue_id",
|
|
|
|
"formation_id",
|
|
|
|
"parcour_id",
|
|
|
|
"niveau_competence_id",
|
|
|
|
):
|
|
|
|
ue_dict.pop(id_id, None)
|
|
|
|
|
|
|
|
if not export_codes_apo:
|
|
|
|
ue_dict.pop("code_apogee", None)
|
2022-10-24 23:18:45 +02:00
|
|
|
if ue_dict["ects"] is None:
|
|
|
|
del ue_dict["ects"]
|
2023-01-25 15:17:52 +01:00
|
|
|
mats = sco_edit_matiere.matiere_list({"ue_id": ue.id})
|
|
|
|
mats.sort(key=lambda m: m["numero"] or 0)
|
2022-10-24 23:18:45 +02:00
|
|
|
ue_dict["matiere"] = mats
|
2020-09-26 16:19:37 +02:00
|
|
|
for mat in mats:
|
|
|
|
matiere_id = mat["matiere_id"]
|
|
|
|
if not export_ids:
|
2021-11-30 11:07:17 +01:00
|
|
|
del mat["id"]
|
2020-09-26 16:19:37 +02:00
|
|
|
del mat["matiere_id"]
|
|
|
|
del mat["ue_id"]
|
2021-10-16 19:20:36 +02:00
|
|
|
mods = sco_edit_module.module_list({"matiere_id": matiere_id})
|
2023-01-25 15:17:52 +01:00
|
|
|
mods.sort(key=lambda m: (m["numero"] or 0, m["code"]))
|
2020-09-26 16:19:37 +02:00
|
|
|
mat["module"] = mods
|
|
|
|
for mod in mods:
|
2021-11-30 11:07:17 +01:00
|
|
|
module_id = mod["module_id"]
|
2020-09-26 16:19:37 +02:00
|
|
|
if export_tags:
|
2021-08-20 01:09:55 +02:00
|
|
|
tags = sco_tag_module.module_tag_list(module_id=mod["module_id"])
|
2020-09-26 16:19:37 +02:00
|
|
|
if tags:
|
|
|
|
mod["tags"] = [{"name": x} for x in tags]
|
2021-11-30 11:07:17 +01:00
|
|
|
#
|
2023-03-21 21:14:38 +01:00
|
|
|
module: Module = Module.query.get(module_id)
|
2021-11-30 11:07:17 +01:00
|
|
|
if module.is_apc():
|
|
|
|
# Exporte les coefficients
|
2023-03-21 21:14:38 +01:00
|
|
|
if ue_reference_style == "id":
|
|
|
|
mod["coefficients"] = [
|
|
|
|
{"ue_reference": str(ue_id), "coef": str(coef)}
|
|
|
|
for (ue_id, coef) in module.get_ue_coef_dict().items()
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
mod["coefficients"] = [
|
|
|
|
{"ue_reference": ue_acronyme, "coef": str(coef)}
|
|
|
|
for (
|
|
|
|
ue_acronyme,
|
|
|
|
coef,
|
|
|
|
) in module.get_ue_coef_dict_acronyme().items()
|
|
|
|
]
|
2022-08-31 12:02:19 +02:00
|
|
|
# Et les parcours
|
|
|
|
mod["parcours"] = [
|
|
|
|
p.to_dict(with_annees=False) for p in module.parcours
|
|
|
|
]
|
2022-09-07 10:07:46 +02:00
|
|
|
# Et les AC
|
2023-03-21 21:14:38 +01:00
|
|
|
if ac_as_list:
|
2022-10-24 23:18:45 +02:00
|
|
|
# XML préfère une liste
|
|
|
|
mod["app_critiques"] = [
|
|
|
|
x.to_dict(with_code=True) for x in module.app_critiques
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
mod["app_critiques"] = {
|
|
|
|
x.code: x.to_dict() for x in module.app_critiques
|
|
|
|
}
|
2020-09-26 16:19:37 +02:00
|
|
|
if not export_ids:
|
2021-11-30 11:07:17 +01:00
|
|
|
del mod["id"]
|
2020-09-26 16:19:37 +02:00
|
|
|
del mod["ue_id"]
|
|
|
|
del mod["matiere_id"]
|
|
|
|
del mod["module_id"]
|
|
|
|
del mod["formation_id"]
|
2023-01-25 15:17:52 +01:00
|
|
|
if not export_codes_apo:
|
|
|
|
del mod["code_apogee"]
|
2020-09-26 16:19:37 +02:00
|
|
|
if mod["ects"] is None:
|
|
|
|
del mod["ects"]
|
2023-03-21 21:14:38 +01:00
|
|
|
return f_dict
|
|
|
|
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2023-03-21 21:14:38 +01:00
|
|
|
def formation_export(
|
|
|
|
formation_id,
|
|
|
|
export_ids=False,
|
|
|
|
export_tags=True,
|
|
|
|
export_external_ues=False,
|
|
|
|
export_codes_apo=True,
|
|
|
|
format=None,
|
|
|
|
) -> flask.Response:
|
|
|
|
"""Get a formation, with UE, matieres, modules
|
|
|
|
in desired format
|
|
|
|
"""
|
|
|
|
formation: Formation = Formation.query.get_or_404(formation_id)
|
|
|
|
f_dict = formation_export_dict(
|
|
|
|
formation,
|
|
|
|
export_ids=export_ids,
|
|
|
|
export_tags=export_tags,
|
|
|
|
export_external_ues=export_external_ues,
|
|
|
|
export_codes_apo=export_codes_apo,
|
|
|
|
ac_as_list=format == "xml",
|
|
|
|
)
|
2022-03-01 09:48:37 +01:00
|
|
|
filename = f"scodoc_formation_{formation.departement.acronym}_{formation.acronyme or ''}_v{formation.version}"
|
2021-10-16 19:20:36 +02:00
|
|
|
return scu.sendResult(
|
2022-10-24 23:18:45 +02:00
|
|
|
f_dict,
|
2022-03-01 09:48:37 +01:00
|
|
|
name="formation",
|
|
|
|
format=format,
|
|
|
|
force_outer_xml_tag=False,
|
|
|
|
attached=True,
|
|
|
|
filename=filename,
|
2021-10-16 19:20:36 +02:00
|
|
|
)
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2022-10-24 23:18:45 +02:00
|
|
|
def _formation_retreive_refcomp(f_dict: dict) -> int:
|
|
|
|
"""Recherche si on un référentiel de compétence chargé pour
|
|
|
|
cette formation: utilise comme clé (version_orebut, specialite, type_titre)
|
|
|
|
Retourne: referentiel_competence_id ou None
|
|
|
|
"""
|
|
|
|
refcomp_version_orebut = f_dict.get("refcomp_version_orebut")
|
|
|
|
refcomp_specialite = f_dict.get("refcomp_specialite")
|
|
|
|
refcomp_type_titre = f_dict.get("refcomp_type_titre")
|
|
|
|
if all((refcomp_version_orebut, refcomp_specialite, refcomp_type_titre)):
|
|
|
|
refcomp = ApcReferentielCompetences.query.filter_by(
|
|
|
|
dept_id=g.scodoc_dept_id,
|
|
|
|
type_titre=refcomp_type_titre,
|
|
|
|
specialite=refcomp_specialite,
|
|
|
|
version_orebut=refcomp_version_orebut,
|
|
|
|
).first()
|
|
|
|
if refcomp:
|
|
|
|
return refcomp.id
|
|
|
|
else:
|
|
|
|
flash(
|
|
|
|
f"Impossible de trouver le référentiel de compétence pour {refcomp_specialite} : est-il chargé ?"
|
|
|
|
)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def _formation_retreive_apc_niveau(
|
|
|
|
referentiel_competence_id: int, ue_dict: dict
|
|
|
|
) -> int:
|
2023-04-19 11:56:33 +02:00
|
|
|
"""Recherche dans le ref. de comp. un niveau pour cette UE.
|
|
|
|
Utilise (libelle, annee, ordre) comme clé.
|
2022-10-24 23:18:45 +02:00
|
|
|
"""
|
|
|
|
libelle = ue_dict.get("apc_niveau_libelle")
|
|
|
|
annee = ue_dict.get("apc_niveau_annee")
|
|
|
|
ordre = ue_dict.get("apc_niveau_ordre")
|
|
|
|
if all((libelle, annee, ordre)):
|
|
|
|
niveau = (
|
|
|
|
ApcNiveau.query.filter_by(libelle=libelle, annee=annee, ordre=ordre)
|
|
|
|
.join(ApcCompetence)
|
|
|
|
.filter_by(referentiel_id=referentiel_competence_id)
|
|
|
|
).first()
|
|
|
|
if niveau is not None:
|
|
|
|
return niveau.id
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2022-10-23 23:28:24 +02:00
|
|
|
def formation_import_xml(doc: str, import_tags=True, use_local_refcomp=False):
|
2020-09-26 16:19:37 +02:00
|
|
|
"""Create a formation from XML representation
|
|
|
|
(format dumped by formation_export( format='xml' ))
|
2021-08-01 10:16:16 +02:00
|
|
|
XML may contain object (UE, modules) ids: this function returns two
|
|
|
|
dicts mapping these ids to the created ids.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
doc: str, xml data
|
|
|
|
import_tags: if false, does not import tags on modules.
|
2022-10-23 23:28:24 +02:00
|
|
|
use_local_refcomp: if True, utilise les id vers les ref. de compétences.
|
2021-08-01 10:16:16 +02:00
|
|
|
Returns:
|
|
|
|
formation_id, modules_old2new, ues_old2new
|
2020-09-26 16:19:37 +02:00
|
|
|
"""
|
2021-06-21 10:17:16 +02:00
|
|
|
from app.scodoc import sco_edit_formation
|
|
|
|
|
2020-09-26 16:19:37 +02:00
|
|
|
try:
|
|
|
|
dom = xml.dom.minidom.parseString(doc)
|
2022-08-05 07:03:35 +02:00
|
|
|
except Exception as exc:
|
2020-09-26 16:19:37 +02:00
|
|
|
log("formation_import_xml: invalid XML data")
|
2022-08-05 07:03:35 +02:00
|
|
|
raise ScoValueError("Fichier XML invalide") from exc
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-12-03 10:46:14 +01:00
|
|
|
try:
|
|
|
|
f = dom.getElementsByTagName("formation")[0] # or dom.documentElement
|
|
|
|
D = sco_xml.xml_to_dicts(f)
|
2022-08-05 07:03:35 +02:00
|
|
|
except Exception as exc:
|
2021-12-03 14:13:49 +01:00
|
|
|
raise ScoFormatError(
|
|
|
|
"""Ce document xml ne correspond pas à un programme exporté par ScoDoc.
|
|
|
|
(élément 'formation' inexistant par exemple)."""
|
2022-08-05 07:03:35 +02:00
|
|
|
) from exc
|
2020-09-26 16:19:37 +02:00
|
|
|
assert D[0] == "formation"
|
2022-10-24 23:18:45 +02:00
|
|
|
f_dict = D[1]
|
|
|
|
f_dict["dept_id"] = g.scodoc_dept_id
|
2022-10-23 23:28:24 +02:00
|
|
|
# Pour les clonages, on prend le refcomp_id donné:
|
|
|
|
referentiel_competence_id = (
|
2022-10-24 23:18:45 +02:00
|
|
|
f_dict.get("referentiel_competence_id") if use_local_refcomp else None
|
2022-10-23 23:28:24 +02:00
|
|
|
)
|
|
|
|
# Sinon, on cherche a retrouver le ref. comp.
|
|
|
|
if referentiel_competence_id is None:
|
2022-10-24 23:18:45 +02:00
|
|
|
referentiel_competence_id = _formation_retreive_refcomp(f_dict)
|
|
|
|
f_dict["referentiel_competence_id"] = referentiel_competence_id
|
2020-09-26 16:19:37 +02:00
|
|
|
# find new version number
|
2023-02-21 14:57:16 +01:00
|
|
|
formations: list[Formation] = Formation.query.filter_by(
|
2023-02-18 00:13:00 +01:00
|
|
|
acronyme=f_dict["acronyme"], titre=f_dict["titre"], dept_id=f_dict["dept_id"]
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
2023-02-18 00:13:00 +01:00
|
|
|
if formations.count():
|
2023-02-21 14:57:16 +01:00
|
|
|
version = max(f.version or 0 for f in formations)
|
2022-10-23 23:28:24 +02:00
|
|
|
else:
|
|
|
|
version = 0
|
2022-10-24 23:18:45 +02:00
|
|
|
f_dict["version"] = version + 1
|
2022-10-23 23:28:24 +02:00
|
|
|
|
2020-09-26 16:19:37 +02:00
|
|
|
# create formation
|
2023-02-20 21:04:29 +01:00
|
|
|
formation = sco_edit_formation.do_formation_create(f_dict)
|
|
|
|
log(f"formation {formation.id} created")
|
2022-10-23 23:28:24 +02:00
|
|
|
|
2020-09-26 16:19:37 +02:00
|
|
|
ues_old2new = {} # xml ue_id : new ue_id
|
|
|
|
modules_old2new = {} # xml module_id : new module_id
|
|
|
|
# (nb: mecanisme utilise pour cloner semestres seulement, pas pour I/O XML)
|
2021-11-30 11:07:17 +01:00
|
|
|
|
|
|
|
ue_reference_to_id = {} # pour les coefs APC (map reference -> ue_id)
|
|
|
|
modules_a_coefficienter = [] # Liste des modules avec coefs APC
|
2022-10-23 23:28:24 +02:00
|
|
|
with sco_cache.DeferredSemCacheManager():
|
|
|
|
# -- create UEs
|
|
|
|
for ue_info in D[2]:
|
|
|
|
assert ue_info[0] == "ue"
|
2023-02-20 21:04:29 +01:00
|
|
|
ue_info[1]["formation_id"] = formation.id
|
2022-10-23 23:28:24 +02:00
|
|
|
if "ue_id" in ue_info[1]:
|
|
|
|
xml_ue_id = int(ue_info[1]["ue_id"])
|
|
|
|
del ue_info[1]["ue_id"]
|
|
|
|
else:
|
|
|
|
xml_ue_id = None
|
2022-10-24 23:18:45 +02:00
|
|
|
if referentiel_competence_id is None:
|
|
|
|
if "niveau_competence_id" in ue_info[1]:
|
|
|
|
del ue_info[1]["niveau_competence_id"]
|
|
|
|
else:
|
|
|
|
ue_info[1]["niveau_competence_id"] = _formation_retreive_apc_niveau(
|
|
|
|
referentiel_competence_id, ue_info[1]
|
|
|
|
)
|
2022-10-23 23:28:24 +02:00
|
|
|
ue_id = sco_edit_ue.do_ue_create(ue_info[1])
|
2023-01-25 15:17:52 +01:00
|
|
|
ue: UniteEns = UniteEns.query.get(ue_id)
|
|
|
|
assert ue
|
2022-10-23 23:28:24 +02:00
|
|
|
if xml_ue_id:
|
|
|
|
ues_old2new[xml_ue_id] = ue_id
|
2023-05-14 15:00:15 +02:00
|
|
|
|
2022-10-23 23:28:24 +02:00
|
|
|
# élément optionnel présent dans les exports BUT:
|
|
|
|
ue_reference = ue_info[1].get("reference")
|
|
|
|
if ue_reference:
|
|
|
|
ue_reference_to_id[int(ue_reference)] = ue_id
|
2023-01-25 15:17:52 +01:00
|
|
|
|
2023-05-14 15:00:15 +02:00
|
|
|
# -- Create matieres
|
2022-10-23 23:28:24 +02:00
|
|
|
for mat_info in ue_info[2]:
|
2023-04-03 17:46:31 +02:00
|
|
|
# Backward compat: un seul parcours par UE (ScoDoc < 9.4.71)
|
2023-01-25 15:17:52 +01:00
|
|
|
if mat_info[0] == "parcour":
|
|
|
|
# Parcours (BUT)
|
|
|
|
code_parcours = mat_info[1]["code"]
|
|
|
|
parcour = ApcParcours.query.filter_by(
|
|
|
|
code=code_parcours,
|
|
|
|
referentiel_id=referentiel_competence_id,
|
|
|
|
).first()
|
|
|
|
if parcour:
|
2023-04-03 17:46:31 +02:00
|
|
|
ue.parcours = [parcour]
|
2023-01-25 15:17:52 +01:00
|
|
|
db.session.add(ue)
|
|
|
|
else:
|
2023-04-03 17:46:31 +02:00
|
|
|
flash(f"Attention: parcours {code_parcours} inexistant !")
|
2023-01-25 15:17:52 +01:00
|
|
|
log(f"Warning: parcours {code_parcours} inexistant !")
|
|
|
|
continue
|
2023-04-03 17:46:31 +02:00
|
|
|
elif mat_info[0] == "parcours":
|
2023-05-14 15:00:15 +02:00
|
|
|
# Parcours (BUT), liste (ScoDoc > 9.4.70), avec ECTS en option
|
|
|
|
code_parcours = mat_info[1]["code"]
|
|
|
|
ue_parcour_ects = mat_info[1].get("ects")
|
|
|
|
parcour = ApcParcours.query.filter_by(
|
|
|
|
code=code_parcours,
|
|
|
|
referentiel_id=referentiel_competence_id,
|
|
|
|
).first()
|
|
|
|
if parcour:
|
|
|
|
ue.parcours.append(parcour)
|
|
|
|
else:
|
|
|
|
flash(f"Attention: parcours {code_parcours} inexistant !")
|
|
|
|
log(f"Warning: parcours {code_parcours} inexistant !")
|
|
|
|
if ue_parcour_ects is not None:
|
|
|
|
ue.set_ects(ue_parcour_ects, parcour)
|
2023-04-03 17:46:31 +02:00
|
|
|
db.session.add(ue)
|
|
|
|
continue
|
|
|
|
|
2022-10-23 23:28:24 +02:00
|
|
|
assert mat_info[0] == "matiere"
|
|
|
|
mat_info[1]["ue_id"] = ue_id
|
|
|
|
mat_id = sco_edit_matiere.do_matiere_create(mat_info[1])
|
|
|
|
# -- create modules
|
|
|
|
for mod_info in mat_info[2]:
|
|
|
|
assert mod_info[0] == "module"
|
|
|
|
if "module_id" in mod_info[1]:
|
|
|
|
xml_module_id = int(mod_info[1]["module_id"])
|
|
|
|
del mod_info[1]["module_id"]
|
|
|
|
else:
|
|
|
|
xml_module_id = None
|
2023-02-20 21:04:29 +01:00
|
|
|
mod_info[1]["formation_id"] = formation.id
|
2022-10-23 23:28:24 +02:00
|
|
|
mod_info[1]["matiere_id"] = mat_id
|
|
|
|
mod_info[1]["ue_id"] = ue_id
|
|
|
|
if not "module_type" in mod_info[1]:
|
|
|
|
mod_info[1]["module_type"] = scu.ModuleType.STANDARD
|
|
|
|
mod_id = sco_edit_module.do_module_create(mod_info[1])
|
|
|
|
if xml_module_id:
|
|
|
|
modules_old2new[int(xml_module_id)] = mod_id
|
|
|
|
if len(mod_info) > 2:
|
|
|
|
module: Module = Module.query.get(mod_id)
|
|
|
|
tag_names = []
|
|
|
|
ue_coef_dict = {}
|
|
|
|
for child in mod_info[2]:
|
|
|
|
if child[0] == "tags" and import_tags:
|
|
|
|
tag_names.append(child[1]["name"])
|
|
|
|
elif child[0] == "coefficients":
|
|
|
|
ue_reference = int(child[1]["ue_reference"])
|
|
|
|
coef = float(child[1]["coef"])
|
|
|
|
ue_coef_dict[ue_reference] = coef
|
2022-10-24 23:18:45 +02:00
|
|
|
elif child[0] == "app_critiques" and (
|
|
|
|
referentiel_competence_id is not None
|
|
|
|
):
|
|
|
|
ac_code = child[1]["code"]
|
|
|
|
ac = (
|
|
|
|
ApcAppCritique.query.filter_by(code=ac_code)
|
|
|
|
.join(ApcNiveau)
|
|
|
|
.join(ApcCompetence)
|
|
|
|
.filter_by(referentiel_id=referentiel_competence_id)
|
|
|
|
).first()
|
|
|
|
if ac is not None:
|
|
|
|
module.app_critiques.append(ac)
|
|
|
|
db.session.add(module)
|
|
|
|
else:
|
|
|
|
log(f"Warning: AC {ac_code} inexistant !")
|
|
|
|
|
2022-10-23 23:28:24 +02:00
|
|
|
elif child[0] == "parcours":
|
|
|
|
# Si on a un référentiel de compétences,
|
|
|
|
# associe les parcours de ce module (BUT)
|
2022-10-24 23:18:45 +02:00
|
|
|
if referentiel_competence_id is not None:
|
2022-10-23 23:28:24 +02:00
|
|
|
code_parcours = child[1]["code"]
|
2023-01-25 15:17:52 +01:00
|
|
|
parcour = ApcParcours.query.filter_by(
|
2022-10-23 23:28:24 +02:00
|
|
|
code=code_parcours,
|
|
|
|
referentiel_id=referentiel_competence_id,
|
|
|
|
).first()
|
2023-01-25 15:17:52 +01:00
|
|
|
if parcour:
|
|
|
|
module.parcours.append(parcour)
|
2022-10-23 23:28:24 +02:00
|
|
|
db.session.add(module)
|
|
|
|
else:
|
|
|
|
log(
|
|
|
|
f"Warning: parcours {code_parcours} inexistant !"
|
|
|
|
)
|
|
|
|
if import_tags and tag_names:
|
|
|
|
sco_tag_module.module_tag_set(mod_id, tag_names)
|
|
|
|
if module.is_apc() and ue_coef_dict:
|
|
|
|
modules_a_coefficienter.append((module, ue_coef_dict))
|
|
|
|
# Fixe les coefs APC (à la fin pour que les UE soient créées)
|
|
|
|
for module, ue_coef_dict_ref in modules_a_coefficienter:
|
|
|
|
# remap ue ids:
|
|
|
|
ue_coef_dict = {
|
|
|
|
ue_reference_to_id[k]: v for (k, v) in ue_coef_dict_ref.items()
|
|
|
|
}
|
|
|
|
module.set_ue_coef_dict(ue_coef_dict)
|
|
|
|
db.session.commit()
|
2023-02-20 21:04:29 +01:00
|
|
|
return formation.id, modules_old2new, ues_old2new
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2023-02-21 00:34:39 +01:00
|
|
|
def formation_list_table() -> GenTable:
|
2020-09-26 16:19:37 +02:00
|
|
|
"""List formation, grouped by titre and sorted by versions
|
|
|
|
and listing associated semestres
|
|
|
|
returns a table
|
|
|
|
"""
|
2023-02-21 00:34:39 +01:00
|
|
|
formations: list[Formation] = Formation.query.filter_by(dept_id=g.scodoc_dept_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
title = "Programmes pédagogiques"
|
2021-02-04 20:02:44 +01:00
|
|
|
lockicon = scu.icontag(
|
2020-09-26 16:19:37 +02:00
|
|
|
"lock32_img", title="Comporte des semestres verrouillés", border="0"
|
|
|
|
)
|
2021-02-04 20:02:44 +01:00
|
|
|
suppricon = scu.icontag(
|
2020-09-26 16:19:37 +02:00
|
|
|
"delete_small_img", border="0", alt="supprimer", title="Supprimer"
|
|
|
|
)
|
2021-02-04 20:02:44 +01:00
|
|
|
editicon = scu.icontag(
|
2020-09-26 16:19:37 +02:00
|
|
|
"edit_img", border="0", alt="modifier", title="Modifier titres et code"
|
|
|
|
)
|
|
|
|
|
2021-09-18 13:42:19 +02:00
|
|
|
editable = current_user.has_permission(Permission.ScoChangeFormation)
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
# Traduit/ajoute des champs à afficher:
|
2023-02-21 00:34:39 +01:00
|
|
|
rows = []
|
|
|
|
for formation in formations:
|
|
|
|
acronyme_no_spaces = formation.acronyme.lower().replace(" ", "-")
|
|
|
|
row = {
|
|
|
|
"acronyme": formation.acronyme,
|
|
|
|
"parcours_name": codes_cursus.get_cursus_from_code(
|
|
|
|
formation.type_parcours
|
|
|
|
).NAME,
|
|
|
|
"titre": formation.titre,
|
|
|
|
"_titre_target": url_for(
|
|
|
|
"notes.ue_table",
|
|
|
|
scodoc_dept=g.scodoc_dept,
|
|
|
|
formation_id=formation.id,
|
|
|
|
),
|
|
|
|
"_titre_link_class": "stdlink",
|
|
|
|
"_titre_id": f"""titre-{acronyme_no_spaces}""",
|
|
|
|
"version": formation.version or 0,
|
|
|
|
}
|
2020-09-26 16:19:37 +02:00
|
|
|
# Ajoute les semestres associés à chaque formation:
|
2023-02-21 00:34:39 +01:00
|
|
|
row["formsemestres"] = formation.formsemestres.order_by(
|
|
|
|
FormSemestre.date_debut
|
|
|
|
).all()
|
|
|
|
row["sems_list_txt"] = ", ".join(s.session_id() for s in row["formsemestres"])
|
2023-02-23 21:19:57 +01:00
|
|
|
row["_sems_list_txt_html"] = ", ".join(
|
|
|
|
[
|
2023-02-21 00:34:39 +01:00
|
|
|
f"""<a class="discretelink" href="{
|
|
|
|
url_for("notes.formsemestre_status",
|
|
|
|
scodoc_dept=g.scodoc_dept, formsemestre_id=s.id
|
2023-02-23 21:19:57 +01:00
|
|
|
)}">{s.session_id()}</a>"""
|
2023-02-21 00:34:39 +01:00
|
|
|
for s in row["formsemestres"]
|
2023-02-23 21:19:57 +01:00
|
|
|
]
|
|
|
|
+ [
|
|
|
|
f"""<a class="stdlink" id="add-semestre-{
|
2023-02-21 00:34:39 +01:00
|
|
|
formation.acronyme.lower().replace(" ", "-")}"
|
2023-02-21 21:34:38 +01:00
|
|
|
href="{ url_for("notes.formsemestre_createwithmodules",
|
2023-02-21 00:34:39 +01:00
|
|
|
scodoc_dept=g.scodoc_dept, formation_id=formation.id, semestre_id=1
|
|
|
|
)
|
|
|
|
}">ajouter</a>
|
|
|
|
"""
|
2023-02-23 21:19:57 +01:00
|
|
|
]
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
2023-02-21 00:34:39 +01:00
|
|
|
if row["formsemestres"]:
|
|
|
|
row["date_fin_dernier_sem"] = (
|
|
|
|
row["formsemestres"][-1].date_fin.isoformat(),
|
|
|
|
)
|
|
|
|
row["annee_dernier_sem"] = row["formsemestres"][-1].date_fin.year
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
2023-02-21 00:34:39 +01:00
|
|
|
row["date_fin_dernier_sem"] = ""
|
|
|
|
row["annee_dernier_sem"] = 0
|
2020-09-26 16:19:37 +02:00
|
|
|
#
|
2023-02-21 00:34:39 +01:00
|
|
|
if formation.has_locked_sems():
|
2020-09-26 16:19:37 +02:00
|
|
|
but_locked = lockicon
|
2023-02-21 00:34:39 +01:00
|
|
|
but_suppr = '<span class="but_placeholder"></span>'
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
but_locked = '<span class="but_placeholder"></span>'
|
2023-02-21 00:34:39 +01:00
|
|
|
if editable:
|
|
|
|
but_suppr = f"""<a class="stdlink" href="{
|
|
|
|
url_for("notes.formation_delete",
|
|
|
|
scodoc_dept=g.scodoc_dept, formation_id=formation.id
|
|
|
|
)}" id="delete-formation-{acronyme_no_spaces}">{suppricon}</a>"""
|
|
|
|
else:
|
|
|
|
but_suppr = '<span class="but_placeholder"></span>'
|
2020-09-26 16:19:37 +02:00
|
|
|
if editable:
|
2023-02-21 00:34:39 +01:00
|
|
|
but_edit = f"""<a class="stdlink" href="{
|
|
|
|
url_for("notes.formation_edit", scodoc_dept=g.scodoc_dept, formation_id=formation.id)
|
|
|
|
}" id="edit-formation-{acronyme_no_spaces}">{editicon}</a>"""
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
but_edit = '<span class="but_placeholder"></span>'
|
2023-02-21 00:34:39 +01:00
|
|
|
row["buttons"] = ""
|
|
|
|
row["_buttons_html"] = but_locked + but_suppr + but_edit
|
|
|
|
rows.append(row)
|
|
|
|
# Tri par annee_dernier_sem, type, acronyme, titre, version décroissante
|
2023-03-26 10:08:50 +02:00
|
|
|
# donc plus récemment utilisée en tête
|
2023-02-21 00:34:39 +01:00
|
|
|
rows.sort(
|
|
|
|
key=lambda row: (
|
|
|
|
-row["annee_dernier_sem"],
|
|
|
|
row["parcours_name"],
|
|
|
|
row["acronyme"],
|
|
|
|
row["titre"],
|
|
|
|
-row["version"],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
for i, row in enumerate(rows):
|
|
|
|
row["_buttons_order"] = f"{i:05d}"
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
columns_ids = (
|
|
|
|
"buttons",
|
|
|
|
"acronyme",
|
|
|
|
"parcours_name",
|
|
|
|
"formation_code",
|
|
|
|
"version",
|
|
|
|
"titre",
|
|
|
|
"sems_list_txt",
|
|
|
|
)
|
|
|
|
titles = {
|
|
|
|
"buttons": "",
|
|
|
|
"acronyme": "Acro.",
|
|
|
|
"parcours_name": "Type",
|
|
|
|
"titre": "Titre",
|
|
|
|
"version": "Version",
|
|
|
|
"formation_code": "Code",
|
|
|
|
"sems_list_txt": "Semestres",
|
|
|
|
}
|
|
|
|
return GenTable(
|
|
|
|
columns_ids=columns_ids,
|
2023-02-21 00:34:39 +01:00
|
|
|
rows=rows,
|
2020-09-26 16:19:37 +02:00
|
|
|
titles=titles,
|
2023-02-21 00:34:39 +01:00
|
|
|
origin=f"Généré par {sco_version.SCONAME} le {scu.timedate_human_repr()}",
|
2020-09-26 16:19:37 +02:00
|
|
|
caption=title,
|
|
|
|
html_caption=title,
|
|
|
|
table_id="formation_list_table",
|
|
|
|
html_class="formation_list_table table_leftalign",
|
|
|
|
html_with_td_classes=True,
|
|
|
|
html_sortable=True,
|
2023-02-21 00:34:39 +01:00
|
|
|
base_url="{request.base_url}?formation_id={formation_id}",
|
2020-09-26 16:19:37 +02:00
|
|
|
page_title=title,
|
|
|
|
pdf_title=title,
|
2021-07-28 17:03:54 +02:00
|
|
|
preferences=sco_preferences.SemPreferences(),
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
2021-06-21 10:17:16 +02:00
|
|
|
|
|
|
|
|
2021-09-24 20:20:45 +02:00
|
|
|
def formation_create_new_version(formation_id, redirect=True):
|
2021-06-21 10:17:16 +02:00
|
|
|
"duplicate formation, with new version number"
|
2022-07-13 19:23:55 +02:00
|
|
|
formation = Formation.query.get_or_404(formation_id)
|
2021-09-24 20:20:45 +02:00
|
|
|
resp = formation_export(formation_id, export_ids=True, format="xml")
|
|
|
|
xml_data = resp.get_data(as_text=True)
|
2022-10-23 23:28:24 +02:00
|
|
|
new_id, modules_old2new, ues_old2new = formation_import_xml(
|
|
|
|
xml_data, use_local_refcomp=True
|
|
|
|
)
|
2021-06-21 10:17:16 +02:00
|
|
|
# news
|
2022-04-12 17:12:51 +02:00
|
|
|
ScolarNews.add(
|
|
|
|
typ=ScolarNews.NEWS_FORM,
|
|
|
|
obj=new_id,
|
2022-07-13 19:23:55 +02:00
|
|
|
text=f"Nouvelle version de la formation {formation.acronyme}",
|
2021-06-21 10:17:16 +02:00
|
|
|
)
|
|
|
|
if redirect:
|
2022-07-13 19:23:55 +02:00
|
|
|
flash("Nouvelle version !")
|
2021-07-31 18:01:10 +02:00
|
|
|
return flask.redirect(
|
2021-08-09 10:09:04 +02:00
|
|
|
url_for(
|
2021-10-17 23:19:26 +02:00
|
|
|
"notes.ue_table",
|
2021-08-09 10:09:04 +02:00
|
|
|
scodoc_dept=g.scodoc_dept,
|
|
|
|
formation_id=new_id,
|
|
|
|
msg="Nouvelle version !",
|
|
|
|
)
|
2021-06-21 10:17:16 +02:00
|
|
|
)
|
2023-03-21 21:14:38 +01:00
|
|
|
return new_id, modules_old2new, ues_old2new
|