Magentoで最後の注文ステータスを取得するには?
たとえば、注文には複数のステータスがあるかもしれませんが、最後のステータスの注文のステータスを取得したいと思います。1.保留中=>2.処理中=>3. 完了
$myOrder=Mage::getModel('sales/order');
$orders=Mage::getModel('sales/mysql4_order_collection');
$orders->addFieldToFilter('status',array('in'=> array('processing', 'processed', 'pending fullfilment')));
$orders->addFieldToFilter('store_id',array("in" => array('8', '9')));
$orders->addAttributeToSort('created_at', 'asc');
$allIds=$orders->getAllIds();
print_r($allIds).'</br></br>';
foreach($allIds as $thisId) {
...
}