fix: avoid float rounding errors when comparing

This commit is contained in:
Björn Fromme
2026-03-16 12:02:27 +01:00
parent d6f2681c61
commit 8646dfbf02
@@ -122,7 +122,7 @@ class Step3Controller extends AbstractController
$promoGoodwillDiscount = round($inquiryResponse->getVoucherDiscountFromPrices(), 2);
$expectedTotal = round($calculatedSubtotal - $promoGoodwillDiscount, 2);
if ($apiTotal !== $expectedTotal) {
if ((int) round($apiTotal * 100) !== (int) round($expectedTotal * 100)) {
return $this->handleApiError(
'Price mismatch detected - payload incomplete',
[