Bugfix minore

This commit is contained in:
Thomas Zilio 2020-03-13 10:15:34 +01:00
parent 47cc7d19e3
commit 5fbf9cc7e5
2 changed files with 45 additions and 0 deletions

View File

@ -102,4 +102,24 @@ class Pianificazione extends Document
{
return $this->contratto->descrizioni();
}
public function getReferenceName()
{
// TODO: Implement getReferenceName() method.
}
public function getReferenceNumber()
{
// TODO: Implement getReferenceNumber() method.
}
public function getReferenceDate()
{
// TODO: Implement getReferenceDate() method.
}
public function getReference()
{
// TODO: Implement getReference() method.
}
}

View File

@ -120,4 +120,29 @@ class Promemoria extends Document
{
return $this->hasMany(Components\Descrizione::class, 'id_promemoria');
}
public function getModuleAttribute()
{
// TODO: Implement getModuleAttribute() method.
}
public function getReferenceName()
{
// TODO: Implement getReferenceName() method.
}
public function getReferenceNumber()
{
// TODO: Implement getReferenceNumber() method.
}
public function getReferenceDate()
{
// TODO: Implement getReferenceDate() method.
}
public function getReference()
{
// TODO: Implement getReference() method.
}
}