• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/entitypropertyvalue.php
  • Класс: BitrixSaleEntityPropertyValue
  • Вызов: EntityPropertyValue::verify
public function verify()
{
	$res = $this->checkValue($this->getPropertyId(), $this->getValue());
	if (!$res->isSuccess())
	{
		$order = $this->getOrder();

		$registry = Registry::getInstance(static::getRegistryType());

		/** @var EntityMarker $entityMarker */
		$entityMarker = $registry->getEntityMarkerClassName();
		$entityMarker::addMarker($order, $this, $res);
	}

	return $res;
}