Commit 2803fac9 authored by Jean-Baptiste Oellers's avatar Jean-Baptiste Oellers
Browse files

Ajout surface immobilier local

parent 6310fd61
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -31,6 +31,12 @@ class ImmobilierLocal
     */
    public $libelle;

    /**
     * @var string
     * @ORM\Column(type="text", nullable="true")
     */
    public $surface;

    /**
     * @var string
     * @ORM\Column(type="text", nullable="true")
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@ class ImmobilierLocalService implements UseEntityManager, UseLoggerService, UseO
      $e->nom = $i['nom'];
      $e->libelle = $i['libelle'];
      $e->idSourceDistante = $i['id'];
      $e->surface = $i['surface'];
      $this->getEntityManager()->persist($e);
      $this->getEntityManager()->flush();