Documentation

crm.quote.update

Scope: catalog Permissions to execute: for all

crm.quote.update(id, fields, params)

Updates an existing estimate.

Parameters

Note: to find out the required field format, execute the method crm.quote.fields to view the retrieved field format.
Parameter Description
id Estimate ID.
fields Set of fields - is an array ("updated field"=>"value"[, ...]), where "updated field" can have values, returned by the crm.quote.fields method.
params Set of parameters. REGISTER_HISTORY_EVENT - registers a record in the history, by default is "Y". Additionally, notification will be sent to the responsible for the estimate.

Example

var id = prompt("Enter ID");
BX24.callMethod(
	"crm.quote.update", 
	{ 
		id: id,
		fields: { "STATUS_ID": "SENT" }	
	}, 
	function(result) 
	{
		if(result.error())
			console.error(result.error());
		else
			console.info(result.data());
	}
);


© «Bitrix24», 2001-2024