Magento: How to limit a collection (sales/order) by a certain category?

1.2k Views Asked by At

I'm trying to limit order for admin users by category, I can find the collection of product id by category and collect sales/order but how can I use this with an event observer?

$category_id = 44;
$category = Mage::getModel("catalog/category")->load($category_id);
$products = Mage::getModel("catalog/product")->getCollection()
  ->addCategoryFilter($category);

Next I collect just the product ids so I can use them:

$product_ids = array();
foreach ($products as $product)
  $product_ids[] = $product->getId();

$items = Mage::getModel("sales/order_item")->getCollection()
  ->addFieldToFilter("product_id", array("in" => $product_ids));
1

There are 1 best solutions below

3
On

You can use SetPageSize and SetCurPage for that

$col = Mage::getModel('YOUR MODEL') ->getCollection() ->setPageSize(17) ->setCurPage(1);

HTH