• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/integration/service/user/entity/base.php
  • Класс: BitrixSaleExchangeIntegrationServiceUserEntityBase
  • Вызов: Base::resolveNamePersonDomain
public function resolveNamePersonDomain($personTypeId)
{
	static $list = null;

	if ($list == null)
	{
		$list = static::businessValuePersonDomainList();
	}

	if (isset($list[$personTypeId]))
	{
		return $list[$personTypeId];
	}
	else
	{
		throw new ExceptionUserException("Person personTypeId: '".$personTypeId."' is not supported in current context");
	}
}