diff --git a/core/lib/Thelia/Coupon/Type/RemoveXPercent.php b/core/lib/Thelia/Coupon/Type/RemoveXPercent.php index 023df3b27..32bc152f7 100644 --- a/core/lib/Thelia/Coupon/Type/RemoveXPercent.php +++ b/core/lib/Thelia/Coupon/Type/RemoveXPercent.php @@ -106,7 +106,7 @@ class RemoveXPercent extends CouponAbstract $basePrice = $this->facade->getCartTotalPrice(); - return $basePrice * (( $this->percentage ) / 100); + return round($basePrice * $this->percentage/100, 2); } /**