#238 : recode entirely the export (PDF / CSV )
This commit is contained in:
parent
2ed18aed5c
commit
d83210ea14
43 changed files with 237 additions and 135 deletions
60
include/export_histo_csv.php
Normal file
60
include/export_histo_csv.php
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/*
|
||||
* This file is part of PhpCompta.
|
||||
*
|
||||
* PhpCompta is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* PhpCompta is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with PhpCompta; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
/* $Revision$ */
|
||||
|
||||
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
|
||||
|
||||
/*!\file
|
||||
* \brief
|
||||
*/
|
||||
|
||||
header('Pragma: public');
|
||||
header('Content-type: application/csv');
|
||||
header('Content-Disposition: attachment;filename="histo-export.csv"',FALSE);
|
||||
|
||||
$ledger=new Acc_Ledger($cn,0);
|
||||
list($sql,$where)=$ledger->build_search_sql($_GET);
|
||||
|
||||
$order=" order by jr_date_order asc,substring(jr_pj_number,'\\\d+$')::numeric asc ";
|
||||
|
||||
$res=$cn->get_array($sql.$order);
|
||||
|
||||
printf('"%s";',"Internal");
|
||||
printf('"%s";',"Journal");
|
||||
printf('"%s";',"Date");
|
||||
printf('"%s";',"Echeance");
|
||||
printf('"%s";',"Piece");
|
||||
printf('"%s";',"Description");
|
||||
printf('"%s";',"Note");
|
||||
printf('"%s"',"Montant");
|
||||
printf("\r\n");
|
||||
|
||||
for ($i=0;$i<count($res);$i++)
|
||||
{
|
||||
printf('"%s";',$res[$i]['jr_internal']);
|
||||
printf('"%s";',$res[$i]['jrn_def_name']);
|
||||
printf('"%s";',$res[$i]['jr_date']);
|
||||
printf('"%s";',$res[$i]['jr_ech']);
|
||||
printf('"%s";',$res[$i]['jr_pj_number']);
|
||||
printf('"%s";',$res[$i]['jr_comment']);
|
||||
printf('"%s";',$res[$i]['n_text']);
|
||||
printf('%s',nb($res[$i]['jr_montant']));
|
||||
printf("\r\n");
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue