• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipmentitemstorecollection.php
  • Класс: BitrixSaleShipmentItemStoreCollection
  • Вызов: ShipmentItemStoreCollection::getOriginalItemValues
protected function getOriginalItemValues() : array
{
	$itemsFromDb = array();

	if ($this->getShipmentItem()->getId() > 0)
	{
		$itemsFromDbList = static::getList(
			array(
				"filter" => array("ORDER_DELIVERY_BASKET_ID" => $this->getShipmentItem()->getId()),
			)
		);
		while ($itemsFromDbItem = $itemsFromDbList->fetch())
		{
			$itemsFromDb[$itemsFromDbItem["ID"]] = $itemsFromDbItem;
		}
	}

	return $itemsFromDb;
}