How to get defined Tax rate percent prgramatically?

547 Views Asked by At

We have created tax rates in sales->Taxes->Zone&Rates with Rate Percent of xx.xx, Can we fetch this fetch this details programmatically before placing order for using it API.

1

There are 1 best solutions below

0
On BEST ANSWER

I found an answer for this question,

$customer_tax_class = '5';
        $rates = $tax->load($customer_tax_class, 'customer_tax_class_id');
        $request = Mage::getSingleton('tax/calculation')->getRateRequest()->setProductClassId(2)->setCustomerClassId(5);
        echo $percent = Mage::getSingleton('tax/calculation')->getRate($request);