form('search_numero'); $search_descrizione = $html->form('search_descrizione'); $search_gruppo = $html->form('search_gruppo'); $search_stato = $html->form('search_stato'); if( $search_stato <> '' ){ $query = "SELECT id from ms_cespitistati WHERE descrizione LIKE \"%".$search_stato."%\""; $rsit = $dbo->fetchArray($query); $add_where = " AND idtipocespite='".$rsit[0]['id']."'"; } if( $search_gruppo <> '' ){ $query = "SELECT id from ms_cespitigruppo WHERE descrizione LIKE \"%".$search_gruppo."%\""; $rsit = $dbo->fetchArray($query); $add_where = " AND idgruppocespite='".$rsit[0]['id']."'"; } if( $search_descrizione <> '' ){ $add_where = " AND descrizione like \"%".$search_descrizione."%\""; } include_once( "pdfgen_variables.php" ); $rs=$dbo->fetcharray("select numero, data , ms_cespiti.descrizione as cespite , ms_cespitigruppo.descrizione as des_gruppo , ms_cespitistati.descrizione as des_stato from ms_cespiti left join ms_cespitigruppo on ms_cespitigruppo.id=ms_cespiti.idgruppocespite left join ms_cespitistati on ms_cespitistati.id=ms_cespiti.idtipocespite WHERE CAST(data AS DATE) >= '".$_SESSION['period_start']."' AND CAST(data AS DATE) <= '".$_SESSION['period_end']."' ".$add_where); $report = file_get_contents ($docroot."/templates/cespiti/cespiti.html"); $body = file_get_contents ($docroot."/templates/cespiti/cespiti_body.html"); $totrows = sizeof($rs); $body .= "

Elenco Cespiti ".date("d/m/Y")."

\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; for( $r=0; $r\n"; $body .= " \n"; $body .= " \n"; $body .= " \n"; $body .= " \n"; $body .= "\n"; } $body .= "
NumeroDataCespiteGruppoStato
".date("d/m/Y", strtotime($rs[$r]['data']) )."".$rs[$r]['cespite']."".$rs[$r]['des_gruppo']."".$rs[$r]['des_stato']."
\n"; $orientation = "L"; $report_name = "cespiti.pdf"; ?>