I am working on site where i want to add/subtract fee to cart total and grand total.I am firing this event to capture the cart details.sales_order_save_after
. while in observer i got the price using this code
public function modifyPrice(Varien_Event_Observer $obs)
{
$getotal = Mage::helper('checkout')->getQuote()->getGrandTotal();
$totals = Mage::getSingleton('checkout/session')->getQuote()->getTotals();
$subtotal = $totals["subtotal"]->getValue();
}.
But i don't know how to add/subtract amount from total and than update accordingly.Thanks in advance
After searching i found this tutorial http://magento.ikantam.com/qa/how-add-discount-total-magento.And on Discount model class i can add/subtract custom price to cart total like :