• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Kanban/ControllerStrategy/ListStrategy.php
  • Класс: BitrixCrmMobileKanbanControllerStrategyListStrategy
  • Вызов: ListStrategy::getItemData
protected function getItemData(Item $item): array
{
	if (
		$this->getEntityTypeId() === CCrmOwnerType::Company
		|| $this->getEntityTypeId() === CCrmOwnerType::Contact
	)
	{
		return array_merge(
			$item->getData(),
			[
				'FM' => $item->getFm(),
			]
		);
	}

	return $item->getData();
}