Documentation

crm.quote.userfield.add

Scope: catalog Permissions to execute: for all

crm.quote.userfield.add(fields)

Creates a new user field for estimates.

System limitation for field name - 20 characters. Prefix UF_CRM_is always added to the user field name. As a result, the actual name length - 13 characters.

Parameters

Parameter Description
fields Set of fields - is an array (“updated field"=>”value”[, ...]), containing user file description. Full description of fields can be returned by calling crm.userfield.fields method.

Example

	BX24.callMethod(
	"crm.quote.userfield.add", 
	{
		fields: 
		{
			"FIELD_NAME": "MY_STRING",
			"EDIT_FORM_LABEL": "My string",
			"LIST_COLUMN_LABEL": "My string",
			"USER_TYPE_ID": "string",
			"XML_ID": "MY_STRING",
			"SETTINGS": { "DEFAULT_VALUE": "Hello, world!" }
		}
	}, 
	function(result) 
	{
		if(result.error())
			console.error(result.error());
		else
			console.dir(result.data());
	}
);


© «Bitrix24», 2001-2024