2015-09-27 00:35:53 +02:00
|
|
|
<?php
|
|
|
|
/*
|
2018-04-13 18:58:28 +02:00
|
|
|
* This file is part of NOALYSS.
|
2015-09-27 00:35:53 +02:00
|
|
|
*
|
2018-04-13 18:58:28 +02:00
|
|
|
* NOALYSS isfree software; you can redistribute it and/or modify
|
2015-09-27 00:35:53 +02:00
|
|
|
* 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.
|
|
|
|
*
|
2018-04-13 18:58:28 +02:00
|
|
|
* NOALYSS isdistributed in the hope that it will be useful,
|
2015-09-27 00:35:53 +02:00
|
|
|
* 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
|
2018-04-13 18:58:28 +02:00
|
|
|
* along with NOALYSS; if not, write to the Free Software
|
2015-09-27 00:35:53 +02:00
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
// Copyright (2014) Author Dany De Bontridder <dany@alchimerys.be>
|
|
|
|
|
|
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
2018-04-13 18:58:28 +02:00
|
|
|
* @brief Aged Balance for card
|
|
|
|
*@see Balance_Age
|
2015-09-27 00:35:53 +02:00
|
|
|
*/
|
2018-04-13 18:58:28 +02:00
|
|
|
require_once NOALYSS_INCLUDE.'/class/fiche.class.php';
|
|
|
|
require_once NOALYSS_INCLUDE.'/class/exercice.class.php';
|
|
|
|
require_once NOALYSS_INCLUDE.'/class/periode.class.php';
|
|
|
|
require_once NOALYSS_INCLUDE.'/class/balance_age.class.php';
|
2015-09-27 00:35:53 +02:00
|
|
|
$let=( isset ($_GET['p_let']))?'let':'unlet';
|
2018-04-13 18:58:28 +02:00
|
|
|
// f_id
|
|
|
|
$f_id=$http->get('f_id',"number");
|
|
|
|
|
|
|
|
// Default date
|
|
|
|
$periode_user=$g_user->get_periode();
|
|
|
|
$periode=new Periode($cn,$periode_user);
|
|
|
|
$default_date=$periode->first_day();
|
|
|
|
|
|
|
|
// Input date
|
|
|
|
$idate=new IDate("date_balag");
|
|
|
|
$idate->value=$http->get("date_balag","date",$default_date);
|
|
|
|
|
2015-09-27 00:35:53 +02:00
|
|
|
|
|
|
|
$export_csv = '<FORM METHOD="get" ACTION="export.php" style="display:inline">';
|
2018-04-13 18:58:28 +02:00
|
|
|
$export_csv .=HtmlInput::request_to_hidden(array('gDossier','ac','date_balag'));
|
|
|
|
$export_csv.=HtmlInput::hidden('p_date_start',$idate->value);
|
2015-09-27 00:35:53 +02:00
|
|
|
$export_csv .= HtmlInput::hidden('act','CSV:balance_age');
|
|
|
|
$export_csv .= HtmlInput::hidden('p_let',$let);
|
|
|
|
$export_csv .= HtmlInput::hidden('p_type','U');
|
2018-04-13 18:58:28 +02:00
|
|
|
$export_csv .= HtmlInput::hidden('fiche',$f_id);
|
2015-09-27 00:35:53 +02:00
|
|
|
$export_csv .= HtmlInput::submit('csv',_('Export CSV'));
|
|
|
|
$export_csv.='</FORM>';
|
|
|
|
?>
|
|
|
|
<form method="get">
|
2018-04-13 18:58:28 +02:00
|
|
|
<?php echo _("Tout") ?><input type="checkbox" name="p_let" value="1">
|
|
|
|
<?php echo _("Date")?> <?php echo $idate->input();?>
|
2015-09-27 00:35:53 +02:00
|
|
|
<?php echo HtmlInput::request_to_hidden(array('ac','gDossier','sb','sc','f_id'));?>
|
|
|
|
<input type="submit" class="smallbutton" value="<?php echo _('Valider')?>">
|
|
|
|
</form>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
echo '<div class="content" style="width:98%;margin-left:1%">';
|
|
|
|
echo $export_csv;
|
2018-04-13 18:58:28 +02:00
|
|
|
$fiche=new Fiche($cn,$f_id);
|
2015-09-27 00:35:53 +02:00
|
|
|
$bal=new Balance_Age($cn);
|
2018-04-13 18:58:28 +02:00
|
|
|
$bal->display_card($idate->value, $fiche->id, $let);
|
2015-09-27 00:35:53 +02:00
|
|
|
echo $export_csv;
|
|
|
|
|
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
?>
|