• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/shipment.php
  • Класс: BitrixSaleShipment
  • Вызов: Shipment::getStoreId
public function getStoreId()
{
	if($this->storeId === null)
	{
		$this->setStoreId(
			DeliveryExtraServicesManager::getStoreIdForShipment(
				$this->getId(),
				$this->getDeliveryId()
		));
	}

	return $this->storeId;
}