crm.quote.update
crm.quote.update(id, fields, params)
Updates an existing quote.
Parameters
Parameter | Description |
---|---|
id | Quote 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 quote.. |
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-2022