mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-27 22:19:26 +01:00
Fix 316799b91f5a82429718ae54aaa18c107f30dfe0
@loviuz Prova a testare nuovamente il comportamento precedente.
This commit is contained in:
parent
d0e3e267ef
commit
26298a1978
@ -39,11 +39,11 @@ abstract class Row extends Description
|
||||
*/
|
||||
public function getImponibileScontatoAttribute()
|
||||
{
|
||||
$result = $this->prezzo_unitario_vendita > 0 ? $this->imponibile : -$this->imponibile;
|
||||
$result = $this->prezzo_unitario_vendita >= 0 ? $this->imponibile : -$this->imponibile;
|
||||
|
||||
$result -= $this->sconto;
|
||||
|
||||
return $result;
|
||||
return $this->prezzo_unitario_vendita >= 0 ? $result : -$result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user