• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Kanban/ItemPreparer/KanbanPreparer.php
  • Класс: BitrixCrmMobileKanbanItemPreparerKanbanPreparer
  • Вызов: KanbanPreparer::getDescriptionRow
protected function getDescriptionRow(array $item): array
{
	$descriptionItems = [];

	$client = null;
	if (!empty($item['companyName']))
	{
		$client = $item['companyName'];
	}
	elseif(!empty($item['contactName']))
	{
		$client = $item['contactName'];
	}

	$descriptionItems[] = [
		'type' => 'string',
		'value' => $client,
	];

	$descriptionItems[] = [
		'type' => 'money',
		'value' => $this->getMoney($item),
	];

	return $descriptionItems;
}