• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/import/import.php
  • Класс: BitrixSaleLocationImportis
  • Вызов: is::checkLocationCodeExists
static function checkLocationCodeExists($code)
{
	if(!strlen($code))
		return false;

	$dbConnection = MainHttpApplication::getConnection();

	$code = $dbConnection->getSqlHelper()->forSql($code);
	$res = $dbConnection->query("select ID from ".LocationLocationTable::getTableName()." where CODE = '".$code."'")->fetch();

	return $res['ID'];
}