|
|
@@ -3,6 +3,7 @@ |
|
|
|
namespace Lc\SovBundle\Component; |
|
|
|
|
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
|
|
|
use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface; |
|
|
|
use Lc\SovBundle\Doctrine\Extension\BlameableInterface; |
|
|
|
use Lc\SovBundle\Doctrine\Extension\DevAliasInterface; |
|
|
|
use Lc\SovBundle\Doctrine\Extension\SeoInterface; |
|
|
@@ -31,8 +32,8 @@ class EntityComponent |
|
|
|
|
|
|
|
public function duplicateEntity($entity) |
|
|
|
{ |
|
|
|
|
|
|
|
$newEntity = clone $entity; |
|
|
|
|
|
|
|
$classMetadata = $this->entityManager->getClassMetadata(get_class($newEntity)); |
|
|
|
|
|
|
|
//Dupplication de l'image ou du fichier lier |
|
|
@@ -69,6 +70,7 @@ class EntityComponent |
|
|
|
} |
|
|
|
|
|
|
|
$this->eventDispatcher->dispatch(new EntityComponentEvent($newEntity), EntityComponentEvent::DUPLICATE_EVENT); |
|
|
|
|
|
|
|
//Ne pas utiliser create ici! Sinon pour certaine entité comme ProductFamily on réajoute un orginProduct |
|
|
|
$this->entityManager->create($newEntity, false); |
|
|
|
|