mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-25 06:00:28 +01:00
Bugfix partlist order price is_numeric
This commit is contained in:
parent
eff8fce974
commit
d8a9da0546
@ -529,6 +529,11 @@ class AuftragPDF extends BriefpapierCustom {
|
||||
"keineeinzelartikelanzeigen"=>$value['keineeinzelartikelanzeigen'],
|
||||
"anzahlunterartikel"=>$value['anzahlunterartikel']));
|
||||
}
|
||||
|
||||
if (!is_numeric($value['preis'])) {
|
||||
$value['preis'] = 0;
|
||||
}
|
||||
|
||||
if($positionenkaufmaenischrunden == 3) {
|
||||
$netto_gesamt = $value['menge'] * round($value['preis'] - ($value['preis'] / 100 * $value['rabatt']),2);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user