• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_owner_type.php
  • Класс: \CCrmOwnerTypeAbbr
  • Вызов: CCrmOwnerTypeAbbr::normalizeTypeIdFromAbbreviation
static function normalizeTypeIdFromAbbreviation(string $typeIdFromAbbreviation): int
{
	// In dynamic type abbreviation typeId is being converted to Hex
	// in order to fit the resulting abbreviation into 3 symbols. It's a limitation of several CRM tables
	return (int)hexdec($typeIdFromAbbreviation);
}