Documentation

crm.invoice.userfield.add

Scope: catalog Permissions to execute: for all

crm.invoice.userfield.add(fields)

Creates a new user field for invoices.

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
fieldsSet of fields - is an array (“updated field"=>”value”[, ...]), containing description of a user field. Full field description can be returned via the crm.userfield.fields method.
LIST Contains set of values for custom field List. Specified when creating/updating a field. Each value is an array containing fields:
  • VALUE - list item value. Field is required when creating a new item.
  • SORT - sorting.
  • DEF - if Y, list item is a default value. A field with multiple values van have DEF=Y. For non-multiple value, first value is a default value.
  • XML_ID - external value code. Parameter is considered only when updating already existing list item value e учитывается только при обновлении уже существующих значений элемента списка.
  • ID - value identifier. If specified, its deemed as an update of existing list item and not creation of a new one. Useful only when calling methods *.userfield.update.
  • DEL - if set as Y, existing list item will be deleted. Applied, if ID parameter is complete.

Example

	BX24.callMethod(
		"crm.paysystem.list", {
			order: {"SORT": "ASC"},
			filter: {
				"%NAME": "Quote",
			}
		},
		function (result)
		{
			if (result.error())
			{
				console.error(result.error());
			}
			else
			{
				console.dir(result.data());
				if (result.more())
					result.next();
			}
		}
	);





© «Bitrix24», 2001-2024