BluTiGeS Posted March 12, 2012 Share Posted March 12, 2012 Hi there, I am using Prestashop 1.4.7 and I am getting wrong taxes on the paypal page. I only get the Taxes shown for the Shipment, but not for the Product. For example: Item € 800 Tax € 2,28 --> must be (+152 € / 19%) shipping : € 12,00 Total € 814,28 EUR So here I am missing the Taxes for the items. How to fix this? Many thanks Regards BluTiGeS Link to comment Share on other sites More sharing options...
BluTiGeS Posted March 13, 2012 Author Share Posted March 13, 2012 No one getting same issue, that taxes are not correct shown? Oo Link to comment Share on other sites More sharing options...
BluTiGeS Posted March 14, 2012 Author Share Posted March 14, 2012 Okay in the meantime I fixed it by my own change in the payment/paypalpayment.php Row ~73 if ($discounts == 0) { if ($params['cart']->id_customer) { $customer = new Customer((int)$params['cart']->id_customer); $taxCalculationMethod = Group::getPriceDisplayMethod((int)$customer->id_default_group); } else to: if ($discounts == 0) { if ($cart->id_customer) { $customer = new Customer((int)$cart->id_customer); $taxCalculationMethod = Group::getPriceDisplayMethod((int)$customer->id_default_group); } else and in row 83 after $priceField enter the following: //added by BluTiGeS if($priceField=='price') {$shippingfield = false;} else{$shippingfield = true;} //addded by BluTiGeS And we also have to change shipping displaying $shipping = $this->PayPalRound($cart->getOrderShippingCost($cart->id_carrier, false)); to : $shipping = $this->PayPalRound($cart->getOrderShippingCost($cart->id_carrier, $shippingfield)); Result excl tax: Item €682,00 Tax €131,86 shipping : 12,00 Total €825,86 EUR and with tax. Item €811,58 shipping : €14,28 total €825,86 EUR enjoy Link to comment Share on other sites More sharing options...
Maxhrc Posted March 19, 2012 Share Posted March 19, 2012 excuse where u find paypal module 2.8.6? thanks Link to comment Share on other sites More sharing options...
BluTiGeS Posted March 19, 2012 Author Share Posted March 19, 2012 Its included in the Prestashop 1.4.7 per default Link to comment Share on other sites More sharing options...
Maxhrc Posted March 23, 2012 Share Posted March 23, 2012 Ah ok thanks....can u share only that module I want put it on my PS 1.4.6 thanks Link to comment Share on other sites More sharing options...
Vank Posted August 18, 2012 Share Posted August 18, 2012 @BluTIGeS: I'm having an issue with the gift-wrapping and the discounts (vouchers). They should be showing in the Paypal page, but instead it is showing as "TAX" and summed up, I mean, the discount - (minus) gift wrapping cost. Example: I have gift wrapping for 4€ and the discount is 3€. In the Paypal page (already in Paypal to log in or pay with Credit Card) it is showing as Tax: 1€ Here in Germany this is a big issue as you might already know. And I don't know if this is an issue of the module itself or Prestashop, or the theme. We're having our heads already smoking trying to solve this since several days. I've found other threads (one or 2!) about this issue, but unresolved, and sadly the only answer from Prestashop team is to install the new module where it is solved. Problem is for us here in Germany, we can't use the new module because it is using ONLY Paypal Express which is not allowed with the new 1-button law. Do you know how can we solve this issue? - it's driving us mad! Link to comment Share on other sites More sharing options...
Sergius Posted September 27, 2012 Share Posted September 27, 2012 Hi all, i have a similar issue posted here. Although total is correct, vat quantity relative to shipping cost are not included in vat line, but in shipping cost. Link to comment Share on other sites More sharing options...
benjamin utterback Posted September 28, 2012 Share Posted September 28, 2012 Hello all, a new version of PayPal has been released http://addons.prestashop.com/en/payments-gateways-prestashop-modules/1748-paypal.html If you are using PrestaShop 1.4 you must install the Backward Compatibility module. You can find it on addons.prestashop.com : http://addons.presta...patibility.html Link to comment Share on other sites More sharing options...
nspinheiro Posted November 2, 2012 Share Posted November 2, 2012 This version does not allow surcharge, right? I am not being able to solve this same problem. i cannot find the code has mentioned by bugtiges. i am using a version 1.6 with the ability to charge an extra tax for paypal payments. 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