• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/entitypropertyvalue.php
  • Класс: BitrixSaleEntityPropertyValue
  • Вызов: EntityPropertyValue::setValueFromPost
public function setValueFromPost(array $post): Result
{
	$result = new Result();

	$key = ($this->getField('ORDER_PROPS_ID')) ?: "n".$this->getInternalIndex();

	if (is_array($post['PROPERTIES']) && array_key_exists($key, $post['PROPERTIES']))
	{
		$this->setValue($post['PROPERTIES'][$key]);
	}

	return $result;
}