diff --git a/include/export_stock_histo.php b/include/export_stock_histo.php deleted file mode 100644 index 7492be85c..000000000 --- a/include/export_stock_histo.php +++ /dev/null @@ -1,63 +0,0 @@ -create_query_histo($_GET); -$sql .= " order by real_date asc"; - -$res=$cn->exec_sql($sql); -$max_row=Database::num_row($res); -header('Pragma: public'); -header('Content-type: application/csv'); -header('Content-Disposition: attachment;filename="histo-stock.csv"',FALSE); -printf('"Date";'); - printf('"%s";','Code Stock'); - printf('"%s";','Depot'); - printf('"%s";','Fiche'); - printf('"%s";','Commentaire'); - printf('%s;','Quantité'); - printf('"%s";','IN/OUT'); - printf("\n\r"); -for ($i=0;$i<$max_row;$i++) -{ - $row=Database::fetch_array($res,$i); - printf('"%s";',$row['cdate']); - printf('"%s";',$row['sg_code']); - printf('"%s";',$row['r_name']); - printf('"%s";',$row['qcode']); - $row['ccomment']=str_replace('"','',$row['ccomment']); - printf('"%s";',$row['ccomment']); - printf('%s;',nbm($row['sg_quantity'])); - printf('"%s";',$row['direction']); - printf("\n\r"); - -} - -?> \ No newline at end of file