form('search_codice'); $search_descrizione = $html->form('search_descrizione'); $search_categoria = $html->form('search_categoria'); $search_sotto_categoria = $html->form('search_subcategoria'); $search_tipo = $html->form('search_tipo'); if( $search_tipo == '' ){ $search_tipo = 'solo prodotti attivi'; } if( $search_tipo == "solo prodotti attivi" ){ $add_where = " AND attivo=1"; } else if( $search_tipo == "solo prodotti non attivi" ){ $add_where = " AND attivo=0"; } else{ $add_where = ""; } // $search_categoria= $search_categoria ." ".$search_sotto_categoria; if( $search_sotto_categoria != '' ){ $search_categoria= $search_categoria ." ".$search_sotto_categoria; } include_once( "pdfgen_variables.php" ); $rs = $dbo->fetchArray("SELECT *, mg_articoli.id AS id_articolo, (SELECT nome FROM mg_categorie WHERE mg_categorie.parent = 0 AND mg_categorie.id = mg_articoli.id_categoria) AS categoria, (SELECT nome FROM mg_categorie WHERE mg_categorie.parent > 0 AND mg_categorie.id = mg_articoli.id_sottocategoria) AS subcategoria FROM mg_articoli WHERE ( replace(codice,'.','') LIKE \"%$search_codice%\" OR codice LIKE \"%$search_codice%\" ) AND replace(descrizione,'.','') LIKE \"%$search_descrizione%\" ".$add_where." AND qta > 0 HAVING CONCAT_WS( ' ', categoria, subcategoria ) LIKE \"%$search_categoria%\" ORDER BY codice ASC"); $totrows = sizeof($rs); $body .= "
Codice | \n"; $body .= "Descrizione | \n"; $body .= "Categoria | \n"; $body .= "SottoCategoria | \n"; $body .= "Prezzo di vendita | \n"; $body .= "Q.tà | \n"; $body .= "Prezzo di acquisto | \n"; $body .= "Valore totale | \n"; $body .= "".$rs[$r]['descrizione']." | \n"; $body .= "".$rs[$r]['categoria']." | \n"; $body .= "".$rs[$r]['subcategoria']." | \n"; $body .= "".number_format( $rs[$r]['prezzo_vendita'], 2, ",", "." )." € | \n"; $body .= "".$rs[$r]['um']." ".number_format( $rs[$r]['qta'], 2, ",", "." )." | \n"; $body .= "".number_format( $rs[$r]['prezzo_acquisto'], 2, ",", "." )." € | \n"; $body .= "".number_format( ($rs[$r]['prezzo_acquisto']*$rs[$r]['qta']), 2, ",", "." )." € | \n"; $body .= "\n"; $totale_qta += $rs[$r]['qta']; $totale_acquisto += ($rs[$r]['prezzo_acquisto']*$rs[$r]['qta']); } //Totali $body .= "
---|---|---|---|---|---|---|---|
TOTALE: | \n"; $body .= "\n"; $body .= " | ".number_format( $totale_qta, 2, ",", "." )." | \n"; $body .= "\n"; $body .= " | ".number_format( $totale_acquisto, 2, ",", "." )." € | \n"; $body .= "