Documentation

crm.quote.list

Scope: catalog Permissions to execute: for all

Returns a list of estimates by filter. This is implementation of list method for estimates.

Parameters

See. description of list methods.

Example

BX24.callMethod(
	"crm.quote.list", 
	{ 
		order: { "STATUS_ID": "ASC" },
		filter: { "=COMPANY_ID": 1 },
		select: [ "ID", "TITLE", "STATUS_ID", "OPPORTUNITY", "CURRENCY_ID" ]
	}, 
	function(result) 
	{
		if(result.error())
			console.error(result.error());
		else
		{
			console.dir(result.data());
			if(result.more())
				result.next();
		}
	}
);


© «Bitrix24», 2001-2024