258 lines
8.6 KiB
PHP
258 lines
8.6 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
|
|
*/
|
|
/* $Revision$ */
|
|
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
|
|
/*! \file
|
|
* \brief ask for Printing the ledger (pdf,html)
|
|
*/
|
|
|
|
include_once("class_widget.php");
|
|
require_once('class_dossier.php');
|
|
$gDossier=dossier::id();
|
|
|
|
//-----------------------------------------------------
|
|
// If print is asked
|
|
// First time in html
|
|
// after in pdf or cvs
|
|
//-----------------------------------------------------
|
|
if ( isset( $_POST['bt_html'] ) ) {
|
|
require_once("class_acc_ledger.php");
|
|
$p_cent=( isset ( $_POST['cent']) )?'on':'off';
|
|
// $POST=from_periode, to_periode, jrn_id, cent
|
|
$d=var_export($_POST,true);
|
|
echo_debug('impress_jrn.php',__LINE__,$d);
|
|
$Jrn=new Acc_Ledger($cn,$_POST['jrn_id']);
|
|
$Jrn->get_name();
|
|
if ( $_POST['p_simple']==0 )
|
|
{
|
|
$Row=$Jrn->get_row( $_POST['from_periode'],
|
|
$_POST['to_periode'],
|
|
$p_cent);
|
|
}
|
|
else
|
|
{
|
|
$Row=$Jrn->get_rowSimple($_POST['from_periode'],
|
|
$_POST['to_periode'],
|
|
$p_cent);
|
|
// var_dump($Row);
|
|
}
|
|
$rep="";
|
|
$submit=new widget();
|
|
$hid=new widget("hidden");
|
|
echo '<div class="content">';
|
|
echo '<h2 class="info">'.h($Jrn->name).'</h2>';
|
|
echo "<table>";
|
|
echo '<TR>';
|
|
echo '<TD><form method="GET" ACTION="?">'.dossier::hidden().
|
|
widget::submit('bt_other',"Autre journal").
|
|
$hid->IOValue("type","jrn").$hid->IOValue('p_action','impress')."</form></TD>";
|
|
|
|
echo '<TD><form method="GET" ACTION="jrn_pdf.php">'.dossier::hidden().
|
|
widget::submit('bt_pdf',"Export PDF").
|
|
$hid->IOValue("type","jrn").
|
|
$hid->IOValue("p_action","impress").
|
|
$hid->IOValue("central",$p_cent).
|
|
$hid->IOValue("jrn_id",$Jrn->id).
|
|
$hid->IOValue("from_periode",$_POST['from_periode']).
|
|
$hid->IOValue("to_periode",$_POST['to_periode']);
|
|
echo $hid->IOValue("p_simple",$_POST['p_simple']);
|
|
|
|
echo "</form></TD>";
|
|
echo '<TD><form method="GET" ACTION="jrn_csv.php">'.dossier::hidden().
|
|
widget::submit('bt_csv',"Export CSV").
|
|
$hid->IOValue("type","jrn").
|
|
$hid->IOValue("p_action","impress").
|
|
$hid->IOValue("central",$p_cent).
|
|
$hid->IOValue("jrn_id",$Jrn->id).
|
|
$hid->IOValue("from_periode",$_POST['from_periode']).
|
|
$hid->IOValue("to_periode",$_POST['to_periode']);
|
|
echo $hid->IOValue("p_simple",$_POST['p_simple']);
|
|
echo "</form></TD>";
|
|
|
|
echo "</TR>";
|
|
|
|
echo "</table>";
|
|
if ( count($Jrn->row ) == 0
|
|
&& $Row==null)
|
|
exit;
|
|
|
|
echo '<TABLE class="result">';
|
|
|
|
if ( $_POST['p_simple'] == 0 ) {
|
|
// detailled printing
|
|
//---
|
|
foreach ( $Jrn->row as $op ) {
|
|
echo "<TR>";
|
|
// centralized
|
|
if ( $p_cent == 'on') {
|
|
echo "<TD>".$op['j_id']."</TD>";
|
|
}
|
|
echo "<TD>".$op['internal']."</TD>".
|
|
"<TD>".$op['j_date']."</TD>".
|
|
"<TD>".$op['poste']."</TD>".
|
|
"<TD>".$op['description']."</TD>".
|
|
"<TD>".$op['deb_montant']."</TD>".
|
|
"<TD>".$op['cred_montant']."</TD>".
|
|
"</TR>";
|
|
}// end loop
|
|
} // if
|
|
else
|
|
{
|
|
include_once("jrn.php");
|
|
// Simple printing
|
|
//---
|
|
|
|
echo "<TR>".
|
|
"<th> operation </td>".
|
|
"<th>Date</th>".
|
|
"<th> commentaire </th>".
|
|
"<th>internal</th>".
|
|
/* "<th>Pièce justificative</th>". */
|
|
"<th> montant</th>".
|
|
"</TR>";
|
|
// set a filter for the FIN
|
|
$a_parm_code=get_array($cn,"select p_value from parm_code where p_code in ('BANQUE','COMPTE_COURANT','CAISSE')");
|
|
$sql_fin="(";
|
|
$or="";
|
|
foreach ($a_parm_code as $code) {
|
|
$sql_fin.="$or j_poste::text like '".$code['p_value']."%'";
|
|
$or=" or ";
|
|
}
|
|
$sql_fin.=")";
|
|
|
|
foreach ($Row as $line)
|
|
{
|
|
echo "<tr>";
|
|
echo "<TD>".$line['num']."</TD>";
|
|
echo "<TD>".$line['date']."</TD>";
|
|
echo "<TD>".h($line['comment'])."</TD>";
|
|
echo "<TD>".$line['jr_internal']."</TD>";
|
|
// echo "<TD>".$line['pj']."</TD>";
|
|
// If the ledger is financial :
|
|
// the credit must be negative and written in red
|
|
// Get the jrn type
|
|
if ( $line['jrn_def_type'] == 'FIN' ) {
|
|
$positive = CountSql($cn,"select * from jrn inner join jrnx on jr_grpt_id=j_grpt ".
|
|
" where jr_id=".$line['jr_id']." and $sql_fin ".
|
|
" and j_debit='f'");
|
|
|
|
echo "<TD align=\"right\">";
|
|
echo ( $positive != 0 )?"<font color=\"red\"> - ".sprintf("%8.2f",$line['montant'])."</font>":sprintf("%8.2f",$line['montant']);
|
|
echo "</TD>";
|
|
}
|
|
else
|
|
{
|
|
echo "<TD align=\"right\">".sprintf("% 8.2f",$line['montant'])."</TD>";
|
|
}
|
|
|
|
echo "</tr>";
|
|
}
|
|
|
|
} //else
|
|
echo "</table>";
|
|
// show the saldo
|
|
|
|
$solde=$Jrn->get_solde( $_POST['from_periode'],
|
|
$_POST['to_periode'],
|
|
$p_cent);
|
|
echo "solde débiteur:".$solde[0]."<br>";
|
|
echo "solde créditeur:".$solde[1];
|
|
|
|
echo "</div>";
|
|
exit;
|
|
}
|
|
|
|
//-----------------------------------------------------
|
|
// Show the jrn and date
|
|
//-----------------------------------------------------
|
|
include_once("postgres.php");
|
|
|
|
if ( $User->Admin() == 0 && $User->is_local_admin()==0) {
|
|
$sql="select jrn_def_id,jrn_def_name
|
|
from jrn_def join jrn_type on jrn_def_type=jrn_type_id
|
|
join user_sec_jrn on uj_jrn_id=jrn_def_id
|
|
where
|
|
uj_login='$User->login'
|
|
and uj_priv !='X'
|
|
";
|
|
$ret=make_array($cn,$sql);
|
|
} else {
|
|
$ret=make_array($cn,"select jrn_def_id,jrn_def_name
|
|
from jrn_def join jrn_type on jrn_def_type=jrn_type_id");
|
|
|
|
}
|
|
|
|
// Count the forbidden journaux
|
|
$NoPriv=CountSql($cn,"select jrn_def_id,jrn_def_name,jrn_def_class_deb,jrn_def_class_cred,jrn_type_id,jrn_desc,uj_priv,
|
|
jrn_deb_max_line,jrn_cred_max_line
|
|
from jrn_def join jrn_type on jrn_def_type=jrn_type_id
|
|
join user_sec_jrn on uj_jrn_id=jrn_def_id
|
|
where
|
|
uj_login='$User->id'
|
|
and uj_priv ='X'
|
|
");
|
|
// Pour voir tout les journal ?
|
|
if ( $NoPriv == 0 ) {
|
|
$a=count($ret);
|
|
$all=array('value'=>0,'label'=>'Grand Livre');
|
|
$ret[$a]=$all;
|
|
}
|
|
if ( count($ret) < 1 )
|
|
NoAccess();
|
|
//-----------------------------------------------------
|
|
// Form
|
|
//-----------------------------------------------------
|
|
echo '<div class="content">';
|
|
echo '<FORM ACTION="?p_action=impress&type=jrn" METHOD="POST">'.dossier::hidden();
|
|
echo '<TABLE width="90%" align="center"><TR>';
|
|
$w=new widget("select");
|
|
$w->table=1;
|
|
$w->label="Choississez le journal";
|
|
print $w->IOValue("jrn_id",$ret);
|
|
print '</TR>';
|
|
print '<TR>';
|
|
// filter on the current year
|
|
$filter_year=" where p_exercice='".$User->get_exercice()."'";
|
|
|
|
$periode_start=make_array($cn,"select p_id,to_char(p_start,'DD-MM-YYYY') from parm_periode $filter_year order by p_start,p_end");
|
|
$w->label="Depuis";
|
|
print $w->IOValue('from_periode',$periode_start);
|
|
$w->label=" jusqu'à ";
|
|
$periode_end=make_array($cn,"select p_id,to_char(p_end,'DD-MM-YYYY') from parm_periode $filter_year order by p_start,p_end");
|
|
print $w->IOValue('to_periode',$periode_end);
|
|
print "</TR><TR>";
|
|
$centralise=new widget("checkbox");
|
|
$centralise->label="Depuis les journaux centralisés";
|
|
$centralise->table=1;
|
|
print $centralise->IOValue('cent');
|
|
$a=array(
|
|
array('value'=>0,'label'=>'Detaillé'),
|
|
array('value'=>1,'label'=>'Simple')
|
|
);
|
|
$w->selected=1;
|
|
echo $w->IOValue('p_simple',$a,'Style d\'impression');
|
|
print "</TR>";
|
|
echo '</TABLE>';
|
|
print widget::submit('bt_html','Visualisation');
|
|
|
|
echo '</FORM>';
|
|
echo '<span class="notice"> Attention : en-cas d\'impression de journaux centralisés, dans le PDF, les montants débit et crédit calculés par page sont la somme des montants de la page uniquement. Si une opération est sur 2 pages ces montants diffèreront évidemment. Ces montants doivent être égaux sur la dernière page. Pour vérifier la balance, utilisez la balance des comptes ou Avancé->Vérification</span>';
|
|
|
|
echo '</div>';
|
|
?>
|