Documentation

crm.invoice.userfield.update

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.

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-2023
Up