recuperer un champ deux entité liée
Bonjour,
je suis débutante en symfony2 et j'arrive pas a résoudre mon probleme n'hésitez pas a m'aider.
J'ai 2 entités(avv,document) pour chaque avv j'enregistre un document plus précis dans ma table document j'ai (id_doc,name,file,path,id_avv) et je veux récuperer le nom_avv a partir de l'entité document pour que je puisse generer pour chaque avv un repertoire qui va porter le nom avv et apres j'upload des fichiers dans ce repertoire.
code entity document
Code:
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
| <?php
namespace MyApp\AvvBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* MyApp\AvvBundle\Entity\Document
*
* @ORM\Table()
* @ORM\Entity
*/
class Document
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var text $name
*
* @ORM\Column(name="name", type="text")
*/
private $name;
/**
* @var string $path
*
* @ORM\Column(name="path", type="string", length=255)
*/
private $path;
/**
* @var string $file
*
* @ORM\Column(name="file", type="string", length=255)
*/
private $file;
/**
* @ORM\ManyToOne(targetEntity="Avv", inversedBy="Document")
* @ORM\JoinColumn(name="avv_id", referencedColumnName="id")
*/
protected $avv;
/**
* @ORM\PostPersist()
* @ORM\PostUpdate()
*/
public function upload()
{
// the file property can be empty if the field is not required
if (null === $this->file) {
return;
}
// we use the original file name here but you should
// sanitize it at least to avoid any security issues
// move takes the target directory and then the target filename to move to
$this->file->move($this->getUploadRootDir(), $this->file->getClientOriginalName());
// set the path property to the filename where you'ved saved the file
$this->path = $this->file->getClientOriginalName();
// clean up the file property as you won't need it anymore
$this->file = null;
}
public function getAbsolutePath()
{
return null === $this->path ? null : $this->getUploadRootDir().'/'.$this->path;
}
public function getWebPath()
{
return null === $this->path ? null : $this->getUploadDir().'/'.$this->path;
}
protected function getUploadRootDir()
{
$avv = $this->getAvv();
// the absolute directory path where uploaded documents should be saved
return __DIR__.'/../../../../web/'.$this->getUploadDir().'/'.$avv->getProjet();
}
protected function getUploadDir()
{
// get rid of the __DIR__ so it doesn't screw when displaying uploaded doc/image in the view.
return 'uploads/documents';
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set name
*
* @param text $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* Get name
*
* @return text
*/
public function getName()
{
return $this->name;
}
/**
* Set path
*
* @param string $path
*/
public function setPath($path)
{
$this->path = $path;
}
/**
* Get path
*
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* Set file
*
* @param string $file
*/
public function setFile($file)
{
$this->file = $file;
}
/**
* Get file
*
* @return string
*/
public function getFile()
{
return $this->file;
}
/**
* Set avv
*
* @param MyApp\AvvBundle\Entity\Avv $avv
*/
public function setAvv(\MyApp\AvvBundle\Entity\Avv $avv)
{
$this->avv = $avv;
}
/**
* Get avv
*
* @return MyApp\AvvBundle\Entity\Avv
*/
public function getAvv()
{
return $this->avv;
}
} |
code entity avv
Code:
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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
| <?php
namespace MyApp\AvvBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* MyApp\AvvBundle\Entity\Avv
*
* @ORM\Table()
* @ORM\Entity
*/
class Avv
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var text $client
*
* @ORM\Column(name="client", type="text")
*/
private $client;
/**
* @var text $projet
*
* @ORM\Column(name="projet", type="text")
*/
private $projet;
/**
* @var text $statut
*
* @ORM\Column(name="statut", type="text")
*/
private $statut;
/**
* @var text $commercial
*
* @ORM\Column(name="commercial", type="text")
*/
private $commercial;
/**
* @var text $budget
*
* @ORM\Column(name="budget", type="text")
*/
private $budget;
/**
* @var text $technologies
*
* @ORM\Column(name="technologies", type="text")
*/
private $technologies;
/**
* @var date $dateReponse
*
* @ORM\Column(name="dateReponse", type="date")
*/
private $dateReponse;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set client
*
* @param text $client
*/
public function setClient($client)
{
$this->client = $client;
}
/**
* Get client
*
* @return text
*/
public function getClient()
{
return $this->client;
}
/**
* Set projet
*
* @param text $projet
*/
public function setProjet($projet)
{
$this->projet = $projet;
}
/**
* Get projet
*
* @return text
*/
public function getProjet()
{
return $this->projet;
}
/**
* Set commercial
*
* @param text $commercial
*/
public function setCommercial($commercial)
{
$this->commercial = $commercial;
}
/**
* Get commercial
*
* @return text
*/
public function getCommercial()
{
return $this->commercial;
}
/**
* Set budget
*
* @param text $budget
*/
public function setBudget($budget)
{
$this->budget = $budget;
}
/**
* Get budget
*
* @return text
*/
public function getBudget()
{
return $this->budget;
}
/**
* Set technologies
*
* @param text $technologies
*/
public function setTechnologies($technologies)
{
$this->technologies = $technologies;
}
/**
* Get technologies
*
* @return text
*/
public function getTechnologies()
{
return $this->technologies;
}
/**
* Set dateReponse
*
* @param date $dateReponse
*/
public function setDateReponse($dateReponse)
{
$this->dateReponse = $dateReponse;
}
/**
* Get dateReponse
*
* @return date
*/
public function getDateReponse()
{
return $this->dateReponse;
}
/**
* Set statut
*
* @param text $statut
*/
public function setStatut($statut)
{
$this->statut = $statut;
}
/**
* Get statut
*
* @return text
*/
public function getStatut()
{
return $this->statut;
}
} |
code controller
Code:
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
| public function refaction(){
$document = new Document();
$form = $this->createFormBuilder($document)
->add('name')
->add('file','file')
->getForm();
$request = $this->getRequest();
if($request->getMethod() == "POST")
{
$form->bindRequest($request);
if($form->isValid())
{
$document->upload();
/*$em = $this->container->get('doctrine')->getEntityManager();
$avv = $this->getDoctrine()->getRepository('MyAppAvvBundle:Avv')->find($id);
$Organisation->setAvv($avv);*/
$id=$request->get('id');
$em = $this->container->get('doctrine')->getEntityManager();
//$em = $this->getDoctrine()->getEntityManager();
$avv = $this->getDoctrine()->getRepository('MyAppAvvBundle:Avv')->find($id);
//$avv=$em->getRepositoty('MyAppAvvBundle:Avv')->find($id);
$document->setAvv($avv);
$em->persist($document);
$em->flush();
}}
return $this->render('MyAppAvvBundle:Default:referentiel.html.twig', array ('form' => $form->createView()));
} |
Merci d'avance
Créer un type de formulaire spécifique
Bonjour,
le formulaire devrait certainement s'inspirer de la doc http://symfony.com/doc/current/book/...embedded-forms