Loading module/Application/src/Application/Controller/ExportController.php +8 −0 Original line number Diff line number Diff line Loading @@ -66,6 +66,14 @@ class ExportController extends AbstractController foreach ($financements as $financement) $origines[] = $financement->getOrigineFinancement()->getLibelleLong(); return implode(",", $origines); }, //Domaine 'Domaines scientifiques' => function (These $these) { $domaines = ($these->getUniteRecherche())?($these->getUniteRecherche())->getDomaines():[]; $liste = []; /** @var Financement $financement */ foreach ($domaines as $domaine) $liste[] = $domaine->getLibelle(); return implode(",", $liste); }, //Dates 'Date de première inscription' => function (These $these) { return $these->getDatePremiereInscription(); }, 'Date de prévisionnel de soutenance' => function (These $these) { return $these->getDatePrevisionSoutenance(); }, Loading module/Application/src/Application/Service/These/TheseRechercheService.php +1 −0 Original line number Diff line number Diff line Loading @@ -322,6 +322,7 @@ class TheseRechercheService ->addSelect('r')->leftJoin('a.role', 'r') ->addSelect('f')->leftJoin('t.financements', 'f') ->addSelect('fi')->leftJoin('t.fichiers', 'fi') // ->addSelect('ds')->leftJoin('ur.domaines', 'ds') ->andWhere('1 = pasHistorise(t)'); foreach ($this->filters as $filter) { Loading Loading
module/Application/src/Application/Controller/ExportController.php +8 −0 Original line number Diff line number Diff line Loading @@ -66,6 +66,14 @@ class ExportController extends AbstractController foreach ($financements as $financement) $origines[] = $financement->getOrigineFinancement()->getLibelleLong(); return implode(",", $origines); }, //Domaine 'Domaines scientifiques' => function (These $these) { $domaines = ($these->getUniteRecherche())?($these->getUniteRecherche())->getDomaines():[]; $liste = []; /** @var Financement $financement */ foreach ($domaines as $domaine) $liste[] = $domaine->getLibelle(); return implode(",", $liste); }, //Dates 'Date de première inscription' => function (These $these) { return $these->getDatePremiereInscription(); }, 'Date de prévisionnel de soutenance' => function (These $these) { return $these->getDatePrevisionSoutenance(); }, Loading
module/Application/src/Application/Service/These/TheseRechercheService.php +1 −0 Original line number Diff line number Diff line Loading @@ -322,6 +322,7 @@ class TheseRechercheService ->addSelect('r')->leftJoin('a.role', 'r') ->addSelect('f')->leftJoin('t.financements', 'f') ->addSelect('fi')->leftJoin('t.fichiers', 'fi') // ->addSelect('ds')->leftJoin('ur.domaines', 'ds') ->andWhere('1 = pasHistorise(t)'); foreach ($this->filters as $filter) { Loading