• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/entitypropertyvaluecollection.php
  • Класс: BitrixSaleEntityPropertyValueCollection
  • Вызов: EntityPropertyValueCollection::getItemsByOrderPropertyCode
public function getItemsByOrderPropertyCode(string $propertyCode)
{
	return $this->getItemsByFilter(
		function ($propertyValue) use ($propertyCode)
		{
			return (
				$propertyValue->getField('CODE') == $propertyCode
			);
		}
	);
}