* Copyright (C) 2006-2015 Laurent Destailleur * Copyright (C) 2010-2012 Regis Houssin * Copyright (C) 2011 Juanjo Menent * * 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 3 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, see . */ /** * \file htdocs/projet/tasks/time.php * \ingroup project * \brief Page to add new time spent on a task */ require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php'; require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php'; $langs->load('projects'); $id=GETPOST('id','int'); $ref=GETPOST('ref','alpha'); $action=GETPOST('action','alpha'); $confirm=GETPOST('confirm','alpha'); $withproject=GETPOST('withproject','int'); $project_ref=GETPOST('project_ref','alpha'); // Security check $socid=0; if ($user->societe_id > 0) $socid = $user->societe_id; if (!$user->rights->projet->lire) accessforbidden(); $object = new Task($db); $projectstatic = new Project($db); /* * Actions */ if ($action == 'addtimespent' && $user->rights->projet->creer) { $error=0; $timespent_durationhour = GETPOST('timespent_durationhour','int'); $timespent_durationmin = GETPOST('timespent_durationmin','int'); if (empty($timespent_durationhour) && empty($timespent_durationmin)) { setEventMessage($langs->trans('ErrorFieldRequired',$langs->transnoentitiesnoconv("Duration")),'errors'); $error++; } if (empty($_POST["userid"])) { $langs->load("errors"); setEventMessage($langs->trans('ErrorUserNotAssignedToTask'),'errors'); $error++; } if (! $error) { $object->fetch($id, $ref); $object->fetch_projet(); if (empty($object->projet->statut)) { setEventMessage($langs->trans("ProjectMustBeValidatedFirst"),'errors'); $error++; } else { $object->timespent_note = $_POST["timespent_note"]; $object->progress = GETPOST('progress', 'int'); $object->timespent_duration = $_POST["timespent_durationhour"]*60*60; // We store duration in seconds $object->timespent_duration+= $_POST["timespent_durationmin"]*60; // We store duration in seconds if (GETPOST("timehour") != '' && GETPOST("timehour") >= 0) // If hour was entered { $object->timespent_date = dol_mktime(GETPOST("timehour"),GETPOST("timemin"),0,GETPOST("timemonth"),GETPOST("timeday"),GETPOST("timeyear")); $object->timespent_withhour = 1; } else { $object->timespent_date = dol_mktime(12,0,0,GETPOST("timemonth"),GETPOST("timeday"),GETPOST("timeyear")); } $object->timespent_fk_user = $_POST["userid"]; $result=$object->addTimeSpent($user); if ($result >= 0) { setEventMessage($langs->trans("RecordSaved")); } else { setEventMessage($langs->trans($object->error),'errors'); $error++; } } } else { $action=''; } } if ($action == 'updateline' && ! $_POST["cancel"] && $user->rights->projet->creer) { $error=0; if (empty($_POST["new_durationhour"]) && empty($_POST["new_durationmin"])) { setEventMessage($langs->trans('ErrorFieldRequired',$langs->transnoentitiesnoconv("Duration")),'errors'); $error++; } if (! $error) { $object->fetch($id, $ref); $object->timespent_id = $_POST["lineid"]; $object->timespent_note = $_POST["timespent_note_line"]; $object->timespent_old_duration = $_POST["old_duration"]; $object->timespent_duration = $_POST["new_durationhour"]*60*60; // We store duration in seconds $object->timespent_duration+= $_POST["new_durationmin"]*60; // We store duration in seconds if (GETPOST("timelinehour") != '' && GETPOST("timelinehour") >= 0) // If hour was entered { $object->timespent_date = dol_mktime(GETPOST("timelinehour"),GETPOST("timelinemin"),0,GETPOST("timelinemonth"),GETPOST("timelineday"),GETPOST("timelineyear")); $object->timespent_withhour = 1; } else { $object->timespent_date = dol_mktime(12,0,0,GETPOST("timelinemonth"),GETPOST("timelineday"),GETPOST("timelineyear")); } $object->timespent_fk_user = $_POST["userid_line"]; $result=$object->updateTimeSpent($user); if ($result >= 0) { setEventMessage($langs->trans("RecordSaved")); } else { setEventMessage($langs->trans($object->error),'errors'); $error++; } } else { $action=''; } } if ($action == 'confirm_delete' && $confirm == "yes" && $user->rights->projet->creer) { $object->fetchTimeSpent($_GET['lineid']); $result = $object->delTimeSpent($user); if ($result < 0) { $langs->load("errors"); setEventMessage($langs->trans($object->error),'errors'); $error++; $action=''; } } // Retreive First Task ID of Project if withprojet is on to allow project prev next to work if (! empty($project_ref) && ! empty($withproject)) { if ($projectstatic->fetch(0,$project_ref) > 0) { $tasksarray=$object->getTasksArray(0, 0, $projectstatic->id, $socid, 0); if (count($tasksarray) > 0) { $id=$tasksarray[0]->id; } else { header("Location: ".DOL_URL_ROOT.'/projet/tasks.php?id='.$projectstatic->id.($withproject?'&withproject=1':'').(empty($mode)?'':'&mode='.$mode)); exit; } } } /* * View */ llxHeader("",$langs->trans("Task")); $form = new Form($db); $formother = new FormOther($db); $userstatic = new User($db); if ($id > 0 || ! empty($ref)) { /* * Fiche projet en mode visu */ if ($object->fetch($id, $ref) >= 0) { $result=$projectstatic->fetch($object->fk_project); if (! empty($projectstatic->socid)) $projectstatic->fetch_thirdparty(); $object->project = dol_clone($projectstatic); $userWrite = $projectstatic->restrictedProjectArea($user,'write'); if ($withproject) { // Tabs for project $tab='tasks'; $head=project_prepare_head($projectstatic); dol_fiche_head($head, $tab, $langs->trans("Project"),0,($projectstatic->public?'projectpub':'project')); $param=($mode=='mine'?'&mode=mine':''); print ''; // Ref print ''; // Label print ''; // Thirdparty print ''; print ''; // Visibility print ''; // Statut print ''; // Date start print ''; // Date end print ''; print '
'; print $langs->trans("Ref"); print ''; // Define a complementary filter for search of next/prev ref. if (! $user->rights->projet->all->lire) { $projectsListId = $projectstatic->getProjectsAuthorizedForUser($user,$mine,0); $projectstatic->next_prev_filter=" rowid in (".(count($projectsListId)?join(',',array_keys($projectsListId)):'0').")"; } print $form->showrefnav($projectstatic,'project_ref','',1,'ref','ref','',$param.'&withproject=1'); print '
'.$langs->trans("Label").''.$projectstatic->title.'
'.$langs->trans("ThirdParty").''; if (! empty($projectstatic->thirdparty->id)) print $projectstatic->thirdparty->getNomUrl(1); else print ' '; print '
'.$langs->trans("Visibility").''; if ($projectstatic->public) print $langs->trans('SharedProject'); else print $langs->trans('PrivateProject'); print '
'.$langs->trans("Status").''.$projectstatic->getLibStatut(4).'
'.$langs->trans("DateStart").''; print dol_print_date($projectstatic->date_start,'day'); print '
'.$langs->trans("DateEnd").''; print dol_print_date($projectstatic->date_end,'day'); print '
'; dol_fiche_end(); } $head=task_prepare_head($object); dol_fiche_head($head, 'task_time', $langs->trans("Task"),0,'projecttask'); if ($action == 'deleteline') { print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id.'&lineid='.$_GET["lineid"].($withproject?'&withproject=1':''),$langs->trans("DeleteATimeSpent"),$langs->trans("ConfirmDeleteATimeSpent"),"confirm_delete",'','',1); } print ''; $param=($withproject?'&withproject=1':''); $linkback=$withproject?''.$langs->trans("BackToList").'':''; // Ref print ''; // Label print ''; // Date start print ''; // Date end print ''; // Planned workload print ''; // Progress declared print ''; // Progress calculated print ''; // Project if (empty($withproject)) { print ''; // Third party print ''; } print '
'; print $langs->trans("Ref"); print ''; if (! GETPOST('withproject') || empty($projectstatic->id)) { $projectsListId = $projectstatic->getProjectsAuthorizedForUser($user,$mine,1); $object->next_prev_filter=" fk_projet in (".$projectsListId.")"; } else $object->next_prev_filter=" fk_projet = ".$projectstatic->id; print $form->showrefnav($object,'ref',$linkback,1,'ref','ref','',$param); print '
'.$langs->trans("Label").''.$object->label.'
'.$langs->trans("DateStart").''; print dol_print_date($object->date_start,'dayhour'); print '
'.$langs->trans("DateEnd").''; print dol_print_date($object->date_end,'dayhour'); print '
'.$langs->trans("PlannedWorkload").''; print convertSecondToTime($object->planned_workload,'allhourmin'); print '
'.$langs->trans("ProgressDeclared").''; print $object->progress.' %'; print '
'.$langs->trans("ProgressCalculated").''; if ($object->planned_workload) { $tmparray=$object->getSummaryOfTimeSpent(); if ($tmparray['total_duration'] > 0) print round($tmparray['total_duration']/$object->planned_workload*100, 2).' %'; else print '0 %'; } else print ''; print '
'.$langs->trans("Project").''; print $projectstatic->getNomUrl(1); print '
'.$langs->trans("ThirdParty").''; if ($projectstatic->thirdparty->id) print $projectstatic->thirdparty->getNomUrl(1); else print ' '; print '
'; dol_fiche_end(); /* * Form to add time spent */ if ($user->rights->projet->creer) { print '
'; print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; print ''; // Date print ''; // Contributor print ''; // Note print ''; // Progress declared print ''; // Duration - Time spent print ''; print ''; print '
'.$langs->trans("Date").''.$langs->trans("By").''.$langs->trans("Note").''.$langs->trans("ProgressDeclared").''.$langs->trans("NewTimeSpent").'
'; //$newdate=dol_mktime(12,0,0,$_POST["timemonth"],$_POST["timeday"],$_POST["timeyear"]); $newdate=''; print $form->select_date($newdate,'time',1,1,2,"timespent_date",1,0,1); print ''; print img_object('','user','class="hideonsmartphone"'); $contactsoftask=$object->getListContactId('internal'); if (count($contactsoftask)>0) { $userid=$contactsoftask[0]; print $form->select_dolusers((GETPOST('userid')?GETPOST('userid'):$userid), 'userid', 0, '', 0, '', $contactsoftask, 0, 0, 0, '', 0, $langs->trans("ResourceNotAssignedToTask")); } else { print img_error($langs->trans('FirstAddRessourceToAllocateTime')).$langs->trans('FirstAddRessourceToAllocateTime'); } print ''; print ''; print ''; print $formother->select_percent(GETPOST('progress')?GETPOST('progress'):$object->progress,'progress'); print ''; print $form->select_duration('timespent_duration', ($_POST['timespent_duration']?$_POST['timespent_duration']:''), 0, 'text'); print ''; print ''; print '
'; } print '
'; /* * List of time spent */ $sql = "SELECT t.rowid, t.task_date, t.task_datehour, t.task_date_withhour, t.task_duration, t.fk_user, t.note, t.thm"; $sql.= ", u.lastname, u.firstname"; $sql .= " FROM ".MAIN_DB_PREFIX."projet_task_time as t"; $sql .= " , ".MAIN_DB_PREFIX."user as u"; $sql .= " WHERE t.fk_task =".$object->id; $sql .= " AND t.fk_user = u.rowid"; $sql .= " ORDER BY t.task_date DESC, t.task_datehour DESC, t.rowid DESC"; $var=true; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; $tasks = array(); while ($i < $num) { $row = $db->fetch_object($resql); $tasks[$i] = $row; $i++; } $db->free($resql); } else { dol_print_error($db); } print '
'; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print ''; if ($conf->salaries->enabled) { print ''; } print ''; print "\n"; $total = 0; $totalvalue = 0; foreach ($tasks as $task_time) { $var=!$var; print ""; $date1=$db->jdate($task_time->task_date); $date2=$db->jdate($task_time->task_datehour); // Date print ''; // User print ''; // Note print ''; // Time spent print ''; // Value spent if ($conf->salaries->enabled) { print ''; } // Edit and delete icon print ''; print "\n"; $total += $task_time->task_duration; $totalvalue += price2num($task_time->thm * $task_time->task_duration / 3600); } print ''; print ''; if ($conf->salaries->enabled) { print ''; } print ''; print ''; print "
'.$langs->trans("Date").''.$langs->trans("By").''.$langs->trans("Note").''.$langs->trans("TimeSpent").''.$langs->trans("Value").' 
'; if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid) { print $form->select_date($db->jdate($date2?$date2:$date1),'timeline',1,1,2,"timespent_date",1,0,1); } else { print dol_print_date($date2?$date2:$date1,($task_time->task_date_withhour?'dayhour':'day')); } print ''; if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid) { $contactsoftask=$object->getListContactId('internal'); if (!in_array($task_time->fk_user,$contactsoftask)) { $contactsoftask[]=$task_time->fk_user; } if (count($contactsoftask)>0) { print img_object('','user','class="hideonsmartphone"'); print $form->select_dolusers($task_time->fk_user,'userid_line',0,'',0,'',$contactsoftask); }else { print img_error($langs->trans('FirstAddRessourceToAllocateTime')).$langs->trans('FirstAddRessourceToAllocateTime'); } } else { $userstatic->id = $task_time->fk_user; $userstatic->lastname = $task_time->lastname; $userstatic->firstname = $task_time->firstname; print $userstatic->getNomUrl(1); } print ''; if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid) { print ''; } else { print dol_nl2br($task_time->note); } print ''; if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid) { print ''; print $form->select_duration('new_duration',$task_time->task_duration,0,'text'); } else { print convertSecondToTime($task_time->task_duration,'allhourmin'); } print ''; print price(price2num($task_time->thm * $task_time->task_duration / 3600), 1, $langs, 1, -1, -1, $conf->currency); print ''; if ($action == 'editline' && $_GET['lineid'] == $task_time->rowid) { print ''; print ''; print '
'; print ''; } else if ($user->rights->projet->creer) { print ' '; print 'rowid.($withproject?'&withproject=1':'').'">'; print img_edit(); print ''; print ' '; print 'rowid.($withproject?'&withproject=1':'').'">'; print img_delete(); print ''; } print '
'.$langs->trans("Total").''.convertSecondToTime($total,'allhourmin').''.price($totalvalue, 1, $langs, 1, -1, -1, $conf->currency).' 
"; print "
"; } } llxFooter(); $db->close();