mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
77 lines
No EOL
2.5 KiB
PHP
77 lines
No EOL
2.5 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of NOALYSS.
|
|
*
|
|
* NOALYSS 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.
|
|
*
|
|
* NOALYSS 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 NOALYSS; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
// Copyright Author Dany De Bontridder danydb@aevalys.eu
|
|
|
|
/*!\file
|
|
* \brief history of the accountancy exported in CSV
|
|
*/
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
require_once NOALYSS_INCLUDE.'/lib/noalyss_csv.class.php';
|
|
require_once NOALYSS_INCLUDE.'/class/acc_ledger_search.class.php';
|
|
|
|
$ledger=new Acc_Ledger_Search($cn,0);
|
|
list($sql,$where)=$ledger->build_search_sql($_GET);
|
|
|
|
$order=" order by jr_date_order asc,substring(jr_pj_number,'[0-9]+$')::numeric asc ";
|
|
|
|
$res=$cn->get_array($sql.$order);
|
|
$title=array();
|
|
$title[]=_("Internal");
|
|
$title[]=_("Journal");
|
|
$title[]=_("Date");
|
|
$title[]=_("Echeance");
|
|
$title[]=_("Paiement");
|
|
$title[]=_("Piece");
|
|
$title[]=_("qcode");
|
|
$title[]=_("Tiers");
|
|
$title[]=_("Description");
|
|
$title[]=_("Note");
|
|
$title[]=_("Montant opération");
|
|
$export=new Noalyss_Csv("histo");
|
|
$export->send_header();
|
|
$export->write_header($title);
|
|
|
|
for ($i=0;$i<count($res);$i++)
|
|
{
|
|
$export->add($res[$i]['jr_internal']);
|
|
$export->add($res[$i]['jrn_def_name']);
|
|
$export->add($res[$i]['str_jr_date']);
|
|
$export->add($res[$i]['str_jr_ech']);
|
|
$export->add($res[$i]['str_jr_date_paid']);
|
|
$export->add($res[$i]['jr_pj_number']);
|
|
$export->add($res[$i]['quick_code']);
|
|
$export->add($res[$i]['name']." ".$res[$i]['first_name']);
|
|
$export->add($res[$i]['jr_comment']);
|
|
$export->add($res[$i]['n_text']);
|
|
|
|
$amount=$res[$i]['jr_montant'];
|
|
|
|
if ( $res[$i]['total_invoice']!=null && $res[$i]['jr_montant']!=$res[$i]['total_invoice'])
|
|
$amount=$res[$i]['total_invoice'];
|
|
if ( $res[$i]['jrn_def_type'] == 'FIN')
|
|
{
|
|
$positive = $cn->get_value("select qf_amount from quant_fin where jr_id=$1",array($res[$i]['jr_id']));
|
|
if ( $positive !='' ) $amount=$positive;
|
|
}
|
|
$export->add($amount,"number");
|
|
|
|
$export->write();
|
|
|
|
} |