• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/baseform.php
  • Класс: BitrixCatalogComponentBaseForm
  • Вызов: BaseForm::isPricesEditable
public function isPricesEditable(): bool
{
	return
		(
			$this->accessController->check(ActionDictionary::ACTION_PRICE_EDIT)
			|| $this->isEntityCreationForm()
		)
		&& $this->isAllowedEditFields()
	;
}