forked from ScoDoc/ScoDoc
Fix: evaluations à dates vides (tri)
This commit is contained in:
parent
fede1ae7af
commit
73cf9a6f4d
@ -386,8 +386,8 @@ def bonus_demo(notes_sport, coefs, infos=None):
|
|||||||
qui est ECRASE à chaque appel.
|
qui est ECRASE à chaque appel.
|
||||||
*** Ne pas utiliser en production !!! ***
|
*** Ne pas utiliser en production !!! ***
|
||||||
"""
|
"""
|
||||||
f = open("/tmp/scodoc_bonus.log", "w") # mettre 'a' pour ajouter en fin
|
with open("/tmp/scodoc_bonus.log", "w") as f: # mettre 'a' pour ajouter en fin
|
||||||
f.write("\n---------------\n" + pprint.pformat(infos) + "\n")
|
f.write("\n---------------\n" + pprint.pformat(infos) + "\n")
|
||||||
# Statut de chaque UE
|
# Statut de chaque UE
|
||||||
# for ue_id in infos['moy_ues']:
|
# for ue_id in infos['moy_ues']:
|
||||||
# ue_status = infos['moy_ues'][ue_id]
|
# ue_status = infos['moy_ues'][ue_id]
|
||||||
|
@ -274,13 +274,13 @@ def do_evaluation_create(
|
|||||||
if args["jour"]:
|
if args["jour"]:
|
||||||
next_eval = None
|
next_eval = None
|
||||||
t = (
|
t = (
|
||||||
ndb.DateDMYtoISO(args["jour"]),
|
ndb.DateDMYtoISO(args["jour"], null_is_empty=True),
|
||||||
ndb.TimetoISO8601(args["heure_debut"]),
|
ndb.TimetoISO8601(args["heure_debut"], null_is_empty=True),
|
||||||
)
|
)
|
||||||
for e in ModEvals:
|
for e in ModEvals:
|
||||||
if (
|
if (
|
||||||
ndb.DateDMYtoISO(e["jour"]),
|
ndb.DateDMYtoISO(e["jour"], null_is_empty=True),
|
||||||
ndb.TimetoISO8601(e["heure_debut"]),
|
ndb.TimetoISO8601(e["heure_debut"], null_is_empty=True),
|
||||||
) > t:
|
) > t:
|
||||||
next_eval = e
|
next_eval = e
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user