29require
"../../main.inc.php";
30require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/holiday/class/holiday.class.php';
40$langs->loadLangs(array(
'projects',
'users',
'companies'));
42$action =
GETPOST(
'action',
'aZ09');
43$mode =
GETPOST(
"mode",
'alpha');
47$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'timespent';
56$hookmanager->initHooks(array(
'timesheetperweekcard'));
74$search_usertoprocessid =
GETPOSTINT(
'search_usertoprocessid');
75$search_task_ref =
GETPOST(
'search_task_ref',
'alpha');
76$search_task_label =
GETPOST(
'search_task_label',
'alpha');
77$search_project_ref =
GETPOST(
'search_project_ref',
'alpha');
78$search_thirdparty =
GETPOST(
'search_thirdparty',
'alpha');
79$search_declared_progress =
GETPOST(
'search_declared_progress',
'alpha');
81$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
82$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
86$prev = $startdayarray;
87$prev_year = $prev[
'prev_year'];
88$prev_month = $prev[
'prev_month'];
89$prev_day = $prev[
'prev_day'];
90$first_day = $prev[
'first_day'];
91$first_month = $prev[
'first_month'];
92$first_year = $prev[
'first_year'];
96$next_year = $next[
'year'];
97$next_month = $next[
'month'];
98$next_day = $next[
'day'];
101$firstdaytoshow =
dol_mktime(0, 0, 0, $first_month, $first_day, $first_year);
102$firstdaytoshowgmt =
dol_mktime(0, 0, 0, $first_month, $first_day, $first_year,
'gmt');
104if (empty($search_usertoprocessid) || $search_usertoprocessid == $user->id) {
105 $usertoprocess = $user;
106 $search_usertoprocessid = $usertoprocess->id;
107} elseif ($search_usertoprocessid > 0) {
108 $usertoprocess =
new User($db);
109 $usertoprocess->fetch($search_usertoprocessid);
110 $search_usertoprocessid = $usertoprocess->id;
112 $usertoprocess =
new User($db);
121$extrafields->fetch_name_optionals_label(
$object->table_element);
124$arrayfields = array();
133$arrayfields[
't.planned_workload'] = array(
'label' =>
'PlannedWorkload',
'checked' => 1,
'enabled' => 1,
'position' => 5);
134$arrayfields[
't.progress'] = array(
'label' =>
'ProgressDeclared',
'checked' => 1,
'enabled' => 1,
'position' => 10);
135$arrayfields[
'timeconsumed'] = array(
'label' =>
'TimeConsumed',
'checked' => 1,
'enabled' => 1,
'position' => 15);
143if (!empty($extrafields->attributes[
'projet_task'][
'label']) && is_array($extrafields->attributes[
'projet_task'][
'label']) && count($extrafields->attributes[
'projet_task'][
'label']) > 0) {
144 foreach ($extrafields->attributes[
'projet_task'][
'label'] as $key => $val) {
145 if (!empty($extrafields->attributes[
'projet_task'][
'list'][$key])) {
146 $arrayfields[
"efpt.".$key] = array(
'label' => $extrafields->attributes[
'projet_task'][
'label'][$key],
'checked' => (($extrafields->attributes[
'projet_task'][
'list'][$key] < 0) ? 0 : 1),
'position' => $extrafields->attributes[
'projet_task'][
'pos'][$key],
'enabled' => (abs((int) $extrafields->attributes[
'projet_task'][
'list'][$key]) != 3 && $extrafields->attributes[
'projet_task'][
'perms'][$key]));
152$search_array_options = array();
153$search_array_options_project = $extrafields->getOptionalsFromPost(
'projet',
'',
'search_');
154$search_array_options_task = $extrafields->getOptionalsFromPost(
'projet_task',
'',
'search_task_');
163$parameters = array(
'id' => $id,
'taskid' => $taskid,
'projectid' => $projectid);
164$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
169if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
172 $search_usertoprocessid = $user->id;
173 $search_task_ref =
'';
174 $search_task_label =
'';
175 $search_project_ref =
'';
176 $search_thirdparty =
'';
177 $search_declared_progress =
'';
179 $search_array_options_project = array();
180 $search_array_options_task = array();
183 $usertoprocess = $user;
185if (
GETPOST(
"button_search_x",
'alpha') ||
GETPOST(
"button_search.x",
'alpha') ||
GETPOST(
"button_search",
'alpha')) {
189if (
GETPOST(
'submitdateselect')) {
197include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
199if ($action ==
'addtime' && $user->hasRight(
'projet',
'lire') &&
GETPOST(
'assigntask') &&
GETPOST(
'formfilteraction') !=
'listafterchangingselectedfields') {
200 $action =
'assigntask';
203 $result =
$object->fetch($taskid, $ref);
208 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Task")),
null,
'errors');
212 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Type")),
null,
'errors');
217 $idfortaskuser = $usertoprocess->id;
218 $result =
$object->add_contact($idfortaskuser,
GETPOST(
"type"),
'internal');
220 if ($result >= 0 || $result == -2) {
222 $sql =
'SELECT ec.rowid FROM '.MAIN_DB_PREFIX.
'element_contact as ec, '.MAIN_DB_PREFIX.
'c_type_contact as tc WHERE tc.rowid = ec.fk_c_type_contact';
223 $sql .=
' AND ec.fk_socpeople = '.((int) $idfortaskuser).
" AND ec.element_id = ".((int)
$object->fk_project).
" AND tc.element = 'project' AND source = 'internal'";
224 $resql = $db->query($sql);
226 $obj = $db->fetch_object($resql);
229 $project->fetch(
$object->fk_project);
231 $listofprojcontact = $project->liste_type_contact(
'internal');
233 if (count($listofprojcontact)) {
234 $tmparray = array_keys($listofprojcontact);
235 $typeforprojectcontact = reset($tmparray);
236 $result = $project->add_contact($idfortaskuser, $typeforprojectcontact,
'internal');
247 if (
$object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
248 $langs->load(
"errors");
249 setEventMessages($langs->trans(
"ErrorTaskAlreadyAssigned"),
null,
'warnings');
263if ($action ==
'addtime' && $user->hasRight(
'projet',
'lire') &&
GETPOST(
'formfilteraction') !=
'listafterchangingselectedfields') {
265 if (empty($timetoadd)) {
268 foreach ($timetoadd as $tmptaskid => $tmpvalue) {
269 $updateoftaskdone = 0;
270 foreach ($tmpvalue as $key => $val) {
271 $amountoadd = $timetoadd[$tmptaskid][$key];
272 if (!empty($amountoadd)) {
273 $tmpduration = explode(
':', $amountoadd);
275 if (!empty($tmpduration[0])) {
276 $newduration += (int) ((
float) $tmpduration[0] * 3600);
278 if (!empty($tmpduration[1])) {
279 $newduration += (int) ((
float) $tmpduration[1] * 60);
281 if (!empty($tmpduration[2])) {
282 $newduration += ((int) $tmpduration[2]);
285 if ($newduration > 0) {
288 if (GETPOSTISSET($tmptaskid.
'progress')) {
294 $object->timespent_duration = $newduration;
295 $object->timespent_fk_user = $usertoprocess->id;
300 $result =
$object->addTimeSpent($user);
312 if (!$updateoftaskdone) {
318 $result =
$object->update($user);
332 $param .= ($mode ?
'&mode='.urlencode($mode) :
'');
333 $param .= ($projectid ?
'id='.urlencode((
string) ($projectid)) :
'');
334 $param .= ($search_usertoprocessid ?
'&search_usertoprocessid='.urlencode((
string) $search_usertoprocessid) :
'');
335 $param .= ($day ?
'&day='.urlencode((
string) ($day)) :
'').($month ?
'&month='.urlencode((
string) ($month)) :
'').($year ?
'&year='.urlencode((
string) ($year)) :
'');
336 $param .= ($search_project_ref ?
'&search_project_ref='.urlencode($search_project_ref) :
'');
337 $param .= ($search_usertoprocessid > 0 ?
'&search_usertoprocessid='.urlencode((
string) $search_usertoprocessid) :
'');
338 $param .= ($search_thirdparty ?
'&search_thirdparty='.urlencode($search_thirdparty) :
'');
339 $param .= ($search_declared_progress ?
'&search_declared_progress='.urlencode($search_declared_progress) :
'');
340 $param .= ($search_task_ref ?
'&search_task_ref='.urlencode($search_task_ref) :
'');
341 $param .= ($search_task_label ?
'&search_task_label='.urlencode($search_task_label) :
'');
348 $search_array_options = $search_array_options_task;
349 $search_options_pattern =
'search_task_options_';
350 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
353 header(
'Location: '.$_SERVER[
"PHP_SELF"].
'?'.$param);
364$form =
new Form($db);
368$projectstatic =
new Project($db);
370$taskstatic =
new Task($db);
371$thirdpartystatic =
new Societe($db);
374$title = $langs->trans(
"TimeSpent");
376$projectsListId = $projectstatic->getProjectsAuthorizedForUser($usertoprocess, (empty($usertoprocess->id) ? 2 : 0), 1);
379 $project->fetch($id);
380 $project->fetch_thirdparty();
383$onlyopenedproject = 1;
384$morewherefilter =
'';
386if ($search_project_ref) {
387 $morewherefilter .=
natural_search(array(
"p.ref",
"p.title"), $search_project_ref);
389if ($search_task_ref) {
392if ($search_task_label) {
393 $morewherefilter .=
natural_search(array(
"t.ref",
"t.label"), $search_task_label);
395if ($search_thirdparty) {
398if ($search_declared_progress) {
399 $morewherefilter .=
natural_search(
"t.progress", $search_declared_progress, 1);
402$sql = &$morewherefilter;
410$search_array_options = $search_array_options_task;
411$extrafieldsobjectprefix =
'efpt.';
412$search_options_pattern =
'search_task_options_';
413$extrafieldsobjectkey =
'projet_task';
414include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
416$tasksarray = $taskstatic->getTasksArray(
null,
null, ($project->id ? $project->id : 0), $socid, 0, $search_project_ref, $onlyopenedproject, $morewherefilter, ($search_usertoprocessid ? $search_usertoprocessid : 0), 0, $extrafields);
417$tasksarraywithoutfilter = array();
418if ($morewherefilter) {
419 $tasksarraywithoutfilter = $taskstatic->getTasksArray(
null,
null, ($project->id ? $project->id : 0), $socid, 0,
'', $onlyopenedproject,
'', ($search_usertoprocessid ? $search_usertoprocessid : 0));
421$projectsrole = $taskstatic->getUserRolesForProjectsOrTasks($usertoprocess,
null, ($project->id ? $project->id : 0), 0, $onlyopenedproject);
422$tasksrole = $taskstatic->getUserRolesForProjectsOrTasks(
null, $usertoprocess, ($project->id ? $project->id : 0), 0, $onlyopenedproject);
428llxHeader(
"", $title,
"",
'', 0, 0, array(
'/core/js/timesheet.js'),
'',
'',
'mod-project project-activity page-activity_perweek');
433$param .= ($mode ?
'&mode='.urlencode($mode) :
'');
434$param .= ($search_project_ref ?
'&search_project_ref='.urlencode($search_project_ref) :
'');
435$param .= ($search_usertoprocessid > 0 ?
'&search_usertoprocessid='.urlencode((
string) $search_usertoprocessid) :
'');
436$param .= ($search_thirdparty ?
'&search_thirdparty='.urlencode($search_thirdparty) :
'');
437$param .= ($search_task_ref ?
'&search_task_ref='.urlencode($search_task_ref) :
'');
438$param .= ($search_task_label ?
'&search_task_label='.urlencode($search_task_label) :
'');
440$search_array_options = $search_array_options_project;
441$search_options_pattern =
'search_options_';
442include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
444$search_array_options = $search_array_options_task;
445$search_options_pattern =
'search_task_options_';
446include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
449$nav =
'<a class="inline-block valignmiddle" href="?year='.$prev_year.
"&month=".$prev_month.
"&day=".$prev_day.$param.
'">'.
img_previous($langs->trans(
"Previous")).
"</a>\n";
450$nav .=
' <span id="month_name">'.dol_print_date(
dol_mktime(0, 0, 0, $first_month, $first_day, $first_year),
"%Y").
", ".$langs->trans(
"WeekShort").
" ".$week.
" </span>\n";
451$nav .=
'<a class="inline-block valignmiddle" href="?year='.$next_year.
"&month=".$next_month.
"&day=".$next_day.$param.
'">'.
img_next($langs->trans(
"Next")).
"</a>\n";
452$nav .=
' '.$form->selectDate(-1,
'', 0, 0, 2,
"addtime", 1, ($conf->dol_optimize_smallscreen ? 0 : 1)).
' ';
453$nav .=
' <button type="submit" name="submitdateselect" value="x" class="nobordertransp button_search_x"><span class="fa fa-search"></span></button>';
457print
'<form name="addtime" method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
458print
'<input type="hidden" name="token" value="'.newToken().
'">';
459print
'<input type="hidden" name="action" value="addtime">';
460print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
461print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
462print
'<input type="hidden" name="mode" value="'.$mode.
'">';
463print
'<input type="hidden" name="day" value="'.$day.
'">';
464print
'<input type="hidden" name="month" value="'.$month.
'">';
465print
'<input type="hidden" name="year" value="'.$year.
'">';
468print
dol_get_fiche_head($head,
'inputperweek', $langs->trans(
'TimeSpent'), -1, $picto);
471print
'<div class="hideonsmartphone opacitymedium">';
472if ($mine || ($usertoprocess->id == $user->id)) {
473 print $langs->trans(
"MyTasksDesc").
'.'.($onlyopenedproject ?
' '.$langs->trans(
"OnlyOpenedProject") :
'').
'<br>';
475 if (empty($usertoprocess->id) || $usertoprocess->id < 0) {
476 if ($user->hasRight(
'projet',
'all',
'lire') && !$socid) {
477 print $langs->trans(
"ProjectsDesc").
'.'.($onlyopenedproject ?
' '.$langs->trans(
"OnlyOpenedProject") :
'').
'<br>';
479 print $langs->trans(
"ProjectsPublicTaskDesc").
'.'.($onlyopenedproject ?
' '.$langs->trans(
"OnlyOpenedProject") :
'').
'<br>';
483if ($mine || ($usertoprocess->id == $user->id)) {
484 print $langs->trans(
"OnlyYourTaskAreVisible").
'<br>';
486 print $langs->trans(
"AllTaskVisibleButEditIfYouAreAssigned").
'<br>';
492print
'<div class="'.($conf->dol_optimize_smallscreen ?
'center centpercent' :
'floatright right').
'">'.$nav.
'</div>';
494print
'<div class="colorbacktimesheet valignmiddle'.($conf->dol_optimize_smallscreen ?
' center' :
' float').
'">';
495$titleassigntask = $langs->transnoentities(
"AssignTaskToMe");
496if ($usertoprocess->id != $user->id) {
497 $titleassigntask = $langs->transnoentities(
"AssignTaskToUser", $usertoprocess->getFullName($langs));
499print
'<div class="taskiddiv inline-block">';
500print
img_picto(
'',
'projecttask',
'class="pictofixedwidth"');
501$formproject->selectTasks($socid ? $socid : -1, $taskid,
'taskid', 32, 0,
'-- '.$langs->trans(
"ChooseANotYetAssignedTask").
' --', 1, 0, 0,
'widthcentpercentminusx',
'',
'all', $usertoprocess);
504print $formcompany->selectTypeContact($object,
'',
'type',
'internal',
'position', 0,
'maxwidth150onsmartphone');
505print
'<input type="submit" class="button valignmiddle smallonsmartphone small" name="assigntask" value="'.dol_escape_htmltag($titleassigntask).
'">';
508print
'<div class="clearboth" style="padding-bottom: 20px;"></div>';
511$startday =
dol_mktime(12, 0, 0, $startdayarray[
'first_month'], $startdayarray[
'first_day'], $startdayarray[
'first_year']);
513$numendworkingday = 0;
514$numstartworkingday = 0;
516$isavailable = array();
519$numstartworkingday = 1;
520$numendworkingday = 5;
524 if (count($tmparray) >= 2) {
525 $numstartworkingday = $tmparray[0];
526 $numendworkingday = $tmparray[1];
530for ($idw = 0; $idw < 7; $idw++) {
536 $isavailablefordayanduser = $holiday->verifDateHolidayForTimestamp($usertoprocess->id, $dayinloopfromfirstdaytoshow, $statusofholidaytocheck);
537 $isavailable[$dayinloopfromfirstdaytoshow] = $isavailablefordayanduser;
539 $test =
num_public_holiday($dayinloopfromfirstdaytoshowgmt, $dayinloopfromfirstdaytoshowgmt + 86400, $mysoc->country_code);
541 $isavailable[$dayinloopfromfirstdaytoshow] = array(
'morning' =>
false,
'afternoon' =>
false,
'morning_reason' =>
'public_holiday',
'afternoon_reason' =>
'public_holiday');
560$includeonly =
'hierarchyme';
561if (!$user->hasRight(
'user',
'user',
'lire')) {
562 $includeonly = array($user->id);
564$selecteduser = $search_usertoprocessid ? $search_usertoprocessid : $usertoprocess->id;
565$moreforfiltertmp = $form->select_dolusers($selecteduser,
'search_usertoprocessid', 0,
null, 0, $includeonly,
'', 0, 0, 0,
'', 0,
'',
'maxwidth200');
566if ($form->num > 1 || empty($conf->dol_optimize_smallscreen)) {
567 $moreforfilter .=
'<div class="divsearchfield">';
568 $moreforfilter .=
'<div class="inline-block hideonsmartphone"></div>';
569 $moreforfilter .=
img_picto($langs->trans(
'Filter').
' '.$langs->trans(
'User'),
'user',
'class="paddingright pictofixedwidth"');
570 $moreforfilter .= $moreforfiltertmp;
571 $moreforfilter .=
'</div>';
573 $moreforfilter .=
'<input type="hidden" name="search_usertoprocessid" value="'.$selecteduser.
'">';
577 $moreforfilter .=
'<div class="divsearchfield">';
578 $moreforfilter .=
'<div class="inline-block"></div>';
579 $moreforfilter .=
img_picto($langs->trans(
'Filter').
' '.$langs->trans(
'Project'),
'project',
'class="paddingright pictofixedwidth"').
'<input type="text" name="search_project_ref" class="maxwidth100" value="'.
dol_escape_htmltag($search_project_ref).
'">';
580 $moreforfilter .=
'</div>';
582 $moreforfilter .=
'<div class="divsearchfield">';
583 $moreforfilter .=
'<div class="inline-block"></div>';
584 $moreforfilter .=
img_picto($langs->trans(
'Filter').
' '.$langs->trans(
'ThirdParty'),
'company',
'class="paddingright pictofixedwidth"').
'<input type="text" name="search_thirdparty" class="maxwidth100" value="'.
dol_escape_htmltag($search_thirdparty).
'">';
585 $moreforfilter .=
'</div>';
588if (!empty($moreforfilter)) {
589 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
590 print $moreforfilter;
591 $parameters = array();
592 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
593 print $hookmanager->resPrint;
598$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
600$selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage);
604if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
607if (!empty($arrayfields[
't.progress'][
'checked'])) {
610foreach ($arrayfields as $key => $val) {
611 if ($val[
'checked'] && substr($key, 0, 5) ==
'efpt.') {
616print
'<div class="div-table-responsive">';
617print
'<table class="tagtable liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'" id="tablelines3">'.
"\n";
619print
'<tr class="liste_titre_filter">';
621 print
'<td class="liste_titre"><input type="text" size="4" name="search_project_ref" value="'.dol_escape_htmltag($search_project_ref).
'"></td>';
624 print
'<td class="liste_titre"><input type="text" size="4" name="search_thirdparty" value="'.dol_escape_htmltag($search_thirdparty).
'"></td>';
626print
'<td class="liste_titre"><input type="text" size="4" name="search_task_label" value="'.dol_escape_htmltag($search_task_label).
'"></td>';
628$search_options_pattern =
'search_task_options_';
629$extrafieldsobjectkey =
'projet_task';
630$extrafieldsobjectprefix =
'efpt.';
631include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
632if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
633 print
'<td class="liste_titre"></td>';
635if (!empty($arrayfields[
't.progress'][
'checked'])) {
636 print
'<td class="liste_titre right"><input type="text" size="4" name="search_declared_progress" value="'.dol_escape_htmltag($search_declared_progress).
'"></td>';
638if (!empty($arrayfields[
'timeconsumed'][
'checked'])) {
639 print
'<td class="liste_titre"></td>';
640 print
'<td class="liste_titre"></td>';
642for ($idw = 0; $idw < 7; $idw++) {
643 print
'<td class="liste_titre"></td>';
646print
'<td class="liste_titre nowrap right">';
647$searchpicto = $form->showFilterAndCheckAddButtons(0);
652print
'<tr class="liste_titre">';
654 print
'<th>'.$langs->trans(
"Project").
'</th>';
657 print
'<th>'.$langs->trans(
"ThirdParty").
'</th>';
659print
'<th>'.$langs->trans(
"Task").
'</th>';
661$extrafieldsobjectkey =
'projet_task';
662$extrafieldsobjectprefix =
'efpt.';
663include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
664if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
665 print
'<th class="leftborder plannedworkload minwidth75 maxwidth100 right" title="'.dol_escape_htmltag($langs->trans(
"PlannedWorkload")).
'">'.$form->textwithpicto($langs->trans(
"PlannedWorkloadShort"), $langs->trans(
"PlannedWorkload")).
'</th>';
667if (!empty($arrayfields[
't.progress'][
'checked'])) {
668 print
'<th class="right minwidth75 maxwidth100" title="'.dol_escape_htmltag($langs->trans(
"ProgressDeclared")).
'">'.$langs->trans(
"ProgressDeclared").
'</th>';
670if (!empty($arrayfields[
'timeconsumed'][
'checked'])) {
671 print
'<th class="right maxwidth100">'.$langs->trans(
"TimeSpentSmall").
'<br>';
672 print
'<span class="nowraponall">';
673 print
'<span class="opacitymedium nopadding userimg"><img alt="Photo" class="photouserphoto userphoto" src="'.DOL_URL_ROOT.
'/theme/common/everybody.png"></span>';
674 print
'<span class="opacitymedium paddingleft">'.$langs->trans(
"EverybodySmall").
'</span>';
677 print
'<th class="right maxwidth75">'.$langs->trans(
"TimeSpentSmall").($usertoprocess->firstname ?
'<br><span class="nowraponall">'.$usertoprocess->getNomUrl(-2).
'<span class="opacitymedium paddingleft">'.
dol_trunc($usertoprocess->firstname, 10).
'</span></span>' :
'').
'</th>';
679for ($idw = 0; $idw < 7; $idw++) {
683 if ((($idw + 1) < $numstartworkingday) || (($idw + 1) > $numendworkingday)) {
684 $cssweekend =
'weekend';
690 if (!$isavailable[$tmpday][
'morning'] && !$isavailable[$tmpday][
'afternoon']) {
691 $cssonholiday .=
'onholidayallday ';
692 } elseif (!$isavailable[$tmpday][
'morning']) {
693 $cssonholiday .=
'onholidaymorning ';
694 } elseif (!$isavailable[$tmpday][
'afternoon']) {
695 $cssonholiday .=
'onholidayafternoon ';
699 $month = (int)
dol_print_date($dayinloopfromfirstdaytoshow,
'%m');
702 print
'<th width="6%" class="center bold hide'.$idw.($cssonholiday ?
' '.$cssonholiday :
'').($cssweekend ?
' '.$cssweekend :
'').
'">';
703 print
'<a href="'.DOL_URL_ROOT.
'/projet/activity/perday.php?year='.$year.
'&month='.$month.
'&day='.$day.
'">';
705 print
'<br>'.dol_print_date($dayinloopfromfirstdaytoshow,
'dayreduceformat').
'</a></th>';
709print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
713$colspan = 1 + (!
getDolGlobalString(
'PROJECT_TIMESHEET_DISABLEBREAK_ON_PROJECT') ? 0 : 2);
716if ($conf->use_javascript_ajax && count($tasksarray) >=
getDolGlobalInt(
'NBLINES_TO_DUPLICATE_TOTAL_TIMESPENT_ON_TOP', 10)) {
717 print
'<tr class="liste_total hideonsmartphone">';
718 print
'<td class="liste_total" colspan="'.($colspan + $addcolspan).
'">';
719 print $langs->trans(
"Total");
720 $htmltooltip = $langs->trans(
"ExpectedWorkedHours").
': <strong>'.
price($usertoprocess->weeklyhours, 1, $langs, 0, 0);
721 print
'<span class="opacitymediumbycolor"> <div class="totalDayAll inline-block bold"> </div> '.($usertoprocess->weeklyhours ?
' / '.$form->textwithpicto(
price($usertoprocess->weeklyhours, 1, $langs, 0, 0), $htmltooltip) :
'').
'</strong></span>';
723 if (!empty($arrayfields[
'timeconsumed'][
'checked'])) {
724 print
'<td class="liste_total"></td>';
725 print
'<td class="liste_total"></td>';
727 for ($idw = 0; $idw < 7; $idw++) {
729 if ((($idw + 1) < $numstartworkingday) || (($idw + 1) > $numendworkingday)) {
730 $cssweekend =
'weekend';
736 if (!$isavailable[$tmpday][
'morning'] && !$isavailable[$tmpday][
'afternoon']) {
737 $cssonholiday .=
'onholidayallday ';
738 } elseif (!$isavailable[$tmpday][
'morning']) {
739 $cssonholiday .=
'onholidaymorning ';
740 } elseif (!$isavailable[$tmpday][
'afternoon']) {
741 $cssonholiday .=
'onholidayafternoon ';
743 print
'<td class="liste_total center hide'.$idw.($cssonholiday ?
' '.$cssonholiday :
'').($cssweekend ?
' '.$cssweekend :
'').
'"><div class="totalDay'.$idw.
'"> </div></td>';
745 print
'<td class="liste_total center"></td>';
752$restrictviewformytask =
getDolGlobalInt(
'PROJECT_TIME_SHOW_TASK_NOT_ASSIGNED', 2);
754if (count($tasksarray) > 0) {
761 $totalforvisibletasks =
projectLinesPerWeek($j, $firstdaytoshow, $usertoprocess, 0, $tasksarray, $level, $projectsrole, $tasksrole, $mine, $restrictviewformytask, $isavailable, 0, $arrayfields, $extrafields);
767 $listofdistinctprojectid = array();
768 if (!empty($tasksarraywithoutfilter) && is_array($tasksarraywithoutfilter) && count($tasksarraywithoutfilter)) {
769 foreach ($tasksarraywithoutfilter as $tmptask) {
770 $listofdistinctprojectid[$tmptask->fk_project] = $tmptask->fk_project;
774 $totalforeachday = array();
775 foreach ($listofdistinctprojectid as $tmpprojectid) {
776 $projectstatic->id = $tmpprojectid;
777 $projectstatic->loadTimeSpent($firstdaytoshow, 0, $usertoprocess->id);
778 for ($idw = 0; $idw < 7; $idw++) {
780 if (empty($totalforeachday[$tmpday])) {
781 $totalforeachday[$tmpday] = empty($projectstatic->weekWorkLoad[$tmpday]) ? 0 : $projectstatic->weekWorkLoad[$tmpday];
783 $totalforeachday[$tmpday] += empty($projectstatic->weekWorkLoad[$tmpday]) ? 0 : $projectstatic->weekWorkLoad[$tmpday];
793 if (count($totalforeachday)) {
794 for ($idw = 0; $idw < 7; $idw++) {
796 $timeonothertasks = ($totalforeachday[$tmpday] - $totalforvisibletasks[$tmpday]);
797 if ($timeonothertasks) {
806 print
'<tr class="oddeven othertaskwithtime">';
807 print
'<td colspan="'.($colspan + $addcolspan).
'" class="opacitymedium">';
808 print $langs->trans(
"OtherFilteredTasks");
810 if (!empty($arrayfields[
'timeconsumed'][
'checked'])) {
811 print
'<td class="liste_total"></td>';
812 print
'<td class="liste_total"></td>';
815 for ($idw = 0; $idw < 7; $idw++) {
818 if ((($idw + 1) < $numstartworkingday) || (($idw + 1) > $numendworkingday)) {
819 $cssweekend =
'weekend';
822 print
'<td class="center hide'.$idw.
' '.($cssweekend ?
' '.$cssweekend :
'').($j <= 1 ?
' borderleft' :
'').
'">';
824 $timeonothertasks = ($totalforeachday[$tmpday] - $totalforvisibletasks[$tmpday]);
825 if ($timeonothertasks) {
826 print
'<span class="timesheetalreadyrecorded" title="texttoreplace"><input type="text" class="center smallpadd width40" disabled="" id="timespent[-1]['.$idw.
']" name="task[-1]['.$idw.
']" value="';
832 print
' <td class="liste_total"></td>';
836 if ($conf->use_javascript_ajax) {
837 print
'<tr class="liste_total">';
838 print
'<td class="liste_total" colspan="'.($colspan + $addcolspan).
'">';
839 print $langs->trans(
"Total");
840 $htmltooltip = $langs->trans(
"ExpectedWorkedHours").
': <strong>'.
price($usertoprocess->weeklyhours, 1, $langs, 0, 0);
841 print
'<span class="opacitymediumbycolor"> <div class="totalDayAll inline-block bold"> </div> '.($usertoprocess->weeklyhours ?
' / '.$form->textwithpicto(
price($usertoprocess->weeklyhours, 1, $langs, 0, 0), $htmltooltip) :
'').
'</strong></span>';
843 if (!empty($arrayfields[
'timeconsumed'][
'checked'])) {
844 print
'<td class="liste_total"></td>';
845 print
'<td class="liste_total"></td>';
849 for ($idw = 0; $idw < 7; $idw++) {
852 if ((($idw + 1) < $numstartworkingday) || (($idw + 1) > $numendworkingday)) {
853 $cssweekend =
'weekend';
859 if (!$isavailable[$tmpday][
'morning'] && !$isavailable[$tmpday][
'afternoon']) {
860 $cssonholiday .=
'onholidayallday ';
861 } elseif (!$isavailable[$tmpday][
'morning']) {
862 $cssonholiday .=
'onholidaymorning ';
863 } elseif (!$isavailable[$tmpday][
'afternoon']) {
864 $cssonholiday .=
'onholidayafternoon ';
867 print
'<td class="liste_total center hide'.$idw.($cssonholiday ?
' '.$cssonholiday :
'').($cssweekend ?
' '.$cssweekend :
'').($j <= 1 ?
' borderleft' :
'').
'"><div class="totalDay'.$idw.
'"> </div></td>';
869 print
'<td class="liste_total center"></td>';
873 print
'<tr><td colspan="15"><span class="opacitymedium">'.$langs->trans(
"NoAssignedTasks").
'</span></td></tr>';
878print
'<input type="hidden" id="numberOfLines" name="numberOfLines" value="'.count($tasksarray).
'"/>'.
"\n";
880print $form->buttonsSaveCancel(
"Save",
'');
882print
'</form>'.
"\n\n";
886if ($conf->use_javascript_ajax) {
887 print
"\n<!-- JS CODE TO ENABLE Tooltips on all object with class classfortooltip -->\n";
888 print
'<script type="text/javascript">'.
"\n";
889 print
"jQuery(document).ready(function () {\n";
890 print
' jQuery(".timesheetalreadyrecorded").tooltip({
891 show: { collision: "flipfit", effect:\'toggle\', delay:50 },
892 hide: { effect:\'toggle\', delay: 50 },
893 tooltipClass: "mytooltip",
894 content: function () {
895 return \''.dol_escape_js($langs->trans(
"TimeAlreadyRecorded", $usertoprocess->getFullName($langs))).
'\';
901 print " updateTotal(".((int) $idw).", '".dol_escape_js($modeinput)."');";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class of the module paid holiday.
const STATUS_APPROVED
Approved.
Class to manage projects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
dol_get_next_week($day, $week, $month, $year)
Return next week.
dol_get_first_day_week($day, $month, $year, $gm=false)
Return first day of week for a date.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
Return, in clear text, value of a number of seconds in days, hours and minutes.
num_public_holiday($timestampStart, $timestampEnd, $country_code='', $lastday=0, $includesaturday=-1, $includesunday=-1, $includefriday=-1, $includemonday=-1)
Return the number of non working days including Friday, Saturday and Sunday (or not) between 2 dates ...
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
img_previous($titlealt='default', $moreatt='')
Show previous logo.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_next($titlealt='default', $moreatt='')
Show next logo.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
project_timesheet_prepare_head($mode, $fuser=null)
Prepare array with list of tabs.
projectLinesPerWeek(&$inc, $firstdaytoshow, $fuser, $parent, $lines, &$level, &$projectsrole, &$tasksrole, $mine, $restricteditformytask, &$isavailable, $oldprojectforbreak=0, $arrayfields=array(), $extrafields=null)
Output a task line into a perday input mode.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.