Marcin
Marcin

Reputation: 5589

Magento - get item stock/quantity per site

How to get actual stock number per site/store id. So I have 2 stores, UK (1) and US (2) currently I am using:

Mage::app()->setCurrentStore(1);
$product = Mage::getModel('catalog/product')->load($ID);
$product->setStoreId(1);
$qty = $product->getStockItem()->getQty();

The issue is that $qty returned is a sum of both rather than just UK (1).

Any ideas how to get quantity only for specific store and not a sum of both?

Upvotes: 1

Views: 1639

Answers (1)

Faisal Khalil
Faisal Khalil

Reputation: 187

Inventory managed globally in magento and it cannot be changed on store view or website level in magento.

thanks

Upvotes: 4

Related Questions