grice Posted June 17, 2021 Share Posted June 17, 2021 can anyone guide me on how to set this up so VAT only applied at destination country rate for consignments under €150? Link to comment Share on other sites More sharing options...
xeiron Posted December 28, 2021 Share Posted December 28, 2021 Does anyone know a solution? Link to comment Share on other sites More sharing options...
gabba Posted January 12, 2023 Share Posted January 12, 2023 Bump, anyone find a solution for this, surely with a hook its simple enough? Link to comment Share on other sites More sharing options...
gabba Posted January 12, 2023 Share Posted January 12, 2023 something like : public function getTaxCalculator() { if ($this->context->customer->cart_value > 150) { $tax = new Tax(); $tax->rate = 0; return new TaxCalculator(array($tax)); } else { // return the original code in https://github.com/PrestaShop/PrestaShop/blob/develop/classes/tax/TaxRulesTaxManager.php } } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now