Set sconto percentuale di default per documenti
This commit is contained in:
parent
b9009b944c
commit
d8820523a0
|
@ -145,7 +145,7 @@ abstract class Accounting extends Component
|
||||||
*/
|
*/
|
||||||
public function getTipoScontoAttribute()
|
public function getTipoScontoAttribute()
|
||||||
{
|
{
|
||||||
return $this->sconto_percentuale ? 'PRC' : 'UNT';
|
return $this->sconto_percentuale ? 'PRC' : ($this->sconto ? 'UNT' : 'PRC');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -463,7 +463,7 @@ abstract class Accounting extends Component
|
||||||
protected function fixSconto()
|
protected function fixSconto()
|
||||||
{
|
{
|
||||||
$this->attributes['sconto'] = $this->sconto;
|
$this->attributes['sconto'] = $this->sconto;
|
||||||
$this->attributes['tipo_sconto'] = $this->sconto_percentuale ? 'PRC' : 'UNT';
|
$this->attributes['tipo_sconto'] = $this->sconto_percentuale ? 'PRC' : ($this->sconto ? 'UNT' : 'PRC');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue