Skip to content

How to get Tier Price Observer

I am new in Magento. I try to get Special/Tiersprice.

enter image description here

I have this code


        $item = $observer->getEvent()->getData('quote_item');

        $item = ($item->getParentItem() ? $item->getParentItem : $item);

        $this->productPrice = $item->getProduct()->getPrice();

And another question: Is anywhere a documentation/tutorial with a Overview of the classe?

Thanks in Advance.