forked from ScoDoc/ScoDoc
Modif exception _formsemestre_enrich
This commit is contained in:
parent
6ffa4b8d7a
commit
860f5b9ad5
@ -147,7 +147,12 @@ def _formsemestre_enrich(sem):
|
|||||||
# imports ici pour eviter refs circulaires
|
# imports ici pour eviter refs circulaires
|
||||||
from app.scodoc import sco_formsemestre_edit
|
from app.scodoc import sco_formsemestre_edit
|
||||||
|
|
||||||
F = sco_formations.formation_list(args={"formation_id": sem["formation_id"]})[0]
|
formations = sco_formations.formation_list(
|
||||||
|
args={"formation_id": sem["formation_id"]}
|
||||||
|
)
|
||||||
|
if not formations:
|
||||||
|
raise ScoValueError("pas de formation pour ce semestre !")
|
||||||
|
F = formations[0]
|
||||||
parcours = sco_codes_parcours.get_parcours_from_code(F["type_parcours"])
|
parcours = sco_codes_parcours.get_parcours_from_code(F["type_parcours"])
|
||||||
# 'S1', 'S2', ... ou '' pour les monosemestres
|
# 'S1', 'S2', ... ou '' pour les monosemestres
|
||||||
if sem["semestre_id"] != NO_SEMESTRE_ID:
|
if sem["semestre_id"] != NO_SEMESTRE_ID:
|
||||||
|
Loading…
Reference in New Issue
Block a user