mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-27 16:23:19 +01:00
Fix problema divisione per 0 nel calcolo margine
This commit is contained in:
parent
079f83acbb
commit
9f908971ea
@ -226,7 +226,7 @@ abstract class Document extends Model implements ReferenceInterface, DocumentInt
|
||||
*/
|
||||
public function getMarginePercentualeAttribute()
|
||||
{
|
||||
return $this->imponibile ? (($this->totale_imponibile / $this->spesa) - 1) * 100 : 100;
|
||||
return ($this->imponibile && $this->spesa) ? (($this->totale_imponibile / $this->spesa) - 1) * 100 : 100;
|
||||
}
|
||||
|
||||
public function delete()
|
||||
|
Loading…
Reference in New Issue
Block a user