• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipmentcollection.php
  • Класс: BitrixSaleShipmentCollection
  • Вызов: ShipmentCollection::getNotSystemItems
public function getNotSystemItems()
{
	$callback = function (Shipment $shipment)
	{
		return !$shipment->isSystem();
	};

	return new InternalsCollectionFilterIterator($this->getIterator(), $callback);
}