Jump to content

Tax applied on Base Price But not on Final Price


Recommended Posts

I have this problem, if the product has a reduction price, the state tax is applied on the "base price" but not on the "final price", there's a problem with this in the shopping cart because the customer will see the final price with a tax based on the "base price" w/c is quite confusing for the customers to look at.

for example: state tax= 6.25%(0.0625)
base price = $100 <---- tax is applied here
reduction = $20
final price = $80 <-- tax is not applied here


upon purchase, the cart is showing 80$(final price) but the displayed tax calculation is $6.25(applied from the "base price") and not 5$(applied from the "final price"), its how its doing now. HOW CAN I MAKE THAT THE COMPUTATION FOR TAX WOULD APPLY FROM THE "FINAL PRICE" instead?

Any good hearts in here who can help me???

Link to comment
Share on other sites

  • 11 months later...
  • 3 weeks later...
  • 3 months later...

That happens in /classes/Product.php in the function public static function getPriceStatic

You can try to lower the tax addition below the vouchers

       if ($usetax)
           $price = $price * (1 + ($tax / 100));


To under

       // Group reduction
       if ($usereduc)
           $price -= Tools::ps_round($price * Group::getReduction(((isset($id_customer) AND $id_customer) ? $id_customer : 0)) / 100, 2);

Link to comment
Share on other sites

×
×
  • Create New...