Fix #90
This commit is contained in:
parent
189dcc7c3a
commit
a39b44899a
|
@ -132,11 +132,11 @@ foreach ($righe as $r) {
|
||||||
// Imponibile
|
// Imponibile
|
||||||
echo "
|
echo "
|
||||||
<td class='text-right'>
|
<td class='text-right'>
|
||||||
".(empty($r['subtotale']) ? '' : Translator::numberToLocale($r['subtotale'])).' €';
|
".(empty($r['subtotale']) ? '' : Translator::numberToLocale($r['subtotale'] - $r['sconto'])).' €';
|
||||||
|
|
||||||
if ($r['sconto'] > 0) {
|
if ($r['sconto'] > 0) {
|
||||||
echo "
|
echo "
|
||||||
<br><small class='text-muted'>- ".tr('sconto _TOT_ _TYPE_', [
|
<br><small class='text-muted'>".tr('sconto di _TOT_ _TYPE_', [
|
||||||
'_TOT_' => Translator::numberToLocale($r['sconto']),
|
'_TOT_' => Translator::numberToLocale($r['sconto']),
|
||||||
'_TYPE_' => '€',
|
'_TYPE_' => '€',
|
||||||
]).'</small>';
|
]).'</small>';
|
||||||
|
|
Loading…
Reference in New Issue