mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-24 04:41:00 +01:00
Fix calcolo sconto import FE
This commit is contained in:
parent
ab36baaabe
commit
749f625ddf
@ -467,7 +467,7 @@ if (!empty($righe)) {
|
||||
]);
|
||||
|
||||
if ($tipo == '%') {
|
||||
$tot_sconto = $sconto_calcolato * 100 / ($prezzo_unitario * $qta);
|
||||
$tot_sconto = ($prezzo_unitario * $qta != 0 ? $sconto_calcolato * 100 / ($prezzo_unitario * $qta) : 0);
|
||||
} else {
|
||||
$tot_sconto = $sconto_calcolato;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user