• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/ConvertCurrencyQuery.php
  • Класс: BitrixCrmMobileProductGridConvertCurrencyQuery
  • Вызов: ConvertCurrencyQuery::execute
public function execute(): array
{
	$rows = array_map(fn($fields) => ProductRowViewModel::createFromArray($fields), $this->products);

	$enrichers = [
		new ConvertCurrency($this->currencyId),
		new CompleteStores($this->entity),
	];

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

	return array_map(fn($row) => $row->toArray(), $rows);
}