mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-13 08:03:31 +01:00
Fix visualizzazione sconto ivato
This commit is contained in:
parent
e8a4f7332a
commit
6e0dae9278
@ -103,11 +103,11 @@ function discountInfo(\Common\Components\Row $riga, $mostra_maggiorazione = true
|
||||
}
|
||||
|
||||
$text = $riga->sconto_unitario > 0 ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT__TYPE_');
|
||||
$total = !empty($riga->sconto_percentuale) ? $riga->sconto_percentuale : $riga->sconto_unitario;
|
||||
$totale = !empty($riga->sconto_percentuale) ? $riga->sconto_percentuale : $riga->sconto_unitario_corrente;
|
||||
|
||||
return replace($text, [
|
||||
'_TOT_' => Translator::numberToLocale(abs($total)),
|
||||
'_TYPE_' => (!empty($riga->sconto_percentuale) ? '%' : currency()),
|
||||
'_TOT_' => Translator::numberToLocale(abs($totale)),
|
||||
'_TYPE_' => !empty($riga->sconto_percentuale) ? '%' : currency(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user