Документация для разработчиков
Темная тема

catalog.document.element.update

Scope: catalog Права на выполнение: для всех

catalog.document.element.update(id, fields)

Метод для обновления товара документа складского учёта.

Если операция успешна, возвращается true.

Параметры

ПараметрТип Описание
idinteger Идентификатор обновляемого товара.
fieldsarray Параметры обновляемого товара.

Примеры

BX24.callMethod(
	'catalog.document.element.update',
	{
		'fields': {
			'amount': 10,
			'purchasingPrice': 25,
		}
	},
	function(result)
	{
		if(result.error())
			console.error(result.error());
		else
			console.log(result.data());
	}
);
$result = CRest::call(
	'catalog.document.element.update',
	[
		'id' => 11,
		'fields' => [
			'amount' => 10,
			'purchasingPrice' => 25,
		],
	]
);

echo '<pre>';
print_r($result);
echo '</pre>';

© «Битрикс», 2001-2024, «1С-Битрикс», 2024