Fix #722
This commit is contained in:
parent
3e4bc82f8c
commit
9efeba383b
|
@ -16,7 +16,7 @@ class Intervento extends Document
|
|||
protected $info = [];
|
||||
|
||||
/**
|
||||
* Crea un nuovo intrevento.
|
||||
* Crea un nuovo intervento.
|
||||
*
|
||||
* @param Anagrafica $anagrafica
|
||||
* @param TipoSessione $tipo_sessione
|
||||
|
@ -119,6 +119,11 @@ class Intervento extends Document
|
|||
return $this->belongsTo(Stato::class, 'idstatointervento');
|
||||
}
|
||||
|
||||
public function tipo()
|
||||
{
|
||||
return $this->belongsTo(Tipo::class, 'idtipointervento');
|
||||
}
|
||||
|
||||
public function tipoSessione()
|
||||
{
|
||||
return $this->belongsTo(TipoSessione::class, 'idtipointervento');
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Modules\Interventi;
|
||||
|
||||
use Common\Model;
|
||||
|
||||
class Tipo extends Model
|
||||
{
|
||||
protected $primaryKey = 'idtipointervento';
|
||||
protected $table = 'in_tipiintervento';
|
||||
|
||||
public function interventi()
|
||||
{
|
||||
return $this->hasMany(Intervento::class, 'idtipointervento');
|
||||
}
|
||||
}
|
|
@ -83,7 +83,7 @@ echo '
|
|||
echo '
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<b>'.tr('Tipo intervento').':</b> '.$documento['tipointervento'].'
|
||||
<b>'.tr('Tipo intervento').':</b> '.$documento->tipo->descrizione.'
|
||||
</td>
|
||||
</tr>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue