forked from ScoDoc/ScoDoc
prise en compte des remarques pour departement.py
This commit is contained in:
parent
4c28d140a6
commit
be3df71ad6
@ -3,7 +3,7 @@ import app
|
|||||||
|
|
||||||
from app import models
|
from app import models
|
||||||
from app.api import bp
|
from app.api import bp
|
||||||
from app.api.auth import token_auth, token_permission_required
|
from app.api.auth import token_permission_required
|
||||||
from app.api.errors import error_response
|
from app.api.errors import error_response
|
||||||
from app.scodoc.sco_permissions import Permission
|
from app.scodoc.sco_permissions import Permission
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ def departements():
|
|||||||
Exemple de résultat : [2, 5, 8, 1, 4, 18]
|
Exemple de résultat : [2, 5, 8, 1, 4, 18]
|
||||||
"""
|
"""
|
||||||
# Récupération de tous les départements
|
# Récupération de tous les départements
|
||||||
depts = models.Departement.query.filter_by(visible=True).all()
|
depts = models.Departement.query.filter_by(visible=True)
|
||||||
|
|
||||||
# Mise en place de la liste avec tous les ids de départements
|
# Mise en place de la liste avec tous les ids de départements
|
||||||
depts_ids = [d.id for d in depts]
|
depts_ids = [d.id for d in depts]
|
||||||
@ -67,14 +67,14 @@ def liste_etudiants(dept: str, formsemestre_id=None):
|
|||||||
# Si le formsemestre_id a été renseigné
|
# Si le formsemestre_id a été renseigné
|
||||||
if formsemestre_id is not None:
|
if formsemestre_id is not None:
|
||||||
# Récupération du formsemestre
|
# Récupération du formsemestre
|
||||||
formsemestre = models.FormSemestre.query.filter_by(id=formsemestre_id).first()
|
formsemestre = models.FormSemestre.query.filter_by(id=formsemestre_id).first_or_404()
|
||||||
# Récupération du département
|
# Récupération du département
|
||||||
departement = formsemestre.departement
|
departement = formsemestre.departement
|
||||||
|
|
||||||
# Si le formsemestre_id n'a pas été renseigné
|
# Si le formsemestre_id n'a pas été renseigné
|
||||||
else:
|
else:
|
||||||
# Récupération du formsemestre
|
# Récupération du formsemestre
|
||||||
departement = models.Departement.query.filter_by(acronym=dept).first()
|
departement = models.Departement.query.filter_by(acronym=dept).first_or_404()
|
||||||
|
|
||||||
# Récupération des étudiants
|
# Récupération des étudiants
|
||||||
etudiants = departement.etudiants.all()
|
etudiants = departement.etudiants.all()
|
||||||
@ -129,16 +129,12 @@ def liste_semestres_courant(dept: str):
|
|||||||
]
|
]
|
||||||
"""
|
"""
|
||||||
# Récupération des départements comportant l'acronym mit en paramètre
|
# Récupération des départements comportant l'acronym mit en paramètre
|
||||||
depts = models.Departement.query.filter_by(acronym=dept).all()
|
dept = models.Departement.query.filter_by(acronym=dept).first_or_404()
|
||||||
|
|
||||||
# Récupération de l'id
|
|
||||||
id_dept = depts[0].id
|
|
||||||
|
|
||||||
# Récupération des semestres suivant id_dept
|
# Récupération des semestres suivant id_dept
|
||||||
semestres = models.FormSemestre.query.filter_by(dept_id=id_dept, etat=True).all()
|
semestres = models.FormSemestre.query.filter_by(dept_id=dept.id, etat=True)
|
||||||
|
|
||||||
# Mise en forme des données
|
# Mise en forme des données
|
||||||
|
|
||||||
data = [d.to_dict() for d in semestres]
|
data = [d.to_dict() for d in semestres]
|
||||||
|
|
||||||
return jsonify(data)
|
return jsonify(data)
|
||||||
@ -156,15 +152,13 @@ def referenciel_competences(dept: str, formation_id: int):
|
|||||||
dept : l'acronym d'un département
|
dept : l'acronym d'un département
|
||||||
formation_id : l'id d'une formation
|
formation_id : l'id d'une formation
|
||||||
"""
|
"""
|
||||||
depts = models.Departement.query.filter_by(acronym=dept).all()
|
dept = models.Departement.query.filter_by(acronym=dept).first_or_404()
|
||||||
|
|
||||||
id_dept = depts[0].id
|
formation = models.Formation.query.filter_by(
|
||||||
|
id=formation_id, dept_id=dept.id
|
||||||
|
).first_or_404()
|
||||||
|
|
||||||
formations = models.Formation.query.filter_by(
|
ref_comp = formation.referentiel_competence_id
|
||||||
id=formation_id, dept_id=id_dept
|
|
||||||
).all()
|
|
||||||
|
|
||||||
ref_comp = formations[0].referentiel_competence_id
|
|
||||||
|
|
||||||
if ref_comp is None:
|
if ref_comp is None:
|
||||||
return error_response(
|
return error_response(
|
||||||
@ -173,10 +167,6 @@ def referenciel_competences(dept: str, formation_id: int):
|
|||||||
else:
|
else:
|
||||||
return jsonify(ref_comp)
|
return jsonify(ref_comp)
|
||||||
|
|
||||||
# ref = ApcReferentielCompetences.query.get_or_404(formation_id)
|
|
||||||
#
|
|
||||||
# return jsonify(ref.to_dict())
|
|
||||||
|
|
||||||
|
|
||||||
@bp.route(
|
@bp.route(
|
||||||
"/departements/<string:dept>/formsemestre/<string:formsemestre_id>/programme",
|
"/departements/<string:dept>/formsemestre/<string:formsemestre_id>/programme",
|
||||||
@ -190,7 +180,7 @@ def semestre_index(dept: str, formsemestre_id: int):
|
|||||||
|
|
||||||
app.set_sco_dept(dept)
|
app.set_sco_dept(dept)
|
||||||
|
|
||||||
formsemestre = models.FormSemestre.query.filter_by(id=formsemestre_id).first()
|
formsemestre = models.FormSemestre.query.filter_by(id=formsemestre_id).first_or_404()
|
||||||
|
|
||||||
ues = formsemestre.query_ues()
|
ues = formsemestre.query_ues()
|
||||||
|
|
||||||
@ -218,4 +208,3 @@ def semestre_index(dept: str, formsemestre_id: int):
|
|||||||
}
|
}
|
||||||
|
|
||||||
return data
|
return data
|
||||||
# return error_response(501, message="not implemented")
|
|
||||||
|
Loading…
Reference in New Issue
Block a user