ソースを参照

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

読み込み中…
キャンセル
保存