• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/statistics/dealactivitystatisticentry.php
  • Класс: Bitrix\Crm\Statistics\DealActivityStatisticEntry
  • Вызов: DealActivityStatisticEntry::unregister
static function unregister($ownerID)
{
	if(!is_int($ownerID))
	{
		$ownerID = (int)$ownerID;
	}

	if($ownerID <= 0)
	{
		throw new Main\ArgumentException('Owner ID must be greater than zero.', 'ownerID');
	}

	DealActivityStatisticsTable::deleteByOwner($ownerID);
}