php - Magento 1.9 - How to get final product price on add to cart?
one text
Solution:
Answered and added this into the original question, but this seems to work
public function getValue() {
$latestItem = Mage::getSingleton('checkout/session')
->getQuote()
->getItemsCollection()
->getLastItem()
->getProduct();
return $latestItem->getFinalPrice();
}
Source