• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/entity/entityimportloader.php
  • Класс: BitrixSaleExchangeEntityUserProfileImportLoader
  • Вызов: UserProfileImportLoader::getByExternalId
public function getByExternalId($xmlId)
{
	$result = parent::getByExternalId($xmlId);

	if(empty($result))
	{
		$result = self::getUserByCode($xmlId);
	}

	return $result;
}