feat : ajout d'un ordre d'affichage pour les employés + ajout du drag and drop pour changer l'ordre des employés dans le calendrier et l'impression
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s

This commit is contained in:
2026-02-10 16:49:03 +01:00
parent fe6a0e8fc9
commit 0b0ca60af7
10 changed files with 177 additions and 9 deletions

View File

@@ -115,6 +115,7 @@ class AbsencePrintProvider implements ProviderInterface
->leftJoin('e.site', 's')
->addSelect('s')
->orderBy('s.name', 'ASC')
->addOrderBy('e.displayOrder', 'ASC')
->addOrderBy('e.lastName', 'ASC')
->addOrderBy('e.firstName', 'ASC')
;