Modifica vista ricarico nd
This commit is contained in:
parent
34c3b6242b
commit
1dea0135da
|
@ -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()
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue