Loading CHANGELOG.md +16 −0 Original line number Diff line number Diff line Journal des modifications ========================= 1.2.8 (21/10/2019) ------------------ ### Correction - Déplacement de l'INE dans l'entity Doctorant et adaption de l'ExportController 1.2.7 (17/10/2019) ------------------ ### Ajout - L'export des thèses contient maintenant deux colonnes supplémentaires addresse électronnique de contact et INE - l'adresse électronique de contact est récupérer de la saisie faite à la première connection à SyGAL - l'INE sera rappatrié via les Web Services 1.2.6 (15/10/2019) ------------------ Loading config/autoload/version.global.php +3 −3 Original line number Diff line number Diff line Loading @@ -2,9 +2,9 @@ return [ 'unicaen-app' => [ 'app_infos' => [ 'version' => '1.2.7', 'date' => '17/10/2019', 'version' => '1.2.8', 'date' => '21/10/2019', ], ], 'comment' => 'Fichier généré le 17/10/2019 à 15:30:20 avec /home/metivier/MyWeb/sygal/bump-version', 'comment' => 'Fichier généré le 21/10/2019 à 08:37:53 avec /home/metivier/MyWeb/sygal/bump-version', ]; doc/release-notes/v1.2.8.md 0 → 100644 +19 −0 Original line number Diff line number Diff line # Version 1.2.6 ## 1. Sur le serveur d'application - Placez-vous dans le répertoire de l'application puis lancez la commande suivante pour installer la nouvelle version : ```bash git fetch --tags && git checkout --force 1.2.6 && \ bash ./install.sh ``` - Selon le moteur PHP que vous avez installé, rechargez le service, exemple : - php7.0-fpm : `service php7.0-fpm reload` - apache2-mod-php7.0 : `service apache2 reload` ## 2. Dans la base de données Néant. module/Application/src/Application/Controller/ExportController.php +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ class ExportController extends AbstractController 'Adresse électronique' => function (These $these) { return $these->getDoctorant()->getIndividu()->getEmail(); }, 'Adresse électronique personnelle' => function (These $these) { return $these->getDoctorant()->getIndividu()->getMailContact(); }, 'Numéro étudiant' => function (These $these) { return $this->sourceCodeStringHelper->removePrefixFrom($these->getDoctorant()->getSourceCode()); }, 'I.N.E.' => function (These $these) { return $these->getDoctorant()->getIndividu()->getIne(); }, 'I.N.E.' => function (These $these) { return $these->getDoctorant()->getIne(); }, //These 'Identifiant de la thèse' => function (These $these) { return $these->getSourceCode(); }, 'Titre' => function (These $these) { return $these->getTitre(); }, Loading module/Application/src/Application/Entity/Db/Doctorant.php +24 −0 Original line number Diff line number Diff line Loading @@ -44,6 +44,11 @@ class Doctorant implements DoctorantInterface, HistoriqueAwareInterface, Resourc */ protected $etablissement; /** * @var string */ private $ine; /** * @return Etablissement */ Loading Loading @@ -441,4 +446,23 @@ class Doctorant implements DoctorantInterface, HistoriqueAwareInterface, Resourc { return 'Doctorant'; } /** * @return string */ public function getIne() { return $this->ine; } /** * @param string $ine * @return Individu */ public function setIne($ine) { $this->ine = $ine; return $this; } } Loading
CHANGELOG.md +16 −0 Original line number Diff line number Diff line Journal des modifications ========================= 1.2.8 (21/10/2019) ------------------ ### Correction - Déplacement de l'INE dans l'entity Doctorant et adaption de l'ExportController 1.2.7 (17/10/2019) ------------------ ### Ajout - L'export des thèses contient maintenant deux colonnes supplémentaires addresse électronnique de contact et INE - l'adresse électronique de contact est récupérer de la saisie faite à la première connection à SyGAL - l'INE sera rappatrié via les Web Services 1.2.6 (15/10/2019) ------------------ Loading
config/autoload/version.global.php +3 −3 Original line number Diff line number Diff line Loading @@ -2,9 +2,9 @@ return [ 'unicaen-app' => [ 'app_infos' => [ 'version' => '1.2.7', 'date' => '17/10/2019', 'version' => '1.2.8', 'date' => '21/10/2019', ], ], 'comment' => 'Fichier généré le 17/10/2019 à 15:30:20 avec /home/metivier/MyWeb/sygal/bump-version', 'comment' => 'Fichier généré le 21/10/2019 à 08:37:53 avec /home/metivier/MyWeb/sygal/bump-version', ];
doc/release-notes/v1.2.8.md 0 → 100644 +19 −0 Original line number Diff line number Diff line # Version 1.2.6 ## 1. Sur le serveur d'application - Placez-vous dans le répertoire de l'application puis lancez la commande suivante pour installer la nouvelle version : ```bash git fetch --tags && git checkout --force 1.2.6 && \ bash ./install.sh ``` - Selon le moteur PHP que vous avez installé, rechargez le service, exemple : - php7.0-fpm : `service php7.0-fpm reload` - apache2-mod-php7.0 : `service apache2 reload` ## 2. Dans la base de données Néant.
module/Application/src/Application/Controller/ExportController.php +1 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,7 @@ class ExportController extends AbstractController 'Adresse électronique' => function (These $these) { return $these->getDoctorant()->getIndividu()->getEmail(); }, 'Adresse électronique personnelle' => function (These $these) { return $these->getDoctorant()->getIndividu()->getMailContact(); }, 'Numéro étudiant' => function (These $these) { return $this->sourceCodeStringHelper->removePrefixFrom($these->getDoctorant()->getSourceCode()); }, 'I.N.E.' => function (These $these) { return $these->getDoctorant()->getIndividu()->getIne(); }, 'I.N.E.' => function (These $these) { return $these->getDoctorant()->getIne(); }, //These 'Identifiant de la thèse' => function (These $these) { return $these->getSourceCode(); }, 'Titre' => function (These $these) { return $these->getTitre(); }, Loading
module/Application/src/Application/Entity/Db/Doctorant.php +24 −0 Original line number Diff line number Diff line Loading @@ -44,6 +44,11 @@ class Doctorant implements DoctorantInterface, HistoriqueAwareInterface, Resourc */ protected $etablissement; /** * @var string */ private $ine; /** * @return Etablissement */ Loading Loading @@ -441,4 +446,23 @@ class Doctorant implements DoctorantInterface, HistoriqueAwareInterface, Resourc { return 'Doctorant'; } /** * @return string */ public function getIne() { return $this->ine; } /** * @param string $ine * @return Individu */ public function setIne($ine) { $this->ine = $ine; return $this; } }