Переглянути джерело

[Backoffice] Duplication de fiche : slug mis à jour

feature/export_comptable
Fab 4 роки тому
джерело
коміт
be6d00ca5d
1 змінених файлів з 4 додано та 5 видалено
  1. +4
    -5
      ShopBundle/Services/UtilsProcess.php

+ 4
- 5
ShopBundle/Services/UtilsProcess.php Переглянути файл

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

Завантаження…
Відмінити
Зберегти