• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipmentitemcollection.php
  • Класс: BitrixSaleShipmentItemCollection
  • Вызов: ShipmentItemCollection::getShippableItems
public function getShippableItems()
{
	$callback = function (ShipmentItem $shipmentItem)
	{
		return $shipmentItem->isShippable();
	};

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