• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/SingleProductQuery.php
  • Класс: BitrixCrmMobileProductGridSingleProductQuery
  • Вызов: SingleProductQuery::execute
public function execute(): array
{
	$productRow = $this->initRow();

	$rows = [
		new ProductRowViewModel($productRow, $this->entity->getCurrencyId())
	];

	/** @var EnricherContract[] $enrichers */
	$enrichers = $this->getEnrichers();

	foreach ($enrichers as $enricher)
	{
		$rows = $enricher->enrich($rows);
	}

	return $rows[0]->toArray();
}