2022-03-02 16:45:47 +01:00
|
|
|
|
#################################################### Etudiants ########################################################
|
2022-04-20 15:50:02 +02:00
|
|
|
|
|
2022-03-02 16:45:47 +01:00
|
|
|
|
from flask import jsonify
|
|
|
|
|
|
2022-04-26 13:46:09 +02:00
|
|
|
|
import app
|
2022-03-02 16:45:47 +01:00
|
|
|
|
from app import models
|
|
|
|
|
from app.api import bp
|
|
|
|
|
from app.api.errors import error_response
|
2022-04-26 13:46:09 +02:00
|
|
|
|
from app.api.auth import token_permission_required
|
2022-04-26 17:12:30 +02:00
|
|
|
|
from app.api.tools import get_etu_from_etudid_or_nip_or_ine
|
2022-04-26 14:48:43 +02:00
|
|
|
|
from app.models import FormSemestreInscription, FormSemestre, Identite
|
2022-04-26 13:46:09 +02:00
|
|
|
|
from app.scodoc import sco_bulletins
|
|
|
|
|
from app.scodoc import sco_groups
|
2022-03-04 17:16:08 +01:00
|
|
|
|
from app.scodoc.sco_permissions import Permission
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
|
2022-04-28 03:24:37 +02:00
|
|
|
|
@bp.route("/etudiants/courant", defaults={"long": False})
|
|
|
|
|
@bp.route("/etudiants/courant/long", defaults={"long": True})
|
2022-04-14 14:56:36 +02:00
|
|
|
|
@token_permission_required(Permission.APIView)
|
2022-04-28 03:24:37 +02:00
|
|
|
|
def etudiants_courant(long=False):
|
2022-03-02 16:45:47 +01:00
|
|
|
|
"""
|
|
|
|
|
Retourne la liste des étudiants courant
|
|
|
|
|
|
|
|
|
|
Exemple de résultat :
|
2022-04-26 17:12:30 +02:00
|
|
|
|
{
|
2022-03-02 16:45:47 +01:00
|
|
|
|
{
|
|
|
|
|
"civilite": "X",
|
|
|
|
|
"code_ine": null,
|
|
|
|
|
"code_nip": null,
|
|
|
|
|
"date_naissance": null,
|
|
|
|
|
"email": null,
|
|
|
|
|
"emailperso": null,
|
|
|
|
|
"etudid": 18,
|
|
|
|
|
"nom": "MOREL",
|
|
|
|
|
"prenom": "JACQUES"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"civilite": "X",
|
|
|
|
|
"code_ine": null,
|
|
|
|
|
"code_nip": null,
|
|
|
|
|
"date_naissance": null,
|
|
|
|
|
"email": null,
|
|
|
|
|
"emailperso": null,
|
|
|
|
|
"etudid": 19,
|
|
|
|
|
"nom": "FOURNIER",
|
|
|
|
|
"prenom": "ANNE"
|
|
|
|
|
},
|
|
|
|
|
...
|
2022-04-26 17:12:30 +02:00
|
|
|
|
}
|
2022-03-02 16:45:47 +01:00
|
|
|
|
"""
|
|
|
|
|
# Récupération de tous les étudiants
|
2022-04-26 13:46:09 +02:00
|
|
|
|
etuds = Identite.query.filter(
|
2022-04-26 14:48:43 +02:00
|
|
|
|
Identite.id == FormSemestreInscription.etudid,
|
|
|
|
|
FormSemestreInscription.formsemestre_id == FormSemestre.id,
|
|
|
|
|
FormSemestre.date_debut <= app.db.func.now(),
|
2022-04-26 13:46:09 +02:00
|
|
|
|
FormSemestre.date_fin >= app.db.func.now(),
|
|
|
|
|
)
|
2022-04-28 03:24:37 +02:00
|
|
|
|
if long:
|
|
|
|
|
data = [etud.to_dict_bul(include_urls=False) for etud in etuds]
|
|
|
|
|
else:
|
|
|
|
|
data = [etud.to_dict_short() for etud in etuds]
|
2022-04-28 16:12:15 +02:00
|
|
|
|
print(jsonify(data))
|
2022-03-02 16:45:47 +01:00
|
|
|
|
return jsonify(data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@bp.route("/etudiant/etudid/<int:etudid>", methods=["GET"])
|
|
|
|
|
@bp.route("/etudiant/nip/<int:nip>", methods=["GET"])
|
|
|
|
|
@bp.route("/etudiant/ine/<int:ine>", methods=["GET"])
|
2022-04-14 14:56:36 +02:00
|
|
|
|
@token_permission_required(Permission.APIView)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
def etudiant(etudid: int = None, nip: int = None, ine: int = None):
|
|
|
|
|
"""
|
|
|
|
|
Retourne les informations de l'étudiant correspondant à l'id passé en paramètres.
|
|
|
|
|
|
|
|
|
|
etudid : l'etudid d'un étudiant
|
|
|
|
|
nip : le code nip d'un étudiant
|
|
|
|
|
ine : le code ine d'un étudiant
|
|
|
|
|
|
|
|
|
|
Exemple de résultat :
|
|
|
|
|
{
|
|
|
|
|
"civilite": "X",
|
|
|
|
|
"code_ine": null,
|
|
|
|
|
"code_nip": null,
|
|
|
|
|
"date_naissance": null,
|
|
|
|
|
"email": null,
|
|
|
|
|
"emailperso": null,
|
|
|
|
|
"etudid": 18,
|
|
|
|
|
"nom": "MOREL",
|
|
|
|
|
"prenom": "JACQUES"
|
|
|
|
|
}
|
|
|
|
|
"""
|
2022-04-22 16:22:10 +02:00
|
|
|
|
# Récupération de l'étudiant
|
2022-04-27 05:34:56 +02:00
|
|
|
|
etud = get_etu_from_etudid_or_nip_or_ine(etudid, nip, ine)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
# Mise en forme des données
|
2022-04-27 05:34:56 +02:00
|
|
|
|
data = etud.to_dict_bul(include_urls=False)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
return jsonify(data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@bp.route("/etudiant/etudid/<int:etudid>/formsemestres")
|
|
|
|
|
@bp.route("/etudiant/nip/<int:nip>/formsemestres")
|
|
|
|
|
@bp.route("/etudiant/ine/<int:ine>/formsemestres")
|
2022-04-14 14:56:36 +02:00
|
|
|
|
@token_permission_required(Permission.APIView)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
def etudiant_formsemestres(etudid: int = None, nip: int = None, ine: int = None):
|
|
|
|
|
"""
|
2022-04-26 17:12:30 +02:00
|
|
|
|
Retourne la liste des semestres qu'un étudiant a suivis, triés par ordre chronologique.
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
etudid : l'etudid d'un étudiant
|
|
|
|
|
nip : le code nip d'un étudiant
|
|
|
|
|
ine : le code ine d'un étudiant
|
|
|
|
|
|
|
|
|
|
Exemple de résultat :
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"titre": "master machine info",
|
|
|
|
|
"gestion_semestrielle": false,
|
|
|
|
|
"date_debut": "01/09/2021",
|
|
|
|
|
"bul_bgcolor": null,
|
|
|
|
|
"date_fin": "15/12/2022",
|
|
|
|
|
"resp_can_edit": false,
|
|
|
|
|
"dept_id": 1,
|
|
|
|
|
"etat": true,
|
|
|
|
|
"resp_can_change_ens": false,
|
|
|
|
|
"id": 1,
|
|
|
|
|
"modalite": "FI",
|
|
|
|
|
"ens_can_edit_eval": false,
|
|
|
|
|
"formation_id": 1,
|
|
|
|
|
"gestion_compensation": false,
|
|
|
|
|
"elt_sem_apo": null,
|
|
|
|
|
"semestre_id": 1,
|
|
|
|
|
"bul_hide_xml": false,
|
|
|
|
|
"elt_annee_apo": null,
|
|
|
|
|
"block_moyennes": false,
|
|
|
|
|
"formsemestre_id": 1,
|
|
|
|
|
"titre_num": "master machine info semestre 1",
|
|
|
|
|
"date_debut_iso": "2021-09-01",
|
|
|
|
|
"date_fin_iso": "2022-12-15",
|
|
|
|
|
"responsables": [
|
|
|
|
|
3,
|
|
|
|
|
2
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
...
|
|
|
|
|
]
|
|
|
|
|
"""
|
2022-04-22 16:22:10 +02:00
|
|
|
|
# Récupération de l'étudiant
|
2022-04-26 17:12:30 +02:00
|
|
|
|
etud = get_etu_from_etudid_or_nip_or_ine(etudid, nip, ine)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
2022-04-26 13:46:09 +02:00
|
|
|
|
formsemestres = models.FormSemestre.query.filter(
|
|
|
|
|
models.FormSemestreInscription.etudid == etud.id,
|
|
|
|
|
models.FormSemestreInscription.formsemestre_id == models.FormSemestre.id,
|
|
|
|
|
).order_by(models.FormSemestre.date_debut)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
2022-04-26 13:46:09 +02:00
|
|
|
|
return jsonify([formsemestre.to_dict() for formsemestre in formsemestres])
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
|
2022-04-25 15:25:45 +02:00
|
|
|
|
@bp.route(
|
|
|
|
|
"/etudiant/etudid/<int:etudid>/formsemestre/<int:formsemestre_id>/bulletin",
|
|
|
|
|
methods=["GET"],
|
|
|
|
|
)
|
|
|
|
|
@bp.route(
|
|
|
|
|
"/etudiant/nip/<int:nip>/formsemestre/<int:formsemestre_id>/bulletin",
|
|
|
|
|
methods=["GET"],
|
|
|
|
|
)
|
|
|
|
|
@bp.route(
|
|
|
|
|
"/etudiant/ine/<int:ine>/formsemestre/<int:formsemestre_id>/bulletin",
|
|
|
|
|
methods=["GET"],
|
|
|
|
|
)
|
2022-04-14 14:56:36 +02:00
|
|
|
|
@token_permission_required(Permission.APIView)
|
2022-04-25 15:25:45 +02:00
|
|
|
|
def etudiant_bulletin_semestre(
|
|
|
|
|
formsemestre_id, etudid: int = None, nip: int = None, ine: int = None
|
|
|
|
|
):
|
2022-03-02 16:45:47 +01:00
|
|
|
|
"""
|
|
|
|
|
Retourne le bulletin d'un étudiant en fonction de son id et d'un semestre donné
|
|
|
|
|
|
|
|
|
|
formsemestre_id : l'id d'un formsemestre
|
|
|
|
|
etudid : l'etudid d'un étudiant
|
|
|
|
|
nip : le code nip d'un étudiant
|
|
|
|
|
ine : le code ine d'un étudiant
|
2022-04-27 14:11:06 +02:00
|
|
|
|
Exemple de résultat :
|
|
|
|
|
{
|
|
|
|
|
"version": "0",
|
|
|
|
|
"type": "BUT",
|
|
|
|
|
"date": "2022-04-27T07:18:16.450634Z",
|
|
|
|
|
"publie": true,
|
|
|
|
|
"etudiant": {
|
|
|
|
|
"civilite": "X",
|
|
|
|
|
"code_ine": "1",
|
|
|
|
|
"code_nip": "1",
|
|
|
|
|
"date_naissance": "",
|
|
|
|
|
"email": "SACHA.COSTA@example.com",
|
|
|
|
|
"emailperso": "",
|
|
|
|
|
"etudid": 1,
|
|
|
|
|
"nom": "COSTA",
|
|
|
|
|
"prenom": "SACHA",
|
|
|
|
|
"nomprenom": "Sacha COSTA",
|
|
|
|
|
"lieu_naissance": "",
|
|
|
|
|
"dept_naissance": "",
|
|
|
|
|
"nationalite": "",
|
|
|
|
|
"boursier": "",
|
|
|
|
|
"fiche_url": "/ScoDoc/TAPI/Scolarite/ficheEtud?etudid=1",
|
|
|
|
|
"photo_url": "/ScoDoc/TAPI/Scolarite/get_photo_image?etudid=1&size=small",
|
|
|
|
|
"id": 1,
|
|
|
|
|
"codepostaldomicile": "",
|
|
|
|
|
"paysdomicile": "",
|
|
|
|
|
"telephonemobile": "",
|
|
|
|
|
"typeadresse": "domicile",
|
|
|
|
|
"domicile": "",
|
|
|
|
|
"villedomicile": "",
|
|
|
|
|
"telephone": "",
|
|
|
|
|
"fax": "",
|
|
|
|
|
"description": ""
|
|
|
|
|
},
|
|
|
|
|
"formation": {
|
|
|
|
|
"id": 1,
|
|
|
|
|
"acronyme": "BUT R&T",
|
|
|
|
|
"titre_officiel": "Bachelor technologique r\u00e9seaux et t\u00e9l\u00e9communications",
|
|
|
|
|
"titre": "BUT R&T"
|
|
|
|
|
},
|
|
|
|
|
"formsemestre_id": 1,
|
|
|
|
|
"etat_inscription": "I",
|
|
|
|
|
"options": {
|
|
|
|
|
"show_abs": true,
|
|
|
|
|
"show_abs_modules": false,
|
|
|
|
|
"show_ects": true,
|
|
|
|
|
"show_codemodules": false,
|
|
|
|
|
"show_matieres": false,
|
|
|
|
|
"show_rangs": true,
|
|
|
|
|
"show_ue_rangs": true,
|
|
|
|
|
"show_mod_rangs": true,
|
|
|
|
|
"show_moypromo": false,
|
|
|
|
|
"show_minmax": false,
|
|
|
|
|
"show_minmax_mod": false,
|
|
|
|
|
"show_minmax_eval": false,
|
|
|
|
|
"show_coef": true,
|
|
|
|
|
"show_ue_cap_details": false,
|
|
|
|
|
"show_ue_cap_current": true,
|
|
|
|
|
"show_temporary": true,
|
|
|
|
|
"temporary_txt": "Provisoire",
|
|
|
|
|
"show_uevalid": true,
|
|
|
|
|
"show_date_inscr": true
|
|
|
|
|
},
|
|
|
|
|
"ressources": {
|
|
|
|
|
"R101": {
|
|
|
|
|
"id": 1,
|
|
|
|
|
"titre": "Initiation aux r\u00e9seaux informatiques",
|
|
|
|
|
"code_apogee": null,
|
|
|
|
|
"url": "/ScoDoc/TAPI/Scolarite/Notes/moduleimpl_status?moduleimpl_id=1",
|
|
|
|
|
"moyenne": {},
|
|
|
|
|
"evaluations": [
|
|
|
|
|
{
|
|
|
|
|
"id": 1,
|
|
|
|
|
"description": "eval1",
|
|
|
|
|
"date": "2022-04-20",
|
|
|
|
|
"heure_debut": "08:00",
|
|
|
|
|
"heure_fin": "09:00",
|
|
|
|
|
"coef": "01.00",
|
|
|
|
|
"poids": {
|
|
|
|
|
"RT1.1": 1.0,
|
|
|
|
|
},
|
|
|
|
|
"note": {
|
|
|
|
|
"value": "12.00",
|
|
|
|
|
"min": "00.00",
|
|
|
|
|
"max": "18.00",
|
|
|
|
|
"moy": "10.88"
|
|
|
|
|
},
|
|
|
|
|
"url": "/ScoDoc/TAPI/Scolarite/Notes/evaluation_listenotes?evaluation_id=1"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"saes": {
|
|
|
|
|
"SAE11": {
|
|
|
|
|
"id": 2,
|
|
|
|
|
"titre": "Se sensibiliser \u00e0 l'hygi\u00e8ne informatique et \u00e0 la cybers\u00e9curit\u00e9",
|
|
|
|
|
"code_apogee": null,
|
|
|
|
|
"url": "/ScoDoc/TAPI/Scolarite/Notes/moduleimpl_status?moduleimpl_id=2",
|
|
|
|
|
"moyenne": {},
|
|
|
|
|
"evaluations": []
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"ues": {
|
|
|
|
|
"RT1.1": {
|
|
|
|
|
"id": 1,
|
|
|
|
|
"titre": "Administrer les r\u00e9seaux et l\u2019Internet",
|
|
|
|
|
"numero": 1,
|
|
|
|
|
"type": 0,
|
|
|
|
|
"color": "#B80004",
|
|
|
|
|
"competence": null,
|
|
|
|
|
"moyenne": {
|
|
|
|
|
"value": "08.50",
|
|
|
|
|
"min": "06.00",
|
|
|
|
|
"max": "16.50",
|
|
|
|
|
"moy": "11.31",
|
|
|
|
|
"rang": "12",
|
|
|
|
|
"total": 16
|
|
|
|
|
},
|
|
|
|
|
"bonus": "00.00",
|
|
|
|
|
"malus": "00.00",
|
|
|
|
|
"capitalise": null,
|
|
|
|
|
"ressources": {
|
|
|
|
|
"R101": {
|
|
|
|
|
"id": 1,
|
|
|
|
|
"coef": 12.0,
|
|
|
|
|
"moyenne": "12.00"
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"saes": {
|
|
|
|
|
"SAE11": {
|
|
|
|
|
"id": 2,
|
|
|
|
|
"coef": 16.0,
|
|
|
|
|
"moyenne": "~"
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"ECTS": {
|
|
|
|
|
"acquis": 0.0,
|
|
|
|
|
"total": 12.0
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"semestre": {
|
|
|
|
|
"etapes": [],
|
|
|
|
|
"date_debut": "2021-09-01",
|
|
|
|
|
"date_fin": "2022-08-31",
|
|
|
|
|
"annee_universitaire": "2021 - 2022",
|
|
|
|
|
"numero": 1,
|
|
|
|
|
"inscription": "",
|
|
|
|
|
"groupes": [],
|
|
|
|
|
"absences": {
|
|
|
|
|
"injustifie": 1,
|
|
|
|
|
"total": 2
|
|
|
|
|
},
|
|
|
|
|
"ECTS": {
|
|
|
|
|
"acquis": 0,
|
|
|
|
|
"total": 30.0
|
|
|
|
|
},
|
|
|
|
|
"notes": {
|
|
|
|
|
"value": "10.60",
|
|
|
|
|
"min": "02.40",
|
|
|
|
|
"moy": "11.05",
|
|
|
|
|
"max": "17.40"
|
|
|
|
|
},
|
|
|
|
|
"rang": {
|
|
|
|
|
"value": "10",
|
|
|
|
|
"total": 16
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-02 16:45:47 +01:00
|
|
|
|
"""
|
2022-04-26 13:46:09 +02:00
|
|
|
|
formsemestre = models.FormSemestre.query.filter_by(
|
|
|
|
|
id=formsemestre_id
|
|
|
|
|
).first_or_404()
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
2022-04-26 14:48:43 +02:00
|
|
|
|
dept = models.Departement.query.filter_by(id=formsemestre.dept_id).first_or_404()
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
2022-04-20 15:50:02 +02:00
|
|
|
|
app.set_sco_dept(dept.acronym)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
2022-04-26 14:48:43 +02:00
|
|
|
|
# Récupération de l'étudiant
|
|
|
|
|
try:
|
2022-04-26 17:12:30 +02:00
|
|
|
|
etu = get_etu_from_etudid_or_nip_or_ine(etudid, nip, ine)
|
2022-04-26 14:48:43 +02:00
|
|
|
|
except AttributeError:
|
|
|
|
|
return error_response(
|
|
|
|
|
409,
|
|
|
|
|
message="La requête ne peut être traitée en l’état actuel.\n "
|
2022-04-26 13:46:09 +02:00
|
|
|
|
"Veuillez vérifier que l'id de l'étudiant (etudid, nip, ine) est valide",
|
2022-04-26 14:48:43 +02:00
|
|
|
|
)
|
2022-04-20 15:50:02 +02:00
|
|
|
|
|
2022-04-26 13:46:09 +02:00
|
|
|
|
return sco_bulletins.get_formsemestre_bulletin_etud_json(formsemestre, etu)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
|
2022-04-25 15:25:45 +02:00
|
|
|
|
@bp.route(
|
|
|
|
|
"/etudiant/etudid/<int:etudid>/semestre/<int:formsemestre_id>/groups",
|
|
|
|
|
methods=["GET"],
|
|
|
|
|
)
|
|
|
|
|
@bp.route(
|
|
|
|
|
"/etudiant/nip/<int:nip>/semestre/<int:formsemestre_id>/groups", methods=["GET"]
|
|
|
|
|
)
|
|
|
|
|
@bp.route(
|
|
|
|
|
"/etudiant/ine/<int:ine>/semestre/<int:formsemestre_id>/groups", methods=["GET"]
|
|
|
|
|
)
|
2022-04-14 14:56:36 +02:00
|
|
|
|
@token_permission_required(Permission.APIView)
|
2022-04-25 15:25:45 +02:00
|
|
|
|
def etudiant_groups(
|
|
|
|
|
formsemestre_id: int, etudid: int = None, nip: int = None, ine: int = None
|
|
|
|
|
):
|
2022-03-02 16:45:47 +01:00
|
|
|
|
"""
|
|
|
|
|
Retourne la liste des groupes auxquels appartient l'étudiant dans le semestre indiqué
|
|
|
|
|
|
|
|
|
|
formsemestre_id : l'id d'un formsemestre
|
|
|
|
|
etudid : l'etudid d'un étudiant
|
|
|
|
|
nip : le code nip d'un étudiant
|
|
|
|
|
ine : le code ine d'un étudiant
|
|
|
|
|
|
|
|
|
|
Exemple de résultat :
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"partition_id": 1,
|
|
|
|
|
"id": 1,
|
|
|
|
|
"formsemestre_id": 1,
|
|
|
|
|
"partition_name": null,
|
|
|
|
|
"numero": 0,
|
|
|
|
|
"bul_show_rank": false,
|
|
|
|
|
"show_in_lists": true,
|
|
|
|
|
"group_id": 1,
|
|
|
|
|
"group_name": null
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"partition_id": 2,
|
|
|
|
|
"id": 2,
|
|
|
|
|
"formsemestre_id": 1,
|
|
|
|
|
"partition_name": "TD",
|
|
|
|
|
"numero": 1,
|
|
|
|
|
"bul_show_rank": false,
|
|
|
|
|
"show_in_lists": true,
|
|
|
|
|
"group_id": 2,
|
|
|
|
|
"group_name": "A"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
"""
|
|
|
|
|
if etudid is None:
|
2022-04-27 05:34:56 +02:00
|
|
|
|
etud = get_etu_from_etudid_or_nip_or_ine(etudid, nip, ine)
|
|
|
|
|
if etud is None:
|
2022-04-25 15:25:45 +02:00
|
|
|
|
return error_response(
|
|
|
|
|
409,
|
|
|
|
|
message="La requête ne peut être traitée en l’état actuel.\n "
|
2022-04-26 13:46:09 +02:00
|
|
|
|
"Veuillez vérifier que l'id de l'étudiant (etudid, nip, ine) est valide",
|
2022-04-25 15:25:45 +02:00
|
|
|
|
)
|
2022-04-27 05:34:56 +02:00
|
|
|
|
etudid = etud.etudid
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
|
# Récupération du formsemestre
|
2022-04-26 14:48:43 +02:00
|
|
|
|
sem = models.FormSemestre.query.filter_by(id=formsemestre_id).first_or_404()
|
2022-04-27 05:34:56 +02:00
|
|
|
|
dept = models.Departement.query.get(sem.dept_id)
|
|
|
|
|
app.set_sco_dept(dept.acronym)
|
|
|
|
|
data = sco_groups.get_etud_groups(etudid, sem.id)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
2022-04-22 16:22:10 +02:00
|
|
|
|
return jsonify(data)
|