Ожидается аргумент типа "целое число", "App \ Entity \ Entreprise" - PullRequest
0 голосов
/ 22 октября 2018

Я использую две сущности: stagiaire и entreprise.У каждого stagiaire есть один предприниматель.Мне просто нужно сохранить идентификатор предприятия в таблице stagiaire.Когда я создаю новый stagiaire, выбираю для него Entreprise и сохраняю форму, у меня появляется следующая ошибка «Ожидаемый аргумент типа« integer »в контроллере stagiaire:« App \ Entity \ Entreprise », задано Здесьэто код объекта stagiaire:

namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity(repositoryClass="App\Repository\StagiaireRepository")
 */

class Stagiaire
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;

    /**
     * @var string
     *
     * @ORM\Column(name="civilite", type="string", length=3, nullable=false)
     */
    private $civilite = 'Mr';

    /**
     * @var string
     *
     * @ORM\Column(name="nom", type="string", length=24, nullable=false)
     */
    private $nom;

    /**
     * @var string
     *
     * @ORM\Column(name="prenom", type="string", length=16, nullable=false)
     */
    private $prenom;

    /**
     * @ORM\ManyToOne(targetEntity="App\Entity\Entreprise")
     * @ORM\JoinColumn(nullable=false)
     */
    private $entreprise;

    /**
     * @var string
     *
     * @ORM\Column(name="status", type="string", length=12, nullable=false)
     */
    private $status;

    public function __construct()
  {
    //$this->date       = new \Datetime();
    //$this->entreprise = new ArrayCollection();
  }

    public function getId(): ?int
    {
        return $this->id;
    }

    public function getCivilite(): ?string
    {
        return $this->civilite;
    }

    public function setCivilite(string $civilite): self
    {
        $this->civilite = $civilite;

        return $this;
    }

    public function getNom(): ?string
    {
        return $this->nom;
    }

    public function setNom(string $nom): self
    {
        $this->nom = $nom;

        return $this;
    }

    public function getPrenom(): ?string
    {
        return $this->prenom;
    }

    public function setPrenom(string $prenom): self
    {
        $this->prenom = $prenom;

        return $this;
    }

    public function getEntreprise(): ?int
    {
        return $this->entreprise;
    }

    public function setEntreprise(int $entreprise): self
    {
        $this->entreprise = $entreprise;

        return $this;
    }

    public function getStatus(): ?string
    {
        return $this->status;
    }

    public function setStatus(string $status): self
    {
        $this->status = $status;

        return $this;
    }

Вот код вида:

use App\Entity\Stagiaire;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\FormType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Bridge\Doctrine\Form\Type\EntityType;

class StagiaireType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $choicesCivil = [
            'Mr' => '1',
            'Mme' => '2'
        ];
        $choicesStatus = [
            'Gérant' => '1',
            'Salarié' => '2'
        ];

        $builder
            ->add('civilite', ChoiceType::class, [
                'data' => '1', // cochée par défaut
                'choices' => $choicesCivil,
                'expanded' => true,  // => boutons
                'label' => 'Civilité',
                'multiple' => false
            ])
            ->add('nom')
            ->add('prenom')
            ->add('entreprise', EntityType::class, array(
                'class'         => 'App:Entreprise',
                'placeholder'   => 'Choisir une entreprise',
                'choice_label'  => 'enseigne',
            ))
            ->add('status', ChoiceType::class, [
                'data' => '1', // cochée par défaut
                'choices' => $choicesStatus,
                'expanded' => true,  // => boutons
                'label' => 'Statut',
                'multiple' => false
            ])
            ->add('create', SubmitType::class, ['label' => 'Enregistrer', 'attr' => ['class' => 'btn btn-primary']]);
    }

    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults([
            'data_class' => Stagiaire::class,
        ]);
    }
}

А вот контроллер:

namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

use App\Entity\Stagiaire;
use App\Entity\Entreprise;
use App\Repository\StagiaireRepository;
use App\Form\StagiaireType;

class StagiaireController extends Controller
{
    public function fStagiaire($id,$cat,$action, Request $request)
    {
        if ($action=='insert') {
            $stagiaire = new Stagiaire();
        }
        elseif($action=='update' || $action=='delete') {
            $stagiaire = $this->getDoctrine()
              ->getManager()
              ->getRepository('App:Stagiaire')
              ->find($id)
            ;
        }
        else { return;}

            $form = $this->get('form.factory')->create(StagiaireType::Class, $stagiaire);

        if ($request->isMethod('POST')) { 
          $form->handleRequest($request);

          if ($form->isValid()) {...

ошибка возникает в строке "$ form-> handleRequest ($ request);" Я ищу несколько дней, но не могу найти решение. У кого-нибудь есть идея, чтобы помочь?

Ответы [ 2 ]

0 голосов
/ 23 октября 2018

Вам нужно изменить свои функции, чтобы они принимали объект entreprise вместо идентификатора:

public function getEntreprise(): ?Entreprise
{
    return $this->entreprise;
}

public function setEntreprise(Entreprise $entreprise): self
{
    $this->entreprise = $entreprise;

    return $this;
}

, и вам нужно добавить use App\Entity\Entreprise; в класс Stagiaire.

0 голосов
/ 23 октября 2018

Ваш function setEntreprise(int $entreprise): self получает объект (App\Entity\Entreprise), который не , что он ожидает.Хотя запись в базе данных будет int (первичный ключ id для объекта Entreprise), и фактически это будет отдельная таблица базы данных, которая ссылается на идентификатор этой записи с нулем или более записей Entreprise), он становится доступным для вашего кода (из getEntreprise()) в качестве объекта (поэтому, возвращая обнуляемое значение int, вы также можете потерпеть неудачу, когда вы прочитаете связанный объект - он должен быть пустым ArrayCollection()).

Ваш установщик и получатель должны иметь дело с объектами - и поскольку это отношение ManyToOne, их может быть больше одного.Вы, вероятно, также захотите, чтобы функция addEntreprise() могла добавлять больше объектов.ORM будет заниматься сохранением данных в них в базе данных и связыванием их позже, когда эта запись будет прочитана.

public function __construct()
{
    //$this->date       = new \Datetime();
    //$this->entreprise = new ArrayCollection();
}
# These lines say that `$this->entreprise` is an array - by default empty, but 
# it can be filled up with a number of linked objects.
...