私はいくつかの簡単なスクリプトに取り組んでいますが、この問題に頭を悩ませることはできません。だからここにあります。
/**
* Booking
* @ORM\Table()
* @ORM\Entity(repositoryClass="Tons\BookingBundle\Entity\BookingRepository")
* @UniqueEntity(fields={"room", "since", "till"}, repositoryMethod="getInterferingRoomBookings")
* @Assert\Callback(methods={"isSinceLessThanTill"}, groups={"search","default"})
*/
class Booking
およびリポジトリ メソッド
/**
* Get room state for a certain time period
*
* @param array $criteria
* @return array
*/
public function getInterferingRoomBookings(array $criteria)
{
/** @var $room Room */
$room = $criteria['room'];
$builder = $this->getQueryForRoomsBooked($criteria);
$builder->andWhere("ira.room = :room")->setParameter("room", $room);
return $builder->getQuery()->getArrayResult();
}
問題は、これが本来のように作成メソッドで機能することですが、既存のエンティティを更新すると、この制約に違反します。
Id 制約を追加しようとしましたが、エンティティを作成するときに id が null であるため、リポジトリ メソッドが開始されません。また、エンティティを削除してから再作成しようとしました。お気に入り
$em->remove($entity);
$em->flush();
//-----------
$em->persist($entity);
$em->flush();
しかし、これも機能しません。
アクションを作成
/**
* Creates a new Booking entity.
*
* @Route("/create", name="booking_create")
* @Method("POST")
* @Template("TonsBookingBundle:Booking:new.html.twig")
*/
public function createAction(Request $request)
{
$entity = new Booking();
$form = $this->createForm(new BookingType(), $entity);
$form->bind($request);
if ($form->isValid())
{
$em = $this->getDoctrine()->getManager();
$room = $entity->getRoom();
if($room->getLocked() && $room->getLockedBy()->getId() === $this->getUser()->getId())
{
$entity->setCreatedAt(new \DateTime());
$entity->setUpdatedAt(new \DateTime());
$entity->setManager($this->getUser());
$em->persist($entity);
$room->setLocked(false);
$room->setLockedBy(null);
$room->setLockedAt(null);
$em->persist($room);
$em->flush();
return $this->redirect($this->generateUrl('booking_show', array('id' => $entity->getId())));
}
else
{
$form->addError(new FormError("Номер в текущий момент не заблокирован или заблокирован другим менеджером"));
return array(
'entity' => $entity,
'form' => $form->createView(),
);
}
}
return array(
'entity' => $entity,
'form' => $form->createView(),
);
}
アクションの更新
/**
* Edits an existing Booking entity.
*
* @Route("/edit/{id}/save", name="booking_update")
* @Method("PUT")
* @Template("TonsBookingBundle:Booking:edit.html.twig")
*/
public function updateAction(Request $request, $id)
{
/** @var $em EntityManager */
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('TonsBookingBundle:Booking')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find Booking entity.');
}
$editForm = $this->createForm(new BookingType(), $entity);
$editForm->bind($request);
if ($editForm->isValid()) {
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('booking_edit', array('id' => $id)));
}
return array(
'entity' => $entity,
'form' => $editForm->createView(),
);
}