forked from ScoDoc/ScoDoc
Assiduité : signal_assiduites_hebdo : verif heure matin < aprem
This commit is contained in:
parent
ab9543c310
commit
dea403b03d
@ -250,9 +250,17 @@ function openModal(morning = true){
|
||||
}
|
||||
|
||||
if (morning){
|
||||
if (fin > temps.apresmidi.debut){
|
||||
alert("L'heure de fin du matin doit être inférieure à l'heure de début de l'après-midi");
|
||||
return;
|
||||
}
|
||||
temps.matin.debut = debut;
|
||||
temps.matin.fin = fin;
|
||||
} else {
|
||||
if (debut < temps.matin.fin){
|
||||
alert("L'heure de début de l'après-midi doit être supérieure à l'heure de fin du matin");
|
||||
return;
|
||||
}
|
||||
temps.apresmidi.debut = debut;
|
||||
temps.apresmidi.fin = fin;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user