Commit a0a325a4 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Merge branch 'release-1.1.3'

parents 58909c1a 27c0ee0a
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@
return [
    'unicaen-app' => [
        'app_infos' => [
            'version' => '1.1.2',
            'date' => '15/03/2019',
            'version' => '1.1.3',
            'date' => '18/03/2019',
        ],
    ],
    'comment' => 'Fichier généré le 15/03/2019 à 11:40:07 avec /home/metivier/MyWeb/sygal/bump-version',
    'comment' => 'Fichier généré le 18/03/2019 à 10:09:13 avec /home/metivier/MyWeb/sygal/bump-version',
];
+4 −1
Original line number Diff line number Diff line
@@ -58,6 +58,9 @@ class ExportController extends AbstractController
            'Unité de Recherche'                    => function (These $these) { if($these->getUniteRecherche() !== null) return $these->getUniteRecherche()->getLibelle(); else return null; },
            'Etablissement Co-Tutelle'              => function (These $these) { return $these->getLibelleEtabCotutelle(); },
            'Pays Co-Tutelle'                       => function (These $these) { return $these->getLibellePaysCotutelle(); },
            //accession
            'Diplôme d\'accession à la thèse'       => function (These $these) { if($these->getTitreAcces() !== null) return $these->getTitreAcces()->getLibelleTitreAcces(); },
            'Établissement d\'accession à la thèse' => function (These $these) { if($these->getTitreAcces() !== null) return $these->getTitreAcces()->getLibelleEtabTitreAcces(); },
            //Financements
            'Origines du financement'                            => function (These $these) {
                $financements = $these->getFinancements();
+1 −0
Original line number Diff line number Diff line
@@ -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('ta')->leftJoin('t.titreAcces', 'ta')
//            ->addSelect('ds')->leftJoin('ur.domaines', 'ds')
            ->andWhere('1 = pasHistorise(t)');