• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Model/FieldRepository.php
  • Класс: Bitrix\Crm\Model\FieldRepository
  • Вызов: FieldRepository::getOpportunity
public function getOpportunity(string $fieldName = Item::FIELD_NAME_OPPORTUNITY): ScalarField
{
	return
		(new FloatField($fieldName))
			->configureScale(2)
			->configureDefaultValue(0.00)
			->configureTitle(Loc::getMessage('CRM_TYPE_ITEM_FIELD_OPPORTUNITY'))
	;
}