• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Reservation/Entity/Base.php
  • Класс: Bitrix\Crm\Reservation\Entity\Base
  • Вызов: Base::setOrder
public function setOrder(Crm\Order\Order $order): Base
{
	if ($order->getEntityBinding()->getOwnerId() !== $this->ownerId)
	{
		throw new Main\InvalidOperationException('Order not bound with entity');
	}

	$this->order = $order;
	return $this;
}