diff --git a/htdocs/projet/activity/index.php b/htdocs/projet/activity/index.php new file mode 100644 index 00000000000..ea244d33a47 --- /dev/null +++ b/htdocs/projet/activity/index.php @@ -0,0 +1,230 @@ + + * + * 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$ + * $Source$ + * + */ + +/** + \file htdocs/projet/index.php + \ingroup projet + \brief Page d'accueil du module projet + \version $Revision$ +*/ + +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$ révision $Revision$"); +?> diff --git a/htdocs/projet/activity/pre.inc.php b/htdocs/projet/activity/pre.inc.php new file mode 100644 index 00000000000..f0dea53035b --- /dev/null +++ b/htdocs/projet/activity/pre.inc.php @@ -0,0 +1,61 @@ + + * + * 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$ + * $Source$ + * + */ + +/*! + \file htdocs/projet/pre.inc.php + \ingroup projet + \brief Fichier de gestion du menu gauche du module projet + \version $Revision$ +*/ + +require ("../../main.inc.php"); +require_once(DOL_DOCUMENT_ROOT."/project.class.php"); +require_once(DOL_DOCUMENT_ROOT."/task.class.php"); + +$langs->load("projects"); +$langs->load("companies"); + +$user->getrights('projet'); + +function llxHeader($head = "", $title="", $help_url='') +{ + global $langs; + + top_menu($head, $title); + + $menu = new Menu(); + + $menu->add(DOL_URL_ROOT."/comm/clients.php", $langs->trans("Customers")); + + $menu->add(DOL_URL_ROOT."/projet/", $langs->trans("Projects")); + $menu->add_submenu(DOL_URL_ROOT."/projet/liste.php", $langs->trans("List")); + + $menu->add(DOL_URL_ROOT."/projet/tasks/", $langs->trans("Tasks")); + $menu->add_submenu(DOL_URL_ROOT."/projet/tasks/mytasks.php", $langs->trans("Mytasks")); + + $menu->add(DOL_URL_ROOT."/projet/activity/", $langs->trans("Activity")); + $menu->add_submenu(DOL_URL_ROOT."/projet/activity/myactivity.php", $langs->trans("Myactivity")); + + left_menu($menu->liste, $help_url); +} + +?>