Documentation

sale.paymentItemShipment.list

Scope: catalog Permissions to execute: for all

sale.paymentItemShipment.list(select, filter, order)

Method gets list of bindings between payments and and shipments by filter.

Returns list of payments and shipment bindings on success.

Parameters

ParameterType Description
selectobject Fields, corresponding to list of fields.
filterobject Fields, corresponding to list of fields.
orderobject Fields, corresponding to list of fields.


Example

BX24.callMethod(
	'sale.paymentItemShipment.list', 
	{ 
		select: ['id'],
		filter:{
			shipmentId: 365
		},
	}, 
	function(result)
	{
		if(result.error())
			console.error(result.error().ex);
		else
			console.log(result.data());
});

© «Bitrix24», 2001-2024
Up