tasks.php 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. <?php
  2. /* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2019 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2005-2017 Regis Houssin <regis.houssin@inodbox.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. /**
  20. * \file htdocs/projet/tasks.php
  21. * \ingroup project
  22. * \brief List all tasks of a project
  23. */
  24. require "../main.inc.php";
  25. require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
  26. require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
  27. require_once DOL_DOCUMENT_ROOT.'/core/lib/project.lib.php';
  28. require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
  29. require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
  30. require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
  31. require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
  32. if ($conf->categorie->enabled) {
  33. require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
  34. }
  35. // Load translation files required by the page
  36. $langsLoad=array('projects', 'users', 'companies');
  37. if (!empty($conf->eventorganization->enabled)) {
  38. $langsLoad[]='eventorganization';
  39. }
  40. $langs->loadLangs($langsLoad);
  41. $action = GETPOST('action', 'aZ09');
  42. $massaction = GETPOST('massaction', 'alpha');
  43. $show_files = GETPOST('show_files', 'int');
  44. $confirm = GETPOST('confirm', 'alpha');
  45. $toselect = GETPOST('toselect', 'array');
  46. $id = GETPOST('id', 'int');
  47. $ref = GETPOST('ref', 'alpha');
  48. $taskref = GETPOST('taskref', 'alpha');
  49. // Load variable for pagination
  50. $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
  51. $sortfield = GETPOST('sortfield', 'aZ09comma');
  52. $sortorder = GETPOST('sortorder', 'aZ09comma');
  53. $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
  54. if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
  55. $page = 0;
  56. } // If $page is not defined, or '' or -1 or if we click on clear filters
  57. $offset = $limit * $page;
  58. $pageprev = $page - 1;
  59. $pagenext = $page + 1;
  60. $backtopage = GETPOST('backtopage', 'alpha');
  61. $cancel = GETPOST('cancel', 'alpha');
  62. $search_user_id = GETPOST('search_user_id', 'int');
  63. $search_taskref = GETPOST('search_taskref');
  64. $search_tasklabel = GETPOST('search_tasklabel');
  65. $search_taskdescription = GETPOST('search_taskdescription');
  66. $search_dtstartday = GETPOST('search_dtstartday');
  67. $search_dtstartmonth = GETPOST('search_dtstartmonth');
  68. $search_dtstartyear = GETPOST('search_dtstartyear');
  69. $search_dtendday = GETPOST('search_dtendday');
  70. $search_dtendmonth = GETPOST('search_dtendmonth');
  71. $search_dtendyear = GETPOST('search_dtendyear');
  72. $search_planedworkload = GETPOST('search_planedworkload');
  73. $search_timespend = GETPOST('search_timespend');
  74. $search_progresscalc = GETPOST('search_progresscalc');
  75. $search_progressdeclare = GETPOST('search_progressdeclare');
  76. $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'projecttasklist';
  77. //if (! $user->rights->projet->all->lire) $mine=1; // Special for projects
  78. $object = new Project($db);
  79. $taskstatic = new Task($db);
  80. $extrafields = new ExtraFields($db);
  81. include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once
  82. if (!empty($conf->global->PROJECT_ALLOW_COMMENT_ON_PROJECT) && method_exists($object, 'fetchComments') && empty($object->comments)) {
  83. $object->fetchComments();
  84. }
  85. if ($id > 0 || !empty($ref)) {
  86. // fetch optionals attributes and labels
  87. $extrafields->fetch_name_optionals_label($object->table_element);
  88. }
  89. $extrafields->fetch_name_optionals_label($taskstatic->table_element);
  90. $search_array_options = $extrafields->getOptionalsFromPost($taskstatic->table_element, '', 'search_');
  91. // Default sort order (if not yet defined by previous GETPOST)
  92. if (!$sortfield) {
  93. reset($object->fields); $sortfield="t.".key($object->fields);
  94. } // Set here default search field. By default 1st field in definition. Reset is required to avoid key() to return null.
  95. if (!$sortorder) {
  96. $sortorder = "ASC";
  97. }
  98. // Security check
  99. $socid = 0;
  100. //if ($user->socid > 0) $socid = $user->socid; // For external user, no check is done on company because readability is managed by public status of project and assignement.
  101. $result = restrictedArea($user, 'projet', $id, 'projet&project');
  102. $diroutputmassaction = $conf->projet->dir_output.'/tasks/temp/massgeneration/'.$user->id;
  103. // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
  104. $hookmanager->initHooks(array('projecttaskscard', 'globalcard'));
  105. $progress = GETPOST('progress', 'int');
  106. $label = GETPOST('label', 'alpha');
  107. $description = GETPOST('description', 'restricthtml');
  108. $planned_workloadhour = (GETPOST('planned_workloadhour', 'int') ?GETPOST('planned_workloadhour', 'int') : 0);
  109. $planned_workloadmin = (GETPOST('planned_workloadmin', 'int') ?GETPOST('planned_workloadmin', 'int') : 0);
  110. $planned_workload = $planned_workloadhour * 3600 + $planned_workloadmin * 60;
  111. // Definition of fields for list
  112. $arrayfields = array(
  113. 't.ref'=>array('label'=>$langs->trans("RefTask"), 'checked'=>1, 'position'=>1),
  114. 't.label'=>array('label'=>$langs->trans("LabelTask"), 'checked'=>1, 'position'=>2),
  115. 't.description'=>array('label'=>$langs->trans("Description"), 'checked'=>0, 'position'=>3),
  116. 't.dateo'=>array('label'=>$langs->trans("DateStart"), 'checked'=>1, 'position'=>4),
  117. 't.datee'=>array('label'=>$langs->trans("Deadline"), 'checked'=>1, 'position'=>5),
  118. 't.planned_workload'=>array('label'=>$langs->trans("PlannedWorkload"), 'checked'=>1, 'position'=>6),
  119. 't.duration_effective'=>array('label'=>$langs->trans("TimeSpent"), 'checked'=>1, 'position'=>7),
  120. 't.progress_calculated'=>array('label'=>$langs->trans("ProgressCalculated"), 'checked'=>1, 'position'=>8),
  121. 't.progress'=>array('label'=>$langs->trans("ProgressDeclared"), 'checked'=>1, 'position'=>9),
  122. 't.progress_summary'=>array('label'=>$langs->trans("TaskProgressSummary"), 'checked'=>1, 'position'=>10),
  123. 'c.assigned'=>array('label'=>$langs->trans("TaskRessourceLinks"), 'checked'=>1, 'position'=>11),
  124. );
  125. if ($object->usage_bill_time) {
  126. $arrayfields['t.tobill'] = array('label'=>$langs->trans("TimeToBill"), 'checked'=>0, 'position'=>11);
  127. $arrayfields['t.billed'] = array('label'=>$langs->trans("TimeBilled"), 'checked'=>0, 'position'=>12);
  128. }
  129. // Extra fields
  130. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
  131. $arrayfields = dol_sort_array($arrayfields, 'position');
  132. $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
  133. /*
  134. * Actions
  135. */
  136. $parameters = array('id'=>$id);
  137. $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
  138. if ($reshook < 0) {
  139. setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
  140. }
  141. if (empty($reshook)) {
  142. // Selection of new fields
  143. include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
  144. // Purge search criteria
  145. if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
  146. $search_user_id = "";
  147. $search_taskref = '';
  148. $search_tasklabel = '';
  149. $search_dtstartday = '';
  150. $search_dtstartmonth = '';
  151. $search_dtstartyear = '';
  152. $search_dtendday = '';
  153. $search_dtendmonth = '';
  154. $search_dtendyear = '';
  155. $search_planedworkload = '';
  156. $search_timespend = '';
  157. $search_progresscalc = '';
  158. $search_progressdeclare = '';
  159. $toselect = '';
  160. $search_array_options = array();
  161. }
  162. // Mass actions
  163. $objectclass = 'Task';
  164. $objectlabel = 'Tasks';
  165. $permissiontoread = $user->rights->projet->lire;
  166. $permissiontodelete = $user->rights->projet->supprimer;
  167. $uploaddir = $conf->projet->dir_output.'/tasks';
  168. include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
  169. }
  170. $morewherefilterarray = array();
  171. if (!empty($search_taskref)) {
  172. $morewherefilterarray[] = natural_search('t.ref', $search_taskref, 0, 1);
  173. }
  174. if (!empty($search_tasklabel)) {
  175. $morewherefilterarray[] = natural_search('t.label', $search_tasklabel, 0, 1);
  176. }
  177. $moresql = dolSqlDateFilter('t.dateo', $search_dtstartday, $search_dtstartmonth, $search_dtstartyear, 1);
  178. if ($moresql) {
  179. $morewherefilterarray[] = $moresql;
  180. }
  181. $moresql = dolSqlDateFilter('t.datee', $search_dtendday, $search_dtendmonth, $search_dtendyear, 1);
  182. if ($moresql) {
  183. $morewherefilterarray[] = $moresql;
  184. }
  185. if (!empty($search_planedworkload)) {
  186. $morewherefilterarray[] = natural_search('t.planned_workload', $search_planedworkload, 1, 1);
  187. }
  188. if (!empty($search_timespend)) {
  189. $morewherefilterarray[] = natural_search('t.duration_effective', $search_timespend, 1, 1);
  190. }
  191. if (!empty($search_progresscalc)) {
  192. $filterprogresscalc = 'if '.natural_search('round(100 * $line->duration / $line->planned_workload,2)', $search_progresscalc, 1, 1).'{return 1;} else {return 0;}';
  193. } else {
  194. $filterprogresscalc = '';
  195. }
  196. if (!empty($search_progressdeclare)) {
  197. $morewherefilterarray[] = natural_search('t.progress', $search_progressdeclare, 1, 1);
  198. }
  199. $morewherefilter = '';
  200. if (count($morewherefilterarray) > 0) {
  201. $morewherefilter = ' AND '.implode(' AND ', $morewherefilterarray);
  202. }
  203. if ($action == 'createtask' && $user->rights->projet->creer) {
  204. $error = 0;
  205. // If we use user timezone, we must change also view/list to use user timezone everywhere
  206. //$date_start = dol_mktime($_POST['dateohour'],$_POST['dateomin'],0,$_POST['dateomonth'],$_POST['dateoday'],$_POST['dateoyear'],'user');
  207. //$date_end = dol_mktime($_POST['dateehour'],$_POST['dateemin'],0,$_POST['dateemonth'],$_POST['dateeday'],$_POST['dateeyear'],'user');
  208. $date_start = dol_mktime(GETPOST('dateohour', 'int'), GETPOST('dateomin', 'int'), 0, GETPOST('dateomonth', 'int'), GETPOST('dateoday', 'int'), GETPOST('dateoyear', 'int'));
  209. $date_end = dol_mktime(GETPOST('dateehour', 'int'), GETPOST('dateemin', 'int'), 0, GETPOST('dateemonth', 'int'), GETPOST('dateeday', 'int'), GETPOST('dateeyear', 'int'));
  210. if (!$cancel) {
  211. if (empty($taskref)) {
  212. setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Ref")), null, 'errors');
  213. $action = 'create';
  214. $error++;
  215. }
  216. if (empty($label)) {
  217. setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Label")), null, 'errors');
  218. $action = 'create';
  219. $error++;
  220. } elseif (empty($_POST['task_parent'])) {
  221. setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("ChildOfProjectTask")), null, 'errors');
  222. $action = 'create';
  223. $error++;
  224. }
  225. if (!$error) {
  226. $tmparray = explode('_', GETPOST('task_parent'));
  227. $projectid = $tmparray[0];
  228. if (empty($projectid)) {
  229. $projectid = $id; // If projectid is ''
  230. }
  231. $task_parent = $tmparray[1];
  232. if (empty($task_parent)) {
  233. $task_parent = 0; // If task_parent is ''
  234. }
  235. $task = new Task($db);
  236. $task->fk_project = $projectid;
  237. $task->ref = $taskref;
  238. $task->label = $label;
  239. $task->description = $description;
  240. $task->planned_workload = $planned_workload;
  241. $task->fk_task_parent = $task_parent;
  242. $task->date_c = dol_now();
  243. $task->date_start = $date_start;
  244. $task->date_end = $date_end;
  245. $task->progress = $progress;
  246. // Fill array 'array_options' with data from add form
  247. $ret = $extrafields->setOptionalsFromPost(null, $task);
  248. $taskid = $task->create($user);
  249. if ($taskid > 0) {
  250. $result = $task->add_contact(GETPOST("userid", 'int'), 'TASKEXECUTIVE', 'internal');
  251. } else {
  252. if ($db->lasterrno() == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
  253. $langs->load("projects");
  254. setEventMessages($langs->trans('NewTaskRefSuggested'), '', 'warnings');
  255. $duplicate_code_error = true;
  256. } else {
  257. setEventMessages($task->error, $task->errors, 'errors');
  258. }
  259. $action = 'create';
  260. $error++;
  261. }
  262. }
  263. if (!$error) {
  264. if (!empty($backtopage)) {
  265. header("Location: ".$backtopage);
  266. exit;
  267. } elseif (empty($projectid)) {
  268. header("Location: ".DOL_URL_ROOT.'/projet/tasks/list.php'.(empty($mode) ? '' : '?mode='.$mode));
  269. exit;
  270. }
  271. $id = $projectid;
  272. }
  273. } else {
  274. if (!empty($backtopage)) {
  275. header("Location: ".$backtopage);
  276. exit;
  277. } elseif (empty($id)) {
  278. // We go back on task list
  279. header("Location: ".DOL_URL_ROOT.'/projet/tasks/list.php'.(empty($mode) ? '' : '?mode='.$mode));
  280. exit;
  281. }
  282. }
  283. }
  284. /*
  285. * View
  286. */
  287. $now = dol_now();
  288. $form = new Form($db);
  289. $formother = new FormOther($db);
  290. $socstatic = new Societe($db);
  291. $projectstatic = new Project($db);
  292. $taskstatic = new Task($db);
  293. $userstatic = new User($db);
  294. $title = $langs->trans("Project").' - '.$langs->trans("Tasks").' - '.$object->ref.' '.$object->name;
  295. if (!empty($conf->global->MAIN_HTML_TITLE) && preg_match('/projectnameonly/', $conf->global->MAIN_HTML_TITLE) && $object->name) {
  296. $title = $object->ref.' '.$object->name.' - '.$langs->trans("Tasks");
  297. }
  298. $help_url = "EN:Module_Projects|FR:Module_Projets|ES:M&oacute;dulo_Proyectos";
  299. llxHeader("", $title, $help_url);
  300. if ($id > 0 || !empty($ref)) {
  301. $result = $object->fetch($id, $ref);
  302. if ($result < 0) {
  303. setEventMessages(null, $object->errors, 'errors');
  304. }
  305. $result = $object->fetch_thirdparty();
  306. if ($result < 0) {
  307. setEventMessages(null, $object->errors, 'errors');
  308. }
  309. $result = $object->fetch_optionals();
  310. if ($result < 0) {
  311. setEventMessages(null, $object->errors, 'errors');
  312. }
  313. // To verify role of users
  314. //$userAccess = $object->restrictedProjectArea($user,'read');
  315. $userWrite = $object->restrictedProjectArea($user, 'write');
  316. //$userDelete = $object->restrictedProjectArea($user,'delete');
  317. //print "userAccess=".$userAccess." userWrite=".$userWrite." userDelete=".$userDelete;
  318. $tab = (GETPOSTISSET('tab') ? GETPOST('tab') : 'tasks');
  319. $head = project_prepare_head($object);
  320. print dol_get_fiche_head($head, $tab, $langs->trans("Project"), -1, ($object->public ? 'projectpub' : 'project'));
  321. $param = '&id='.$object->id;
  322. if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
  323. $param .= '&contextpage='.urlencode($contextpage);
  324. }
  325. if ($search_user_id) {
  326. $param .= '&search_user_id='.urlencode($search_user_id);
  327. }
  328. if ($search_taskref) {
  329. $param .= '&search_taskref='.urlencode($search_taskref);
  330. }
  331. if ($search_tasklabel) {
  332. $param .= '&search_tasklabel='.urlencode($search_tasklabel);
  333. }
  334. if ($search_taskdescription) {
  335. $param .= '&search_taskdescription='.urlencode($search_taskdescription);
  336. }
  337. if ($search_dtstartday) {
  338. $param .= '&search_dtstartday='.urlencode($search_dtstartday);
  339. }
  340. if ($search_dtstartmonth) {
  341. $param .= '&search_dtstartmonth='.urlencode($search_dtstartmonth);
  342. }
  343. if ($search_dtstartyear) {
  344. $param .= '&search_dtstartyear='.urlencode($search_dtstartyear);
  345. }
  346. if ($search_dtendday) {
  347. $param .= '&search_dtendday='.urlencode($search_dtendday);
  348. }
  349. if ($search_dtendmonth) {
  350. $param .= '&search_dtendmonth='.urlencode($search_dtendmonth);
  351. }
  352. if ($search_dtendyear) {
  353. $param .= '&search_dtendyear='.urlencode($search_dtendyear);
  354. }
  355. if ($search_planedworkload) {
  356. $param .= '&search_planedworkload='.urlencode($search_planedworkload);
  357. }
  358. if ($search_timespend) {
  359. $param .= '&search_timespend='.urlencode($search_timespend);
  360. }
  361. if ($search_progresscalc) {
  362. $param .= '&search_progresscalc='.urlencode($search_progresscalc);
  363. }
  364. if ($search_progressdeclare) {
  365. $param .= '&search_progressdeclare='.urlencode($search_progressdeclare);
  366. }
  367. if ($optioncss != '') {
  368. $param .= '&optioncss='.urlencode($optioncss);
  369. }
  370. // Add $param from extra fields
  371. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
  372. // Project card
  373. $linkback = '<a href="'.DOL_URL_ROOT.'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
  374. $morehtmlref = '<div class="refidno">';
  375. // Title
  376. $morehtmlref .= $object->title;
  377. // Thirdparty
  378. if ($object->thirdparty->id > 0) {
  379. $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1, 'project');
  380. }
  381. $morehtmlref .= '</div>';
  382. // Define a complementary filter for search of next/prev ref.
  383. if (!$user->rights->projet->all->lire) {
  384. $objectsListId = $object->getProjectsAuthorizedForUser($user, 0, 0);
  385. $object->next_prev_filter = " rowid IN (".$db->sanitize(count($objectsListId) ?join(',', array_keys($objectsListId)) : '0').")";
  386. }
  387. dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
  388. print '<div class="fichecenter">';
  389. print '<div class="fichehalfleft">';
  390. print '<div class="underbanner clearboth"></div>';
  391. print '<table class="border tableforfield centpercent">';
  392. // Usage
  393. if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES) || empty($conf->global->PROJECT_HIDE_TASKS) || !empty($conf->eventorganization->enabled)) {
  394. print '<tr><td class="tdtop">';
  395. print $langs->trans("Usage");
  396. print '</td>';
  397. print '<td>';
  398. if (!empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
  399. print '<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET('usage_opportunity') ? (GETPOST('usage_opportunity', 'alpha') != '' ? ' checked="checked"' : '') : ($object->usage_opportunity ? ' checked="checked"' : '')).'"> ';
  400. $htmltext = $langs->trans("ProjectFollowOpportunity");
  401. print $form->textwithpicto($langs->trans("ProjectFollowOpportunity"), $htmltext);
  402. print '<br>';
  403. }
  404. if (empty($conf->global->PROJECT_HIDE_TASKS)) {
  405. print '<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET('usage_task') ? (GETPOST('usage_task', 'alpha') != '' ? ' checked="checked"' : '') : ($object->usage_task ? ' checked="checked"' : '')).'"> ';
  406. $htmltext = $langs->trans("ProjectFollowTasks");
  407. print $form->textwithpicto($langs->trans("ProjectFollowTasks"), $htmltext);
  408. print '<br>';
  409. }
  410. if (empty($conf->global->PROJECT_HIDE_TASKS) && !empty($conf->global->PROJECT_BILL_TIME_SPENT)) {
  411. print '<input type="checkbox" disabled name="usage_bill_time"'.(GETPOSTISSET('usage_bill_time') ? (GETPOST('usage_bill_time', 'alpha') != '' ? ' checked="checked"' : '') : ($object->usage_bill_time ? ' checked="checked"' : '')).'"> ';
  412. $htmltext = $langs->trans("ProjectBillTimeDescription");
  413. print $form->textwithpicto($langs->trans("BillTime"), $htmltext);
  414. print '<br>';
  415. }
  416. if (!empty($conf->eventorganization->enabled)) {
  417. print '<input type="checkbox" disabled name="usage_organize_event"'.(GETPOSTISSET('usage_organize_event') ? (GETPOST('usage_organize_event', 'alpha') != '' ? ' checked="checked"' : '') : ($object->usage_organize_event ? ' checked="checked"' : '')).'"> ';
  418. $htmltext = $langs->trans("EventOrganizationDescriptionLong");
  419. print $form->textwithpicto($langs->trans("ManageOrganizeEvent"), $htmltext);
  420. }
  421. print '</td></tr>';
  422. }
  423. // Visibility
  424. print '<tr><td class="titlefield">'.$langs->trans("Visibility").'</td><td>';
  425. if ($object->public) {
  426. print $langs->trans('SharedProject');
  427. } else {
  428. print $langs->trans('PrivateProject');
  429. }
  430. print '</td></tr>';
  431. // Date start - end
  432. print '<tr><td>'.$langs->trans("DateStart").' - '.$langs->trans("DateEnd").'</td><td>';
  433. $start = dol_print_date($object->date_start, 'day');
  434. print ($start ? $start : '?');
  435. $end = dol_print_date($object->date_end, 'day');
  436. print ' - ';
  437. print ($end ? $end : '?');
  438. if ($object->hasDelay()) {
  439. print img_warning("Late");
  440. }
  441. print '</td></tr>';
  442. // Budget
  443. print '<tr><td>'.$langs->trans("Budget").'</td><td>';
  444. if (strcmp($object->budget_amount, '')) {
  445. print price($object->budget_amount, '', $langs, 1, 0, 0, $conf->currency);
  446. }
  447. print '</td></tr>';
  448. // Other attributes
  449. $cols = 2;
  450. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
  451. print '</table>';
  452. print '</div>';
  453. print '<div class="fichehalfright">';
  454. print '<div class="ficheaddleft">';
  455. print '<div class="underbanner clearboth"></div>';
  456. print '<table class="border tableforfield centpercent">';
  457. // Description
  458. print '<td class="titlefield tdtop">'.$langs->trans("Description").'</td><td>';
  459. print nl2br($object->description);
  460. print '</td></tr>';
  461. // Categories
  462. if ($conf->categorie->enabled) {
  463. print '<tr><td class="valignmiddle">'.$langs->trans("Categories").'</td><td>';
  464. print $form->showCategories($object->id, Categorie::TYPE_PROJECT, 1);
  465. print "</td></tr>";
  466. }
  467. print '</table>';
  468. print '</div>';
  469. print '</div>';
  470. print '</div>';
  471. print '<div class="clearboth"></div>';
  472. print dol_get_fiche_end();
  473. }
  474. if ($action == 'create' && $user->rights->projet->creer && (empty($object->thirdparty->id) || $userWrite > 0)) {
  475. if ($id > 0 || !empty($ref)) {
  476. print '<br>';
  477. }
  478. print load_fiche_titre($langs->trans("NewTask"), '', 'projecttask');
  479. if ($object->id > 0 && $object->statut == Project::STATUS_CLOSED) {
  480. print '<div class="warning">';
  481. $langs->load("errors");
  482. print $langs->trans("WarningProjectClosed");
  483. print '</div>';
  484. }
  485. if ($object->id > 0 && $object->statut == Project::STATUS_DRAFT) {
  486. print '<div class="warning">';
  487. $langs->load("errors");
  488. print $langs->trans("WarningProjectDraft");
  489. print '</div>';
  490. }
  491. print '<form action="'.$_SERVER['PHP_SELF'].'" method="POST">';
  492. print '<input type="hidden" name="token" value="'.newToken().'">';
  493. print '<input type="hidden" name="action" value="createtask">';
  494. print '<input type="hidden" name="backtopage" value="'.$backtopage.'">';
  495. if (!empty($object->id)) {
  496. print '<input type="hidden" name="id" value="'.$object->id.'">';
  497. }
  498. print dol_get_fiche_head('');
  499. print '<table class="border centpercent">';
  500. $defaultref = '';
  501. $obj = empty($conf->global->PROJECT_TASK_ADDON) ? 'mod_task_simple' : $conf->global->PROJECT_TASK_ADDON;
  502. if (!empty($conf->global->PROJECT_TASK_ADDON) && is_readable(DOL_DOCUMENT_ROOT."/core/modules/project/task/".$conf->global->PROJECT_TASK_ADDON.".php")) {
  503. require_once DOL_DOCUMENT_ROOT."/core/modules/project/task/".$conf->global->PROJECT_TASK_ADDON.'.php';
  504. $modTask = new $obj;
  505. $defaultref = $modTask->getNextValue($object->thirdparty, null);
  506. }
  507. if (is_numeric($defaultref) && $defaultref <= 0) {
  508. $defaultref = '';
  509. }
  510. // Ref
  511. print '<tr><td class="titlefieldcreate"><span class="fieldrequired">'.$langs->trans("Ref").'</span></td><td>';
  512. if (empty($duplicate_code_error)) {
  513. print (GETPOSTISSET("ref") ? GETPOST("ref", 'alpha') : $defaultref);
  514. } else {
  515. print $defaultref;
  516. }
  517. print '<input type="hidden" name="taskref" value="'.(GETPOSTISSET("ref") ? GETPOST("ref", 'alpha') : $defaultref).'">';
  518. print '</td></tr>';
  519. // Label
  520. print '<tr><td class="fieldrequired">'.$langs->trans("Label").'</td><td>';
  521. print '<input type="text" name="label" autofocus class="minwidth500 maxwidthonsmartphone" value="'.$label.'">';
  522. print '</td></tr>';
  523. // Project
  524. print '<tr><td class="fieldrequired">'.$langs->trans("ChildOfProjectTask").'</td><td>';
  525. print img_picto('', 'project');
  526. $formother->selectProjectTasks(GETPOST('task_parent'), $projectid ? $projectid : $object->id, 'task_parent', 0, 0, 1, 1, 0, '0,1', 'maxwidth500');
  527. print '</td></tr>';
  528. // Assigned to
  529. print '<tr><td>'.$langs->trans("AffectedTo").'</td><td>';
  530. $contactsofproject = (!empty($object->id) ? $object->getListContactId('internal') : '');
  531. if (is_array($contactsofproject) && count($contactsofproject)) {
  532. print $form->select_dolusers($user->id, 'userid', 0, '', 0, '', $contactsofproject, 0, 0, 0, '', 0, '', 'maxwidth300');
  533. } else {
  534. print '<span class="opacitymedium">'.$langs->trans("NoUserAssignedToTheProject").'</span>';
  535. }
  536. print '</td></tr>';
  537. // Date start
  538. print '<tr><td>'.$langs->trans("DateStart").'</td><td>';
  539. print $form->selectDate(($date_start ? $date_start : ''), 'dateo', 1, 1, 0, '', 1, 1);
  540. print '</td></tr>';
  541. // Date end
  542. print '<tr><td>'.$langs->trans("DateEnd").'</td><td>';
  543. print $form->selectDate(($date_end ? $date_end : -1), 'datee', -1, 1, 0, '', 1, 1);
  544. print '</td></tr>';
  545. // Planned workload
  546. print '<tr><td>'.$langs->trans("PlannedWorkload").'</td><td>';
  547. print $form->select_duration('planned_workload', $planned_workload ? $planned_workload : 0, 0, 'text');
  548. print '</td></tr>';
  549. // Progress
  550. print '<tr><td>'.$langs->trans("ProgressDeclared").'</td><td colspan="3">';
  551. print $formother->select_percent($progress, 'progress', 0, 5, 0, 100, 1);
  552. print '</td></tr>';
  553. // Description
  554. print '<tr><td class="tdtop">'.$langs->trans("Description").'</td>';
  555. print '<td>';
  556. print '<textarea name="description" class="quatrevingtpercent" rows="'.ROWS_4.'">'.$description.'</textarea>';
  557. print '</td></tr>';
  558. // Other options
  559. $parameters = array();
  560. $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $taskstatic, $action); // Note that $action and $object may have been modified by hook
  561. print $hookmanager->resPrint;
  562. if (empty($reshook) && !empty($extrafields->attributes[$taskstatic->table_element]['label'])) {
  563. print $taskstatic->showOptionals($extrafields, 'edit'); // Do not use $object here that is object of project but use $taskstatic
  564. }
  565. print '</table>';
  566. print dol_get_fiche_end();
  567. print '<div class="center">';
  568. print '<input type="submit" class="button" name="add" value="'.$langs->trans("Add").'">';
  569. print ' &nbsp; &nbsp; ';
  570. print '<input type="submit" class="button button-cancel" name="cancel" value="'.$langs->trans("Cancel").'">';
  571. print '</div>';
  572. print '</form>';
  573. } elseif ($id > 0 || !empty($ref)) {
  574. $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage); // This also change content of $arrayfields
  575. /*
  576. * Projet card in view mode
  577. */
  578. print '<br>';
  579. // Link to create task
  580. $linktocreatetaskParam = array();
  581. $linktocreatetaskUserRight = false;
  582. if ($user->rights->projet->all->creer || $user->rights->projet->creer) {
  583. if ($object->public || $userWrite > 0) {
  584. $linktocreatetaskUserRight = true;
  585. } else {
  586. $linktocreatetaskParam['attr']['title'] = $langs->trans("NotOwnerOfProject");
  587. }
  588. }
  589. $linktocreatetask = dolGetButtonTitle($langs->trans('AddTask'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/projet/tasks.php?action=create'.$param.'&backtopage='.urlencode($_SERVER['PHP_SELF'].'?id='.$object->id), '', $linktocreatetaskUserRight, $linktocreatetaskParam);
  590. print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'">';
  591. if ($optioncss != '') {
  592. print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
  593. }
  594. print '<input type="hidden" name="token" value="'.newToken().'">';
  595. print '<input type="hidden" name="action" value="list">';
  596. print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
  597. print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
  598. print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
  599. print '<input type="hidden" name="page" value="'.$page.'">';
  600. print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
  601. $title = $langs->trans("ListOfTasks");
  602. $linktotasks = dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-list-alt imgforviewmode', DOL_URL_ROOT.'/projet/tasks.php?id='.$object->id, '', 1, array('morecss'=>'reposition btnTitleSelected'));
  603. $linktotasks .= dolGetButtonTitle($langs->trans('ViewGantt'), '', 'fa fa-stream imgforviewmode', DOL_URL_ROOT.'/projet/ganttview.php?id='.$object->id.'&withproject=1', '', 1, array('morecss'=>'reposition marginleftonly'));
  604. //print_barre_liste($title, 0, $_SERVER["PHP_SELF"], '', $sortfield, $sortorder, $linktotasks, $num, $totalnboflines, 'generic', 0, '', '', 0, 1);
  605. print load_fiche_titre($title, $linktotasks.' &nbsp; '.$linktocreatetask, 'projecttask');
  606. // Get list of tasks in tasksarray and taskarrayfiltered
  607. // We need all tasks (even not limited to a user because a task to user can have a parent that is not affected to him).
  608. $filteronthirdpartyid = $socid;
  609. $tasksarray = $taskstatic->getTasksArray(0, 0, $object->id, $filteronthirdpartyid, 0, '', -1, $morewherefilter, 0, 0, $extrafields, 1, $search_array_options);
  610. // We load also tasks limited to a particular user
  611. $tmpuser = new User($db);
  612. if ($search_user_id > 0) {
  613. $tmpuser->fetch($search_user_id);
  614. }
  615. $tasksrole = ($tmpuser->id > 0 ? $taskstatic->getUserRolesForProjectsOrTasks(0, $tmpuser, $object->id, 0) : '');
  616. //var_dump($tasksarray);
  617. //var_dump($tasksrole);
  618. if (!empty($conf->use_javascript_ajax)) {
  619. include DOL_DOCUMENT_ROOT.'/core/tpl/ajaxrow.tpl.php';
  620. }
  621. // Filter on categories
  622. $moreforfilter = '';
  623. if (count($tasksarray) > 0) {
  624. $moreforfilter .= '<div class="divsearchfield">';
  625. $moreforfilter .= $langs->trans("TasksAssignedTo").': ';
  626. $moreforfilter .= $form->select_dolusers($tmpuser->id > 0 ? $tmpuser->id : '', 'search_user_id', 1);
  627. $moreforfilter .= '</div>';
  628. }
  629. if ($moreforfilter) {
  630. print '<div class="liste_titre liste_titre_bydiv centpercent">';
  631. print $moreforfilter;
  632. print '</div>';
  633. }
  634. print '<div class="div-table-responsive">';
  635. print '<table id="tablelines" class="tagtable nobottom liste'.($moreforfilter ? " listwithfilterbefore" : "").'">';
  636. // Fields title search
  637. print '<tr class="liste_titre_filter">';
  638. if (!empty($arrayfields['t.ref']['checked'])) {
  639. print '<td class="liste_titre">';
  640. print '<input class="flat searchstring maxwidth50" type="text" name="search_taskref" value="'.dol_escape_htmltag($search_taskref).'">';
  641. print '</td>';
  642. }
  643. if (!empty($arrayfields['t.label']['checked'])) {
  644. print '<td class="liste_titre">';
  645. print '<input class="flat searchstring maxwidth100" type="text" name="search_tasklabel" value="'.dol_escape_htmltag($search_tasklabel).'">';
  646. print '</td>';
  647. }
  648. if (!empty($arrayfields['t.description']['checked'])) {
  649. print '<td class="liste_titre">';
  650. print '<input class="flat searchstring maxwidth100" type="text" name="search_taskdescription" value="'.dol_escape_htmltag($search_taskdescription).'">';
  651. print '</td>';
  652. }
  653. if (!empty($arrayfields['t.dateo']['checked'])) {
  654. print '<td class="liste_titre center">';
  655. print '<span class="nowraponall"><input class="flat valignmiddle width20" type="text" maxlength="2" name="search_dtstartday" value="'.$search_dtstartday.'">';
  656. print '<input class="flat valignmiddle width20" type="text" maxlength="2" name="search_dtstartmonth" value="'.$search_dtstartmonth.'"></span>';
  657. $formother->select_year($search_dtstartyear ? $search_dtstartyear : -1, 'search_dtstartyear', 1, 20, 5);
  658. print '</td>';
  659. }
  660. if (!empty($arrayfields['t.datee']['checked'])) {
  661. print '<td class="liste_titre center">';
  662. print '<span class="nowraponall"><input class="flat valignmiddle width20" type="text" maxlength="2" name="search_dtendday" value="'.$search_dtendday.'">';
  663. print '<input class="flat valignmiddle width20" type="text" maxlength="2" name="search_dtendmonth" value="'.$search_dtendmonth.'"></span>';
  664. $formother->select_year($search_dtendyear ? $search_dtendyear : -1, 'search_dtendyear', 1, 20, 5);
  665. print '</td>';
  666. }
  667. if (!empty($arrayfields['t.planned_workload']['checked'])) {
  668. print '<td class="liste_titre right">';
  669. print '<input class="flat" type="text" size="4" name="search_planedworkload" value="'.$search_planedworkload.'">';
  670. print '</td>';
  671. }
  672. if (!empty($arrayfields['t.duration_effective']['checked'])) {
  673. print '<td class="liste_titre right">';
  674. print '<input class="flat" type="text" size="4" name="search_timespend" value="'.$search_timespend.'">';
  675. print '</td>';
  676. }
  677. if (!empty($arrayfields['t.progress_calculated']['checked'])) {
  678. print '<td class="liste_titre right">';
  679. print '<input class="flat" type="text" size="4" name="search_progresscalc" value="'.$search_progresscalc.'">';
  680. print '</td>';
  681. }
  682. if (!empty($arrayfields['t.progress']['checked'])) {
  683. print '<td class="liste_titre right">';
  684. print '<input class="flat" type="text" size="4" name="search_progressdeclare" value="'.$search_progressdeclare.'">';
  685. print '</td>';
  686. }
  687. // progress resume not searchable
  688. print '<td class="liste_titre right"></td>';
  689. if ($object->usage_bill_time) {
  690. if (!empty($arrayfields['t.tobill']['checked'])) {
  691. print '<td class="liste_titre right">';
  692. print '</td>';
  693. }
  694. if (!empty($arrayfields['t.billed']['checked'])) {
  695. print '<td class="liste_titre right">';
  696. print '</td>';
  697. }
  698. }
  699. // Contacts of task, disabled because available by default jsut after
  700. /*
  701. if (!empty($conf->global->PROJECT_SHOW_CONTACTS_IN_LIST)) {
  702. print '<td class="liste_titre"></td>';
  703. }
  704. */
  705. if (!empty($arrayfields['c.assigned']['checked'])) {
  706. print '<td class="liste_titre right">';
  707. print '</td>';
  708. }
  709. $extrafieldsobjectkey = $taskstatic->table_element;
  710. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_input.tpl.php';
  711. // Action column
  712. print '<td class="liste_titre maxwidthsearch">';
  713. $searchpicto = $form->showFilterButtons();
  714. print $searchpicto;
  715. print '</td>';
  716. print "</tr>\n";
  717. print '<tr class="liste_titre nodrag nodrop">';
  718. // print '<td>'.$langs->trans("Project").'</td>';
  719. if (!empty($arrayfields['t.ref']['checked'])) {
  720. print_liste_field_titre($arrayfields['t.ref']['label'], $_SERVER["PHP_SELF"], '', '', $param, '', $sortfield, $sortorder, '');
  721. }
  722. if (!empty($arrayfields['t.label']['checked'])) {
  723. print_liste_field_titre($arrayfields['t.label']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, '');
  724. }
  725. if (!empty($arrayfields['t.description']['checked'])) {
  726. print_liste_field_titre($arrayfields['t.description']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, '');
  727. }
  728. if (!empty($arrayfields['t.dateo']['checked'])) {
  729. print_liste_field_titre($arrayfields['t.dateo']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'center ');
  730. }
  731. if (!empty($arrayfields['t.datee']['checked'])) {
  732. print_liste_field_titre($arrayfields['t.datee']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'center ');
  733. }
  734. if (!empty($arrayfields['t.planned_workload']['checked'])) {
  735. print_liste_field_titre($arrayfields['t.planned_workload']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ', '', 1);
  736. }
  737. if (!empty($arrayfields['t.duration_effective']['checked'])) {
  738. print_liste_field_titre($arrayfields['t.duration_effective']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ', '', 1);
  739. }
  740. if (!empty($arrayfields['t.progress_calculated']['checked'])) {
  741. print_liste_field_titre($arrayfields['t.progress_calculated']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ', '', 1);
  742. }
  743. if (!empty($arrayfields['t.progress']['checked'])) {
  744. print_liste_field_titre($arrayfields['t.progress']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ', '', 1);
  745. }
  746. if (!empty($arrayfields['t.progress_summary']['checked'])) {
  747. print_liste_field_titre($arrayfields['t.progress_summary']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'center ', '', 1);
  748. }
  749. if ($object->usage_bill_time) {
  750. if (!empty($arrayfields['t.tobill']['checked'])) {
  751. print_liste_field_titre($arrayfields['t.tobill']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ');
  752. }
  753. if (!empty($arrayfields['t.billed']['checked'])) {
  754. print_liste_field_titre($arrayfields['t.billed']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'right ');
  755. }
  756. }
  757. // Contacts of task, disabled because available by default jsut after
  758. /*
  759. if (!empty($conf->global->PROJECT_SHOW_CONTACTS_IN_LIST)) {
  760. print_liste_field_titre("TaskRessourceLinks", $_SERVER["PHP_SELF"], '', '', $param, $sortfield, $sortorder);
  761. }
  762. */
  763. if (!empty($arrayfields['c.assigned']['checked'])) {
  764. print_liste_field_titre($arrayfields['c.assigned']['label'], $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder, 'center ', '');
  765. }
  766. // Extra fields
  767. $disablesortlink = 1;
  768. include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
  769. // Hook fields
  770. $parameters = array('arrayfields'=>$arrayfields, 'param'=>$param, 'sortfield'=>$sortfield, 'sortorder'=>$sortorder);
  771. $reshook = $hookmanager->executeHooks('printFieldListTitle', $parameters); // Note that $action and $object may have been modified by hook
  772. print $hookmanager->resPrint;
  773. print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ');
  774. print "</tr>\n";
  775. if (count($tasksarray) > 0) {
  776. // Show all lines in taskarray (recursive function to go down on tree)
  777. $j = 0; $level = 0;
  778. $nboftaskshown = projectLinesa($j, 0, $tasksarray, $level, true, 0, $tasksrole, $object->id, 1, $object->id, $filterprogresscalc, ($object->usage_bill_time ? 1 : 0), $arrayfields);
  779. } else {
  780. $colspan = 10;
  781. if ($object->usage_bill_time) {
  782. $colspan += 2;
  783. }
  784. print '<tr class="oddeven nobottom"><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoTasks").'</span></td></tr>';
  785. }
  786. print "</table>";
  787. print '</div>';
  788. print '</form>';
  789. // Test if database is clean. If not we clean it.
  790. //print 'mode='.$_REQUEST["mode"].' $nboftaskshown='.$nboftaskshown.' count($tasksarray)='.count($tasksarray).' count($tasksrole)='.count($tasksrole).'<br>';
  791. if (!empty($user->rights->projet->all->lire)) { // We make test to clean only if user has permission to see all (test may report false positive otherwise)
  792. if ($search_user_id == $user->id) {
  793. if ($nboftaskshown < count($tasksrole)) {
  794. include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
  795. cleanCorruptedTree($db, 'projet_task', 'fk_task_parent');
  796. }
  797. } else {
  798. if ($nboftaskshown < count($tasksarray) && !GETPOST('search_user_id', 'int')) {
  799. include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
  800. cleanCorruptedTree($db, 'projet_task', 'fk_task_parent');
  801. }
  802. }
  803. }
  804. }
  805. // End of page
  806. llxFooter();
  807. $db->close();