Fix classi 2.4.10 per installazione
This commit is contained in:
parent
fda1bca710
commit
dbc132a3bc
|
@ -284,4 +284,11 @@ class Anagrafica extends Model
|
||||||
$this->ragione_sociale = $this->cognome.' '.$this->nome;
|
$this->ragione_sociale = $this->cognome.' '.$this->nome;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Attributi Eloquent
|
||||||
|
|
||||||
|
public function getModuleAttribute()
|
||||||
|
{
|
||||||
|
return 'Anagrafiche';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -575,4 +575,30 @@ class Fattura extends Document
|
||||||
|
|
||||||
$riga->save();
|
$riga->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Opzioni di riferimento
|
||||||
|
public function getReferenceName()
|
||||||
|
{
|
||||||
|
return $this->tipo->descrizione;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getReferenceNumber()
|
||||||
|
{
|
||||||
|
return $this->numero_esterno ?: $this->numero;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getReferenceDate()
|
||||||
|
{
|
||||||
|
return $this->data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getReference(){
|
||||||
|
|
||||||
|
$name = $this->getReferenceName();
|
||||||
|
$number = $this->getReferenceNumber();
|
||||||
|
$date = $this->getReferenceDate();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue