Вызов функции-члена format () для строки symfony 3.4 - PullRequest
0 голосов
/ 08 октября 2018

Я пытаюсь зарегистрировать новую встречу в моей базе данных после отправки электронного письма, но она показывает мне ошибку: вызов функции-члена format () в строке, в vendor \ doctrine \dbal \ lib \ Doctrine \ DBAL \ Types \ DateTimeType.php ,

, потому что в сущности бронирования есть дата и время, которые мне нужно зарегистрировать, которые являются типами datetime.Вот объект бронирования:

 <?php

namespace Doctix\FrontBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**  
 * Booking
 *
 * @ORM\Table(name="booking")
 * 


 class Booking
{
  /**
   * @var int
   *
 * @ORM\Column(name="id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;

/**
 * @var \DateTime
 *
 *@ORM\Column(name="date_rdv", type="datetime", nullable=true)
 */
private $dateRdv;

/**
 * @var \DateTime
 *
 *@ORM\Column(name="heure_rdv", type="datetime", nullable=true)
 */
private $heureRdv;

/**
 * @var bool
 *
 *@ORM\Column(name="valider_rdv", type="boolean", nullable=true)
 */
private $validerRdv;

/**
 * @ORM\ManyToOne(targetEntity="Doctix\MedecinBundle\Entity\Medecin")
 * @ORM\JoinColumn(nullable=true)
 */
private $medecin;

/**
 * @ORM\ManyToOne(targetEntity="Doctix\PatientBundle\Entity\Patient")
 * @ORM\JoinColumn(nullable=true)
 */
private $patient;


/**
 * Get id
 *
 * @return int
 */
public function getId()
{
    return $this->id;
}

/**
 * Set dateRdv
 *
 * @param \DateTime $dateRdv
 *
 * @return Booking
 */
public function setDateRdv($dateRdv)
{
    $this->dateRdv = $dateRdv;

    return $this;
}

/**
 * Get dateRdv
 *
 * @return \DateTime
 */
public function getDateRdv()
{
    return $this->dateRdv;
}

/**
 * Set heureRdv
 *
 * @param \DateTime $heureRdv
 *
 * @return Booking
 */
public function setHeureRdv($heureRdv)
{
    $this->heureRdv = $heureRdv;

    return $this;
}

/**
 * Get heureRdv
 *
 * @return \DateTime
 */
public function getHeureRdv()
{
    return $this->heureRdv;
}

/**
 * Set validerRdv
 *
 * @param boolean $validerRdv
 *
 * @return Booking
 */
public function setValiderRdv($validerRdv)
{
    $this->validerRdv = $validerRdv;

    return $this;
}

/**
 * Get validerRdv
 *
 * @return bool
 */
public function getValiderRdv()
{
    return $this->validerRdv;
}


 /**
 * Set medecin
 *
 * @param \Doctix\MedecinBundle\Entity\Medecin $medecin
 * @return Booking
 */
public function setMedecin(\Doctix\MedecinBundle\Entity\Medecin $medecin)
{
    $this->medecin = $medecin;

    return $this;
}

/**
 * Get medecin
 *
 * @return \Doctix\MedecinBundle\Entity\Medecin 
 */
public function getMedecin()
{
    return $this->medecin;
}

 /**
 * Set patient
 *
 * @param \Doctix\PatientBundle\Entity\Patient $patient
 * @return Booking
 */
public function setPatient(\Doctix\PatientBundle\Entity\Patient $patient)
{
    $this->patient = $patient;

    return $this;
}

/**
 * Get patient
 *
 * @return \Doctix\PatientBundle\Entity\Patient 
 */
public function getPatient()
{
    return $this->patient;
}
 }

Вот контроллер:

   public function patientHandleBookingAction(Request $request){

      $id = $request->query->get('id');
     $date = $request->query->get('date');
     $time = $request->query->get('time');
    // $user = $this->getUser();

    $em = $this->getDoctrine()->getManager();
    $repoPatient = $em->getRepository('DoctixPatientBundle:Patient');
    $patient = $repoPatient->findOneBy(array(
        'user' => $this->getUser()
    ));

    $repoMedecin = $em->getRepository('DoctixMedecinBundle:Medecin');
    $medecin = $repoMedecin->findOneBy(array(
        'id' => $request->query->get("idMedecin")));


    $mailer = $this->get('mailer');
    $message = (new \Swift_Message('Email de Confirmaton'))
        ->setFrom("medmamtest@gmail.com")
        ->setTo($patient->getUser()->getUsername())
        ->setBody(
            $this->renderView(
                // app/Resources/views/Emails/registration.html.twig
                'Emails/registration.html.twig',
                array('name' => 'mam')
            ),
            'text/html'
        );

    $mailer->send($message);
    if($mailer){

      $booking = new Booking();
      $booking->setMedecin($medecin);
      $booking->setPatient($patient);
      $booking->setDateRdv('date');
      $booking->setHeureRdv('time');
      $booking->setValiderRdv(0);


    }

    $em->persist($booking);
    $em->flush();

    // A remplacer par un contenu plus approprié
    return $this->render('DoctixPatientBundle:Patient:confirm.html.twig',array(
            'time' => $request->query->get("time"),
            'date' => $request->query->get("date"),
            'medecin' => $medecin,
            'patient' => $patient,
           // 'date' => $date,
           // 'time' => $time
));

}

Спасибо

1 Ответ

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

Эта ошибка возникает из-за того, что вы пытаетесь установить дату и время в виде строк для объекта бронирования.

  $booking->setDateRdv('date');
  $booking->setHeureRdv('time');

Попробуйте изменить его на:

  $booking->setDateRdv(new \DateTime($date));
  $booking->setHeureRdv(new \DateTime($time));
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...