• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/quote.php
  • Класс: Bitrix\Crm\QuoteTable
  • Вызов: QuoteTable::getPersonTypeValues
static function getPersonTypeValues(): array
{
	$personTypes = \CCrmPaySystem::getPersonTypeIDs();
	// 0 is also a valid value
	// 0 is used when a site has no person types at all
	$personTypes[] = 0;

	return array_map('intval', $personTypes);
}