配列コレクションに問題があります。
「$livraison->setChoix($livraison->getChoix());」を使用しない場合 有効なフォームでは、アイテムは関連して保存されません。これにより、コレクション内のアイテムは保存時に重複します。
「Livraison」と「LivraisonChoix」の2つのエンティティがあります
Livraison は LivraisonChoix と OneToMany の関係にあります LivraisonChoix は Livraison と ManyToOne の関係にあります
これがリヴレゾンです。
...
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
class Livraison
{
...
/**
* @ORM\OneToMany(targetEntity="\YOU\CommercantBundle\Entity\LivraisonChoix", mappedBy="livraison", cascade={"all"})
**/
private $choix;
public function __construct()
{
$this->choix = new ArrayCollection();
}
public function addChoix(\YOU\CommercantBundle\Entity\LivraisonChoix $choix)
{
$choix->setLivraison($this);
$this->choix[] = $choix;
}
public function setChoix($choix)
{
foreach($choix as $choi){
$this->addChoix($choi);
}
}
public function removeChoix($choix)
{
$this->choix->removeElement($choix);
}
public function getChoix()
{
return $this->choix;
}
...
これは LivraisonChoix です:
use Doctrine\ORM\Mapping as ORM;
class LivraisonChoix
{
...
/**
* @ORM\ManyToOne(targetEntity="YOU\CommercantBundle\Entity\Livraison", inversedBy="choix")
**/
private $livraison;
...
public function setLivraison($livraison)
{
$this->livraison = $livraison;
return $this;
}
public function getLivraison()
{
return $this->livraison;
}
...
これはフォームビルダーです:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name')
->add('choix','collection',array(
'type'=>new LivraisonChoixType(),
'allow_add' => true,
'allow_delete' => true,
))
;
}
そして、これはコントローラーです:
$livraison = new Livraison();
$form = $this->createForm(new LivraisonType(), $livraison);
$request = $this->get('request');
if ($request->getMethod() == 'POST') {
$form->bind($request);
if ($form->isValid()) {
$livraison->setAccount($customer);
$livraison->setChoix($livraison->getChoix());
$em->persist($livraison);
$em->flush();
return $this->redirect($this->generateUrl('you_commercant_livraison_editer',array('id'=>$livraison->getId())));
}
}