Modifica vista ricarico nd

This commit is contained in:
Pek5892 2023-12-06 12:27:22 +01:00
parent 34c3b6242b
commit 1dea0135da
3 changed files with 3 additions and 3 deletions

View File

@ -415,7 +415,7 @@ class Sessione extends Model
*/
public function getRicaricoPercentualeAttribute()
{
return $this->imponibile ? (($this->imponibile / $this->spesa) - 1) * 100 : 100;
return $this->imponibile ? (($this->imponibile / $this->spesa) - 1) * 100 : 0;
}
public function getIvaIndetraibileAttribute()

View File

@ -361,7 +361,7 @@ abstract class Accounting extends Component
*/
public function getRicaricoPercentualeAttribute()
{
return ($this->totale_imponibile && ($this->spesa || $this->provvigione)) ? (($this->totale_imponibile / ($this->spesa + $this->provvigione)) - 1) * 100 : 100;
return ($this->totale_imponibile && ($this->spesa || $this->provvigione)) ? (($this->totale_imponibile / ($this->spesa + $this->provvigione)) - 1) * 100 : 0;
}
/**

View File

@ -246,7 +246,7 @@ abstract class Document extends Model implements ReferenceInterface, DocumentInt
*/
public function getRicaricoPercentualeAttribute()
{
return ($this->totale_imponibile && ($this->spesa || $this->provvigione)) ? (($this->totale_imponibile / ($this->spesa + $this->provvigione)) - 1) * 100 : 100;
return ($this->totale_imponibile && ($this->spesa || $this->provvigione)) ? (($this->totale_imponibile / ($this->spesa + $this->provvigione)) - 1) * 100 : 0;
}
public function delete()