123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- <?php
- /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2006-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \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');
- $projectid=GETPOST('projectid','int');
- $ref=GETPOST('ref','alpha');
- $action=GETPOST('action','alpha');
- $confirm=GETPOST('confirm','alpha');
- $withproject=GETPOST('withproject','int');
- $project_ref=GETPOST('project_ref','alpha');
- $search_dateday=GETPOST('search_dateday');
- $search_datemonth=GETPOST('search_datemonth');
- $search_dateyear=GETPOST('search_dateyear');
- $search_datehour='';
- $search_datewithhour='';
- $search_note=GETPOST('search_note','alpha');
- $search_duration=GETPOST('search_duration','int');
- $search_value=GETPOST('search_value','int');
- $search_task_ref=GETPOST('search_task_ref','alpha');
- $search_task_label=GETPOST('search_task_label','alpha');
- $search_user=GETPOST('search_user','int');
- // Security check
- $socid=0;
- //if ($user->societe_id > 0) $socid = $user->societe_id; // For external user, no check is done on company because readability is managed by public status of project and assignement.
- if (!$user->rights->projet->lire) accessforbidden();
- $limit = GETPOST("limit")?GETPOST("limit","int"):$conf->liste_limit;
- $sortfield = GETPOST("sortfield",'alpha');
- $sortorder = GETPOST("sortorder",'alpha');
- $page = GETPOST("page",'int');
- if ($page == -1) { $page = 0; }
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (! $sortfield) $sortfield='t.task_date,t.task_datehour,t.rowid';
- if (! $sortorder) $sortorder='DESC';
- // Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
- $hookmanager->initHooks(array('projecttaskcard','globalcard'));
- $object = new Task($db);
- $projectstatic = new Project($db);
- $extrafields_project = new ExtraFields($db);
- $extrafields_task = new ExtraFields($db);
- if ($projectid > 0 || ! empty($ref))
- {
- // fetch optionals attributes and labels
- $extralabels_projet=$extrafields_project->fetch_name_optionals_label($projectstatic->table_element);
- }
- $extralabels_task=$extrafields_task->fetch_name_optionals_label($object->table_element);
- /*
- * Actions
- */
- $parameters=array('socid'=>$socid, 'projectid'=>$projectid);
- $reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
- // Purge search criteria
- if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") ||GETPOST("button_removefilter")) // All tests are required to be compatible with all browsers
- {
- $search_date='';
- $search_datehour='';
- $search_datewithhour='';
- $search_note='';
- $search_duration='';
- $search_value='';
- $search_date_creation='';
- $search_date_update='';
- $search_task_ref='';
- $search_task_label='';
- $search_user=0;
- $toselect='';
- $search_array_options=array();
- $action='';
- }
- if ($action == 'addtimespent' && $user->rights->projet->lire)
- {
- $error=0;
- $timespent_durationhour = GETPOST('timespent_durationhour','int');
- $timespent_durationmin = GETPOST('timespent_durationmin','int');
- if (empty($timespent_durationhour) && empty($timespent_durationmin))
- {
- setEventMessages($langs->trans('ErrorFieldRequired',$langs->transnoentitiesnoconv("Duration")), null, 'errors');
- $error++;
- }
- if (empty($_POST["userid"]))
- {
- $langs->load("errors");
- setEventMessages($langs->trans('ErrorUserNotAssignedToTask'), null, 'errors');
- $error++;
- }
- if (! $error)
- {
- $object->fetch($id, $ref);
- $object->fetch_projet();
- if (empty($object->projet->statut))
- {
- setEventMessages($langs->trans("ProjectMustBeValidatedFirst"), null, '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)
- {
- setEventMessages($langs->trans("RecordSaved"), null, 'mesgs');
- }
- else
- {
- setEventMessages($langs->trans($object->error), null, 'errors');
- $error++;
- }
- }
- }
- else
- {
- $action='';
- }
- }
- if ($action == 'updateline' && ! $_POST["cancel"] && $user->rights->projet->lire)
- {
- $error=0;
- if (empty($_POST["new_durationhour"]) && empty($_POST["new_durationmin"]))
- {
- setEventMessages($langs->trans('ErrorFieldRequired',$langs->transnoentitiesnoconv("Duration")), null, 'errors');
- $error++;
- }
- if (! $error)
- {
- $object->fetch($id, $ref);
- // TODO Check that ($task_time->fk_user == $user->id || in_array($task_time->fk_user, $childids))
-
- $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)
- {
- setEventMessages($langs->trans("RecordSaved"), null, 'mesgs');
- }
- else
- {
- setEventMessages($langs->trans($object->error), null, 'errors');
- $error++;
- }
- }
- else
- {
- $action='';
- }
- }
- if ($action == 'confirm_delete' && $confirm == "yes" && $user->rights->projet->lire)
- {
- $object->fetchTimeSpent($_GET['lineid']);
- // TODO Check that ($task_time->fk_user == $user->id || in_array($task_time->fk_user, $childids))
- $result = $object->delTimeSpent($user);
- if ($result < 0)
- {
- $langs->load("errors");
- setEventMessages($langs->trans($object->error), null, '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;
- }
- }
- }
- // To show all time lines for project
- $projectidforalltimes=0;
- if (GETPOST('projectid'))
- {
- $projectidforalltimes=GETPOST('projectid','int');
-
- }
-
- /*
- * View
- */
- llxHeader("",$langs->trans("Task"));
- $form = new Form($db);
- $formother = new FormOther($db);
- $userstatic = new User($db);
- if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
- {
- /*
- * Fiche projet en mode visu
- */
- if ($projectidforalltimes)
- {
- $result=$projectstatic->fetch($projectidforalltimes);
- if (! empty($projectstatic->socid)) $projectstatic->fetch_thirdparty();
- $res=$projectstatic->fetch_optionals($object->id,$extralabels_projet);
- }
- elseif ($object->fetch($id, $ref) >= 0)
- {
- $result=$projectstatic->fetch($object->fk_project);
- if (! empty($projectstatic->socid)) $projectstatic->fetch_thirdparty();
- $res=$projectstatic->fetch_optionals($object->id,$extralabels_projet);
-
- $object->project = clone $projectstatic;
- }
-
- $userWrite = $projectstatic->restrictedProjectArea($user,'write');
- if ($projectstatic->id > 0)
- {
- if ($withproject)
- {
- // Tabs for project
- $tab='tasks';
- $head=project_prepare_head($projectstatic);
- dol_fiche_head($head, $tab, $langs->trans("Project"), -1, ($projectstatic->public?'projectpub':'project'));
- $param=($mode=='mine'?'&mode=mine':'');
- // Project card
-
- $linkback = '<a href="'.DOL_URL_ROOT.'/projet/list.php">'.$langs->trans("BackToList").'</a>';
-
- $morehtmlref='<div class="refidno">';
- // Title
- $morehtmlref.=$projectstatic->title;
- // Thirdparty
- if ($projectstatic->thirdparty->id > 0)
- {
- $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $projectstatic->thirdparty->getNomUrl(1, 'project');
- }
- $morehtmlref.='</div>';
-
- // Define a complementary filter for search of next/prev ref.
- if (! $user->rights->projet->all->lire)
- {
- $objectsListId = $projectstatic->getProjectsAuthorizedForUser($user,0,0);
- $projectstatic->next_prev_filter=" rowid in (".(count($objectsListId)?join(',',array_keys($objectsListId)):'0').")";
- }
-
- dol_banner_tab($projectstatic, 'project_ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
-
- print '<div class="fichecenter">';
- print '<div class="fichehalfleft">';
- print '<div class="underbanner clearboth"></div>';
-
- print '<table class="border" width="100%">';
-
- // Visibility
- print '<tr><td class="titlefield">'.$langs->trans("Visibility").'</td><td>';
- if ($projectstatic->public) print $langs->trans('SharedProject');
- else print $langs->trans('PrivateProject');
- print '</td></tr>';
-
- // Date start - end
- print '<tr><td>'.$langs->trans("DateStart").' - '.$langs->trans("DateEnd").'</td><td>';
- print dol_print_date($projectstatic->date_start,'day');
- $end=dol_print_date($projectstatic->date_end,'day');
- if ($end) print ' - '.$end;
- print '</td></tr>';
-
- // Budget
- print '<tr><td>'.$langs->trans("Budget").'</td><td>';
- if (strcmp($projectstatic->budget_amount, '')) print price($projectstatic->budget_amount,'',$langs,1,0,0,$conf->currency);
- print '</td></tr>';
-
- // Other attributes
- $cols = 2;
- //include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
-
- print '</table>';
-
- print '</div>';
- print '<div class="fichehalfright">';
- print '<div class="ficheaddleft">';
- print '<div class="underbanner clearboth"></div>';
-
- print '<table class="border" width="100%">';
-
- // Description
- print '<td class="titlefield tdtop">'.$langs->trans("Description").'</td><td>';
- print nl2br($projectstatic->description);
- print '</td></tr>';
-
- // Categories
- if($conf->categorie->enabled) {
- print '<tr><td valign="middle">'.$langs->trans("Categories").'</td><td>';
- print $form->showCategories($projectstatic->id,'project',1);
- print "</td></tr>";
- }
-
- print '</table>';
-
- print '</div>';
- print '</div>';
- print '</div>';
-
- print '<div class="clearboth"></div>';
- dol_fiche_end();
-
-
- /*
- * Actions
- */
- if ((empty($id) && empty($ref)) || ! empty($projectidforalltimes))
- {
- print '<div class="tabsAction">';
-
- if ($user->rights->projet->all->creer || $user->rights->projet->creer)
- {
- if ($object->public || $userWrite > 0)
- {
- print '<a class="butAction" href="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&action=create'.$param.'&backtopage='.urlencode($_SERVER['PHP_SELF'].'?id='.$object->id).'">'.$langs->trans('AddTask').'</a>';
- }
- else
- {
- print '<a class="butActionRefused" href="#" title="'.$langs->trans("NotOwnerOfProject").'">'.$langs->trans('AddTask').'</a>';
- }
- }
- else
- {
- print '<a class="butActionRefused" href="#" title="'.$langs->trans("NotEnoughPermissions").'">'.$langs->trans('AddTask').'</a>';
- }
-
- print '</div>';
- }
- }
- }
-
- if (empty($projectidforalltimes))
- {
- $head=task_prepare_head($object);
- dol_fiche_head($head, 'task_time', $langs->trans("Task"), -1, '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);
- }
- $param=($withproject?'&withproject=1':'');
- $linkback=$withproject?'<a href="'.DOL_URL_ROOT.'/projet/tasks.php?id='.$projectstatic->id.'">'.$langs->trans("BackToList").'</a>':'';
- if (! GETPOST('withproject') || empty($projectstatic->id))
- {
- $projectsListId = $projectstatic->getProjectsAuthorizedForUser($user,0,1);
- $object->next_prev_filter=" fk_projet in (".$projectsListId.")";
- }
- else $object->next_prev_filter=" fk_projet = ".$projectstatic->id;
-
- $morehtmlref='';
-
- // Project
- if (empty($withproject))
- {
- $morehtmlref.='<div class="refidno">';
- $morehtmlref.=$langs->trans("Project").': ';
- $morehtmlref.=$projectstatic->getNomUrl(1);
- $morehtmlref.='<br>';
-
- // Third party
- $morehtmlref.=$langs->trans("ThirdParty").': ';
- $morehtmlref.=$projectstatic->thirdparty->getNomUrl(1);
- $morehtmlref.='</div>';
- }
-
- dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, $param);
-
- print '<div class="fichecenter">';
- print '<div class="fichehalfleft">';
-
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border" width="100%">';
- // Date start - Date end
- print '<tr><td class="titlefield">'.$langs->trans("DateStart").' - '.$langs->trans("DateEnd").'</td><td>';
- $start = dol_print_date($object->date_start,'dayhour');
- print ($start?$start:'?');
- $end = dol_print_date($object->date_end,'dayhour');
- print ' - ';
- print ($end?$end:'?');
- if ($object->hasDelay()) print img_warning("Late");
- print '</td></tr>';
- // Planned workload
- print '<tr><td>'.$langs->trans("PlannedWorkload").'</td><td>';
- print convertSecondToTime($object->planned_workload,'allhourmin');
- print '</td></tr>';
- print '</table>';
- print '</div>';
-
- print '<div class="fichehalfright"><div class="ficheaddleft">';
-
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border" width="100%">';
-
- // Progress declared
- print '<tr><td>'.$langs->trans("ProgressDeclared").'</td><td>';
- print $object->progress.' %';
- print '</td></tr>';
- // Progress calculated
- print '<tr><td>'.$langs->trans("ProgressCalculated").'</td><td>';
- 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 '</td></tr>';
- print '</table>';
- print '</div>';
- print '</div>';
-
- print '</div>';
- print '<div class="clearboth"></div>';
-
- dol_fiche_end();
- /*
- * Form to add time spent
- */
- if ($user->rights->projet->lire)
- {
- print '<br>';
- print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="addtimespent">';
- print '<input type="hidden" name="id" value="'.$object->id.'">';
- print '<input type="hidden" name="withproject" value="'.$withproject.'">';
- print '<table class="noborder nohover" width="100%">';
- print '<tr class="liste_titre">';
- print '<td>'.$langs->trans("Date").'</td>';
- print '<td>'.$langs->trans("By").'</td>';
- print '<td>'.$langs->trans("Note").'</td>';
- print '<td>'.$langs->trans("NewTimeSpent").'</td>';
- print '<td>'.$langs->trans("ProgressDeclared").'</td>';
- print '<td></td>';
- print "</tr>\n";
- print '<tr class="oddeven">';
- // Date
- print '<td class="maxwidthonsmartphone">';
- //$newdate=dol_mktime(12,0,0,$_POST["timemonth"],$_POST["timeday"],$_POST["timeyear"]);
- $newdate='';
- print $form->select_date($newdate, 'time', ($conf->browser->layout == 'phone'?2:1), 1, 2, "timespent_date", 1, 0, 1);
- print '</td>';
- // Contributor
- print '<td class="maxwidthonsmartphone">';
- 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("ResourceNotAssignedToTheTask"), 'maxwidth200');
- }
- else
- {
- print img_error($langs->trans('FirstAddRessourceToAllocateTime')).$langs->trans('FirstAddRessourceToAllocateTime');
- }
- print '</td>';
- // Note
- print '<td>';
- print '<textarea name="timespent_note" class="maxwidth100onsmartphone" rows="'.ROWS_2.'">'.($_POST['timespent_note']?$_POST['timespent_note']:'').'</textarea>';
- print '</td>';
- // Duration - Time spent
- print '<td>';
- print $form->select_duration('timespent_duration', ($_POST['timespent_duration']?$_POST['timespent_duration']:''), 0, 'text');
- print '</td>';
- // Progress declared
- print '<td class="nowrap">';
- print $formother->select_percent(GETPOST('progress')?GETPOST('progress'):$object->progress,'progress');
- print '</td>';
- print '<td align="center">';
- print '<input type="submit" class="button" value="'.$langs->trans("Add").'">';
- print '</td></tr>';
- print '</table></form>';
-
- print '<br>';
- }
- }
-
- if ($projectstatic->id > 0)
- {
- 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);
- }
-
- // Initialize technical object to manage hooks. Note that conf->hooks_modules contains array
- $hookmanager->initHooks(array('tasktimelist'));
- $extrafields = new ExtraFields($db);
- // Definition of fields for list
- $arrayfields=array();
- $arrayfields['t.task_date']=array('label'=>$langs->trans("Date"), 'checked'=>1);
- if ((empty($id) && empty($ref)) || ! empty($projectidforalltimes)) // Not a dedicated task
- {
- $arrayfields['t.task_ref']=array('label'=>$langs->trans("RefTask"), 'checked'=>1);
- $arrayfields['t.task_label']=array('label'=>$langs->trans("LabelTask"), 'checked'=>1);
- }
- $arrayfields['author']=array('label'=>$langs->trans("By"), 'checked'=>1);
- $arrayfields['t.note']=array('label'=>$langs->trans("Note"), 'checked'=>1);
- $arrayfields['t.task_duration']=array('label'=>$langs->trans("Duration"), 'checked'=>1);
- $arrayfields['value']=array('label'=>$langs->trans("Value"), 'checked'=>1, 'enabled'=>$conf->salaries->enabled);
- // Extra fields
- if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label))
- {
- foreach($extrafields->attribute_label as $key => $val)
- {
- $arrayfields["ef.".$key]=array('label'=>$extrafields->attribute_label[$key], 'checked'=>$extrafields->attribute_list[$key], 'position'=>$extrafields->attribute_pos[$key], 'enabled'=>$extrafields->attribute_perms[$key]);
- }
- }
-
- /*
- * List of time spent
- */
- $tasks = array();
-
- $sql = "SELECT t.rowid, t.fk_task, t.task_date, t.task_datehour, t.task_date_withhour, t.task_duration, t.fk_user, t.note, t.thm,";
- $sql .= " pt.ref, pt.label,";
- $sql .= " u.lastname, u.firstname, u.login, u.photo";
- $sql .= " FROM ".MAIN_DB_PREFIX."projet_task_time as t, ".MAIN_DB_PREFIX."projet_task as pt, ".MAIN_DB_PREFIX."user as u";
- $sql .= " WHERE t.fk_user = u.rowid AND t.fk_task = pt.rowid";
- if (empty($projectidforalltimes)) $sql .= " AND t.fk_task =".$object->id;
- else $sql.= " AND pt.fk_projet IN (".$projectidforalltimes.")";
- if ($search_ref) $sql .= natural_search('c.ref', $search_ref);
- if ($search_note) $sql .= natural_search('t.note', $search_note);
- if ($search_task_ref) $sql .= natural_search('pt.ref', $search_task_ref);
- if ($search_task_label) $sql .= natural_search('pt.label', $search_task_label);
- if ($search_user > 0) $sql .= natural_search('t.fk_user', $search_user);
- $sql .= $db->order($sortfield, $sortorder);
-
- $var=true;
- $resql = $db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $totalnboflines=$num;
- if (! empty($projectidforalltimes))
- {
- $title=$langs->trans("ListTaskTimeUserProject");
- $linktotasks='<a href="'.DOL_URL_ROOT.'/projet/tasks.php?id='.$projectstatic->id.'">'.$langs->trans("GoToListOfTasks").'</a>';
- //print_barre_liste($title, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, $linktotasks, $num, $totalnboflines, 'title_generic.png', 0, '', '', 0, 1);
- print load_fiche_titre($title,$linktotasks,'title_generic.png');
- }
- $i = 0;
- while ($i < $num)
- {
- $row = $db->fetch_object($resql);
- $tasks[$i] = $row;
- $i++;
- }
- $db->free($resql);
- }
- else
- {
- dol_print_error($db);
- }
-
- $arrayofselected=is_array($toselect)?$toselect:array();
-
- $params='';
- if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
- if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
- if ($search_note != '') $params.= '&search_note='.urlencode($search_note);
- if ($search_duration != '') $params.= '&search_field2='.urlencode($search_duration);
- if ($optioncss != '') $param.='&optioncss='.$optioncss;
- // Add $param from extra fields
- /*foreach ($search_array_options as $key => $val)
- {
- $crit=$val;
- $tmpkey=preg_replace('/search_options_/','',$key);
- if ($val != '') $param.='&search_options_'.$tmpkey.'='.urlencode($val);
- }*/
- if ($id) $params.='&id='.$id;
- if ($projectid) $params.='&projectid='.$projectid;
- if ($withproject) $params.='&withproject='.$withproject;
-
-
- $arrayofmassactions = array(
- //'presend'=>$langs->trans("SendByMail"),
- //'builddoc'=>$langs->trans("PDFMerge"),
- );
- //if ($user->rights->projet->creer) $arrayofmassactions['delete']=$langs->trans("Delete");
- if ($massaction == 'presend') $arrayofmassactions=array();
- $massactionbutton=$form->selectMassAction('', $arrayofmassactions);
-
-
-
- print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'?id='.$id.'">';
- if ($optioncss != '') print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- if ($action == 'editline') print '<input type="hidden" name="action" value="updateline">';
- else print '<input type="hidden" name="action" value="list">';
- print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="page" value="'.$page.'">';
-
- print '<input type="hidden" name="id" value="'.$id.'">';
- print '<input type="hidden" name="projectid" value="'.$projectidforalltimes.'">';
- print '<input type="hidden" name="withproject" value="'.$withproject.'">';
- $moreforfilter = '';
-
- $parameters=array();
- $reshook=$hookmanager->executeHooks('printFieldPreListTitle',$parameters); // Note that $action and $object may have been modified by hook
- if (empty($reshook)) $moreforfilter .= $hookmanager->resPrint;
- else $moreforfilter = $hookmanager->resPrint;
-
- if (! empty($moreforfilter))
- {
- print '<div class="liste_titre liste_titre_bydiv centpercent">';
- print $moreforfilter;
- print '</div>';
- }
-
- $varpage=empty($contextpage)?$_SERVER["PHP_SELF"]:$contextpage;
- $selectedfields=$form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
-
- print '<div class="div-table-responsive">';
- print '<table class="tagtable liste'.($moreforfilter?" listwithfilterbefore":"").'">'."\n";
-
- // Fields title search
- print '<tr class="liste_titre_filter">';
- // Date
- if (! empty($arrayfields['t.task_date']['checked'])) print '<td class="liste_titre"></td>';
- if ((empty($id) && empty($ref)) || ! empty($projectidforalltimes)) // Not a dedicated task
- {
- if (! empty($arrayfields['t.task_ref']['checked'])) print '<td class="liste_titre"><input type="text" class="flat maxwidth100" name="search_task_ref" value="'.dol_escape_htmltag($search_task_ref).'"></td>';
- if (! empty($arrayfields['t.task_label']['checked'])) print '<td class="liste_titre"><input type="text" class="flat maxwidth100" name="search_task_label" value="'.dol_escape_htmltag($search_task_label).'"></td>';
- }
- // Author
- if (! empty($arrayfields['author']['checked'])) print '<td class="liste_titre">'.$form->select_dolusers($search_user > 0 ? $search_user : -1, 'search_user', 1).'</td>';
- // Note
- if (! empty($arrayfields['t.note']['checked'])) print '<td class="liste_titre"><input type="text" class="flat maxwidth100" name="search_note" value="'.dol_escape_htmltag($search_note).'"></td>';
- // Duration
- if (! empty($arrayfields['t.task_duration']['checked'])) print '<td class="liste_titre right"></td>';
- // Value in currency
- if (! empty($arrayfields['value']['checked'])) print '<td class="liste_titre"></td>';
- // Extra fields
- /*
- if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label))
- {
- foreach($extrafields->attribute_label as $key => $val)
- {
- if (! empty($arrayfields["ef.".$key]['checked']))
- {
- $align=$extrafields->getAlignFlag($key);
- $typeofextrafield=$extrafields->attribute_type[$key];
- print '<td class="liste_titre'.($align?' '.$align:'').'">';
- if (in_array($typeofextrafield, array('varchar', 'int', 'double', 'select')))
- {
- $crit=$val;
- $tmpkey=preg_replace('/search_options_/','',$key);
- $searchclass='';
- if (in_array($typeofextrafield, array('varchar', 'select'))) $searchclass='searchstring';
- if (in_array($typeofextrafield, array('int', 'double'))) $searchclass='searchnum';
- print '<input class="flat'.($searchclass?' '.$searchclass:'').'" size="4" type="text" name="search_options_'.$tmpkey.'" value="'.dol_escape_htmltag($search_array_options['search_options_'.$tmpkey]).'">';
- }
- print '</td>';
- }
- }
- }*/
- // Fields from hook
- $parameters=array('arrayfields'=>$arrayfields);
- $reshook=$hookmanager->executeHooks('printFieldListOption',$parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- // Action column
- print '<td class="liste_titre center">';
- $searchpicto=$form->showFilterAndCheckAddButtons($massactionbutton?1:0, 'checkforselect', 1);
- print $searchpicto;
- print '</td>';
- print '</tr>'."\n";
-
- print '<tr class="liste_titre">';
- if (! empty($arrayfields['t.task_date']['checked'])) print_liste_field_titre($arrayfields['t.task_date']['label'],$_SERVER['PHP_SELF'],'t.task_date,t.task_datehour,t.rowid','',$params,'',$sortfield,$sortorder);
- if ((empty($id) && empty($ref)) || ! empty($projectidforalltimes)) // Not a dedicated task
- {
- if (! empty($arrayfields['t.task_ref']['checked'])) print_liste_field_titre($arrayfields['t.task_ref']['label'],$_SERVER['PHP_SELF'],'pt.ref','',$params,'',$sortfield,$sortorder);
- if (! empty($arrayfields['t.task_label']['checked'])) print_liste_field_titre($arrayfields['t.task_label']['label'],$_SERVER['PHP_SELF'],'pt.label','',$params,'',$sortfield,$sortorder);
- }
- if (! empty($arrayfields['author']['checked'])) print_liste_field_titre($arrayfields['author']['label'],$_SERVER['PHP_SELF'],'','',$params,'',$sortfield,$sortorder);
- if (! empty($arrayfields['t.note']['checked'])) print_liste_field_titre($arrayfields['t.note']['label'],$_SERVER['PHP_SELF'],'t.note','',$params,'',$sortfield,$sortorder);
- if (! empty($arrayfields['t.task_duration']['checked'])) print_liste_field_titre($arrayfields['t.task_duration']['label'],$_SERVER['PHP_SELF'],'t.task_duration','',$params,'align="right"',$sortfield,$sortorder);
- if (! empty($arrayfields['value']['checked'])) print_liste_field_titre($arrayfields['value']['label'],$_SERVER['PHP_SELF'],'','',$params,'align="right"',$sortfield,$sortorder);
- // Extra fields
- /*
- if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label))
- {
- foreach($extrafields->attribute_label as $key => $val)
- {
- if (! empty($arrayfields["ef.".$key]['checked']))
- {
- $align=$extrafields->getAlignFlag($key);
- print_liste_field_titre($langs->trans($extralabels[$key]),$_SERVER["PHP_SELF"],"ef.".$key,"",$param,($align?'align="'.$align.'"':''),$sortfield,$sortorder);
- }
- }
- }*/
- // Hook fields
- $parameters=array('arrayfields'=>$arrayfields);
- $reshook=$hookmanager->executeHooks('printFieldListTitle',$parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"],"",'','','align="center" width="80"',$sortfield,$sortorder,'maxwidthsearch ');
- print "</tr>\n";
- $tasktmp = new Task($db);
-
- $i = 0;
- $childids = $user->getAllChildIds();
-
- $total = 0;
- $totalvalue = 0;
- $totalarray=array();
- foreach ($tasks as $task_time)
- {
-
- print '<tr class="oddeven">';
- $date1=$db->jdate($task_time->task_date);
- $date2=$db->jdate($task_time->task_datehour);
- // Date
- if (! empty($arrayfields['t.task_date']['checked']))
- {
- print '<td class="nowrap">';
- if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid)
- {
- print $form->select_date(($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 '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Task ref
- if (! empty($arrayfields['t.task_ref']['checked']))
- {
- if ((empty($id) && empty($ref)) || ! empty($projectidforalltimes)) // Not a dedicated task
- {
- print '<td class="nowrap">';
- $tasktmp->id = $task_time->fk_task;
- $tasktmp->ref = $task_time->ref;
- $tasktmp->label = $task_time->label;
- print $tasktmp->getNomUrl(1, 'withproject', 'time');
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- }
-
- // Task label
- if (! empty($arrayfields['t.task_label']['checked']))
- {
- if ((empty($id) && empty($ref)) || ! empty($projectidforalltimes)) // Not a dedicated task
- {
- print '<td class="nowrap">';
- print $task_time->label;
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- }
-
- // User
- if (! empty($arrayfields['author']['checked']))
- {
- print '<td>';
- if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid)
- {
- if (empty($object->id)) $object->fetch($id);
- $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;
- $userstatic->photo = $task_time->photo;
- print $userstatic->getNomUrl(-1);
- }
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Note
- if (! empty($arrayfields['t.note']['checked']))
- {
- print '<td align="left">';
- if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid)
- {
- print '<textarea name="timespent_note_line" width="95%" rows="'.ROWS_2.'">'.$task_time->note.'</textarea>';
- }
- else
- {
- print dol_nl2br($task_time->note);
- }
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
-
- // Time spent
- if (! empty($arrayfields['t.task_duration']['checked']))
- {
- print '<td align="right">';
- if ($_GET['action'] == 'editline' && $_GET['lineid'] == $task_time->rowid)
- {
- print '<input type="hidden" name="old_duration" value="'.$task_time->task_duration.'">';
- print $form->select_duration('new_duration',$task_time->task_duration,0,'text');
- }
- else
- {
- print convertSecondToTime($task_time->task_duration,'allhourmin');
- }
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- if (! $i) $totalarray['totaldurationfield']=$totalarray['nbfield'];
- $totalarray['totalduration'] += $task_time->task_duration;
- }
-
- // Value spent
- if (! empty($arrayfields['value']['checked']))
- {
- print '<td align="right">';
- $value = price2num($task_time->thm * $task_time->task_duration / 3600);
- print price($value, 1, $langs, 1, -1, -1, $conf->currency);
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- if (! $i) $totalarray['totalvaluefield']=$totalarray['nbfield'];
- $totalarray['totalvalue'] += $value;
- }
- // Fields from hook
- $parameters=array('arrayfields'=>$arrayfields, 'obj'=>$obj);
- $reshook=$hookmanager->executeHooks('printFieldListValue',$parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
-
- // Action column
- print '<td class="center"">';
- if ($action == 'editline' && $_GET['lineid'] == $task_time->rowid)
- {
- print '<input type="hidden" name="lineid" value="'.$_GET['lineid'].'">';
- print '<input type="submit" class="button" name="save" value="'.$langs->trans("Save").'">';
- print '<br>';
- print '<input type="submit" class="button" name="cancel" value="'.$langs->trans('Cancel').'">';
- }
- else if ($user->rights->projet->lire) // Read project and enter time consumed on assigned tasks
- {
- if ($task_time->fk_user == $user->id || in_array($task_time->fk_user, $childids))
- {
- print ' ';
- print '<a href="'.$_SERVER["PHP_SELF"].'?'.($projectidforalltimes?'projectid='.$projectidforalltimes.'&':'').'id='.$task_time->fk_task.'&action=editline&lineid='.$task_time->rowid.($withproject?'&withproject=1':'').'">';
- print img_edit();
- print '</a>';
-
- print ' ';
- print '<a href="'.$_SERVER["PHP_SELF"].'?'.($projectidforalltimes?'projectid='.$projectidforalltimes.'&':'').'id='.$task_time->fk_task.'&action=deleteline&lineid='.$task_time->rowid.($withproject?'&withproject=1':'').'">';
- print img_delete();
- print '</a>';
- }
- }
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
-
- print "</tr>\n";
-
- $i++;
- }
-
- // Show total line
- if (isset($totalarray['totaldurationfield']) || isset($totalarray['totalvaluefield']))
- {
- print '<tr class="liste_total">';
- $i=0;
- while ($i < $totalarray['nbfield'])
- {
- $i++;
- if ($i == 1)
- {
- if ($num < $limit && empty($offset)) print '<td align="left">'.$langs->trans("Total").'</td>';
- else print '<td align="left">'.$langs->trans("Totalforthispage").'</td>';
- }
- elseif ($totalarray['totaldurationfield'] == $i) print '<td align="right">'.convertSecondToTime($totalarray['totalduration'],'allhourmin').'</td>';
- elseif ($totalarray['totalvaluefield'] == $i) print '<td align="right">'.price($totalarray['totalvalue']).'</td>';
- else print '<td></td>';
- }
- print '</tr>';
- }
- print '</tr>';
- print "</table>";
- print '</div>';
- print "</form>";
- }
- }
- llxFooter();
- $db->close();
|