Skip to content
Code-Schnipsel Gruppen Projekte
Bestätigt Commit 6f75d31b erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: round(): Passing null to parameter #1 () of type int|float

Übergeordneter c08a64e9
No related branches found
No related tags found
2 Merge Requests!146fix: brutto calc 1 cent problem,!140Update 'next-4.x' with latest changes from 'main'
Pipeline #11973 mit Warnungen bestanden mit Phase
in 3 Minuten und 9 Sekunden
......@@ -22,6 +22,14 @@
function ($price, $formatted, $vat) {
$price = QUI\ERP\Money\Price::validatePrice($price);
if (empty($price)) {
if (isset($formatted) && $formatted) {
return QUI\ERP\Defaults::getCurrency()->format(0);
}
return 0;
}
if (empty($vat) && !is_numeric($vat)) {
$Area = QUI\ERP\Defaults::getArea();
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren