I would like to filter a product collection to show only items that are in stock. I thought this would be easy given that there's an attribute called 'is_salable' that is 1 (true) if it's in stock, 0 (false) if not. But no matter what I do, it doesn't work. Further, it seems to halt the execution of the query before it finishes.

Here's some sample code:

$this->_productCollection = Mage::getModel('catalog/product')->getCollection();
$this->_productCollection->addAttributeToSelect('*');
$this->_productCollection->addAttributeToFilter('my_attribute', true);
//So far, so good...filtering on 'my_attribute' works!
Mage::Log("select: " . $this->_productCollection->getSelect());
//Successfully outputs the SQL query
$this->_productCollection->addFieldToFilter('is_salable', '1');
Mage::Log("select: " . $this->_productCollection->getSelect());
//does NOT output any query...it's like it died trying

So what am I doing wrong? I've tried 'addFieldToFilter', 'addAttributeToFilter', and miscellaneous other queries, such as: addFieldToFilter('is_salable', array('eq' => true)), etc...

Anyone know how to do this? If 'is_salable' is not the answer, all I need to do is filter out products that are not in stock...so whatever works to do that would be fine :)

Thanks!

link|improve this question

53% accept rate
2  
Quick tip: Sometimes a select object cannot be dumped correctly, at least not without running out of memory. Casting it to string is more reliable... (string)$this->getProductCollection()->getSelect() – clockworkgeek Mar 14 '11 at 17:41
feedback

2 Answers

up vote 13 down vote accepted

There is no is_salable attribute in the product so it will rise an exception. If you want to display only products that are in stock, use this stock model addInStockFilterToCollection method:

Mage::getSingleton('cataloginventory/stock')->addInStockFilterToCollection($this->_productCollection);
link|improve this answer
Thanks, @ivan-chepurnyi! That worked great! However, I'm still a bit confused. If I loop through the products in the collection and print out each one, the product contains an 'attribute' called 'is_salable'. Is that a generated element that can't be filtered on? Is that why it's different than other filterable attributes? – BrianVPS Mar 14 '11 at 20:10
1  
Checkout at the isSalable() funciton on Mage_Catalog_Model_Product. A lot of times regular ol' attributes don't have a specific method. In this case looks like it calls the isSalable() function on yet another class, Mage_Catalog_Model_Product_Type_Simple (or Mage_Catalog_Model_Product_Type_Grouped or Mage_Catalog_Model_Product_Type_Configurable depending on the product type) – shaune Mar 14 '11 at 20:23
1  
@BrianVPS is_salable property in product list is an indexed value of possible isSalable method call. The result of isSalable method call can be different depends on product type and logic defined in Mage_CatalogInventory module observers. Also it may be different from the actual method call, if during the custom module development, the appropriate indexes wasn't customized as well. – Ivan Chepurnyi Mar 14 '11 at 20:47
@BrianVPS by the way, don't forget to accept answers. – Ivan Chepurnyi Mar 14 '11 at 20:49
Thanks Ivan, I'm new to SO so don't know the protocol :) I appreciate all your help! – BrianVPS Mar 14 '11 at 22:19
feedback

try this as well...

$stockCollection = Mage::getModel('cataloginventory/stock_item')->getCollection()->addFieldToFilter('qty', array('gteq' => 1))->addFieldToFilter('type_id', 'simple');

addFieldFilter ('qty',array('gteq' =>1))

get all products collection that have a stock of 1 or greater, you can put any number here according to your needs

addFieldToFilter('type_id', 'simple')

filter by simple products

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.