• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/controller/propertyrelation.php
  • Класс: BitrixSaleControllerPropertyRelation
  • Вызов: PropertyRelation::existsProperty
protected function existsProperty($id)
{
	$r = new Result();

	$property = BitrixSaleInternalsOrderPropsTable::getRow([
		'filter' => [
			'=ID' => $id
		]
	]);

	if(is_null($property))
		$r->addError(new Error('property id is not exists', 201650000002));

	return $r;
}