Documentation

crm.invoice.userfield.update

Scope: catalog Permissions to execute: for all

crm.invoice.userfield.update(id, fields)

Updates an existing user field for invoices.

Parameters

Parameter Description
idUser field ID.
fieldsSet of fields - is an array (“updated field"=>”value”[, ...]), where “updated field” can have values, returned by 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

	var id = prompt("Enter ID");
	var label = prompt("Enter new name");
	BX24.callMethod(
		"crm.invoice.userfield.update",
		{
			id: id,
			fields: {
				"EDIT_FORM_LABEL": label,
				"LIST_COLUMN_LABEL": label
			}
		},
		function (result)
		{
			if (result.error())
				console.error(result.error());
			else
			{
				console.dir(result.data());
				if (result.more())
					result.next();
			}
		}
	);


© «Bitrix24», 2001-2024
Up