p_id=$p_id;
$this->cn=$p_cn;
}
function set_jrn($p_jrn)
{
$this->jrn_def_id=$p_jrn;
}
function set_periode($pp_id)
{
$this->p_id=$pp_id;
}
/*!\brief return the p_id of the start and the end of the exercice
*into an array
*\param $p_exercice
*\return array [start]=>,[end]=>
*/
function limit_year($p_exercice)
{
$sql_start="select p_id from parm_periode where p_exercice=$1 order by p_start ASC limit 1";
$start=$this->cn->get_value($sql_start,array($p_exercice));
$sql_end="select p_id from parm_periode where p_exercice=$1 order by p_end DESC limit 1";
$end=$this->cn->get_value($sql_end,array($p_exercice));
return array("start"=>$start,"end"=>$end);
}
/*!\brief check if a periode is closed. If jrn_def_id is set to a no zero value then check only for this ledger
*\return 1 is the periode is closed otherwise return 0
*/
function is_closed()
{
if ( $this->jrn_def_id != 0 )
$sql="select status from jrn_periode ".
" where jrn_def_id=".$this->jrn_def_id.
" and p_id =".$this->p_id;
else
$sql="select p_closed as status from parm_periode ".
" where ".
" p_id =".$this->p_id;
$res=$this->cn->exec_sql($sql);
$status=Database::fetch_result($res,0,0);
if ( $status == 'CL' || $status=='t' ||$status=='CE')
return 1;
return 0;
}
function is_open()
{
/* if jrn_Def_id == 0 then we check the global otherwise we check
a ledger */
if ( $this->jrn_def_id != 0 )
$sql="select status from jrn_periode ".
" where jrn_def_id=".$this->jrn_def_id.
" and p_id =".$this->p_id;
else
$sql="select p_closed as status from parm_periode ".
" where ".
" p_id =".$this->p_id;
$res=$this->cn->exec_sql($sql);
$status=Database::fetch_result($res,0,0);
if ( $status == 'OP' || $status=='f' )
return 1;
return 0;
}
function is_centralized()
{
if ( $this->jrn_def_id != 0 )
$sql="select status from jrn_periode ".
" where jrn_def_id=".$this->jrn_def_id.
" and p_id =".$this->p_id;
else
$sql="select p_centralized as status from parm_periode ".
" where ".
" p_id =".$this->p_id;
$res=$this->cn->exec_sql($sql);
$status=Database::fetch_result($res,0,0);
if ( $status == 'CE' || $status=='t' )
return 1;
return 0;
}
function reopen()
{
if ( $this->jrn_def_id == 0 )
{
$this->cn->exec_sql("update parm_periode set p_closed='f',p_central='f' where p_id=$1",
array($_GET['p_per']));
$this->cn->exec_sql("update jrn_periode set status='OP' ".
" where p_id = ".$this->p_id);
return;
}
else
{
$this->cn->exec_sql("update jrn_periode set status='OP' ".
" where jrn_def_id=".$this->jrn_def_id." and ".
" p_id = ".$this->p_id);
/* if one ledger is open then the periode is open */
$this->cn->exec_sql("update parm_periode set p_closed=false where p_id=".$this->p_id);
return;
}
}
function close()
{
if ( $this->jrn_def_id == 0 )
{
$this->cn->exec_sql("update parm_periode set p_closed=true where p_id=".
$this->p_id);
$this->cn->exec_sql("update jrn_periode set status='CL' ".
" where p_id = ".$this->p_id);
return;
}
else
{
$this->cn->exec_sql("update jrn_periode set status='CL' ".
" where jrn_def_id=".$this->jrn_def_id." and ".
" p_id = ".$this->p_id);
/* if all ledgers have this periode closed then synchro with
the table parm_periode
*/
$nJrn=$this->cn->count_sql( "select * from jrn_periode where ".
" p_id=".$this->p_id);
$nJrnPeriode=$this->cn->count_sql( "select * from jrn_periode where ".
" p_id=".$this->p_id." and status='CL'");
if ( $nJrnPeriode==$nJrn)
$this->cn->exec_sql("update parm_periode set p_closed=true where p_id=".$this->p_id);
return;
}
}
function centralized()
{
if ( $this->jrn_def_id == 0 )
{
$this->cn->exec_sql("update parm_periode set p_central=true");
return;
}
else
{
$this->cn->exec_sql("update jrn_periode set status='CE' ".
" where ".
" p_id = ".$this->p_id);
return;
}
}
/*!
* \brief Display all the periode and their status
*
*/
function display_form_periode()
{
$str_dossier=dossier::get();
if ( $this->jrn_def_id==0 )
{
$Res=$this->cn->exec_sql("select p_id,to_char(p_start,'DD.MM.YYYY') as date_start,to_char(p_end,'DD.MM.YYYY') as date_end,p_central,p_closed,p_exercice,
(select count(jr_id) as count_op from jrn where jr_tech_per = p_id) as count_op
from parm_periode
order by p_start,p_end");
$Max=Database::num_row($Res);
echo '
';
$but=new IButton('show_per_add','Ajout d\'une période');
$but->javascript="$('periode_add_div').show();";
echo $but->input();
echo '';
echo HtmlInput::title_box("Ajout d'une période","periode_add_div","hide");
echo '
';
echo '
';
echo create_script("$('periode_add_div').hide();new Draggable('periode_add_div',{starteffect:function()
{
new Effect.Highlight(obj.id,{scroll:window,queue:'end'});
}}
);");
}
else
{
$Res=$this->cn->exec_sql("select p_id,to_char(p_start,'DD.MM.YYYY') as date_start,to_char(p_end,'DD.MM.YYYY') as date_end,status,p_exercice
from parm_periode join jrn_periode using (p_id) where jrn_def_id=".$this->jrn_def_id."
order by p_start,p_end");
$Max=Database::num_row($Res);
$r=$this->cn->exec_sql('select jrn_Def_name from jrn_Def where jrn_Def_id='.
$this->jrn_def_id);
$jrn_name=Database::fetch_result($r,0,0);
echo ' Journal '.$jrn_name.'
';
echo '';
}
}
function insert($p_date_start,$p_date_end,$p_exercice)
{
try
{
if (isDate($p_date_start) == null ||
isDate($p_date_end) == null ||
strlen (trim($p_exercice)) == 0 ||
(string) $p_exercice != (string)(int) $p_exercice
||$p_exercice < COMPTA_MIN_YEAR || $p_exercice > COMPTA_MAX_YEAR)
{
throw new Exception ("Paramètre invalide");
}
$p_id=$this->cn->get_next_seq('s_periode');
$sql=sprintf(" insert into parm_periode(p_id,p_start,p_end,p_closed,p_exercice)".
"values (%d,to_date('%s','DD.MM.YYYY'),to_date('%s','DD.MM.YYYY')".
",'f','%s')",
$p_id,
$p_date_start,
$p_date_end,
$p_exercice);
$this->cn->start();
$Res=$this->cn->exec_sql($sql);
$Res=$this->cn->exec_sql("insert into jrn_periode (jrn_def_id,p_id,status) ".
"select jrn_def_id,$p_id,'OP' from jrn_def");
$this->cn->commit();
}
catch (Exception $e)
{
$this->cn->rollback();
return 1;
}
return 0;
}
/*!\brief load data from database
*\return 0 on success and -1 on error
*/
function load()
{
if ($this->p_id == '') $this->p_id=-1;
$row=$this->cn->get_array("select p_start,p_end,p_exercice,p_closed,p_central from parm_periode where p_id=$1",
array($this->p_id));
if ($row == null ) return -1;
$this->p_start=$row[0]['p_start'];
$this->p_end=$row[0]['p_end'];
$this->p_exercice=$row[0]['p_exercice'];
$this->p_closed=$row[0]['p_closed'];
$this->p_central=$row[0]['p_central'];
return 0;
}
/*!\brief return the max and the min periode of the exercice given
*in parameter
*\param $p_exercice is the exercice
*\return an array of Periode object
*/
function get_limit($p_exercice)
{
$max=$this->cn->get_value("select p_id from parm_periode where p_exercice=$1 order by p_start asc limit 1",array($p_exercice));
$min=$this->cn->get_value("select p_id from parm_periode where p_exercice=$1 order by p_start desc limit 1",array($p_exercice));
$rMax=new Periode($this->cn);
$rMax->p_id=$max;
if ( $rMax->load() ) throw new Exception('Periode n\'existe pas');
$rMin=new Periode($this->cn);
$rMin->p_id=$min;
if ( $rMin->load() ) throw new Exception('Periode n\'existe pas');
return array($rMax,$rMin);
}
/*!
* \brief Give the start & end date of a periode
* \param $p_periode is the periode id, if omitted the value is the current object
* \return array containing the start date & the end date, index are p_start and p_end or NULL if
* nothing is found
\verbatim
$ret['p_start']=>'01.01.2009'
$ret['p_end']=>'31.01.2009'
\endverbatim
*/
public function get_date_limit($p_periode = 0)
{
if ( $p_periode == 0 ) $p_periode=$this->p_id;
$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=$1";
$Res=$this->cn->exec_sql($sql,array($p_periode));
if ( Database::num_row($Res) == 0) return null;
return Database::fetch_array($Res,0);
}
/*!\brief return the first day of periode
*the this->p_id must be set
*\return a string with the date (DD.MM.YYYY)
*/
public function first_day($p=0)
{
if ($p==0) $p=$this->p_id;
list($p_start,$p_end)=$this->get_date_limit($p);
return $p_start;
}
/*!\brief return the last day of periode
*the this->p_id must be set
*\return a string with the date (DD.MM.YYYY)
*/
public function last_day($p=0)
{
if ($p==0) $p=$this->p_id;
list($p_start,$p_end)=$this->get_date_limit($p);
return $p_end;
}
function get_exercice($p_id=0)
{
if ( $p_id == 0 ) $p_id=$this->p_id;
$sql="select p_exercice from parm_periode where p_id=".$p_id;
$Res=$this->cn->exec_sql($sql);
if ( Database::num_row($Res) == 0) return null;
return Database::fetch_result($Res,0,0);
}
/*!\brief retrieve the periode thanks the date_end
*\param $p_date format DD.MM.YYYY
* \return the periode id
*\exception if not periode is found or if more than one periode is found
*/
function find_periode($p_date)
{
$sql="select p_id from parm_periode where p_start <= to_date($1,'DD.MM.YYYY') and p_end >= to_date($1,'DD.MM.YYYY') ";
$ret=$this->cn->exec_sql($sql,array($p_date));
$nb_periode=Database::num_row($ret);
if ( $nb_periode == 0 )
throw (new Exception('Aucune période trouvée',101));
if ( $nb_periode > 1 )
throw (new Exception("Trop de périodes trouvées $nb_periode pour $p_date",100));
$per=Database::fetch_result($ret,0);
$this->p_id=$per;
return $per;
}
/**
*add a exerice of 13 periode
*/
function insert_exercice($p_exercice,$nb_periode)
{
try
{
if ( $nb_periode != 12 && $nb_periode != 13) throw new Exception ('Nombre de période incorrectes');
$this->cn->start();
for ($i=1;$i < 12;$i++)
{
$date_start=sprintf('01.%02d.%d',$i,$p_exercice);
$date_end=$this->cn->get_value("select to_char(to_date('$date_start','DD.MM.YYYY')+interval '1 month'-interval '1 day','DD.MM.YYYY')");
if ( $this->insert($date_start,$date_end,$p_exercice) != 0)
{
throw new Exception('Erreur insertion période');
}
}
if ( $nb_periode==12 && $this->insert('01.12.'.$p_exercice,'31.12.'.$p_exercice,$p_exercice) != 0 )
{
throw new Exception('Erreur insertion période');
}
if ( $nb_periode==13)
{
if ($this->insert('01.12.'.$p_exercice,'30.12.'.$p_exercice,$p_exercice) != 0 ) throw new Exception('Erreur insertion période');
if ($this->insert('31.12.'.$p_exercice,'31.12.'.$p_exercice,$p_exercice) != 0 ) throw new Exception('Erreur insertion période');
}
$this->cn->commit();
}
catch (Exception $e)
{
$this->cn->rollback();
}
}
static function test_me()
{
$cn=new Database(dossier::id());
$obj=new Periode($cn);
$obj->set_jrn(1);
$obj->display_form_periode();
}
}