• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/comparator/tmptable.php
  • Класс: BitrixSaleLocationComparatorTmpTable
  • Вызов: TmpTable::getMaxId
public function getMaxId()
{
	$result = 0;
	$res = $this->connection->query("SELECT MAX(ID) AS MAX FROM ".$this->name." WHERE LOCATION_ID IS NULL");

	if($loc = $res->fetch())
		$result = $loc['MAX'];

	return $result;
}