Browse Source

EntityComponent : adaptation duplicate ProductFamily

develop
Guillaume 11 months ago
parent
commit
cecb72f9bc
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      Component/EntityComponent.php

+ 3
- 1
Component/EntityComponent.php View File

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


Loading…
Cancel
Save