Procházet zdrojové kódy

[Backoffice] Duplication de fiche : slug mis à jour

feature/export_comptable
Fab před 4 roky
rodič
revize
be6d00ca5d
1 změnil soubory, kde provedl 4 přidání a 5 odebrání
  1. +4
    -5
      ShopBundle/Services/UtilsProcess.php

+ 4
- 5
ShopBundle/Services/UtilsProcess.php Zobrazit soubor

@@ -64,13 +64,12 @@ class UtilsProcess
}

if($newEntity instanceof SluggableInterface){
$newEntity->setTitle($newEntity->getTitle().' ');
$this->em->persist($newEntity);
if($flush)$this->em->flush();
$newEntity->setSlug(null);
}

$this->em->persist($newEntity);
if($flush){
$this->em->flush();
}
if($flush)$this->em->flush();


return $newEntity;

Načítá se…
Zrušit
Uložit