114 lines
2.9 KiB
PHP
114 lines
2.9 KiB
PHP
<?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
|
||
*/
|
||
|
||
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
|
||
// $Revision$
|
||
/*! \file
|
||
* \brief Send a report in PDF
|
||
*/
|
||
|
||
include_once("class_rapport.php");
|
||
include_once("ac_common.php");
|
||
include_once("postgres.php");
|
||
include_once("class.ezpdf.php");
|
||
include_once("impress_inc.php");
|
||
require_once('class_user.php');
|
||
require_once ('header_print.php');
|
||
require_once('class_dossier.php');
|
||
$gDossier=dossier::id();
|
||
|
||
$cn=DbConnect($gDossier);
|
||
|
||
foreach ($_POST as $key=>$element) {
|
||
${"$key"}=$element;
|
||
}
|
||
|
||
$ret="";
|
||
$pdf=new Cezpdf();
|
||
$pdf->selectFont('./addon/fonts/Helvetica.afm');
|
||
header_pdf($cn,$pdf);
|
||
|
||
$Form=new rapport($cn,$form_id);
|
||
// Step ??
|
||
//--
|
||
if ( $_POST['p_step'] == 0 )
|
||
{
|
||
// No step asked
|
||
//--
|
||
$array=$Form->GetRow($from_periode,$to_periode);
|
||
}
|
||
else
|
||
{
|
||
// yes with step
|
||
//--
|
||
for ($e=$_POST['from_periode'];$e<=$_POST['to_periode'];$e+=$_POST['p_step'])
|
||
{
|
||
$periode=getPeriodeName($cn,$e);
|
||
if ( $periode == null ) continue;
|
||
$array[]=$Form->GetRow($e,$e);
|
||
$periode_name[]=$periode;
|
||
}
|
||
|
||
}
|
||
|
||
$Libelle=sprintf("(%s) %s ",$Form->id,$Form->GetName());
|
||
|
||
$pdf->ezText($Libelle,30);
|
||
// without step
|
||
if ( $_POST['p_step'] == 0 )
|
||
{
|
||
$q=getPeriodeName($cn,$from_periode);
|
||
if ( $from_periode != $to_periode){
|
||
$periode=sprintf("P<EFBFBD>riode %s <20> %s",$q,getPeriodeName($cn,$to_periode));
|
||
} else {
|
||
$periode=sprintf("P<EFBFBD>riode %s",$q);
|
||
}
|
||
|
||
$pdf->ezText($periode,25);
|
||
$pdf->ezTable($array,
|
||
array ('desc'=>'Description',
|
||
'montant' => 'Montant'
|
||
),$Libelle,
|
||
array('shaded'=>0,'showHeadings'=>1,'width'=>500,
|
||
'cols'=>array('montant'=> array('justification'=>'right'),
|
||
)));
|
||
//New page
|
||
//$pdf->ezNewPage();
|
||
//}
|
||
}
|
||
else
|
||
{ // With Step
|
||
$a=0;
|
||
foreach ($array as $e)
|
||
{
|
||
$pdf->ezText($periode_name[$a],25);
|
||
$a++;
|
||
$pdf->ezTable($e,
|
||
array ('desc'=>'Description',
|
||
'montant' => 'Montant'
|
||
),$Libelle,
|
||
array('shaded'=>0,'showHeadings'=>1,'width'=>500,
|
||
'cols'=>array('montant'=> array('justification'=>'right'),
|
||
)));
|
||
}
|
||
}
|
||
$pdf->ezStream();
|
||
|
||
?>
|