Bläddra i källkod

[Backoffice] Duplication de fiche : slug mis à jour

feature/export_comptable
Fab 4 år sedan
förälder
incheckning
be6d00ca5d
1 ändrade filer med 4 tillägg och 5 borttagningar
  1. +4
    -5
      ShopBundle/Services/UtilsProcess.php

+ 4
- 5
ShopBundle/Services/UtilsProcess.php Visa fil

@@ -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;

Laddar…
Avbryt
Spara