浏览代码

Correctif

develop
Fabien Normand 3 年前
父节点
当前提交
e624a53a1b
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      Component/EntityComponent.php

+ 2
- 1
Component/EntityComponent.php 查看文件

@@ -68,8 +68,9 @@ class EntityComponent
$newEntity->setCreatedAt(new \DateTime());
}

$this->entityManager->create($newEntity);
$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->persist($newEntity);

return $newEntity;
}

正在加载...
取消
保存