• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipmentitemstorecollection.php
  • Класс: BitrixSaleShipmentItemStoreCollection
  • Вызов: ShipmentItemStoreCollection::getItemsByStoreId
public function getItemsByStoreId(int $storeId) : InternalsCollectionFilterIterator
{
	$callback = function (ShipmentItemStore $itemStore) use ($storeId)
	{
		return $itemStore->getStoreId() === $storeId;
	};

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