Fix: affichage cursus BUT si un sem n'a pas de ref. comp.

This commit is contained in:
Emmanuel Viennet 2023-01-18 06:31:49 -03:00
parent a6598dcd92
commit 4b06c4cab5
2 changed files with 6 additions and 3 deletions

View File

@ -92,8 +92,11 @@ class EtudCursusBUT:
[
ins
for ins in etud.formsemestre_inscriptions
if ins.formsemestre.formation.referentiel_competence.id
== formation.referentiel_competence.id
if ins.formsemestre.formation.referentiel_competence
and (
ins.formsemestre.formation.referentiel_competence.id
== formation.referentiel_competence.id
)
],
key=lambda s: (s.formsemestre.semestre_id, s.formsemestre.date_debut),
)

View File

@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.4.27"
SCOVERSION = "9.4.28"
SCONAME = "ScoDoc"