forked from ScoDoc/ScoDoc
VisualisationAssiduitesGroupe: supprime col. 'Présences justifiées'. Fix #787
This commit is contained in:
parent
f4a2a0f888
commit
a81f8e9679
@ -105,6 +105,7 @@ class RowAssi(tb.Row):
|
|||||||
stats = self._get_etud_stats(etud)
|
stats = self._get_etud_stats(etud)
|
||||||
for key, value in stats.items():
|
for key, value in stats.items():
|
||||||
self.add_cell(key, value[0], f"{value[1] - value[2]}", "assi_stats")
|
self.add_cell(key, value[0], f"{value[1] - value[2]}", "assi_stats")
|
||||||
|
if key != "present":
|
||||||
self.add_cell(
|
self.add_cell(
|
||||||
key + "_justi",
|
key + "_justi",
|
||||||
value[0] + " Justifiées",
|
value[0] + " Justifiées",
|
||||||
@ -128,6 +129,7 @@ class RowAssi(tb.Row):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def _get_etud_stats(self, etud: Identite) -> dict[str, list[str, float, float]]:
|
def _get_etud_stats(self, etud: Identite) -> dict[str, list[str, float, float]]:
|
||||||
|
# XXX TODO @iziram commentaire sur la fonction et la var. retour
|
||||||
retour: dict[str, tuple[str, float, float]] = {
|
retour: dict[str, tuple[str, float, float]] = {
|
||||||
"present": ["Présences", 0.0, 0.0],
|
"present": ["Présences", 0.0, 0.0],
|
||||||
"retard": ["Retards", 0.0, 0.0],
|
"retard": ["Retards", 0.0, 0.0],
|
||||||
|
Loading…
Reference in New Issue
Block a user