• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/orderbase.php
  • Класс: BitrixSaleOrderBase
  • Вызов: OrderBase::isExists
static function isExists($id)
{
	$dbRes = static::getList(array('filter' => array('ID' => $id)));
	if ($dbRes->fetch())
		return true;

	return false;
}