forked from ScoDoc/ScoDoc
signal_assiduites_group : fix bug actualisation "jourSuivant"
This commit is contained in:
parent
dc3456fc0e
commit
b6d4bbbf98
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user