* Copyright (C) 2004-2006 Laurent Destailleur * * 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/tasks/fiche.php \ingroup projet \brief Fiche tâches d'un projet \version $Revision$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/project.lib.php"); $user->getrights('projet'); if (!$user->rights->projet->lire) accessforbidden(); /* * Sécurité accés client */ $projetid=''; if ($_GET["id"]) { $projetid=$_GET["id"]; } if ($projetid == '') accessforbidden(); if ($user->societe_id > 0) { $socid = $user->societe_id; } // Protection restriction commercial if ($projetid && !$user->rights->commercial->client->voir) { $sql = "SELECT p.rowid, p.fk_soc"; $sql .= " FROM ".MAIN_DB_PREFIX."societe_commerciaux as sc, ".MAIN_DB_PREFIX."projet as p"; $sql .= " WHERE p.rowid = ".$projetid; if (!$user->rights->commercial->client->voir) $sql .= " AND sc.fk_soc = p.fk_soc AND fk_user = ".$user->id; if ($socid) $sql .= " AND p.fk_soc = ".$socid; if ( $db->query($sql) ) { if ( $db->num_rows() == 0) accessforbidden(); } } Function PLines(&$inc, $parent, $lines, &$level, $tasksrole) { $form = new Form($db); // $db est null ici mais inutile pour la fonction select_date() global $user, $bc, $langs; for ($i = 0 ; $i < sizeof($lines) ; $i++) { if ($parent == 0) $level = 0; if ($lines[$i]->fk_parent == $parent) { $var = !$var; print "\n"; print "".$lines[$i]->id.""; print ""; for ($k = 0 ; $k < $level ; $k++) { print "   "; } print ''.$lines[$i]->title."\n"; $heure = intval($lines[$i]->duration); $minutes = (($lines[$i]->duration - $heure) * 60); $minutes = substr("00"."$minutes", -2); print ''.$heure." h ".$minutes."\n"; // TODO améliorer le test if ($tasksrole[$lines[$i]->id] == 'admin') { print ''; print ' '; print "\n"; print $form->select_date('',$lines[$i]->id,'','','',"addtime"); print ''; } else { print ' '; } print "\n"; $inc++; $level++; PLines($inc, $lines[$i]->id, $lines, $level, $tasksrole); $level--; } else { //$level--; } } } Function PLineSelect(&$inc, $parent, $lines, &$level) { for ($i = 0 ; $i < sizeof($lines) ; $i++) { if ($parent == 0) $level = 0; if ($lines[$i]->fk_parent == $parent) { $var = !$var; print '\n"; $inc++; $level++; PLineSelect($inc, $lines[$i]->id, $lines, $level); $level--; } } } if ($_POST["action"] == 'createtask' && $user->rights->projet->creer) { $pro = new Project($db); $result = $pro->fetch($_GET["id"]); if ($result == 0) { $pro->CreateTask($user, $_POST["task_name"], $_POST["task_parent"]); Header("Location:fiche.php?id=".$pro->id); } } if ($_POST["action"] == 'addtime' && $user->rights->projet->creer) { $pro = new Project($db); $result = $pro->fetch($_GET["id"]); if ($result == 0) { foreach ($_POST as $key => $post) { //$pro->CreateTask($user, $_POST["task_name"]); if (substr($key,0,4) == 'task') { if ($post > 0) { $id = ereg_replace("task","",$key); $date = mktime(12,12,12,$_POST["$id"."month"],$_POST["$id"."day"],$_POST["$id"."year"]); $pro->TaskAddTime($user, $id , $post, $date); } } } Header("Location:fiche.php?id=".$pro->id); exit; } } llxHeader("",$langs->trans("Tasks"),"Tasks"); if ($_GET["action"] == 'create' && $user->rights->projet->creer) { print_titre($langs->trans("NewTask")); if ($mesg) print $mesg; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print '
'.$langs->trans("Ref").'
'.$langs->trans("Label").'
'.$langs->trans("Company").''; $societe = new Societe($db); $societe->fetch($_GET["socid"]); print $societe->getNomUrl(1); print '
'.$langs->trans("Author").''.$user->fullname.'
'; print '
'; } else { /* * Fiche projet en mode visu * */ $projet = new Project($db); $projet->fetch($_GET["id"]); $projet->societe->fetch($projet->societe->id); $head=project_prepare_head($projet); dolibarr_fiche_head($head, 'tasks', $langs->trans("Project")); print '
'; print ''; print ''; print ''; print ''; print ''; $tasksrole=$projet->getTasksRoleForUser($user); $tasksarray=$projet->getTasksArray(); /* Nouvelle tâche */ print ''; print '
'.$langs->trans("Ref").''.$projet->ref.'
'.$langs->trans("Label").''.$projet->title.'
'.$langs->trans("Company").''.$projet->societe->getNomUrl(1).'
'.$langs->trans("NewTask").''; print ' '; print ' '; print ''; print '

'; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; PLines($j, 0, $tasksarray, $level, $tasksrole); print ''; print "
'.$langs->trans("ID").''.$langs->trans("Task").''.$langs->trans("DurationEffective").''.$langs->trans("AddDuration").'
"; print ''; } $db->close(); llxFooter('$Date$ - $Revision$'); ?>