How to check stock of associated product in magento
During customization of magento product detail page, cart page or any other page we must need to know whether product is available in our inventory stock . If product is not in our inventory then product should not be added to cart or any desired activity should n’t happen.
In order to check stock we must need to check whether product is loaded or not.
Load that product by using below line
$product = Mage:: getModel('catalog/product')->load($product_id) // where product_id is the id of the product
//Now Below code snippet will provide the information whether product is available in our stock or not
$stockItem = $product->getStockItem(); if($stockItem->getIsInStock()) { //in stock! } else { //not in stock! }
Chandra Shekhar
Latest posts by Chandra Shekhar (see all)
- Best practices for micro service design - January 23, 2022
- Spring Boot - January 23, 2022
- Java - January 23, 2022
Recent Comments