• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/update/product/priceaccount.php
  • Класс: Bitrix\Crm\Update\Product\PriceAccount
  • Вызов: PriceAccount::getOwnerData
protected function getOwnerData(array $row): ?array
{
	$cacheId = $row['OWNER_TYPE'] . '-' . $row['OWNER_ID'];
	if (!isset($this->entityCache[$cacheId]))
	{
		$this->entityCache[$cacheId] = $this->getEntityRow($row);
	}

	return !empty($this->entityCache[$cacheId]) ? $this->entityCache[$cacheId] : null;
}