* vue filtrant : on ne propose les périodes que pour l'année en cours * Possibilité de chercher une fiche dans un popup * Detail des tiers dans les suivi courrier * Génération de document ODS (OpenOffice.org) sur base de modèle que l'on peut charger dans la base de données
139 lines
No EOL
4.1 KiB
PHP
139 lines
No EOL
4.1 KiB
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
|
||
*/
|
||
// Auteur Dany De Bontridder ddebontridder@yahoo.fr
|
||
// /* $Revision$ */
|
||
/*! \file
|
||
* \brief Show the balance and let you print it or export to PDF
|
||
* file included by user_impress
|
||
*
|
||
* some variable are already defined ($cn, $User ...)
|
||
*/
|
||
|
||
include_once ("ac_common.php");
|
||
include_once("preference.php");
|
||
include_once ("class_widget.php");
|
||
include_once("class_balance.php");
|
||
if ( $User->CheckAction($cn,BALANCE) == 0)
|
||
{
|
||
NoAccess();
|
||
exit;
|
||
}
|
||
echo '<div class="u_content">';
|
||
|
||
////////////////////////////////////////////////////////////////////////////////
|
||
// Form
|
||
////////////////////////////////////////////////////////////////////////////////
|
||
// Show the export button
|
||
if ( isset ($_POST['view'] ) ) {
|
||
$submit=new widget();
|
||
$hid=new widget("hidden");
|
||
|
||
echo "<table>";
|
||
echo '<TR>';
|
||
echo '<TD><form method="POST" ACTION="print_balance.php">'.
|
||
$submit->Submit('bt_pdf',"Export PDF").
|
||
$hid->IOValue("from_periode",$_POST['from_periode']).
|
||
$hid->IOValue("to_periode",$_POST['to_periode']);
|
||
|
||
echo "</form></TD>";
|
||
echo '<TD><form method="POST" ACTION="bal_csv.php">'.
|
||
$submit->Submit('bt_csv',"Export CSV").
|
||
$hid->IOValue("from_periode",$_POST['from_periode']).
|
||
$hid->IOValue("to_periode",$_POST['to_periode']);
|
||
|
||
echo "</form></TD>";
|
||
|
||
echo "</TR>";
|
||
|
||
echo "</table>";
|
||
}
|
||
|
||
// Show the form for period
|
||
echo '<FORM action="user_impress.php?type=bal" method="post">';
|
||
$w=new widget("select");
|
||
$w->table=1;
|
||
// filter on the current year
|
||
$filter_year=" where p_exercice='".$User->getExercice()."'";
|
||
|
||
$periode_start=make_array($cn,"select p_id,to_char(p_start,'DD-MM-YYYY') from parm_periode $filter_year order by p_id");
|
||
$w->label="Depuis";
|
||
if ( isset ($_POST['from_periode']) )
|
||
$w->selected=$_POST['from_periode'];
|
||
|
||
echo $w->IOValue('from_periode',$periode_start);
|
||
$w->label=" jusqu'<27> ";
|
||
$periode_end=make_array($cn,"select p_id,to_char(p_end,'DD-MM-YYYY') from parm_periode $filter_year order by p_id");
|
||
if ( isset ($_POST['to_periode']) )
|
||
$w->selected=$_POST['to_periode'];
|
||
|
||
echo $w->IOValue('to_periode',$periode_end);
|
||
$c=new widget("checkbox");
|
||
$c->label="centralis<EFBFBD>";
|
||
echo $c->IOValue('central');
|
||
|
||
//$a=FormPeriodeMult($cn);
|
||
//echo $a;
|
||
echo '<input type="submit" name="view" value="ok">';
|
||
|
||
|
||
////////////////////////////////////////////////////////////////////////////////
|
||
// Display result
|
||
////////////////////////////////////////////////////////////////////////////////
|
||
if ( isset($_POST['view'] ) ) {
|
||
$bal=new Balance($cn);
|
||
|
||
$t_cent="";
|
||
//$per=join(',',$periode);
|
||
if ( isset($_POST['central']) ) {
|
||
$bal->central='Y';
|
||
$t_cent="centralis<EFBFBD>e";
|
||
}
|
||
else
|
||
$bal->central='N';
|
||
|
||
$row=$bal->GetRow($_POST['from_periode'],
|
||
$_POST['to_periode']);
|
||
$a=GetPeriode($cn,$_POST['from_periode']);
|
||
$b=GetPeriode($cn,$_POST['to_periode']);
|
||
echo "<h2 class=\"info\"> p<>riode du ".$a['p_start']." au ".$b['p_end']."</h2>";
|
||
|
||
echo '<table width="100%">';
|
||
$i=0;
|
||
foreach ($row as $r) {
|
||
$i++;
|
||
if ( $i%2 == 0 )
|
||
$tr="even";
|
||
else
|
||
$tr="odd";
|
||
|
||
echo '<TR class="'.$tr.'">';
|
||
echo '<TD>'.$r['poste'].'</TD>';
|
||
echo '<TD>'.$r['label'].'</TD>';
|
||
echo '<TD>'.$r['sum_deb'].'</TD>';
|
||
echo '<TD>'.$r['sum_cred'].'</TD>';
|
||
echo '<TD>'.$r['solde_deb'].'</TD>';
|
||
echo '<TD>'.$r['solde_cred'].'</TD>';
|
||
echo '</TR>';
|
||
}
|
||
echo '</table>';
|
||
|
||
}// end submit
|
||
echo "</div>";
|
||
?>
|