• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/address.php
  • Класс: Bitrix\Crm\AddressTable
  • Вызов: AddressTable::dropLocationAddressLink
static function dropLocationAddressLink($locationAddressId)
{
	$locationAddressId = (int)$locationAddressId;
	if($locationAddressId <= 0)
	{
		throw new Main\ArgumentException('Must be greater than zero.', 'locationAddressId');
	}

	$connection = Application::getConnection();
	$connection->queryExecute(
		"UPDATE b_crm_addr SET LOC_ADDR_ID = 0 ".
		"WHERE LOC_ADDR_ID = {$locationAddressId}"
	);
}