You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ich glaube der Nettopreis wird anders berechnet.
Nicht
$netPrice = (1.0 - ($taxInPercent / 100)) * $price;
sondern
$netPrice = $price / (1 + ($taxInPercent / 100));
The text was updated successfully, but these errors were encountered:
shop/function/orders.php
Line 71 in 2321d66
Ich glaube der Nettopreis wird anders berechnet.
Nicht
$netPrice = (1.0 - ($taxInPercent / 100)) * $price;
sondern
$netPrice = $price / (1 + ($taxInPercent / 100));
The text was updated successfully, but these errors were encountered: