2020-09-26 16:19:37 +02:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
#
|
2022-01-01 14:49:42 +01:00
|
|
|
# Copyright (c) 1999 - 2022 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
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""Fonction de gestion des UE "externes" (effectuees dans un cursus exterieur)
|
|
|
|
|
2021-11-12 22:17:46 +01:00
|
|
|
On rapatrie (saisie) les notes (et crédits ECTS).
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-08-21 00:24:51 +02:00
|
|
|
Cas d'usage: les étudiants d'une formation gérée par ScoDoc peuvent
|
2020-09-26 16:19:37 +02:00
|
|
|
suivre un certain nombre d'UE à l'extérieur. L'établissement a reconnu
|
|
|
|
au préalable une forme d'équivalence entre ces UE et celles du
|
|
|
|
programme. Les UE effectuées à l'extérieur sont par nature variable
|
|
|
|
d'un étudiant à l'autre et d'une année à l'autre, et ne peuvent pas
|
|
|
|
être introduites dans le programme pédagogique ScoDoc sans alourdir
|
|
|
|
considérablement les opérations (saisie, affichage du programme,
|
|
|
|
gestion des inscriptions).
|
|
|
|
En outre, un suivi détaillé de ces UE n'est pas nécessaire: il suffit
|
|
|
|
de pouvoir y associer une note et une quantité de crédits ECTS.
|
|
|
|
|
|
|
|
Solution proposée (nov 2014):
|
|
|
|
- un nouveau type d'UE qui
|
|
|
|
|
|
|
|
- s'affichera à part dans le programme pédagogique
|
|
|
|
et les bulletins
|
|
|
|
- pas présentées lors de la mise en place de semestres
|
|
|
|
- affichage sur bulletin des étudiants qui y sont inscrit
|
|
|
|
- création en même temps que la saisie de la note
|
|
|
|
(chaine creation: UE/matière/module, inscription étudiant, entrée valeur note)
|
|
|
|
avec auto-suggestion du nom pour limiter la création de doublons
|
|
|
|
- seront aussi présentées (à part) sur la page "Voir les inscriptions aux modules"
|
|
|
|
|
|
|
|
"""
|
2021-08-01 10:16:16 +02:00
|
|
|
import flask
|
2021-09-18 10:10:02 +02:00
|
|
|
from flask import request
|
2021-08-11 00:36:07 +02:00
|
|
|
from flask_login import current_user
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-06-19 23:21:37 +02:00
|
|
|
import app.scodoc.notesdb as ndb
|
|
|
|
import app.scodoc.sco_utils as scu
|
2021-08-29 19:57:32 +02:00
|
|
|
from app import log
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc import html_sco_header
|
|
|
|
from app.scodoc import sco_codes_parcours
|
|
|
|
from app.scodoc import sco_edit_matiere
|
|
|
|
from app.scodoc import sco_edit_module
|
|
|
|
from app.scodoc import sco_edit_ue
|
|
|
|
from app.scodoc import sco_evaluations
|
2021-11-12 22:17:46 +01:00
|
|
|
from app.scodoc import sco_evaluation_db
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc import sco_formations
|
|
|
|
from app.scodoc import sco_formsemestre
|
|
|
|
from app.scodoc import sco_moduleimpl
|
|
|
|
from app.scodoc import sco_saisie_notes
|
|
|
|
from app.scodoc import sco_etud
|
|
|
|
from app.scodoc.sco_exceptions import AccessDenied, ScoValueError
|
|
|
|
from app.scodoc.sco_permissions import Permission
|
|
|
|
from app.scodoc.TrivialFormulator import TrivialFormulator, tf_error_message
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
def external_ue_create(
|
|
|
|
formsemestre_id,
|
|
|
|
titre="",
|
|
|
|
acronyme="",
|
2021-02-03 22:00:41 +01:00
|
|
|
ue_type=sco_codes_parcours.UE_STANDARD,
|
2020-09-26 16:19:37 +02:00
|
|
|
ects=0.0,
|
|
|
|
):
|
2021-01-01 18:40:47 +01:00
|
|
|
"""Crée UE/matiere/module/evaluation puis saisie les notes"""
|
2020-09-26 16:19:37 +02:00
|
|
|
log("external_ue_create( formsemestre_id=%s, titre=%s )" % (formsemestre_id, titre))
|
2021-08-19 10:28:35 +02:00
|
|
|
sem = sco_formsemestre.get_formsemestre(formsemestre_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
# Contrôle d'accès:
|
2021-08-11 00:36:07 +02:00
|
|
|
if not current_user.has_permission(Permission.ScoImplement):
|
|
|
|
if not sem["resp_can_edit"] or (current_user.id not in sem["responsables"]):
|
2020-09-26 16:19:37 +02:00
|
|
|
raise AccessDenied("vous n'avez pas le droit d'effectuer cette opération")
|
|
|
|
#
|
|
|
|
formation_id = sem["formation_id"]
|
|
|
|
log("creating external UE in %s: %s" % (formsemestre_id, acronyme))
|
|
|
|
|
2021-08-20 01:09:55 +02:00
|
|
|
numero = sco_edit_ue.next_ue_numero(formation_id, semestre_id=sem["semestre_id"])
|
2021-06-19 23:21:37 +02:00
|
|
|
ue_id = sco_edit_ue.do_ue_create(
|
2020-09-26 16:19:37 +02:00
|
|
|
{
|
|
|
|
"formation_id": formation_id,
|
|
|
|
"titre": titre,
|
|
|
|
"acronyme": acronyme,
|
|
|
|
"numero": numero,
|
|
|
|
"type": ue_type,
|
|
|
|
"ects": ects,
|
2021-08-11 00:36:07 +02:00
|
|
|
"is_external": True,
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-06-19 23:21:37 +02:00
|
|
|
matiere_id = sco_edit_matiere.do_matiere_create(
|
2021-08-20 01:09:55 +02:00
|
|
|
{"ue_id": ue_id, "titre": titre or acronyme, "numero": 1}
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
|
2021-06-19 23:21:37 +02:00
|
|
|
module_id = sco_edit_module.do_module_create(
|
2020-09-26 16:19:37 +02:00
|
|
|
{
|
|
|
|
"titre": "UE extérieure",
|
|
|
|
"code": acronyme,
|
|
|
|
"coefficient": ects, # tous le coef. module est egal à la quantite d'ECTS
|
|
|
|
"ue_id": ue_id,
|
|
|
|
"matiere_id": matiere_id,
|
|
|
|
"formation_id": formation_id,
|
|
|
|
"semestre_id": sem["semestre_id"],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-01-17 22:31:28 +01:00
|
|
|
moduleimpl_id = sco_moduleimpl.do_moduleimpl_create(
|
2020-09-26 16:19:37 +02:00
|
|
|
{
|
|
|
|
"module_id": module_id,
|
|
|
|
"formsemestre_id": formsemestre_id,
|
2021-08-22 13:24:36 +02:00
|
|
|
# affecte le 1er responsable du semestre comme resp. du module
|
|
|
|
"responsable_id": sem["responsables"][0],
|
2021-01-17 22:31:28 +01:00
|
|
|
},
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
return moduleimpl_id
|
|
|
|
|
|
|
|
|
2021-09-27 10:20:10 +02:00
|
|
|
def external_ue_inscrit_et_note(moduleimpl_id, formsemestre_id, notes_etuds):
|
2020-09-26 16:19:37 +02:00
|
|
|
log(
|
|
|
|
"external_ue_inscrit_et_note(moduleimpl_id=%s, notes_etuds=%s)"
|
|
|
|
% (moduleimpl_id, notes_etuds)
|
|
|
|
)
|
|
|
|
# Inscription des étudiants
|
2021-01-17 22:31:28 +01:00
|
|
|
sco_moduleimpl.do_moduleimpl_inscrit_etuds(
|
2021-07-28 17:03:54 +02:00
|
|
|
moduleimpl_id,
|
|
|
|
formsemestre_id,
|
|
|
|
list(notes_etuds.keys()),
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
# Création d'une évaluation si il n'y en a pas déjà:
|
2021-11-12 22:17:46 +01:00
|
|
|
mod_evals = sco_evaluation_db.do_evaluation_list(
|
|
|
|
args={"moduleimpl_id": moduleimpl_id}
|
|
|
|
)
|
|
|
|
if len(mod_evals):
|
2020-09-26 16:19:37 +02:00
|
|
|
# met la note dans le première évaluation existante:
|
2021-11-12 22:17:46 +01:00
|
|
|
evaluation_id = mod_evals[0]["evaluation_id"]
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
# crée une évaluation:
|
2021-11-12 22:17:46 +01:00
|
|
|
evaluation_id = sco_evaluation_db.do_evaluation_create(
|
2020-09-26 16:19:37 +02:00
|
|
|
moduleimpl_id=moduleimpl_id,
|
|
|
|
note_max=20.0,
|
|
|
|
coefficient=1.0,
|
2021-08-11 00:36:07 +02:00
|
|
|
publish_incomplete=True,
|
|
|
|
evaluation_type=scu.EVALUATION_NORMALE,
|
|
|
|
visibulletin=False,
|
2020-09-26 16:19:37 +02:00
|
|
|
description="note externe",
|
|
|
|
)
|
|
|
|
# Saisie des notes
|
2021-11-22 00:31:53 +01:00
|
|
|
_, _, _ = sco_saisie_notes.notes_add(
|
2021-09-18 13:42:19 +02:00
|
|
|
current_user,
|
2020-09-26 16:19:37 +02:00
|
|
|
evaluation_id,
|
2021-07-09 17:47:06 +02:00
|
|
|
list(notes_etuds.items()),
|
2020-09-26 16:19:37 +02:00
|
|
|
do_it=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-08-21 00:24:51 +02:00
|
|
|
def get_existing_external_ue(formation_id):
|
2020-09-26 16:19:37 +02:00
|
|
|
"la liste de toutes les UE externes définies dans cette formation"
|
2021-10-17 23:19:26 +02:00
|
|
|
return sco_edit_ue.ue_list(args={"formation_id": formation_id, "is_external": True})
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2021-08-21 00:24:51 +02:00
|
|
|
def get_external_moduleimpl_id(formsemestre_id, ue_id):
|
2020-09-26 16:19:37 +02:00
|
|
|
"moduleimpl correspondant à l'UE externe indiquée de ce formsemestre"
|
2021-02-03 22:00:41 +01:00
|
|
|
r = ndb.SimpleDictFetch(
|
2020-09-26 16:19:37 +02:00
|
|
|
"""
|
2021-08-08 17:38:46 +02:00
|
|
|
SELECT mi.id AS moduleimpl_id FROM notes_moduleimpl mi, notes_modules mo
|
|
|
|
WHERE mi.id = %(formsemestre_id)s
|
|
|
|
AND mi.module_id = mo.id
|
2020-09-26 16:19:37 +02:00
|
|
|
AND mo.ue_id = %(ue_id)s
|
|
|
|
""",
|
|
|
|
{"ue_id": ue_id, "formsemestre_id": formsemestre_id},
|
|
|
|
)
|
|
|
|
if r:
|
|
|
|
return r[0]["moduleimpl_id"]
|
|
|
|
else:
|
|
|
|
raise ScoValueError("aucun module externe ne correspond")
|
|
|
|
|
|
|
|
|
|
|
|
# Web function
|
2021-09-27 10:20:10 +02:00
|
|
|
def external_ue_create_form(formsemestre_id, etudid):
|
2020-09-26 16:19:37 +02:00
|
|
|
"""Formulaire création UE externe + inscription étudiant et saisie note
|
2021-01-01 18:40:47 +01:00
|
|
|
- Demande UE: peut-être existante (liste les UE externes de cette formation),
|
2020-09-26 16:19:37 +02:00
|
|
|
ou sinon spécifier titre, acronyme, type, ECTS
|
|
|
|
- Demande note à enregistrer.
|
|
|
|
|
2021-01-01 18:40:47 +01:00
|
|
|
Note: pour l'édition éventuelle de ces informations, on utilisera les
|
2020-09-26 16:19:37 +02:00
|
|
|
fonctions standards sur les UE/modules/notes
|
|
|
|
"""
|
2021-08-19 10:28:35 +02:00
|
|
|
sem = sco_formsemestre.get_formsemestre(formsemestre_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
# Contrôle d'accès:
|
2021-08-11 00:36:07 +02:00
|
|
|
if not current_user.has_permission(Permission.ScoImplement):
|
|
|
|
if not sem["resp_can_edit"] or (current_user.id not in sem["responsables"]):
|
2020-09-26 16:19:37 +02:00
|
|
|
raise AccessDenied("vous n'avez pas le droit d'effectuer cette opération")
|
|
|
|
|
2021-08-22 13:24:36 +02:00
|
|
|
etud = sco_etud.get_etud_info(filled=True, etudid=etudid)[0]
|
2020-09-26 16:19:37 +02:00
|
|
|
formation_id = sem["formation_id"]
|
2021-08-21 00:24:51 +02:00
|
|
|
existing_external_ue = get_existing_external_ue(formation_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
H = [
|
2021-06-14 00:23:22 +02:00
|
|
|
html_sco_header.html_sem_header(
|
2020-09-26 16:19:37 +02:00
|
|
|
"Ajout d'une UE externe pour %(nomprenom)s" % etud,
|
|
|
|
javascripts=["js/sco_ue_external.js"],
|
|
|
|
),
|
|
|
|
"""<p class="help">Cette page permet d'indiquer que l'étudiant a suivi une UE
|
|
|
|
dans un autre établissement et qu'elle doit être intégrée dans le semestre courant.<br/>
|
|
|
|
La note (/20) obtenue par l'étudiant doit toujours être spécifiée.</br>
|
|
|
|
On peut choisir une UE externe existante (dans le menu), ou bien en créer une, qui sera
|
|
|
|
alors ajoutée à la formation.
|
|
|
|
</p>
|
|
|
|
""",
|
|
|
|
]
|
2021-07-29 10:19:00 +02:00
|
|
|
html_footer = html_sco_header.sco_footer()
|
2021-08-19 10:28:35 +02:00
|
|
|
Fo = sco_formations.formation_list(args={"formation_id": sem["formation_id"]})[0]
|
2020-09-26 16:19:37 +02:00
|
|
|
parcours = sco_codes_parcours.get_parcours_from_code(Fo["type_parcours"])
|
|
|
|
ue_types = parcours.ALLOWED_UE_TYPES
|
|
|
|
ue_types.sort()
|
2021-02-03 22:00:41 +01:00
|
|
|
ue_types_names = [sco_codes_parcours.UE_TYPE_NAME[k] for k in ue_types]
|
2020-09-26 16:19:37 +02:00
|
|
|
ue_types = [str(x) for x in ue_types]
|
|
|
|
|
|
|
|
if existing_external_ue:
|
|
|
|
default_label = "Nouvelle UE"
|
|
|
|
else:
|
|
|
|
default_label = "Aucune UE externe existante"
|
|
|
|
|
|
|
|
tf = TrivialFormulator(
|
2021-09-18 10:10:02 +02:00
|
|
|
request.base_url,
|
2021-09-27 16:42:14 +02:00
|
|
|
scu.get_request_args(),
|
2020-09-26 16:19:37 +02:00
|
|
|
(
|
|
|
|
("formsemestre_id", {"input_type": "hidden"}),
|
|
|
|
("etudid", {"input_type": "hidden"}),
|
|
|
|
(
|
|
|
|
"existing_ue",
|
|
|
|
{
|
|
|
|
"input_type": "menu",
|
|
|
|
"title": "UE externe existante:",
|
|
|
|
"allowed_values": [""]
|
|
|
|
+ [ue["ue_id"] for ue in existing_external_ue],
|
|
|
|
"labels": [default_label]
|
|
|
|
+ [
|
|
|
|
"%s (%s)" % (ue["titre"], ue["acronyme"])
|
|
|
|
for ue in existing_external_ue
|
|
|
|
],
|
|
|
|
"attributes": ['onchange="update_external_ue_form();"'],
|
|
|
|
"explanation": "inscrire cet étudiant dans cette UE",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"sep",
|
|
|
|
{
|
|
|
|
"input_type": "separator",
|
|
|
|
"title": "Ou bien déclarer une nouvelle UE externe:",
|
|
|
|
"dom_id": "tf_extue_decl",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
# champs a desactiver si une UE existante est choisie
|
|
|
|
(
|
|
|
|
"titre",
|
|
|
|
{"size": 30, "explanation": "nom de l'UE", "dom_id": "tf_extue_titre"},
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"acronyme",
|
|
|
|
{
|
|
|
|
"size": 8,
|
|
|
|
"explanation": "abbréviation",
|
|
|
|
"allow_null": True, # attention: verifier
|
|
|
|
"dom_id": "tf_extue_acronyme",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"type",
|
|
|
|
{
|
|
|
|
"explanation": "type d'UE",
|
|
|
|
"input_type": "menu",
|
|
|
|
"allowed_values": ue_types,
|
|
|
|
"labels": ue_types_names,
|
|
|
|
"dom_id": "tf_extue_type",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"ects",
|
|
|
|
{
|
|
|
|
"size": 4,
|
|
|
|
"type": "float",
|
|
|
|
"title": "ECTS",
|
|
|
|
"explanation": "nombre de crédits ECTS",
|
|
|
|
"dom_id": "tf_extue_ects",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
#
|
|
|
|
(
|
|
|
|
"note",
|
|
|
|
{"size": 4, "explanation": "note sur 20", "dom_id": "tf_extue_note"},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
submitlabel="Enregistrer",
|
|
|
|
cancelbutton="Annuler",
|
|
|
|
)
|
|
|
|
|
2021-05-11 11:48:32 +02:00
|
|
|
bull_url = "formsemestre_bulletinetud?formsemestre_id=%s&etudid=%s" % (
|
2020-09-26 16:19:37 +02:00
|
|
|
formsemestre_id,
|
|
|
|
etudid,
|
|
|
|
)
|
|
|
|
if tf[0] == 0:
|
|
|
|
return "\n".join(H) + "\n" + tf[1] + html_footer
|
|
|
|
elif tf[0] == -1:
|
2021-07-31 18:01:10 +02:00
|
|
|
return flask.redirect(bull_url)
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
note = tf[2]["note"].strip().upper()
|
|
|
|
note_value, invalid = sco_saisie_notes.convert_note_from_string(note, 20.0)
|
|
|
|
if invalid:
|
|
|
|
return (
|
|
|
|
"\n".join(H)
|
|
|
|
+ "\n"
|
|
|
|
+ tf_error_message("valeur note invalide")
|
|
|
|
+ tf[1]
|
|
|
|
+ html_footer
|
|
|
|
)
|
|
|
|
if tf[2]["existing_ue"]:
|
|
|
|
ue_id = tf[2]["existing_ue"]
|
2021-08-21 00:24:51 +02:00
|
|
|
moduleimpl_id = get_external_moduleimpl_id(formsemestre_id, ue_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
acronyme = tf[2]["acronyme"].strip()
|
|
|
|
if not acronyme:
|
|
|
|
return (
|
|
|
|
"\n".join(H)
|
|
|
|
+ "\n"
|
|
|
|
+ tf_error_message("spécifier acronyme d'UE")
|
|
|
|
+ tf[1]
|
|
|
|
+ html_footer
|
|
|
|
)
|
|
|
|
moduleimpl_id = external_ue_create(
|
|
|
|
formsemestre_id,
|
|
|
|
titre=tf[2]["titre"],
|
|
|
|
acronyme=acronyme,
|
|
|
|
ue_type=tf[2]["type"], # type de l'UE
|
|
|
|
ects=tf[2]["ects"],
|
|
|
|
)
|
|
|
|
|
|
|
|
external_ue_inscrit_et_note(
|
|
|
|
moduleimpl_id,
|
|
|
|
formsemestre_id,
|
|
|
|
{etudid: note_value},
|
|
|
|
)
|
2021-07-31 18:01:10 +02:00
|
|
|
return flask.redirect(bull_url + "&head_message=Ajout%20effectué")
|