allow::getNewId

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. allow
  4. getNewId
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_status_invoice.php
  • Класс: \allow
  • Вызов: allow::getNewId
static function getNewId(): string
{
	do
	{
		$newId = chr(random_int(65, 90)); //A-Z
	}
	while(self::isIdExist($newId));

	return $newId;
}

Добавить комментарий