Fix: date de fin des formsemestre créés

This commit is contained in:
Emmanuel Viennet 2024-07-04 00:34:50 +02:00
parent 417ecf79b7
commit 3c11998985
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ class FormSemestre(models.ScoDocModel):
if "date_debut" in args:
args["date_debut"] = scu.convert_fr_date(args["date_debut"])
if "date_fin" in args:
args["date_fin"] = scu.convert_fr_date(args["date_debut"])
args["date_fin"] = scu.convert_fr_date(args["date_fin"])
if "etat" in args:
args["etat"] = bool(args["etat"])
if "bul_bgcolor" in args:

View File

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