* * This program 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. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id: index.php,v 1.1 2005/08/22 17:10:46 rodolphe Exp $ * $Source: /srv/cvs/sources/dolibarr/dolibarr/htdocs/projet/activity/index.php,v $ * */ /** \file htdocs/projet/index.php \ingroup projet \brief Page d'accueil du module projet \version $Revision: 1.1 $ */ require("./pre.inc.php"); if (!$user->rights->projet->lire) accessforbidden(); /* * Sécurité accés client */ if ($user->societe_id > 0) { $action = ''; $socidp = $user->societe_id; } llxHeader("",$langs->trans("Activity")); $now = time(); print_titre($langs->trans("Activity")); print ''; print '
'; /* * * Affichage de la liste des projets * */ print ''; print ''; print_liste_field_titre($langs->trans("Project"),"index.php","s.nom","","","",$sortfield); print ''; print "\n"; $sql = "SELECT p.title, p.rowid, count(t.rowid)"; $sql .= " FROM ".MAIN_DB_PREFIX."projet as p"; $sql .= " , ".MAIN_DB_PREFIX."projet_task as t"; $sql .= " WHERE t.fk_projet = p.rowid"; $sql .= " GROUP BY p.rowid"; $var=true; $resql = $db->query($sql); if ( $resql ) { $num = $db->num_rows($resql); $i = 0; while ($i < $num) { $row = $db->fetch_row( $resql); $var=!$var; print ""; print ''; print ''; print "\n"; $i++; } $db->free($resql); } else { dolibarr_print_error($db); } print "
'.$langs->trans("NbOpenTasks").'
'.$row[0].''.$row[2].'
"; print '
'; /* Affichage de la liste des projets du mois */ print ''; print ''; print ''; print ''; print "\n"; $sql = "SELECT p.title, p.rowid, sum(tt.task_duration)"; $sql .= " FROM ".MAIN_DB_PREFIX."projet as p"; $sql .= " , ".MAIN_DB_PREFIX."projet_task as t"; $sql .= " , ".MAIN_DB_PREFIX."projet_task_time as tt"; $sql .= " WHERE t.fk_projet = p.rowid"; $sql .= " AND tt.fk_task = t.rowid"; $sql .= " AND week(task_date) = ".strftime("%W",time()); $sql .= " GROUP BY p.rowid"; $var=true; $resql = $db->query($sql); if ( $resql ) { $num = $db->num_rows($resql); $i = 0; while ($i < $num) { $row = $db->fetch_row( $resql); $var=!$var; print ""; print ''; print ''; print "\n"; $i++; } $db->free($resql); } else { dolibarr_print_error($db); } print "
Activité sur les projets cette semaineTemps
'.$row[0].''.$row[2].'

"; /* Affichage de la liste des projets du mois */ print ''; print ''; print ''; print ''; print "\n"; $sql = "SELECT p.title, p.rowid, sum(tt.task_duration)"; $sql .= " FROM ".MAIN_DB_PREFIX."projet as p"; $sql .= " , ".MAIN_DB_PREFIX."projet_task as t"; $sql .= " , ".MAIN_DB_PREFIX."projet_task_time as tt"; $sql .= " WHERE t.fk_projet = p.rowid"; $sql .= " AND tt.fk_task = t.rowid"; $sql .= " AND month(task_date) = ".strftime("%m",$now); $sql .= " GROUP BY p.rowid"; $var=true; $resql = $db->query($sql); if ( $resql ) { $num = $db->num_rows($resql); $i = 0; while ($i < $num) { $row = $db->fetch_row( $resql); $var=!$var; print ""; print ''; print ''; print "\n"; $i++; } $db->free($resql); } else { dolibarr_print_error($db); } print "
'.$langs->trans("Project").' ce mois : '.strftime("%B %Y", $now).'Nb heures
'.$row[0].''.$row[2].'
"; /* Affichage de la liste des projets du mois */ print '
'; print ''; print ''; print ''; print "\n"; $sql = "SELECT p.title, p.rowid, sum(tt.task_duration)"; $sql .= " FROM ".MAIN_DB_PREFIX."projet as p"; $sql .= " , ".MAIN_DB_PREFIX."projet_task as t"; $sql .= " , ".MAIN_DB_PREFIX."projet_task_time as tt"; $sql .= " WHERE t.fk_projet = p.rowid"; $sql .= " AND tt.fk_task = t.rowid"; $sql .= " AND YEAR(task_date) = ".strftime("%Y",$now); $sql .= " GROUP BY p.rowid"; $var=true; $resql = $db->query($sql); if ( $resql ) { $num = $db->num_rows($resql); $i = 0; while ($i < $num) { $row = $db->fetch_row( $resql); $var=!$var; print ""; print ''; print ''; print "\n"; $i++; } $db->free($resql); } else { dolibarr_print_error($db); } print "
'.$langs->trans("Project").' cette année : '.strftime("%Y", $now).'Nb heures
'.$row[0].''.$row[2].'
"; print '
'; $db->close(); llxFooter("Dernière modification $Date: 2005/08/22 17:10:46 $ révision $Revision: 1.1 $"); ?>