I need on product view page to get all products from category separated by manufacturer.
I'm using code like this:
public function getProductList()
{
/* @var $product Mage_Catalog_Model_Product */
if (!$product = Mage::registry('product')) {
return new Varien_Data_Collection();
}
$category = new Mage_Catalog_Model_Category();
$category->load($product->getCategoryId());
$collection = $category->getProductCollection();
$collection
->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())
->addUrlRewrite($category->getId());
$collection->setOrder('manufacturer', 'asc');
return $collection->getSelect();
// $collection->load();
// return $collection;
}
And in this select I have only standart fields like entity_id, store_id, sku... and additional only manufacturer field. Why I'm not getting here additional product fields like name/size/etc. and how can I get them to be in collection, because it's not a good idea to load all this products separatly to get this data.
So in this example
$collection
->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())
->addUrlRewrite($category->getId());
is ignored and only field from setOrder is added
Or may be I must do this in other way???
thanx.
Note: No flat structure used (I think with flat this would work fine, but we have many attributes and flat table can't be created)