• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/entity.php
  • Класс: BitrixSaleInternalsEntity
  • Вызов: Entity::unmarkFieldCustom
public function unmarkFieldCustom(string $name)
{
	$fields = static::getCustomizableFields();
	if (!isset($fields[$name]))
	{
		throw new MainArgumentOutOfRangeException(
			MainLocalizationLoc::getMessage(
				'SALE_INTERNALS_ENTITY_FIELD_IS_NOT_CUSTOMIZABLE',
				['#FIELD#' => $name]
			)
		);
	}

	$this->fields->unmarkCustom($name);
}