• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/Enricher/ConvertCurrency.php
  • Класс: BitrixCrmMobileProductGridEnricherConvertCurrency
  • Вызов: ConvertCurrency::enrich
public function enrich(array $rows): array
{
	return array_map(function($row) {

		return $row->currencyId === $this->currencyId ? $row : $this->convert($row);

	}, $rows);
}