• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/entitypropertyvalue.php
  • Класс: BitrixSaleEntityPropertyValue
  • Вызов: EntityPropertyValue::getOrder
public function getOrder(): ?Order
{
	/** @var PropertyValueCollectionBase $collection */
	$collection = $this->getCollection();
	if (!$collection)
	{
		return null;
	}

	/** @var Order $order */
	$order = $collection->getOrder();
	if (!$order)
	{
		return null;
	}

	return $order;
}