• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/orderbase.php
  • Класс: BitrixSaleOrderBase
  • Вызов: OrderBase::appendBasket
public function appendBasket(BasketBase $basket)
{
	if ($this->getId())
	{
		throw new MainNotSupportedException();
	}

	$basket->setOrder($this);
	$this->basketCollection = $basket;

	return new Result();
}