IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Symfony PHP Discussion :

[Symfony2] PB Relation ManyToOne bidirectionnelle [2.x]


Sujet :

Symfony PHP

  1. #1
    Membre averti
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Janvier 2009
    Messages
    351
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 351
    Points : 342
    Points
    342
    Par défaut [Symfony2] PB Relation ManyToOne bidirectionnelle
    Bonjour,

    J'ai un problème sur une relation ManyToOne bidirectionnelle entre 2 Entités : Categorie, Operation. Lorsque j'enregistre une opération j'ai le message suivant : voir fichierJoint1
    Visiblement la relation ne se fait pas.

    Code de l'entité Operation :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    <?php
     
    namespace Asset\ReportManagerBundle\Entity;
     
    use Doctrine\ORM\Mapping as ORM;
    use Symfony\Component\Validator\Constraints as Assert;
     
    /**
     * Asset\ReportManagerBundle\Entity\Operation
     *
     * @ORM\Table()
     * @ORM\Entity(repositoryClass="Asset\ReportManagerBundle\Entity\OperationRepository") 
     */
    class Operation
    {
        /**
       * @var integer $id
       *
       * @ORM\Column(name="id", type="integer")
       * @ORM\Id
       * @ORM\GeneratedValue(strategy="AUTO")
       *
       */
        private $id;
     
      /**
       * @var string $nom
       *
       * @ORM\Column(name="nom", type="string", length=255)
       * @Assert\NotBlank()
       * 
       */
        private $nom;
     
      /**
       * @var string $description
       *
       * @ORM\Column(name="description", type="string", length=255)
       * 
       * 
       */
        private $description;
     
        /**
       * @ORM\OneToOne(targetEntity="Asset\ReportManagerBundle\Entity\Image", cascade={"persist", "remove"})
       */
        private $image;
     
        /**
       * @ORM\ManyToMany(targetEntity="Asset\UserBundle\Entity\User", inversedBy="operations", cascade={"persist"})
       */
        private $users;
     
       /**
       * @ORM\OneToMany(targetEntity="Asset\ReportManagerBundle\Entity\Categorie", mappedBy="operation", cascade={"persist"})
       */
       private $categories;
     
        public function __construct()
        {      
          $this->users = new \Doctrine\Common\Collections\ArrayCollection();
          $this->categories = new \Doctrine\Common\Collections\ArrayCollection();
        }  
     
         /**
        * Add users
        *
        *
        * @param Asset\UserBundle\Entity\User $users
        */
        public function addUser(\Asset\UserBundle\Entity\User $user) 
        {      
          $this->users[] = $user;
          $users->addOperation($this);
          return $this;
        }
     
        /**
        * Remove users
        *
        * @param Asset\UserBundle\Entity\User $users
        */
        public function removeUser(\Asset\UserBundle\Entity\User $user) 
        {
          $this->users->removeElement($user); 
          $users->removeOperation($this);
        }
     
        /**
        * Get users
        *
        * @return Doctrine\Common\Collections\Collection
        */
        public function getUsers() // Notez le « s », on récupère une liste de catégories ici !
        {
          return $this->users;
        }   
     
        /**
         * Get id
         *
         * @return integer 
         */
        public function getId()
        {
            return $this->id;
        }
     
        /**
         * Set nom
         *
         * @param string $nom
         * @return Operation
         */
        public function setNom($nom)
        {
            $this->nom = $nom;
     
            return $this;
        }
     
        /**
         * Get nom
         *
         * @return string 
         */
        public function getNom()
        {
            return $this->nom;
        }
     
        /**
         * Set description
         *
         * @param string $description
         * @return Operation
         */
        public function setDescription($description)
        {
            $this->description = $description;
     
            return $this;
        }
     
        /**
         * Get description
         *
         * @return string 
         */
        public function getDescription()
        {
            return $this->description;
        }
     
      /**
       * @param Asset\ReportManagerBundle\Entity\Image $image
       * @return Operation
       */
      public function setImage(\Asset\ReportManagerBundle\Entity\Image $image = null)
      {
        $this->image = $image;
        return $this;
      }
     
      /**
       * @return Asset\ReportManagerBundle\Entity\Image
       */
      public function getImage()
      {
        return $this->image;
      }     
     
        /**
         * Add categories
         *
         * @param \Asset\ReportManagerBundle\Entity\Categorie $categorie
         * @return Operation
         */
        public function addCategorie(\Asset\ReportManagerBundle\Entity\Categorie $categorie)
        {
            $this->categories[] = $categorie;
            $categories->setOperation($this);
            return $this;
        }
     
        /**
         * Remove categories
         *
         * @param \Asset\ReportManagerBundle\Entity\Categorie $categorie
         */
        public function removeCategorie(\Asset\ReportManagerBundle\Entity\Categorie $categorie)
        {
            $this->categories->removeElement($categorie);
        }
     
        /**
         * Get categories
         *
         * @return \Doctrine\Common\Collections\Collection 
         */
        public function getCategories()
        {
            return $this->categories;
        }
    }
    Code de l'entité Categorie :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    <?php
     
    namespace Asset\ReportManagerBundle\Entity;
     
    use Doctrine\ORM\Mapping as ORM;
     
    /**
     * @ORM\Table()
     * @ORM\Entity(repositoryClass="Asset\ReportManagerBundle\Entity\CategorieRepository")
     */
    class Categorie
    {
      /**
       * @var integer $id
       *
       * @ORM\Column(name="id", type="integer")
       * @ORM\Id
       * @ORM\GeneratedValue(strategy="AUTO")
       */
      private $id;
     
      /**
       * @var string $nom
       *
       * @ORM\Column(name="nom", type="string", length=255)
       */
      private $nom;
     
      /**
       * @ORM\ManyToOne(targetEntity="Asset\ReportManagerBundle\Entity\Operation", inversedBy="categories")
       * @ORM\JoinColumn(nullable=false)
       */
      private $operation; 
     
      /**
       * @return integer 
       */
      public function getId()
      {
        return $this->id;
      }
     
      /**
       * @param string $nom
       * @return Categorie
       */
      public function setNom($nom)
      {
        $this->nom = $nom;
        return $this;
      }
     
      /**
       * @return string 
       */
      public function getNom()
      {
        return $this->nom;
      }
     
        /**
         * Set operation
         *
         * @param \Asset\ReportManagerBundle\Entity\Operation $operation
         * @return Categorie
         */
        public function setOperation(\Asset\ReportManagerBundle\Entity\Operation $operation)
        {
            $this->operation = $operation;
            return $this;
        }
     
        /**
         * Get operation
         *
         * @return \Asset\ReportManagerBundle\Entity\Operation 
         */
        public function getOperation()
        {
            return $this->operation;
        }
    }
    Code du contrôleur :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    public function modifierOperationAction(Operation $operation) {
     
            $form = $this->createForm(new OperationType(), $operation);
            $request = $this->getRequest();
     
            if ($request->getMethod() == 'POST') {
     
                $form->bind($request);
     
                if ($form->isValid()) {                
                    $em = $this->getDoctrine()->getManager();
                    $em->persist($operation);              
                    $em->flush();
                    $this->get('session')->getFlashBag()->add('info', 'Opération bien modifiée');
                    return $this->redirect($this->generateUrl('assetreportmanager_voirOperation', array('id' => $operation->getId())));
                }
            }
            return $this->render('AssetReportManagerBundle:ReportManager:modifierOperation.html.twig', array('form' => $form->createView(),
                        'operation' => $operation));
        }
    Merci de votre aide.
    Images attachées Images attachées  

  2. #2
    Membre habitué Avatar de anta_res
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2006
    Messages
    93
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Mai 2006
    Messages : 93
    Points : 173
    Points
    173
    Par défaut
    Fait voir ta classe de formulaire OperationType() s'il te plaît.

  3. #3
    Membre averti
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Janvier 2009
    Messages
    351
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 351
    Points : 342
    Points
    342
    Par défaut
    Salut anta_res,

    Voici la classe de formulaire OperationType() :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    <?php
     
    namespace Asset\ReportManagerBundle\Form;
     
    use Symfony\Component\Form\AbstractType;
    use Symfony\Component\Form\FormBuilderInterface;
    use Symfony\Component\OptionsResolver\OptionsResolverInterface;
    use Symfony\Component\Form\FormEvents;
    use Symfony\Component\Form\FormEvent;
     
    class OperationType extends AbstractType
    {
      public function buildForm(FormBuilderInterface $builder, array $options)
      {
            $builder ->add('nom',          'text')
                        ->add('description', 'textarea')                
                        ->add('image',        new ImageType())
                         ->add('users', 'entity', array(
                                    'class'    => 'AssetUserBundle:User',
                                    'property' => 'username',
                                    'multiple' => true))
                          ->add('categories', 'collection', array('type'         => new CategorieType(),
                                                  'allow_add'    => true,
                                                  'allow_delete' => true))
              ;    
      }  
     
      // Pour définir autour de quel objet est construit le formulaire (autour d'Operation)
      public function setDefaultOptions(OptionsResolverInterface $resolver) {
        $resolver->setDefaults(array( 'data_class' => 'Asset\ReportManagerBundle\Entity\Operation'));
      }
     
      public function getName()
      {
        return 'asset_reportmanagerbundle_operationtype';
      } 
    }

  4. #4
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Octobre 2009
    Messages
    126
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Octobre 2009
    Messages : 126
    Points : 183
    Points
    183
    Par défaut
    Peut être mieux comme ça :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    if ($form->isValid()) {                
                    $em = $this->getDoctrine()->getManager();
                    $operation = $form->getData();
                    $em->persist($operation);              
                    $em->flush();
                    $this->get('session')->getFlashBag()->add('info', 'Opération bien modifiée');
                    return $this->redirect($this->generateUrl('assetreportmanager_voirOperation', array('id' => $operation->getId())));
                }

  5. #5
    Membre averti
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Janvier 2009
    Messages
    351
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 351
    Points : 342
    Points
    342
    Par défaut
    Salut matlow,

    Merci de ta réponse. Cependant le problème demeure.

  6. #6
    Membre éprouvé
    Homme Profil pro
    Inscrit en
    Juin 2011
    Messages
    725
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juin 2011
    Messages : 725
    Points : 1 050
    Points
    1 050
    Par défaut
    Bonjour,

    Es-tu sur de ton passer dans ta méthode addcategorie() qui permet d'inverser les relations?

    ->voir option by_reference dans collection type
    ->à tester également (j'ai jamais compris pourquoi ça marchait mais bon...)
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    public function getCategories(){
            return $this->categories->toArray();
        }

  7. #7
    Membre averti
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Janvier 2009
    Messages
    351
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2009
    Messages : 351
    Points : 342
    Points
    342
    Par défaut
    Salut arnooo999,

    Merci beaucoup c'était effectivement le by_reference qui manquait.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Symfony2 Relation ManyToOne
    Par M2dev dans le forum Doctrine2
    Réponses: 4
    Dernier message: 13/03/2014, 15h05
  2. Réponses: 13
    Dernier message: 28/06/2013, 09h23
  3. Problème : Relation OneToMany/ManyToOne bidirectionnelle
    Par KrisWall dans le forum Doctrine2
    Réponses: 1
    Dernier message: 09/09/2012, 08h46
  4. Relation ManyToMany bidirectionnelle
    Par remika dans le forum Hibernate
    Réponses: 2
    Dernier message: 20/01/2009, 11h51
  5. Réponses: 3
    Dernier message: 03/04/2008, 19h16

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo