• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/Enricher/CompleteStores.php
  • Класс: BitrixCrmMobileProductGridEnricherCompleteStores
  • Вызов: CompleteStores::getStores
private function getStores(ProductRowViewModel $productRow): array
{
	$productId = $productRow->getProductId();
	$stores =
		(
			isset($this->storeData[$productId]['STORES'])
			&& is_array($this->storeData[$productId]['STORES'])
		)
			? $this->storeData[$productId]['STORES']
			: []
	;

	return array_values($stores);
}