A la pàgina de confirmació de la comanda (checkout/success) podem obtnir les dades de la comanda amb:
$order = Mage::getModel('sales/order')->load(Mage::getSingleton('checkout/session')->getLastOrderId());
echo $subtotal = $order->getSubtotal();
echo $order->getId(); //the id of the order
echo $order->getIncrementId();//the increment id of the order
echo $order->getGrandTotal();//grand total of the order