altocompta/include/class_calendar.php
Dany De Bontridder f22f87f5b2 Merged revisions 2977-2992 via svnmerge from
file:///home/developper/svn/phpcompta/branches/rel500

........
  r2980 | danydb | 2010-03-14 12:34:36 +0100 (Sun, 14 Mar 2010) | 2 lines
  
  Fix Bug : Update date_limit, incorrect date when date is null
........
  r2981 | danydb | 2010-03-14 12:54:18 +0100 (Sun, 14 Mar 2010) | 1 line
  
  Class Database : add new value $this->sql and $this->array
........
  r2982 | danydb | 2010-03-14 12:55:18 +0100 (Sun, 14 Mar 2010) | 1 line
  
  Fix Bug : when giving a bank name the saldo is not display
........
  r2983 | danydb | 2010-03-14 12:55:53 +0100 (Sun, 14 Mar 2010) | 1 line
  
  Fix Bug : restore cannot apply a path on a template
........
  r2984 | danydb | 2010-03-14 12:56:20 +0100 (Sun, 14 Mar 2010) | 1 line
  
  code cleaning remove useless comment
........
  r2985 | danydb | 2010-03-16 20:50:46 +0100 (Tue, 16 Mar 2010) | 2 lines
  
  Bug in the import : the counter is incremented twice
........
  r2986 | danydb | 2010-03-22 13:57:03 +0100 (Mon, 22 Mar 2010) | 1 line
  
  Update DUTCH message.po
........
  r2987 | danydb | 2010-03-22 21:21:49 +0100 (Mon, 22 Mar 2010) | 2 lines
  
  Fix bug : the month in the calendar always has 31 days
........
  r2988 | danydb | 2010-03-24 21:32:22 +0100 (Wed, 24 Mar 2010) | 2 lines
  
  Change : when entering a quick code in a financial ledger, the label is updated and not the description
........
  r2989 | danydb | 2010-03-24 22:01:06 +0100 (Wed, 24 Mar 2010) | 3 lines
  
  Fix Bug : cannot get operation from COMMERCIAL->FOURNISSEUR
........
  r2990 | danydb | 2010-04-05 13:56:33 +0200 (Mon, 05 Apr 2010) | 2 lines
  
  Improve Database : new function exist_schema
........
  r2991 | danydb | 2010-04-07 13:32:56 +0200 (Wed, 07 Apr 2010) | 2 lines
  
  Fix : Bug forecats periode is always equal to 0, so we lose the modifications
........
2010-04-08 14:14:16 +00:00

140 lines
5 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 Display the calendar
*/
class Calendar {
var $current_date;
private static $nb_day=array(31,28,31,30,31,30,31,31,30,31,30,31);
function __construct() {
/* get the current month */
$this->current_date=getdate();
$this->month=$this->current_date['mon'];
$this->day=self::$nb_day[$this->month-1];
$this->year=$this->current_date['year'];
if ( $this->year % 4 == 0 && $this->month=2)
$this->day=29;
}
/*!\brief fill the array given as parameter with the data from action_gestion
*\param $p_array array of the date of the month
*/
function fill_from_action(&$p_array) {
$cn=new Database(dossier::id());
$sql="select ag_id,substr(ag_title,0,20) as ag_title_fmt,to_char(ag_timestamp,'DD')::integer as ag_timestamp_day ".
" from action_gestion ".
" where ".
" to_char(ag_timestamp,'MM')::integer=$1 ".
" and to_char(ag_timestamp,'YYYY')::integer=$2 ".
" and ag_cal='C' and ag_owner=$3";
$array=$cn->get_array($sql,array($this->month,$this->year,$_SESSION['g_user']));
for ($i=0;$i<count($array);$i++) {
$ind=$array[$i]['ag_timestamp_day'];
$p_array[$ind]='<A HREF="commercial.php?'.dossier::get().'&p_action=suivi_courrier&sa=detail&ag_id='.$array[$i]['ag_id'].'">';
$p_array[$ind].="<span class=\"day\">".h($array[$i]['ag_title_fmt']).'</span>';
$p_array[$ind].="</A>";
}
}
/*!\brief fill the array given as parameter with the data from todo
*\param $p_array array of the date of the month
*/
function fill_from_todo(&$p_array) {
$cn=new Database(dossier::id());
$sql="select tl_id,substr(tl_title,0,20) as tl_title_fmt,to_char(tl_date,'DD')::integer as tl_date_day ".
" from todo_list ".
" where ".
" to_char(tl_date,'MM')::integer=$1 ".
" and to_char(tl_date,'YYYY')::integer=$2 ".
" and use_login=$3";
$array=$cn->get_array($sql,array($this->month,$this->year,$_SESSION['g_user']));
for ($i=0;$i<count($array);$i++) {
$ind=$array[$i]['tl_date_day'];
$p_array[$ind].="<span class=\"todo\">".h($array[$i]['tl_title_fmt']).'</span>';
}
}
/*!\brief display a calendar after a call to Calendar::fill
*\param none
*\return HTML String
*/
function display() {
/* day */
$cell=array();
for ($i=0;$i<42;$i++) {
$cell[$i]="";
}
$this->set_month_year();
/* weekday */
$week=array(_('Dimanche'),_('Lundi'),_('Mardi'),_('Mercredi'),_('Jeudi'),_('Vendredi'),_('Samedi'));
$this->fill_from_action($cell);
$this->fill_from_todo($cell);
$wMonth=new ISelect('per');
$cn=new Database(dossier::id());
$wMonth->value=$cn->make_array("select p_id,to_char(p_start,'MM/YYYY') from parm_periode order by p_start");
$wMonth->selected=$this->default_periode;
$wMonth->javascript="onchange=change_month(this)";
$wMonth->set_attribute('gDossier',dossier::id());
$wMonth->set_attribute('phpsessid',$_REQUEST['PHPSESSID']);
$month_year=$wMonth->input().$wMonth->get_js_attr();
ob_start();
require_once('template/calendar.php');
$ret=ob_get_contents();
ob_end_clean();
return $ret;
}
/**
*@brief set correctly the month and the year with the default_periode
*/
function set_month_year() {
$cn=new Database(dossier::id());
$array=$cn->get_array("select to_char(p_start,'MM') as month, to_char(p_start,'YYYY') as year ".
" from parm_periode where p_id=$1",array($this->default_periode));
$this->month=$array[0]['month'];
$this->year=$array[0]['year'];
$this->day=self::$nb_day[$this->month-1];
if ( $this->year % 4 == 0 && $this->month=2)
$this->day=29;
}
/**
*@brief get the periode from the preference of the current user
* change the value of default_periode
*@return $this->default_periode
*/
function get_preference() {
$cn=new Database(dossier::id());
$user=new User($cn);
$this->default_periode=$user->get_periode();
return $this->default_periode;
}
/**
*@brief set the periode to the parameter, change the value of $this->default_periode
* there is no check on the periode
*/
function set_periode($p_per) {
$this->default_periode=$p_per;
}
}