• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/ProductGrid/ProductGridQuery.php
  • Класс: BitrixCrmMobileProductGridProductGridQuery
  • Вызов: ProductGridQuery::prepareEntityData
private function prepareEntityData(): array
{
	$categoryId = $this->entity->isCategoriesSupported() ? $this->entity->getCategoryId() : null;

	return [
		'id' => $this->entity->getId(),
		'typeId' => $this->entity->getEntityTypeId(),
		'categoryId' => $categoryId,
		'typeName' => CCrmOwnerType::ResolveName($this->entity->getEntityTypeId()),
		'editable' => $this->isEntityEditable(),
		'currencyId' => $this->currencyId,
		'detailPageUrl' => CCrmOwnerType::GetDetailsUrl($this->entity->getEntityTypeId(), $this->entity->getId()),
	];
}