. */ include_once __DIR__.'/../../../core.php'; use Modules\Interventi\Intervento; use Modules\Interventi\Stato; $rs = Intervento::where('idstatointervento', '=', Stato::where('codice', '=', 'WIP')->first()->id)->get()->toArray(); if (!empty($rs)) { echo ' '; foreach ($rs as $r) { $data_richiesta = $r['data_richiesta'] ? date('d/m/Y', strtotime((string) $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').'.

'; }