Fix minori
This commit is contained in:
parent
e20e341dcc
commit
12d26db1d4
|
@ -21,6 +21,12 @@ include_once __DIR__.'/../../../core.php';
|
|||
|
||||
use Modules\Interventi\Intervento;
|
||||
|
||||
$tipologie = [];
|
||||
$tecnici = [];
|
||||
$stati_intervento = [];
|
||||
$materiali_art = [];
|
||||
$materiali_righe = [];
|
||||
|
||||
// Tabella con riepilogo interventi
|
||||
$interventi = Intervento::where('id_contratto', $id_record)->get();
|
||||
$totale_ore_completate = 0;
|
||||
|
|
|
@ -21,6 +21,12 @@ include_once __DIR__.'/../../../core.php';
|
|||
|
||||
use Modules\Interventi\Intervento;
|
||||
|
||||
$tipologie = [];
|
||||
$tecnici = [];
|
||||
$stati_intervento = [];
|
||||
$materiali_art = [];
|
||||
$materiali_righe = [];
|
||||
|
||||
// Tabella con riepilogo interventi
|
||||
$interventi = Intervento::where('id_ordine', $id_record)->get();
|
||||
if (!empty($interventi)) {
|
||||
|
|
|
@ -21,6 +21,12 @@ include_once __DIR__.'/../../../core.php';
|
|||
|
||||
use Modules\Interventi\Intervento;
|
||||
|
||||
$tipologie = [];
|
||||
$tecnici = [];
|
||||
$stati_intervento = [];
|
||||
$materiali_art = [];
|
||||
$materiali_righe = [];
|
||||
|
||||
// Tabella con riepilogo interventi
|
||||
$interventi = Intervento::where('id_preventivo', $id_record)->get();
|
||||
if (!empty($interventi)) {
|
||||
|
|
Loading…
Reference in New Issue