forked from ScoDoc/ScoDoc
Assiduites : améliorations
- - duplication const - + bouton justifier `ajout_assiduite_etud` - + auto actualiser `signal_assiduite_group` - - enum au lieu de str - + mettre css minitimeline.css - + resize timeline fix
This commit is contained in:
parent
0cafc0b184
commit
3e1f563ecd
@ -32,6 +32,7 @@ Formulaire ajout d'un justificatif sur un étudiant
|
|||||||
from flask_wtf import FlaskForm
|
from flask_wtf import FlaskForm
|
||||||
from flask_wtf.file import MultipleFileField
|
from flask_wtf.file import MultipleFileField
|
||||||
from wtforms import (
|
from wtforms import (
|
||||||
|
BooleanField,
|
||||||
SelectField,
|
SelectField,
|
||||||
StringField,
|
StringField,
|
||||||
SubmitField,
|
SubmitField,
|
||||||
@ -136,6 +137,7 @@ class AjoutAssiduiteEtudForm(AjoutAssiOrJustForm):
|
|||||||
"Module",
|
"Module",
|
||||||
choices={}, # will be populated dynamically
|
choices={}, # will be populated dynamically
|
||||||
)
|
)
|
||||||
|
est_just = BooleanField("Justifiée")
|
||||||
|
|
||||||
|
|
||||||
class AjoutJustificatifEtudForm(AjoutAssiOrJustForm):
|
class AjoutJustificatifEtudForm(AjoutAssiOrJustForm):
|
||||||
|
@ -390,13 +390,11 @@ def get_assiduites_stats(
|
|||||||
|
|
||||||
# Récupération des états
|
# Récupération des états
|
||||||
etats: list[str] = (
|
etats: list[str] = (
|
||||||
filtered["etat"].split(",")
|
filtered["etat"].split(",") if "etat" in filtered else scu.EtatAssiduite.all()
|
||||||
if "etat" in filtered
|
|
||||||
else ["absent", "present", "retard"]
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# être sur que les états sont corrects
|
# être sur que les états sont corrects
|
||||||
etats = [etat for etat in etats if etat in ["absent", "present", "retard"]]
|
etats = [etat for etat in etats if etat.upper() in scu.EtatAssiduite.all()]
|
||||||
|
|
||||||
# Préparation du dictionnaire de retour avec les valeurs du calcul
|
# Préparation du dictionnaire de retour avec les valeurs du calcul
|
||||||
count: dict = calculator.to_dict(only_total=False)
|
count: dict = calculator.to_dict(only_total=False)
|
||||||
|
@ -476,7 +476,7 @@ MONTH_NAMES_ABBREV = (
|
|||||||
"Avr ",
|
"Avr ",
|
||||||
"Mai ",
|
"Mai ",
|
||||||
"Juin",
|
"Juin",
|
||||||
"Jul ",
|
"Juil ",
|
||||||
"Août",
|
"Août",
|
||||||
"Sept",
|
"Sept",
|
||||||
"Oct ",
|
"Oct ",
|
||||||
|
@ -256,17 +256,17 @@
|
|||||||
background-color: var(--color-conflit);
|
background-color: var(--color-conflit);
|
||||||
}
|
}
|
||||||
|
|
||||||
.etud_row .assiduites_bar .absent,
|
.etud_row .assiduites_bar>.absent,
|
||||||
.demo.absent {
|
.demo.absent {
|
||||||
background-color: var(--color-absent) !important;
|
background-color: var(--color-absent) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.etud_row .assiduites_bar .present,
|
.etud_row .assiduites_bar>.present,
|
||||||
.demo.present {
|
.demo.present {
|
||||||
background-color: var(--color-present) !important;
|
background-color: var(--color-present) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.etud_row .assiduites_bar .retard,
|
.etud_row .assiduites_bar>.retard,
|
||||||
.demo.retard {
|
.demo.retard {
|
||||||
background-color: var(--color-retard) !important;
|
background-color: var(--color-retard) !important;
|
||||||
}
|
}
|
||||||
@ -275,12 +275,12 @@
|
|||||||
background-color: var(--color-nonwork) !important;
|
background-color: var(--color-nonwork) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.etud_row .assiduites_bar .justified,
|
.etud_row .assiduites_bar>.justified,
|
||||||
.demo.justified {
|
.demo.justified {
|
||||||
background-image: var(--motif-justi);
|
background-image: var(--motif-justi);
|
||||||
}
|
}
|
||||||
|
|
||||||
.etud_row .assiduites_bar .invalid_justified,
|
.etud_row .assiduites_bar>.invalid_justified,
|
||||||
.demo.invalid_justified {
|
.demo.invalid_justified {
|
||||||
background-image: var(--motif-justi-invalide);
|
background-image: var(--motif-justi-invalide);
|
||||||
}
|
}
|
||||||
|
212
app/static/css/minitimeline.css
Normal file
212
app/static/css/minitimeline.css
Normal file
@ -0,0 +1,212 @@
|
|||||||
|
.day .dayline {
|
||||||
|
position: absolute;
|
||||||
|
display: none;
|
||||||
|
top: 100%;
|
||||||
|
z-index: 50;
|
||||||
|
width: max-content;
|
||||||
|
height: 75px;
|
||||||
|
background-color: #dedede;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.day:hover .dayline {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dayline .mini-timeline {
|
||||||
|
margin-top: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dayline-title {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dayline .mini_tick {
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
top: 0;
|
||||||
|
transform: translateY(-110%);
|
||||||
|
z-index: 50;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dayline .mini_tick::after {
|
||||||
|
display: block;
|
||||||
|
content: "|";
|
||||||
|
position: absolute;
|
||||||
|
bottom: -69%;
|
||||||
|
z-index: 2;
|
||||||
|
transform: translateX(200%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#label-nom,
|
||||||
|
#label-justi {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demi .day {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demi .day>span {
|
||||||
|
display: block;
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
z-index: 1;
|
||||||
|
width: 100%;
|
||||||
|
border: 1px solid #d5d5d5;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demi .day>span:first-of-type {
|
||||||
|
width: 3em;
|
||||||
|
min-width: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.options>* {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.options input {
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.options label {
|
||||||
|
font-weight: normal;
|
||||||
|
margin-right: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*Gestion des bubbles*/
|
||||||
|
.assiduite-bubble {
|
||||||
|
position: relative;
|
||||||
|
display: none;
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 8px;
|
||||||
|
border: 3px solid #ccc;
|
||||||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1.4;
|
||||||
|
z-index: 3;
|
||||||
|
min-width: max-content;
|
||||||
|
top: 200%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block:hover .assiduite-bubble {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
height: auto;
|
||||||
|
max-height: 150px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assiduite-bubble::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
bottom: 100%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
border-width: 6px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent transparent #f9f9f9 transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assiduite-bubble::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
bottom: 100%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
border-width: 5px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent transparent #ccc transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assiduite-id,
|
||||||
|
.assiduite-period,
|
||||||
|
.assiduite-state,
|
||||||
|
.assiduite-user_id {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assiduite-bubble.absent {
|
||||||
|
border-color: var(--color-absent) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assiduite-bubble.present {
|
||||||
|
border-color: var(--color-present) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.assiduite-bubble.retard {
|
||||||
|
border-color: var(--color-retard) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*Gestion des minitimelines*/
|
||||||
|
.mini-timeline {
|
||||||
|
height: 7px;
|
||||||
|
border: 1px solid black;
|
||||||
|
position: relative;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline.single {
|
||||||
|
height: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block {
|
||||||
|
position: absolute;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini_tick {
|
||||||
|
position: absolute;
|
||||||
|
text-align: start;
|
||||||
|
top: -40px;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini_tick::after {
|
||||||
|
display: block;
|
||||||
|
content: "|";
|
||||||
|
position: absolute;
|
||||||
|
bottom: -2px;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block.creneau {
|
||||||
|
outline: 3px solid var(--color-primary);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block.absent {
|
||||||
|
background-color: var(--color-absent) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block.present {
|
||||||
|
background-color: var(--color-present) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block.retard {
|
||||||
|
background-color: var(--color-retard) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block.justified {
|
||||||
|
background-image: var(--motif-justi);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-timeline-block.invalid_justified {
|
||||||
|
background-image: var(--motif-justi-invalide);
|
||||||
|
}
|
@ -68,6 +68,25 @@ function setupCheckBox(parent = document) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateEtudList() {
|
||||||
|
const group_ids = getGroupIds();
|
||||||
|
etuds = {};
|
||||||
|
group_ids.forEach((group_id) => {
|
||||||
|
sync_get(getUrl() + `/api/group/${group_id}/etudiants`, (data, status) => {
|
||||||
|
if (status === "success") {
|
||||||
|
data.forEach((etud) => {
|
||||||
|
if (!(etud.id in etuds)) {
|
||||||
|
etuds[etud.id] = etud;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
getAssiduitesFromEtuds(true);
|
||||||
|
generateAllEtudRow();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validation préalable puis désactivation des chammps :
|
* Validation préalable puis désactivation des chammps :
|
||||||
* - Groupe
|
* - Groupe
|
||||||
@ -108,14 +127,16 @@ function validateSelectors(btn) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
getAssiduitesFromEtuds(true);
|
|
||||||
|
|
||||||
// document.querySelector(".selectors").disabled = true;
|
|
||||||
// $("#tl_date").datepicker("option", "disabled", true);
|
|
||||||
generateMassAssiduites();
|
generateMassAssiduites();
|
||||||
|
|
||||||
|
getAssiduitesFromEtuds(true);
|
||||||
generateAllEtudRow();
|
generateAllEtudRow();
|
||||||
// btn.remove();
|
|
||||||
btn.textContent = "Actualiser";
|
btn.remove();
|
||||||
|
// Auto actualisation
|
||||||
|
$("#tl_date").on("change", updateEtudList);
|
||||||
|
$("#group_ids_sel").on("change", updateEtudList);
|
||||||
|
|
||||||
onlyAbs();
|
onlyAbs();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -648,16 +669,15 @@ function updateDate() {
|
|||||||
);
|
);
|
||||||
openAlertModal("Attention", div, "", "#eec660");
|
openAlertModal("Attention", div, "", "#eec660");
|
||||||
|
|
||||||
/* BUG TODO MATHIAS
|
|
||||||
$(dateInput).datepicker("setDate", date_fra); // XXX ??? non définie
|
|
||||||
dateInput.value = date_fra;
|
|
||||||
*/
|
|
||||||
date = lastWorkDay;
|
date = lastWorkDay;
|
||||||
|
|
||||||
dateStr = formatDate(lastWorkDay, {
|
dateStr = formatDate(lastWorkDay, {
|
||||||
dateStyle: "full",
|
dateStyle: "full",
|
||||||
timeZone: SCO_TIMEZONE,
|
timeZone: SCO_TIMEZONE,
|
||||||
}).capitalize();
|
}).capitalize();
|
||||||
|
|
||||||
|
$(dateInput).datepicker("setDate", date);
|
||||||
|
$(dateInput).change();
|
||||||
}
|
}
|
||||||
|
|
||||||
document.querySelector("#datestr").textContent = dateStr;
|
document.querySelector("#datestr").textContent = dateStr;
|
||||||
|
@ -87,6 +87,13 @@ div.submit > input {
|
|||||||
{{ form.modimpl }}
|
{{ form.modimpl }}
|
||||||
{{ render_field_errors(form, 'modimpl') }}
|
{{ render_field_errors(form, 'modimpl') }}
|
||||||
</div>
|
</div>
|
||||||
|
{# Justifiée #}
|
||||||
|
<div class="est-justifiee">
|
||||||
|
{{ form.est_just.label }} :
|
||||||
|
{{ form.est_just }}
|
||||||
|
<span class="help">génère un justificatif valide ayant la même période que l'assiduité signalée</span>
|
||||||
|
{{ render_field_errors(form, 'est_just') }}
|
||||||
|
</div>
|
||||||
{# Description #}
|
{# Description #}
|
||||||
<div>
|
<div>
|
||||||
<div>{{ form.description.label }}</div>
|
<div>{{ form.description.label }}</div>
|
||||||
|
@ -1,4 +1,14 @@
|
|||||||
{% block pageContent %}
|
{% extends "sco_page.j2" %}
|
||||||
|
{% block title %}
|
||||||
|
Calendrier de l'assiduité
|
||||||
|
{% endblock title %}
|
||||||
|
{% block styles %}
|
||||||
|
{{ super() }}
|
||||||
|
<link rel="stylesheet" href="{{scu.STATIC_DIR}}/css/minitimeline.css">
|
||||||
|
<link rel="stylesheet" href="{{scu.STATIC_DIR}}/css/assiduites.css">
|
||||||
|
{% endblock styles %}
|
||||||
|
|
||||||
|
{% block app_content %}
|
||||||
{% include "assiduites/widgets/alert.j2" %}
|
{% include "assiduites/widgets/alert.j2" %}
|
||||||
|
|
||||||
<div class="pageContent">
|
<div class="pageContent">
|
||||||
@ -250,219 +260,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.day .dayline {
|
|
||||||
position: absolute;
|
|
||||||
display: none;
|
|
||||||
top: 100%;
|
|
||||||
z-index: 50;
|
|
||||||
width: max-content;
|
|
||||||
height: 75px;
|
|
||||||
background-color: #dedede;
|
|
||||||
border-radius: 15px;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.day:hover .dayline {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dayline .mini-timeline {
|
|
||||||
margin-top: 10%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dayline-title {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dayline .mini_tick {
|
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
|
||||||
top: 0;
|
|
||||||
transform: translateY(-110%);
|
|
||||||
z-index: 50;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dayline .mini_tick::after {
|
|
||||||
display: block;
|
|
||||||
content: "|";
|
|
||||||
position: absolute;
|
|
||||||
bottom: -69%;
|
|
||||||
z-index: 2;
|
|
||||||
transform: translateX(200%);
|
|
||||||
}
|
|
||||||
|
|
||||||
#label-nom,
|
|
||||||
#label-justi {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.demi .day {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
|
|
||||||
.demi .day>span {
|
|
||||||
display: block;
|
|
||||||
flex: 1;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 1;
|
|
||||||
width: 100%;
|
|
||||||
border: 1px solid #d5d5d5;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.demi .day>span:first-of-type {
|
|
||||||
width: 3em;
|
|
||||||
min-width: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.options>* {
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.options input {
|
|
||||||
margin-right: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.options label {
|
|
||||||
font-weight: normal;
|
|
||||||
margin-right: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*Gestion des bubbles*/
|
|
||||||
.assiduite-bubble {
|
|
||||||
position: relative;
|
|
||||||
display: none;
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 8px;
|
|
||||||
border: 3px solid #ccc;
|
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 1.4;
|
|
||||||
z-index: 500;
|
|
||||||
min-width: max-content;
|
|
||||||
top: 200%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block:hover .assiduite-bubble {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble::before {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
border-width: 6px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent #f9f9f9 transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent #ccc transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-id,
|
|
||||||
.assiduite-period,
|
|
||||||
.assiduite-state,
|
|
||||||
.assiduite-user_id {
|
|
||||||
margin-bottom: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.absent {
|
|
||||||
border-color: var(--color-absent) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.present {
|
|
||||||
border-color: var(--color-present) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.retard {
|
|
||||||
border-color: var(--color-retard) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*Gestion des minitimelines*/
|
|
||||||
.mini-timeline {
|
|
||||||
height: 7px;
|
|
||||||
border: 1px solid black;
|
|
||||||
position: relative;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline.single {
|
|
||||||
height: 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block {
|
|
||||||
position: absolute;
|
|
||||||
height: 100%;
|
|
||||||
z-index: 1;
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-start;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini_tick {
|
|
||||||
position: absolute;
|
|
||||||
text-align: start;
|
|
||||||
top: -40px;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
z-index: 50;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini_tick::after {
|
|
||||||
display: block;
|
|
||||||
content: "|";
|
|
||||||
position: absolute;
|
|
||||||
bottom: -2px;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.creneau {
|
|
||||||
outline: 3px solid var(--color-primary);
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.absent {
|
|
||||||
background-color: var(--color-absent) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.present {
|
|
||||||
background-color: var(--color-present) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.retard {
|
|
||||||
background-color: var(--color-retard) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.justified {
|
|
||||||
background-image: var(--motif-justi);
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.invalid_justified {
|
|
||||||
background-image: var(--motif-justi-invalide);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
|
|
||||||
.couleurs.print {
|
.couleurs.print {
|
||||||
@ -593,4 +390,4 @@
|
|||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endblock pageContent %}
|
{% endblock app_content %}
|
||||||
|
@ -47,7 +47,6 @@
|
|||||||
Faire la saisie
|
Faire la saisie
|
||||||
</button>
|
</button>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>Utilisez le bouton "Actualiser" si vous modifier la date ou le(s) groupe(s) sélectionné(s)</p>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="etud_holder">
|
<div class="etud_holder">
|
||||||
@ -97,9 +96,7 @@
|
|||||||
updateDate();
|
updateDate();
|
||||||
if (!readOnly){
|
if (!readOnly){
|
||||||
setupTimeLine(()=>{
|
setupTimeLine(()=>{
|
||||||
if(document.querySelector('.etud_holder .placeholder') != null){
|
|
||||||
generateAllEtudRow();
|
generateAllEtudRow();
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,11 +73,6 @@
|
|||||||
updateSelectedSelect(getCurrentAssiduiteModuleImplId());
|
updateSelectedSelect(getCurrentAssiduiteModuleImplId());
|
||||||
updateJustifyBtn();
|
updateJustifyBtn();
|
||||||
}
|
}
|
||||||
try {
|
|
||||||
if (isCalendrier()) {
|
|
||||||
window.location = `liste_assiduites_etud?etudid=${etudid}&assiduite_id=${assiduité.assiduite_id}`
|
|
||||||
}
|
|
||||||
} catch { }
|
|
||||||
});
|
});
|
||||||
//ajouter affichage assiduites on over
|
//ajouter affichage assiduites on over
|
||||||
setupAssiduiteBuble(block, assiduité);
|
setupAssiduiteBuble(block, assiduité);
|
||||||
@ -138,12 +133,10 @@
|
|||||||
*/
|
*/
|
||||||
function setupAssiduiteBuble(el, assiduite) {
|
function setupAssiduiteBuble(el, assiduite) {
|
||||||
if (!assiduite) return;
|
if (!assiduite) return;
|
||||||
el.addEventListener("mouseenter", (event) => {
|
|
||||||
const bubble = document.querySelector(".assiduite-bubble");
|
|
||||||
bubble.className = "assiduite-bubble";
|
|
||||||
bubble.classList.add("is-active", assiduite.etat.toLowerCase());
|
|
||||||
|
|
||||||
bubble.innerHTML = "";
|
const bubble = document.createElement('div');
|
||||||
|
bubble.className = "assiduite-bubble";
|
||||||
|
bubble.classList.add(assiduite.etat.toLowerCase());
|
||||||
|
|
||||||
const idDiv = document.createElement("div");
|
const idDiv = document.createElement("div");
|
||||||
idDiv.className = "assiduite-id";
|
idDiv.className = "assiduite-id";
|
||||||
@ -176,13 +169,7 @@
|
|||||||
}
|
}
|
||||||
bubble.appendChild(userIdDiv);
|
bubble.appendChild(userIdDiv);
|
||||||
|
|
||||||
bubble.style.left = `${event.clientX - bubble.offsetWidth / 2}px`;
|
el.appendChild(bubble);
|
||||||
bubble.style.top = `${event.clientY + 20}px`;
|
|
||||||
});
|
|
||||||
el.addEventListener("mouseout", () => {
|
|
||||||
const bubble = document.querySelector(".assiduite-bubble");
|
|
||||||
bubble.classList.remove("is-active");
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function setMiniTick(timelineDate, dayStart, dayDuration) {
|
function setMiniTick(timelineDate, dayStart, dayDuration) {
|
||||||
@ -199,126 +186,3 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
|
||||||
.assiduite-bubble {
|
|
||||||
position: fixed;
|
|
||||||
display: none;
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 8px;
|
|
||||||
border: 3px solid #ccc;
|
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 1.4;
|
|
||||||
z-index: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.is-active {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble::before {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
border-width: 6px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent #f9f9f9 transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent #ccc transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-id,
|
|
||||||
.assiduite-period,
|
|
||||||
.assiduite-state,
|
|
||||||
.assiduite-user_id {
|
|
||||||
margin-bottom: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.absent {
|
|
||||||
border-color: var(--color-absent) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.present {
|
|
||||||
border-color: var(--color-present) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.assiduite-bubble.retard {
|
|
||||||
border-color: var(--color-retard) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline {
|
|
||||||
height: 7px;
|
|
||||||
border: 1px solid black;
|
|
||||||
position: relative;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline.single {
|
|
||||||
height: 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block {
|
|
||||||
position: absolute;
|
|
||||||
height: 100%;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#page-assiduite-content .mini-timeline-block {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini_tick {
|
|
||||||
position: absolute;
|
|
||||||
text-align: start;
|
|
||||||
top: -40px;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini_tick::after {
|
|
||||||
display: block;
|
|
||||||
content: "|";
|
|
||||||
position: absolute;
|
|
||||||
bottom: -2px;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.creneau {
|
|
||||||
outline: 3px solid var(--color-primary);
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.absent {
|
|
||||||
background-color: var(--color-absent) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.present {
|
|
||||||
background-color: var(--color-present) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.retard {
|
|
||||||
background-color: var(--color-retard) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.justified {
|
|
||||||
background-image: var(--motif-justi);
|
|
||||||
}
|
|
||||||
|
|
||||||
.mini-timeline-block.invalid_justified {
|
|
||||||
background-image: var(--motif-justi-invalide);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
@ -89,8 +89,7 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function timelineMainEvent(event, callback) {
|
function timelineMainEvent(event) {
|
||||||
const func_call = callback ? callback : () => { };
|
|
||||||
|
|
||||||
const startX = (event.clientX || event.changedTouches[0].clientX);
|
const startX = (event.clientX || event.changedTouches[0].clientX);
|
||||||
|
|
||||||
@ -152,7 +151,6 @@
|
|||||||
updatePeriodTimeLabel();
|
updatePeriodTimeLabel();
|
||||||
};
|
};
|
||||||
const mouseUp = () => {
|
const mouseUp = () => {
|
||||||
generateAllEtudRow();
|
|
||||||
snapHandlesToQuarters();
|
snapHandlesToQuarters();
|
||||||
timelineContainer.removeEventListener("mousemove", onMouseMove);
|
timelineContainer.removeEventListener("mousemove", onMouseMove);
|
||||||
func_call();
|
func_call();
|
||||||
@ -172,9 +170,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let func_call = () => { };
|
||||||
|
|
||||||
function setupTimeLine(callback) {
|
function setupTimeLine(callback) {
|
||||||
timelineContainer.addEventListener("mousedown", (e) => { timelineMainEvent(e, callback) });
|
func_call = callback;
|
||||||
timelineContainer.addEventListener("touchstart", (e) => { timelineMainEvent(e, callback) });
|
timelineContainer.addEventListener("mousedown", (e) => { timelineMainEvent(e) });
|
||||||
|
timelineContainer.addEventListener("touchstart", (e) => { timelineMainEvent(e) });
|
||||||
}
|
}
|
||||||
|
|
||||||
function adjustPeriodPosition(newLeft, newWidth) {
|
function adjustPeriodPosition(newLeft, newWidth) {
|
||||||
@ -230,8 +231,8 @@
|
|||||||
periodTimeLine.style.width = `${widthPercentage}%`;
|
periodTimeLine.style.width = `${widthPercentage}%`;
|
||||||
|
|
||||||
snapHandlesToQuarters();
|
snapHandlesToQuarters();
|
||||||
generateAllEtudRow();
|
|
||||||
updatePeriodTimeLabel()
|
updatePeriodTimeLabel()
|
||||||
|
func_call();
|
||||||
}
|
}
|
||||||
|
|
||||||
function snapHandlesToQuarters() {
|
function snapHandlesToQuarters() {
|
||||||
@ -270,7 +271,6 @@
|
|||||||
if (heure_deb != '' && heure_fin != '') {
|
if (heure_deb != '' && heure_fin != '') {
|
||||||
heure_deb = fromTime(heure_deb);
|
heure_deb = fromTime(heure_deb);
|
||||||
heure_fin = fromTime(heure_fin);
|
heure_fin = fromTime(heure_fin);
|
||||||
console.warn(heure_deb, heure_fin)
|
|
||||||
setPeriodValues(heure_deb, heure_fin)
|
setPeriodValues(heure_deb, heure_fin)
|
||||||
}
|
}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -462,11 +462,13 @@ def _record_assiduite_etud(
|
|||||||
case _:
|
case _:
|
||||||
moduleimpl = ModuleImpl.query.get(moduleimpl_id)
|
moduleimpl = ModuleImpl.query.get(moduleimpl_id)
|
||||||
try:
|
try:
|
||||||
|
assi_etat: scu.EtatAssiduite = scu.EtatAssiduite.get(form.assi_etat.data)
|
||||||
|
|
||||||
ass = Assiduite.create_assiduite(
|
ass = Assiduite.create_assiduite(
|
||||||
etud,
|
etud,
|
||||||
dt_debut_tz_server,
|
dt_debut_tz_server,
|
||||||
dt_fin_tz_server,
|
dt_fin_tz_server,
|
||||||
scu.EtatAssiduite.get(form.assi_etat.data),
|
assi_etat,
|
||||||
description=form.description.data,
|
description=form.description.data,
|
||||||
entry_date=dt_entry_date_tz_server,
|
entry_date=dt_entry_date_tz_server,
|
||||||
external_data=external_data,
|
external_data=external_data,
|
||||||
@ -477,6 +479,19 @@ def _record_assiduite_etud(
|
|||||||
db.session.add(ass)
|
db.session.add(ass)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
|
if assi_etat != scu.EtatAssiduite.PRESENT and form.est_just.data:
|
||||||
|
# si la case "justifiée est cochée alors on créé un justificatif de même période"
|
||||||
|
justi: Justificatif = Justificatif.create_justificatif(
|
||||||
|
etudiant=etud,
|
||||||
|
date_debut=dt_debut_tz_server,
|
||||||
|
date_fin=dt_fin_tz_server,
|
||||||
|
etat=scu.EtatJustificatif.VALIDE,
|
||||||
|
user_id=current_user.id,
|
||||||
|
)
|
||||||
|
|
||||||
|
# On met à jour les assiduités en fonction du nouveau justificatif
|
||||||
|
compute_assiduites_justified(etud.id, [justi])
|
||||||
|
|
||||||
# Invalider cache
|
# Invalider cache
|
||||||
scass.simple_invalidate_cache(ass.to_dict(), etud.id)
|
scass.simple_invalidate_cache(ass.to_dict(), etud.id)
|
||||||
|
|
||||||
@ -863,25 +878,10 @@ def calendrier_assi_etud():
|
|||||||
annees_str += f"{ann},"
|
annees_str += f"{ann},"
|
||||||
annees_str += "]"
|
annees_str += "]"
|
||||||
|
|
||||||
# Préparation de la page
|
calendrier: dict[str, list["Jour"]] = generate_calendar(etud, annee)
|
||||||
header: str = html_sco_header.sco_header(
|
|
||||||
page_title="Calendrier de l'assiduité",
|
|
||||||
init_qtip=True,
|
|
||||||
javascripts=[
|
|
||||||
"js/assiduites.js",
|
|
||||||
"js/date_utils.js",
|
|
||||||
],
|
|
||||||
cssstyles=CSSSTYLES
|
|
||||||
+ [
|
|
||||||
"css/assiduites.css",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
calendrier = generate_calendar(etud, annee)
|
|
||||||
# Peuplement du template jinja
|
# Peuplement du template jinja
|
||||||
return HTMLBuilder(
|
return render_template(
|
||||||
header,
|
|
||||||
render_template(
|
|
||||||
"assiduites/pages/calendrier_assi_etud.j2",
|
"assiduites/pages/calendrier_assi_etud.j2",
|
||||||
sco=ScoData(etud),
|
sco=ScoData(etud),
|
||||||
annee=annee,
|
annee=annee,
|
||||||
@ -891,8 +891,7 @@ def calendrier_assi_etud():
|
|||||||
mode_demi=mode_demi,
|
mode_demi=mode_demi,
|
||||||
show_pres=show_pres,
|
show_pres=show_pres,
|
||||||
show_reta=show_reta,
|
show_reta=show_reta,
|
||||||
),
|
)
|
||||||
).build()
|
|
||||||
|
|
||||||
|
|
||||||
@bp.route("/choix_date", methods=["GET", "POST"])
|
@bp.route("/choix_date", methods=["GET", "POST"])
|
||||||
@ -927,7 +926,9 @@ def choix_date() -> str:
|
|||||||
if ok:
|
if ok:
|
||||||
return redirect(
|
return redirect(
|
||||||
url_for(
|
url_for(
|
||||||
"assiduites.signal_assiduites_group",
|
"assiduites.signal_assiduites_group"
|
||||||
|
if request.args.get("readonly") is None
|
||||||
|
else "assiduites.visu_assiduites_group",
|
||||||
scodoc_dept=g.scodoc_dept,
|
scodoc_dept=g.scodoc_dept,
|
||||||
formsemestre_id=formsemestre_id,
|
formsemestre_id=formsemestre_id,
|
||||||
group_ids=group_ids,
|
group_ids=group_ids,
|
||||||
@ -1071,6 +1072,7 @@ def signal_assiduites_group():
|
|||||||
cssstyles=CSSSTYLES
|
cssstyles=CSSSTYLES
|
||||||
+ [
|
+ [
|
||||||
"css/assiduites.css",
|
"css/assiduites.css",
|
||||||
|
"css/minitimeline.css",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -1168,13 +1170,19 @@ def visu_assiduites_group():
|
|||||||
]
|
]
|
||||||
|
|
||||||
# --- Vérification de la date ---
|
# --- Vérification de la date ---
|
||||||
|
|
||||||
real_date = scu.is_iso_formated(date, True).date()
|
real_date = scu.is_iso_formated(date, True).date()
|
||||||
|
if real_date < formsemestre.date_debut or real_date > formsemestre.date_fin:
|
||||||
if real_date < formsemestre.date_debut:
|
# Si le jour est hors semestre, renvoyer vers choix date
|
||||||
date = formsemestre.date_debut.isoformat()
|
return redirect(
|
||||||
elif real_date > formsemestre.date_fin:
|
url_for(
|
||||||
date = formsemestre.date_fin.isoformat()
|
"assiduites.choix_date",
|
||||||
|
formsemestre_id=formsemestre_id,
|
||||||
|
group_ids=group_ids,
|
||||||
|
moduleimpl_id=moduleimpl_id,
|
||||||
|
scodoc_dept=g.scodoc_dept,
|
||||||
|
readonly="true",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
# --- Restriction en fonction du moduleimpl_id ---
|
# --- Restriction en fonction du moduleimpl_id ---
|
||||||
if moduleimpl_id:
|
if moduleimpl_id:
|
||||||
@ -1218,6 +1226,7 @@ def visu_assiduites_group():
|
|||||||
cssstyles=CSSSTYLES
|
cssstyles=CSSSTYLES
|
||||||
+ [
|
+ [
|
||||||
"css/assiduites.css",
|
"css/assiduites.css",
|
||||||
|
"css/minitimeline.css",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -1555,21 +1564,6 @@ def tableau_assiduite_actions():
|
|||||||
flash(f"{objet_name} supprimé")
|
flash(f"{objet_name} supprimé")
|
||||||
|
|
||||||
return redirect(request.referrer)
|
return redirect(request.referrer)
|
||||||
# Justification d'une assiduité depuis le tableau
|
|
||||||
if action == "justifier" and obj_type == "assiduite":
|
|
||||||
# Création du justificatif correspondant
|
|
||||||
justificatif_correspondant: Justificatif = Justificatif.create_justificatif(
|
|
||||||
etudiant=objet.etudiant,
|
|
||||||
date_debut=objet.date_debut,
|
|
||||||
date_fin=objet.date_fin,
|
|
||||||
etat=scu.EtatJustificatif.VALIDE,
|
|
||||||
user_id=current_user.id,
|
|
||||||
)
|
|
||||||
|
|
||||||
compute_assiduites_justified(objet.etudiant.id, [justificatif_correspondant])
|
|
||||||
|
|
||||||
flash(f"{objet_name} justifiée")
|
|
||||||
return redirect(request.referrer)
|
|
||||||
|
|
||||||
# Justification d'une assiduité depuis le tableau
|
# Justification d'une assiduité depuis le tableau
|
||||||
if action == "justifier" and obj_type == "assiduite":
|
if action == "justifier" and obj_type == "assiduite":
|
||||||
@ -2318,7 +2312,7 @@ def _get_etuds_dem_def(formsemestre) -> str:
|
|||||||
def generate_calendar(
|
def generate_calendar(
|
||||||
etudiant: Identite,
|
etudiant: Identite,
|
||||||
annee: int = None,
|
annee: int = None,
|
||||||
):
|
) -> dict[str, list["Jour"]]:
|
||||||
# Si pas d'année alors on prend l'année scolaire en cours
|
# Si pas d'année alors on prend l'année scolaire en cours
|
||||||
if annee is None:
|
if annee is None:
|
||||||
annee = scu.annee_scolaire()
|
annee = scu.annee_scolaire()
|
||||||
@ -2342,7 +2336,7 @@ def generate_calendar(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Récupération des jours de l'année et de leurs assiduités/justificatifs
|
# Récupération des jours de l'année et de leurs assiduités/justificatifs
|
||||||
annee_par_mois: dict[int, list[datetime.date]] = _organize_by_month(
|
annee_par_mois: dict[str, list[Jour]] = _organize_by_month(
|
||||||
_get_dates_between(
|
_get_dates_between(
|
||||||
deb=date_debut.date(),
|
deb=date_debut.date(),
|
||||||
fin=date_fin.date(),
|
fin=date_fin.date(),
|
||||||
@ -2354,32 +2348,6 @@ def generate_calendar(
|
|||||||
return annee_par_mois
|
return annee_par_mois
|
||||||
|
|
||||||
|
|
||||||
WEEKDAYS = {
|
|
||||||
0: "Lun ",
|
|
||||||
1: "Mar ",
|
|
||||||
2: "Mer ",
|
|
||||||
3: "Jeu ",
|
|
||||||
4: "Ven ",
|
|
||||||
5: "Sam ",
|
|
||||||
6: "Dim ",
|
|
||||||
}
|
|
||||||
|
|
||||||
MONTHS = {
|
|
||||||
1: "Janv.",
|
|
||||||
2: "Févr.",
|
|
||||||
3: "Mars",
|
|
||||||
4: "Avr.",
|
|
||||||
5: "Mai",
|
|
||||||
6: "Juin",
|
|
||||||
7: "Juil.",
|
|
||||||
8: "Août",
|
|
||||||
9: "Sept.",
|
|
||||||
10: "Oct.",
|
|
||||||
11: "Nov.",
|
|
||||||
12: "Déc.",
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class Jour:
|
class Jour:
|
||||||
"""Jour
|
"""Jour
|
||||||
Jour du calendrier
|
Jour du calendrier
|
||||||
@ -2392,8 +2360,8 @@ class Jour:
|
|||||||
self.justificatifs = justificatifs
|
self.justificatifs = justificatifs
|
||||||
|
|
||||||
def get_nom(self, mode_demi: bool = True) -> str:
|
def get_nom(self, mode_demi: bool = True) -> str:
|
||||||
str_jour: str = WEEKDAYS.get(self.date.weekday())
|
str_jour: str = scu.DAY_NAMES[self.date.weekday()].capitalize()
|
||||||
return f"{str_jour[0] if mode_demi or self.is_non_work() else str_jour}{self.date.day}"
|
return f"{str_jour[0] if mode_demi or self.is_non_work() else str_jour[:3]+' '}{self.date.day}"
|
||||||
|
|
||||||
def get_date(self) -> str:
|
def get_date(self) -> str:
|
||||||
return self.date.strftime("%d/%m/%Y")
|
return self.date.strftime("%d/%m/%Y")
|
||||||
@ -2605,14 +2573,14 @@ def _get_dates_between(deb: datetime.date, fin: datetime.date) -> list[datetime.
|
|||||||
return resultat
|
return resultat
|
||||||
|
|
||||||
|
|
||||||
def _organize_by_month(days, assiduites, justificatifs):
|
def _organize_by_month(days, assiduites, justificatifs) -> dict[str, list[Jour]]:
|
||||||
"""
|
"""
|
||||||
Organiser les dates par mois.
|
Organiser les dates par mois.
|
||||||
"""
|
"""
|
||||||
organized = {}
|
organized = {}
|
||||||
for date in days:
|
for date in days:
|
||||||
# Utiliser le numéro du mois comme clé
|
# Récupérer le mois en français
|
||||||
month = MONTHS.get(date.month)
|
month = scu.MONTH_NAMES_ABBREV[date.month - 1]
|
||||||
# Ajouter le jour à la liste correspondante au mois
|
# Ajouter le jour à la liste correspondante au mois
|
||||||
if month not in organized:
|
if month not in organized:
|
||||||
organized[month] = []
|
organized[month] = []
|
||||||
|
Loading…
Reference in New Issue
Block a user