Fix calcolo sconto import FE

This commit is contained in:
MatteoPistorello 2023-05-23 09:47:12 +02:00
parent ab36baaabe
commit 749f625ddf
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ if (!empty($righe)) {
]); ]);
if ($tipo == '%') { if ($tipo == '%') {
$tot_sconto = $sconto_calcolato * 100 / ($prezzo_unitario * $qta); $tot_sconto = ($prezzo_unitario * $qta != 0 ? $sconto_calcolato * 100 / ($prezzo_unitario * $qta) : 0);
} else { } else {
$tot_sconto = $sconto_calcolato; $tot_sconto = $sconto_calcolato;
} }