'the magento way' sẽ sử dụng bộ sưu tập .
Câu hỏi của bạn cho biết tất cả các đơn đặt hàng kể từ tháng bảy? Nếu đúng như vậy thì bạn chỉ yêu cầu 'from' trong bộ lọc chứ không phải 'to' ...
$orderTotals = Mage::getModel('sales/order')->getCollection()
->addAttributeToFilter('status', Mage_Sales_Model_Order::STATE_COMPLETE)
->addAttributeToFilter('created_at', array('from' => '2012-07-01'))
->addAttributeToSelect('grand_total')
->getColumnValues('grand_total')
;
$totalSum = array_sum($orderTotals);
// If you need the value formatted as a price...
$totalSum = Mage::helper('core')->currency($totalSum, true, false);