Add security for module Budget Add paid & unpaid to module "gestion" Add Periode & Centra to module "Gestion" Add Filter for gestion, security Documentation Close periode by ledger
216 lines
5.7 KiB
PHP
216 lines
5.7 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 include file for the periode form, currency,...
|
||
*
|
||
*/
|
||
/*! FormPeriodeMult
|
||
* \brief Generate the form for the periode
|
||
*
|
||
*
|
||
* \param $p_cn connexion
|
||
*
|
||
* \return string containing html code for the
|
||
* form
|
||
*
|
||
*/
|
||
function FormPeriodeMult($p_cn)
|
||
{
|
||
$sql="select p_id,to_char(p_start,'DD.MM.YYYY') as p_start,
|
||
to_char(p_end,'DD.MM.YYYY') as p_end
|
||
from parm_periode
|
||
order by p_exercice,p_start";
|
||
$Res=ExecSql($p_cn,$sql);
|
||
$Max=pg_NumRows($Res);
|
||
$ret='<SELECT NAME="periode[]" SIZE="12" multiple>';
|
||
for ( $i = 0; $i < $Max;$i++) {
|
||
$l_line=pg_fetch_array($Res,$i);
|
||
$ret.=sprintf('<OPTION VALUE="%s">%s - %s',$l_line['p_id']
|
||
,$l_line['p_start']
|
||
,$l_line['p_end']);
|
||
|
||
}
|
||
$ret.="</SELECT>";
|
||
return $ret;
|
||
}
|
||
|
||
/*!
|
||
* \brief Generate the form for the periode
|
||
*
|
||
*
|
||
* \param $p_cn connexion
|
||
* \param $p_default default periode
|
||
* \param $p_type the type of the periode OPEN CLOSE NOTCENTRALIZED or ALL
|
||
* \param $p_suff the suffix of the name
|
||
*
|
||
* \return string containing html code for the HTML
|
||
*
|
||
*
|
||
*
|
||
*/
|
||
function FormPeriode($p_cn,$l_default=0,$p_type=OPEN,$p_suff="")
|
||
{
|
||
switch ($p_type) {
|
||
case CLOSED:
|
||
$sql_closed="where p_closed=true and p_central = false ";
|
||
break;
|
||
case OPEN:
|
||
$sql_closed="where p_closed=false";
|
||
break;
|
||
case NOTCENTRALIZED:
|
||
$sql_closed="where p_closed=true and p_central = false ";
|
||
break;
|
||
case ALL:
|
||
$sql_closed="";
|
||
break;
|
||
default:
|
||
error("invalide p_type in 'preference.php'#__LINE__");
|
||
}
|
||
$sql="select p_id,to_char(p_start,'DD.MM.YYYY') as p_start_string,
|
||
to_char(p_end,'DD.MM.YYYY') as p_end_string
|
||
from parm_periode
|
||
$sql_closed
|
||
order by p_start,p_end";
|
||
|
||
$Res=ExecSql($p_cn,$sql);
|
||
$Max=pg_NumRows($Res);
|
||
if ( $Max == 0 ) return null;
|
||
$ret='<SELECT NAME="periode'.$p_suff.'">';
|
||
for ( $i = 0; $i < $Max;$i++) {
|
||
$l_line=pg_fetch_array($Res,$i);
|
||
if ( $l_default == $l_line['p_id'] )
|
||
$sel="SELECTED";
|
||
else
|
||
$sel="";
|
||
|
||
$ret.=sprintf('<OPTION VALUE="%s" %s>%s - %s',$l_line['p_id']
|
||
,$sel
|
||
,$l_line['p_start_string']
|
||
,$l_line['p_end_string']);
|
||
|
||
}
|
||
$ret.="</SELECT>";
|
||
return $ret;
|
||
}
|
||
/*! get_periode
|
||
* \brief Give the start & end date of a periode
|
||
*
|
||
* \param p_connection
|
||
* \param p_periode
|
||
*
|
||
* \return array containing the start date & the end date
|
||
*
|
||
*
|
||
*/
|
||
function get_periode($p_cn,$p_periode)
|
||
{
|
||
$sql="select to_char(p_start,'DD.MM.YYYY') as p_start,
|
||
to_char(p_end,'DD.MM.YYYY') as p_end
|
||
from parm_periode
|
||
where p_id=".$p_periode;
|
||
$Res=ExecSql($p_cn,$sql);
|
||
if ( pg_NumRows($Res) == 0) return null;
|
||
return pg_fetch_array($Res,0);
|
||
|
||
}
|
||
/*!
|
||
* \brief get the status of a periode
|
||
*
|
||
* \param $p_cn database connex
|
||
* \param periode id
|
||
*
|
||
* \return 't' if closed otherwise 'f'
|
||
*
|
||
*
|
||
*/
|
||
function PeriodeClosed($p_cn,$p_periode)
|
||
{
|
||
$sql="select p_closed
|
||
from parm_periode
|
||
where p_id=".$p_periode;
|
||
$Res=ExecSql($p_cn,$sql);
|
||
if ( pg_NumRows($Res) == 0) return null;
|
||
$l_line=pg_fetch_array($Res,0);
|
||
return $l_line['p_closed'];
|
||
|
||
}
|
||
/*!
|
||
* \brief get the exercice of a periode
|
||
*
|
||
*
|
||
* \param $p_cn connection
|
||
* \param $p_periode periode
|
||
*
|
||
* \return Exercice of the periode
|
||
*
|
||
*
|
||
*/
|
||
function get_exercice($p_cn,$p_periode)
|
||
{
|
||
$Res=ExecSql($p_cn,"select p_exercice from parm_periode".
|
||
" where p_id=$p_periode");
|
||
if ( pg_NumRows($Res) == 0 ) return "";
|
||
$line=pg_fetch_array($Res,0);
|
||
return $line['p_exercice'];
|
||
}
|
||
/*!
|
||
* \brief Show all the currency encoded
|
||
*
|
||
* \param $p_cn database connextion
|
||
*
|
||
* \return nothing
|
||
*
|
||
*
|
||
*/
|
||
function ShowDevise($p_cn)
|
||
{
|
||
echo "<h2 class=\"info\"> Devises </H2>";
|
||
echo '<TABLE ALIGN="CENTER">';
|
||
echo "<TR>";
|
||
echo '<TH> CODE </TH>';
|
||
echo '<TH> Valeur <BR>(par rapport <20> l\'euro) </TH>';
|
||
echo "</TR>";
|
||
|
||
$Res=ExecSql($p_cn,"select pm_id,pm_code,pm_rate from parm_money order by pm_code");
|
||
$Max=pg_NumRows($Res);
|
||
|
||
for ($i=0;$i<$Max;$i++) {
|
||
$l_line=pg_fetch_array($Res,$i);
|
||
echo '<TR>';
|
||
echo '<TD>'.$l_line['pm_code'].'</TD>';
|
||
$l_rate=sprintf("% 10.6f",$l_line['pm_rate']);
|
||
echo '<TD ALIGN="RIGHT">'.$l_rate.'</TD>';
|
||
echo "<TD class=\"mtitle\"> <A class=\"mtitle\" HREF=\"parametre.php?p_mid=$l_line[pm_id]&p_action=change&p_code=$l_line[pm_code]&p_rate=$l_line[pm_rate]\">Change</A></TD>";
|
||
echo "<TD class=\"mtitle\"> <A class=\"mtitle\" HREF=\"parametre.php?p_mid=$l_line[pm_id]&p_action=delete&p_code=$l_line[pm_code]\">Efface</A></TD>";
|
||
echo '</TR>';
|
||
|
||
}
|
||
echo '<TR> <FORM ACTION="parametre.php" METHOD="POST">';
|
||
echo '<TD> <INPUT TYPE="text" NAME="p_devise"></TD>';
|
||
echo '<TD> <INPUT TYPE="text" NAME="p_rate"></TD>';
|
||
echo '<TD> <INPUT TYPE="SUBMIT" NAME="action" Value="Ajout"</TD>';
|
||
echo '</FORM></TR>';
|
||
echo '</TABLE>';
|
||
}
|
||
|
||
?>
|