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

Merge

parents 1f326327 6cc569b5
Loading
Loading
Loading
Loading
Loading
+7 −1
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)
------------------

@@ -10,7 +17,6 @@ Journal des modifications
    - 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)
------------------

+3 −3
Original line number Diff line number Diff line
@@ -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:26:01 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',
];
+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.
+1 −1
Original line number Diff line number Diff line
@@ -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(); },
+24 −0
Original line number Diff line number Diff line
@@ -44,6 +44,11 @@ class Doctorant implements DoctorantInterface, HistoriqueAwareInterface, Resourc
     */
    protected $etablissement;

    /**
     * @var string
     */
    private $ine;

    /**
     * @return Etablissement
     */
@@ -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