. */ include_once __DIR__.'/../../../core.php'; use Modules\Interventi\Stato; $stato_wip = (new Stato())->getByName('WIP')->id_record; $rs = $dbo->fetchArray('SELECT * FROM `in_interventi` WHERE `in_interventi`.`idstatointervento` = '.prepare($stato_wip).' ORDER BY `data_richiesta` ASC'); if (!empty($rs)) { echo '
'.tr('Attività ').' | '.tr('Data richiesta').' |
---|---|
'.Modules::link('Interventi', $r['id'], 'Intervento n. '.$r['codice'].' del '.$data_richiesta).' '.$r['ragione_sociale'].' |
'.$data_richiesta.' |
'.tr('Non ci sono attività programmate').'.
'; }