i have this method on which i retrieve first a Varien_Data_Collection and then I add items one by one from another Varien_Data_Collection by addItem():
protected function _prepareCollection(){
$productId = $this->getRequest()->getParam('id');
$websiteId = 0;
if ($store = $this->getRequest()->getParam('store')) {
$websiteId = Mage::app()->getStore($store)->getWebsiteId();
$collection = Mage::getModel('productalert/stock')
->getCustomerCollection()
->join($productId, $websiteId);
foreach ($collection as $item) {
$item->setData('is_customer', 'Sì');
}
$guestCollection = Mage::getModel('productsalert/gueststock')->getCollection()
->addFieldToFilter("product_id", $productId)
->addFieldToFilter("website_id", $websiteId);
foreach ($guestCollection as $guestItem) {
$obj = new Mage_Customer_Model_Customer();
$obj->setData($guestItem->getData());
$obj->setData('alert_stock_id', ($guestItem->getData('alert_stock_id')+100000000));
$obj->setData('email', $guestItem->getData('guest_email'));
$obj->setData('is_customer', 'No');
$collection->addItem($obj);
}
$collection = $collection->setOrder('add_date','ASC');
$this->_sortCollectionDescByDate($collection);
$this->setCollection($collection);
}
else{
$this->setCollection(new Varien_Data_Collection());
}
return parent::_prepareCollection();
}
So when i have the final collection i want to set the order since items in it have one attribute in common ('add_date'), so i set the setOrder methos, but it doesn't work (soemone on IRC told me that setOrder modify the query). so I can do it manually but it seems strange to me that there's not to order a collection after adding items. i took a look on Varien_Data_Collection API but I don't see anything that could help me. I've also tried to change the collection class to Varien_Data_Collection_Db and setting the addOrder() method but nothing has changed.
any idea?
thanks!
Luke