浏览代码

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

正在加载...
取消
保存