mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-12 08:26:20 +01:00
Fix calcolo margine con imponibile scontato
This commit is contained in:
parent
d14dfddb29
commit
0529aaaf0d
@ -73,7 +73,7 @@ abstract class Row extends Description
|
|||||||
*/
|
*/
|
||||||
public function getMargineAttribute()
|
public function getMargineAttribute()
|
||||||
{
|
{
|
||||||
return $this->imponibile - $this->spesa;
|
return $this->totale_imponibile - $this->spesa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -129,7 +129,7 @@ abstract class Document extends Model
|
|||||||
*/
|
*/
|
||||||
public function getMarginePercentualeAttribute()
|
public function getMarginePercentualeAttribute()
|
||||||
{
|
{
|
||||||
return (1 - ($this->spesa / $this->imponibile)) * 100;
|
return (1 - ($this->spesa / ($this->totale_imponibile))) * 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function delete()
|
public function delete()
|
||||||
|
Loading…
Reference in New Issue
Block a user