Loading CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -15,6 +15,7 @@ Journal des modifications - [FIX] Module STEP-STAR : correction du plantage en cas d'utilisation du filtre établissement dans la recherche de logs. - [FIX] Module STEP-STAR : serrages de vis pour tenter d'éviter les problèmes difficiles à reproduire. - [FIX] Doctorant : initialisation du 'code_apprenant_in_source' pour le cas où le doctorant est créé dans l'application (source SyGAL). - [FIX] Page 'Mes formations' : suppression des critères de dates pour l'affichage au doctorant des formation ouvertes et en préparation. 10.1.1 ------ Loading module/Formation/src/Formation/Controller/IndexController.php +4 −4 Original line number Diff line number Diff line Loading @@ -51,10 +51,10 @@ class IndexController extends AbstractController $anneeUnivCourante = $this->anneeUnivService->courante(); $formationsExternes = []; if($doctorant) { $debut = $this->anneeUnivService->computeDateDebut($anneeUnivCourante); $fin = $this->anneeUnivService->computeDateFin($anneeUnivCourante); $ouvertes = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_OUVERTE, $debut, $fin, true); $preparations = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_PREPARATION, $debut, $fin, true); // formations ouvertes et en préparation SANS CRITÈRES DE DATES pour afficher aussi celles de l'année univ suivantes $ouvertes = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_OUVERTE, verifDatePublication: true); $preparations = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_PREPARATION, verifDatePublication: true); /** @var Inscription[] $inscription */ $inscriptions = $this->getEntityManager()->getRepository(Inscription::class)->findInscriptionsByDoctorant($doctorant); Loading Loading
CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -15,6 +15,7 @@ Journal des modifications - [FIX] Module STEP-STAR : correction du plantage en cas d'utilisation du filtre établissement dans la recherche de logs. - [FIX] Module STEP-STAR : serrages de vis pour tenter d'éviter les problèmes difficiles à reproduire. - [FIX] Doctorant : initialisation du 'code_apprenant_in_source' pour le cas où le doctorant est créé dans l'application (source SyGAL). - [FIX] Page 'Mes formations' : suppression des critères de dates pour l'affichage au doctorant des formation ouvertes et en préparation. 10.1.1 ------ Loading
module/Formation/src/Formation/Controller/IndexController.php +4 −4 Original line number Diff line number Diff line Loading @@ -51,10 +51,10 @@ class IndexController extends AbstractController $anneeUnivCourante = $this->anneeUnivService->courante(); $formationsExternes = []; if($doctorant) { $debut = $this->anneeUnivService->computeDateDebut($anneeUnivCourante); $fin = $this->anneeUnivService->computeDateFin($anneeUnivCourante); $ouvertes = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_OUVERTE, $debut, $fin, true); $preparations = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_PREPARATION, $debut, $fin, true); // formations ouvertes et en préparation SANS CRITÈRES DE DATES pour afficher aussi celles de l'année univ suivantes $ouvertes = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_OUVERTE, verifDatePublication: true); $preparations = $this->getEntityManager()->getRepository(Session::class)->findSessionsByDoctorant($doctorant, Etat::CODE_PREPARATION, verifDatePublication: true); /** @var Inscription[] $inscription */ $inscriptions = $this->getEntityManager()->getRepository(Inscription::class)->findInscriptionsByDoctorant($doctorant); Loading