signal_assiduites_group : fix bug actualisation "jourSuivant"

This commit is contained in:
Iziram 2024-06-17 06:43:27 +02:00
parent dc3456fc0e
commit b6d4bbbf98

View File

@ -975,7 +975,7 @@ function dateCouranteEstTravaillee() {
}
// Fonction pour passer au jour suivant
// anti : bool => si true, on va dans le passé
function jourSuivant(anti = false) {
async function jourSuivant(anti = false) {
let date = $("#date").datepicker("getDate");
date = anti ? date.add(-1, "days") : date.add(1, "days");
@ -983,7 +983,8 @@ function jourSuivant(anti = false) {
const nouvelleDate = retourJourTravail(date, anti);
$("#date").datepicker("setDate", nouvelleDate);
creerTousLesEtudiants(etuds);
await recupAssiduites(etuds, $("#date").datepicker("getDate"));
await creerTousLesEtudiants(etuds);
}
/**