cancel
Showing results for 
Search instead for 
Did you mean: 

How to fix ? Cart Tax amount display wrong after setPrice in qoute.

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

How to fix ? Cart Tax amount display wrong after setPrice in qoute.

Tax = $999.89
After $shippingrate = $10 added in qoute display Tax = $1,000.89. 

Below is my code: 

$rate = Mage::getModel('shipping/rate_result_method');
$rate->setCarrier($this->_code);
$rate->setCarrierTitle($this->getConfigData('title'));
$rate->setMethod('standand');
$rate->setMethodTitle('Standard');
$rate->setPrice($shippingrate);
$rate->setCost(0);

Please help me.
Thanks

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How to fix ? Cart Tax amount display wrong after setPrice in qoute.

What's your tax rate set to? If it's 10% then this would seem to be the right amount of tax, $1 on $10 shipping?

----
If you've found one of my answers useful, please give "Kudos" or "Accept as Solution" as appropriate. Thanks!

View solution in original post

1 REPLY 1

Re: How to fix ? Cart Tax amount display wrong after setPrice in qoute.

What's your tax rate set to? If it's 10% then this would seem to be the right amount of tax, $1 on $10 shipping?

----
If you've found one of my answers useful, please give "Kudos" or "Accept as Solution" as appropriate. Thanks!