. */ include_once __DIR__.'/../../../core.php'; use Modules\Interventi\Stato; use Modules\Interventi\Intervento; $rs = Intervento::where('idstatointervento', '=', Stato::where('codice', '=', 'WIP')->first()->id)->get(); if (!empty($rs)) { echo ' '; foreach ($rs as $r) { $data_richiesta = !empty($r->data_richiesta) ? Translator::dateToLocale($r->data_richiesta) : ''; echo ' '; } echo '
'.tr('Attività').' '.tr('Data richiesta').'
'.Modules::link('Interventi', $r->id, 'Intervento n. '.$r['codice'].' del '.$data_richiesta).'
'.$r->ragione_sociale.'
'.$data_richiesta.'
'; } else { echo '

'.tr('Non ci sono attività programmate').'.

'; }