diff --git a/classes/PaymentModule.php b/classes/PaymentModule.php
index 561881c55..acd3c1936 100644
--- a/classes/PaymentModule.php
+++ b/classes/PaymentModule.php
@@ -386,7 +386,7 @@ abstract class PaymentModuleCore extends Module
'
| '.$product['reference'].' |
'.$product['name'].(isset($product['attributes']) ? ' - '.$product['attributes'] : '').' |
- '.Tools::displayPrice(Product::getTaxCalculationMethod() == PS_TAX_EXC ? Tools::ps_round($price, 2) : $price_wt, $this->context->currency, false).' |
+ '.Tools::displayPrice(Product::getTaxCalculationMethod((int)$this->context->customer->id) == PS_TAX_EXC ? Tools::ps_round($price, 2) : $price_wt, $this->context->currency, false).' |
'.((int)$product['cart_quantity'] - $customization_quantity).' |
'.Tools::displayPrice(((int)$product['cart_quantity'] - $customization_quantity) * (Product::getTaxCalculationMethod() == PS_TAX_EXC ? Tools::ps_round($price, 2) : $price_wt), $this->context->currency, false).' |
';