• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Display/Field/AddressField.php
  • Класс: Bitrix\Crm\Service\Display\Field\AddressField
  • Вызов: AddressField::prepareValueForKanban
protected function prepareValueForKanban(&$fieldValue): void
{
	if ($this->isMultiple())
	{
		$fieldValue = array_map([$this, 'stripCoordinates'], $fieldValue);
	}
	else
	{
		$fieldValue = $this->stripCoordinates($fieldValue);
	}
}