Fix sconto su importi negativi
This commit is contained in:
parent
818aade69c
commit
ce4e8e606c
|
@ -138,7 +138,7 @@ function discountInfo(Accounting $riga, $mostra_maggiorazione = true)
|
|||
return null;
|
||||
}
|
||||
|
||||
$text = $riga->sconto_unitario > 0 ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT__TYPE_');
|
||||
$text = ($riga->prezzo_unitario > 0 && $riga->sconto_unitario > 0) || ($riga->prezzo_unitario < 0 && $riga->sconto_unitario < 0) ? tr('sconto _TOT_ _TYPE_') : tr('maggiorazione _TOT__TYPE_');
|
||||
$totale = !empty($riga->sconto_percentuale) ? $riga->sconto_percentuale : $riga->sconto_unitario_corrente;
|
||||
|
||||
return replace($text, [
|
||||
|
|
|
@ -175,11 +175,7 @@ abstract class Accounting extends Component
|
|||
*/
|
||||
public function getTotaleImponibileAttribute()
|
||||
{
|
||||
$result = $this->prezzo_unitario >= 0 ? $this->imponibile : -$this->imponibile;
|
||||
|
||||
$result -= $this->sconto;
|
||||
|
||||
return $this->prezzo_unitario >= 0 ? $result : -$result;
|
||||
return $this->imponibile - $this->sconto;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue