• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipment.php
  • Класс: BitrixSaleShipment
  • Вызов: Shipment::isExistBasketItem
public function isExistBasketItem(BasketItem $basketItem)
{
	/** @var ShipmentItemCollection $shipmentItemCollection */
	if (!$shipmentItemCollection = $this->getShipmentItemCollection())
	{
		throw new MainObjectNotFoundException('Entity "ShipmentItemCollection" not found');
	}

	return $shipmentItemCollection->isExistBasketItem($basketItem);
}