Просмотр исходного кода

[Backoffice] Duplication de fiche : slug mis à jour

feature/export_comptable
Fab 4 лет назад
Родитель
Сommit
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;

Загрузка…
Отмена
Сохранить