28require
"../main.inc.php";
29require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
36if (isModEnabled(
'category')) {
37 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
49$langsLoad = array(
'projects',
'users',
'companies');
50if (isModEnabled(
'eventorganization')) {
51 $langsLoad[] =
'eventorganization';
54$langs->loadLangs($langsLoad);
56$action =
GETPOST(
'action',
'aZ09');
57$massaction =
GETPOST(
'massaction',
'alpha');
59$confirm =
GETPOST(
'confirm',
'alpha');
60$cancel =
GETPOST(
'cancel',
'aZ09');
61$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'projecttasklist';
62$backtopage =
GETPOST(
'backtopage',
'alpha');
65$optioncss =
GETPOST(
'optioncss',
'aZ');
66$backtopage =
GETPOST(
'backtopage',
'alpha');
67$toselect =
GETPOST(
'toselect',
'array');
71$taskref =
GETPOST(
'taskref',
'alpha');
75$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
76$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
78if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
81$offset = $limit * $page;
86$search_taskref =
GETPOST(
'search_taskref');
87$search_tasklabel =
GETPOST(
'search_tasklabel');
88$search_taskdescription =
GETPOST(
'search_taskdescription');
89$search_dtstartday =
GETPOST(
'search_dtstartday');
90$search_dtstartmonth =
GETPOST(
'search_dtstartmonth');
91$search_dtstartyear =
GETPOST(
'search_dtstartyear');
92$search_dtendday =
GETPOST(
'search_dtendday');
93$search_dtendmonth =
GETPOST(
'search_dtendmonth');
94$search_dtendyear =
GETPOST(
'search_dtendyear');
95$search_planedworkload =
GETPOST(
'search_planedworkload');
96$search_timespend =
GETPOST(
'search_timespend');
97$search_progresscalc =
GETPOST(
'search_progresscalc');
98$search_progressdeclare =
GETPOST(
'search_progressdeclare');
99$search_task_budget_amount =
GETPOST(
'search_task_budget_amount');
100$search_task_billable =
GETPOST(
'search_task_billable');
102$search_date_start_startmonth =
GETPOSTINT(
'search_date_start_startmonth');
103$search_date_start_startyear =
GETPOSTINT(
'search_date_start_startyear');
104$search_date_start_startday =
GETPOSTINT(
'search_date_start_startday');
105$search_date_start_start =
dol_mktime(0, 0, 0, $search_date_start_startmonth, $search_date_start_startday, $search_date_start_startyear);
106$search_date_start_endmonth =
GETPOSTINT(
'search_date_start_endmonth');
107$search_date_start_endyear =
GETPOSTINT(
'search_date_start_endyear');
108$search_date_start_endday =
GETPOSTINT(
'search_date_start_endday');
109$search_date_start_end =
dol_mktime(23, 59, 59, $search_date_start_endmonth, $search_date_start_endday, $search_date_start_endyear);
111$search_date_end_startmonth =
GETPOSTINT(
'search_date_end_startmonth');
112$search_date_end_startyear =
GETPOSTINT(
'search_date_end_startyear');
113$search_date_end_startday =
GETPOSTINT(
'search_date_end_startday');
114$search_date_end_start =
dol_mktime(0, 0, 0, $search_date_end_startmonth, $search_date_end_startday, $search_date_end_startyear);
115$search_date_end_endmonth =
GETPOSTINT(
'search_date_end_endmonth');
116$search_date_end_endyear =
GETPOSTINT(
'search_date_end_endyear');
117$search_date_end_endday =
GETPOSTINT(
'search_date_end_endday');
118$search_date_end_end =
dol_mktime(23, 59, 59, $search_date_end_endmonth, $search_date_end_endday, $search_date_end_endyear);
123$taskstatic =
new Task($db);
126include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
127if (
getDolGlobalString(
'PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($object,
'fetchComments') && empty(
$object->comments)) {
131if ($id > 0 || !empty($ref)) {
133 $extrafields->fetch_name_optionals_label(
$object->table_element);
135$extrafields->fetch_name_optionals_label($taskstatic->table_element);
136$search_array_options = $extrafields->getOptionalsFromPost($taskstatic->table_element,
'',
'search_');
152$hookmanager->initHooks(array(
'projecttaskscard',
'globalcard'));
157$diroutputmassaction =
$conf->project->dir_output.
'/tasks/temp/massgeneration/'.$user->id;
161$billable = (
GETPOST(
'billable',
'aZ') ==
'yes' ? 1 : 0);
162$label =
GETPOST(
'label',
'alpha');
163$description =
GETPOST(
'description',
'restricthtml');
164$planned_workloadhour = (GETPOSTISSET(
'planned_workloadhour') ?
GETPOSTINT(
'planned_workloadhour') :
'');
165$planned_workloadmin = (GETPOSTISSET(
'planned_workloadmin') ?
GETPOSTINT(
'planned_workloadmin') :
'');
166if (GETPOSTISSET(
'planned_workloadhour') || GETPOSTISSET(
'planned_workloadmin')) {
167 $planned_workload = (int) $planned_workloadhour * 3600 + (
int) $planned_workloadmin * 60;
169 $planned_workload =
'';
174 't.ref' => array(
'label' =>
"RefTask",
'checked' => 1,
'position' => 1),
175 't.label' => array(
'label' =>
"LabelTask",
'checked' => 1,
'position' => 2),
176 't.description' => array(
'label' =>
"Description",
'checked' => 0,
'position' => 3),
177 't.dateo' => array(
'label' =>
"DateStart",
'checked' => 1,
'position' => 4),
178 't.datee' => array(
'label' =>
"Deadline",
'checked' => 1,
'position' => 5),
179 't.planned_workload' => array(
'label' =>
"PlannedWorkload",
'checked' => 1,
'position' => 6),
180 't.duration_effective' => array(
'label' =>
"TimeSpent",
'checked' => 1,
'position' => 7),
181 't.progress_calculated' => array(
'label' =>
"ProgressCalculated",
'checked' => 1,
'position' => 8),
182 't.progress' => array(
'label' =>
"ProgressDeclared",
'checked' => 1,
'position' => 9),
183 't.progress_summary' => array(
'label' =>
"TaskProgressSummary",
'checked' => 1,
'position' => 10),
184 't.budget_amount' => array(
'label' =>
"Budget",
'checked' => 0,
'position' => 11),
185 'c.assigned' => array(
'label' =>
"TaskRessourceLinks",
'checked' => 1,
'position' => 12),
188 $arrayfields[
't.tobill'] = array(
'label' => $langs->trans(
"TimeToBill"),
'checked' => 0,
'position' => 11);
189 $arrayfields[
't.billed'] = array(
'label' => $langs->trans(
"TimeBilled"),
'checked' => 0,
'position' => 12);
190 $arrayfields[
't.billable'] = array(
'label' => $langs->trans(
"Billable"),
'checked' => 1,
'position' => 13);
194$extrafieldsobjectkey = $taskstatic->table_element;
195$extrafieldsobjectprefix =
'efpt.';
196include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
199'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields';
201$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
210 if (!empty($backtopageforcancel)) {
211 header(
"Location: ".$backtopageforcancel);
213 } elseif (!empty($backtopage)) {
214 header(
"Location: ".$backtopage);
220if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
224$parameters = array(
'id' => $id);
225$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
230if (empty($reshook)) {
232 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
235 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
236 $search_user_id =
"";
237 $search_taskref =
'';
238 $search_tasklabel =
'';
239 $search_dtstartday =
'';
240 $search_dtstartmonth =
'';
241 $search_dtstartyear =
'';
242 $search_dtendday =
'';
243 $search_dtendmonth =
'';
244 $search_dtendyear =
'';
245 $search_planedworkload =
'';
246 $search_timespend =
'';
247 $search_progresscalc =
'';
248 $search_progressdeclare =
'';
249 $search_task_budget_amount =
'';
250 $search_task_billable =
'';
252 $search_array_options = array();
253 $search_date_start_startmonth =
"";
254 $search_date_start_startyear =
"";
255 $search_date_start_startday =
"";
256 $search_date_start_start =
"";
257 $search_date_start_endmonth =
"";
258 $search_date_start_endyear =
"";
259 $search_date_start_endday =
"";
260 $search_date_start_end =
"";
261 $search_date_end_startmonth =
"";
262 $search_date_end_startyear =
"";
263 $search_date_end_startday =
"";
264 $search_date_end_start =
"";
265 $search_date_end_endmonth =
"";
266 $search_date_end_endyear =
"";
267 $search_date_end_endday =
"";
268 $search_date_end_end =
"";
272 $objectclass =
'Task';
273 $objectlabel =
'Tasks';
274 $permissiontoread = $user->hasRight(
'projet',
'lire');
275 $permissiontodelete = $user->hasRight(
'projet',
'supprimer');
276 $uploaddir =
$conf->project->dir_output.
'/tasks';
277 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
280$morewherefilterarray = array();
282if (!empty($search_taskref)) {
283 $morewherefilterarray[] =
natural_search(
't.ref', $search_taskref, 0, 1);
286if (!empty($search_tasklabel)) {
287 $morewherefilterarray[] =
natural_search(
't.label', $search_tasklabel, 0, 1);
290$moresql =
dolSqlDateFilter(
't.dateo', $search_dtstartday, $search_dtstartmonth, $search_dtstartyear, 1);
292 $morewherefilterarray[] = $moresql;
295$moresql =
dolSqlDateFilter(
't.datee', $search_dtendday, $search_dtendmonth, $search_dtendyear, 1);
297 $morewherefilterarray[] = $moresql;
300if ($search_date_start_start) {
301 $morewherefilterarray[] =
" t.dateo >= '".$db->idate($search_date_start_start).
"'";
303if ($search_date_start_end) {
304 $morewherefilterarray[] =
" t.dateo <= '".$db->idate($search_date_start_end).
"'";
307if ($search_date_end_start) {
308 $morewherefilterarray[] =
" t.datee >= '".$db->idate($search_date_end_start).
"'";
310if ($search_date_end_end) {
311 $morewherefilterarray[] =
" t.datee <= '".$db->idate($search_date_end_end).
"'";
314if (!empty($search_planedworkload)) {
315 $morewherefilterarray[] =
natural_search(
't.planned_workload', $search_planedworkload, 1, 1);
318if (!empty($search_timespend)) {
319 $morewherefilterarray[] =
natural_search(
't.duration_effective', $search_timespend, 1, 1);
322if (!empty($search_progressdeclare)) {
323 $morewherefilterarray[] =
natural_search(
't.progress', $search_progressdeclare, 1, 1);
325if (!empty($search_progresscalc)) {
326 $morewherefilterarray[] =
'(planned_workload IS NULL OR planned_workload = 0 OR '.natural_search(
'ROUND(100 * duration_effective / planned_workload, 2)', $search_progresscalc, 1, 1).
')';
329if ($search_task_budget_amount) {
330 $morewherefilterarray[] =
natural_search(
't.budget_amount', $search_task_budget_amount, 1, 1);
332if ($search_task_billable) {
333 $morewherefilterarray[] =
" t.billable = ".($search_task_billable ==
"yes" ? 1 : 0);
337$morewherefilter =
'';
338if (count($morewherefilterarray) > 0) {
339 $morewherefilter =
' AND '.implode(
' AND ', $morewherefilterarray);
342if ($action ==
'createtask' && $user->hasRight(
'projet',
'creer')) {
348 if (empty($taskref)) {
349 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")),
null,
'errors');
354 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Label")),
null,
'errors');
357 } elseif (!
GETPOST(
'task_parent')) {
358 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"ChildOfProjectTask")),
null,
'errors');
364 $tmparray = explode(
'_',
GETPOST(
'task_parent'));
365 $projectid = empty($tmparray[0]) ?
$id : (int) $tmparray[0];
366 $task_parent = empty($tmparray[1]) ? 0 : $tmparray[1];
368 $task =
new Task($db);
370 $task->fk_project = $projectid;
371 $task->entity =
$object->entity;
372 $task->ref = $taskref;
373 $task->label = $label;
374 $task->description = $description;
375 $task->planned_workload = $planned_workload;
376 $task->fk_task_parent = $task_parent;
378 $task->date_start = $date_start;
379 $task->date_end = $date_end;
380 $task->progress = $progress;
381 $task->budget_amount = $budget_amount;
382 $task->billable = $billable;
385 $ret = $extrafields->setOptionalsFromPost(
null, $task);
387 $taskid = $task->create($user);
390 $result = $task->add_contact(
GETPOSTINT(
"userid"),
'TASKEXECUTIVE',
'internal');
392 if ($db->lasterrno() ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
393 $langs->load(
"projects");
395 $duplicate_code_error =
true;
405 if (!empty($backtopage)) {
406 header(
"Location: ".$backtopage);
408 } elseif (empty($projectid)) {
409 header(
"Location: ".DOL_URL_ROOT.
'/projet/tasks/list.php'.(empty($mode) ?
'' :
'?mode='.$mode));
415 if (!empty($backtopage)) {
416 header(
"Location: ".$backtopage);
418 } elseif (empty($id)) {
420 header(
"Location: ".DOL_URL_ROOT.
'/projet/tasks/list.php'.(empty($mode) ?
'' :
'?mode='.$mode));
432$form =
new Form($db);
435$projectstatic =
new Project($db);
436$taskstatic =
new Task($db);
437$userstatic =
new User($db);
439$title = $langs->trans(
"Tasks").
' - '.
$object->ref.
' '.
$object->name;
441 $title =
$object->ref.
' '.
$object->name.
' - '.$langs->trans(
"Tasks");
443if ($action ==
'create') {
444 $title = $langs->trans(
"NewTask");
446$help_url =
"EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos";
448llxHeader(
"", $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-project page-card_tasks');
450$arrayofselected = is_array($toselect) ? $toselect : array();
453if ($id > 0 || !empty($ref)) {
454 $result =
$object->fetch($id, $ref);
458 $result =
$object->fetch_thirdparty();
462 $result =
$object->fetch_optionals();
470 $userWrite =
$object->restrictedProjectArea($user,
'write');
475 $tab = (GETPOSTISSET(
'tab') ?
GETPOST(
'tab') :
'tasks');
480 $param =
'&id='.$object->id;
481 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
482 $param .=
'&contextpage='.urlencode($contextpage);
484 if ($search_user_id) {
485 $param .=
'&search_user_id='.urlencode((
string) ($search_user_id));
487 if ($search_taskref) {
488 $param .=
'&search_taskref='.urlencode($search_taskref);
490 if ($search_tasklabel) {
491 $param .=
'&search_tasklabel='.urlencode($search_tasklabel);
493 if ($search_taskdescription) {
494 $param .=
'&search_taskdescription='.urlencode($search_taskdescription);
496 if ($search_dtstartday) {
497 $param .=
'&search_dtstartday='.urlencode($search_dtstartday);
499 if ($search_dtstartmonth) {
500 $param .=
'&search_dtstartmonth='.urlencode($search_dtstartmonth);
502 if ($search_dtstartyear) {
503 $param .=
'&search_dtstartyear='.urlencode($search_dtstartyear);
505 if ($search_dtendday) {
506 $param .=
'&search_dtendday='.urlencode($search_dtendday);
508 if ($search_dtendmonth) {
509 $param .=
'&search_dtendmonth='.urlencode($search_dtendmonth);
511 if ($search_dtendyear) {
512 $param .=
'&search_dtendyear='.urlencode($search_dtendyear);
514 if ($search_date_start_startmonth) {
515 $param .=
'&search_date_start_startmonth='.urlencode((
string) ($search_date_start_startmonth));
517 if ($search_date_start_startyear) {
518 $param .=
'&search_date_start_startyear='.urlencode((
string) ($search_date_start_startyear));
520 if ($search_date_start_startday) {
521 $param .=
'&search_date_start_startday='.urlencode((
string) ($search_date_start_startday));
523 if ($search_date_start_start) {
524 $param .=
'&search_date_start_start='.urlencode($search_date_start_start);
526 if ($search_date_start_endmonth) {
527 $param .=
'&search_date_start_endmonth='.urlencode((
string) ($search_date_start_endmonth));
529 if ($search_date_start_endyear) {
530 $param .=
'&search_date_start_endyear='.urlencode((
string) ($search_date_start_endyear));
532 if ($search_date_start_endday) {
533 $param .=
'&search_date_start_endday='.urlencode((
string) ($search_date_start_endday));
535 if ($search_date_start_end) {
536 $param .=
'&search_date_start_end='.urlencode($search_date_start_end);
538 if ($search_date_end_startmonth) {
539 $param .=
'&search_date_end_startmonth='.urlencode((
string) ($search_date_end_startmonth));
541 if ($search_date_end_startyear) {
542 $param .=
'&search_date_end_startyear='.urlencode((
string) ($search_date_end_startyear));
544 if ($search_date_end_startday) {
545 $param .=
'&search_date_end_startday='.urlencode((
string) ($search_date_end_startday));
547 if ($search_date_end_start) {
548 $param .=
'&search_date_end_start='.urlencode($search_date_end_start);
550 if ($search_date_end_endmonth) {
551 $param .=
'&search_date_end_endmonth='.urlencode((
string) ($search_date_end_endmonth));
553 if ($search_date_end_endyear) {
554 $param .=
'&search_date_end_endyear='.urlencode((
string) ($search_date_end_endyear));
556 if ($search_date_end_endday) {
557 $param .=
'&search_date_end_endday='.urlencode((
string) ($search_date_end_endday));
559 if ($search_date_end_end) {
560 $param .=
'&search_date_end_end=' . urlencode($search_date_end_end);
562 if ($search_planedworkload) {
563 $param .=
'&search_planedworkload='.urlencode($search_planedworkload);
565 if ($search_timespend) {
566 $param .=
'&search_timespend='.urlencode($search_timespend);
568 if ($search_progresscalc) {
569 $param .=
'&search_progresscalc='.urlencode($search_progresscalc);
571 if ($search_progressdeclare) {
572 $param .=
'&search_progressdeclare='.urlencode($search_progressdeclare);
574 if ($search_task_budget_amount) {
575 $param .=
'&search_task_budget_amount='.urlencode($search_task_budget_amount);
577 if ($search_task_billable) {
578 $param .=
'&search_task_billable='.urlencode($search_task_billable);
580 if ($optioncss !=
'') {
581 $param .=
'&optioncss='.urlencode($optioncss);
584 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
586 $arrayofmassactions = array();
587 if ($user->hasRight(
'projet',
'creer')) {
588 $arrayofmassactions[
'preclonetasks'] =
img_picto(
'',
'clone',
'class="pictofixedwidth"').$langs->trans(
"Clone");
590 if ($permissiontodelete) {
591 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
593 if (in_array($massaction, array(
'presend',
'predelete'))) {
594 $arrayofmassactions = array();
596 $massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
600 if (!empty($_SESSION[
'pageforbacktolist']) && !empty($_SESSION[
'pageforbacktolist'][
'project'])) {
601 $tmpurl = $_SESSION[
'pageforbacktolist'][
'project'];
602 $tmpurl = preg_replace(
'/__SOCID__/', (
string)
$object->socid, $tmpurl);
603 $linkback =
'<a href="'.$tmpurl.(preg_match(
'/\?/', $tmpurl) ?
'&' :
'?').
'restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
605 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
608 $morehtmlref =
'<div class="refidno">';
610 $morehtmlref .=
$object->title;
612 if (!empty(
$object->thirdparty->id) &&
$object->thirdparty->id > 0) {
613 $morehtmlref .=
'<br>'.$object->thirdparty->getNomUrl(1,
'project');
615 $morehtmlref .=
'</div>';
618 if (!$user->hasRight(
'projet',
'all',
'lire')) {
619 $objectsListId =
$object->getProjectsAuthorizedForUser($user, 0, 0);
620 $object->next_prev_filter =
"rowid:IN:".$db->sanitize(count($objectsListId) ? implode(
',', array_keys($objectsListId)) :
'0');
623 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
625 print
'<div class="fichecenter">';
626 print
'<div class="fichehalfleft">';
627 print
'<div class="underbanner clearboth"></div>';
629 print
'<table class="border tableforfield centpercent">';
633 print
'<tr><td class="tdtop">';
634 print $langs->trans(
"Usage");
638 print
'<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_opportunity ?
' checked="checked"' :
'')).
'"> ';
639 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
640 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
644 print
'<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_task ?
' checked="checked"' :
'')).
'"> ';
645 $htmltext = $langs->trans(
"ProjectFollowTasks");
646 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
650 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"' :
'')).
'"> ';
651 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
652 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
655 if (isModEnabled(
'eventorganization')) {
656 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"' :
'')).
'"> ';
657 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
658 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
664 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
666 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
667 print $langs->trans(
'SharedProject');
669 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
670 print $langs->trans(
'PrivateProject');
675 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
676 if (!is_null(
$object->budget_amount) && strcmp(
$object->budget_amount,
'')) {
677 print
'<span class="amount">'.price(
$object->budget_amount, 0, $langs, 1, 0, 0,
$conf->currency).
'</span>';
682 print
'<tr><td>'.$langs->trans(
"Dates").
'</td><td>';
684 print($start ? $start :
'?');
687 print($end ? $end :
'?');
695 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
700 print
'<div class="fichehalfright">';
701 print
'<div class="underbanner clearboth"></div>';
703 print
'<table class="border tableforfield centpercent">';
706 print
'<td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td>';
711 if (isModEnabled(
'category')) {
712 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
713 print $form->showCategories(
$object->id, Categorie::TYPE_PROJECT, 1);
722 print
'<div class="clearboth"></div>';
729if ($action ==
'create' && $user->hasRight(
'projet',
'creer') && (empty(
$object->thirdparty->id) || $userWrite > 0)) {
730 if ($id > 0 || !empty($ref)) {
736 $projectoktoentertime = 1;
738 $projectoktoentertime = 0;
739 print
'<div class="warning">';
740 $langs->load(
"errors");
741 print $langs->trans(
"WarningProjectClosed");
746 $projectoktoentertime = 0;
747 print
'<div class="warning">';
748 $langs->load(
"errors");
749 print $langs->trans(
"WarningProjectDraft");
753 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'" method="POST">';
754 print
'<input type="hidden" name="token" value="'.newToken().
'">';
755 print
'<input type="hidden" name="action" value="createtask">';
756 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
758 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
763 print
'<div class="div-table-responsive-no-min">';
764 print
'<table class="border centpercent">';
769 require_once DOL_DOCUMENT_ROOT.
"/core/modules/project/task/" .
getDolGlobalString(
'PROJECT_TASK_ADDON').
'.php';
770 $modTask =
new $classnamemodtask();
771 '@phan-var-force ModeleNumRefTask $modTask';
772 $defaultref = $modTask->getNextValue(
$object->thirdparty, $object);
775 if (is_numeric($defaultref) && $defaultref <= 0) {
780 print
'<tr><td class="titlefieldcreate"><span class="fieldrequired">'.$langs->trans(
"Ref").
'</span></td><td>';
781 if (empty($duplicate_code_error)) {
782 print(GETPOSTISSET(
"ref") ?
GETPOST(
"ref",
'alpha') : $defaultref);
786 print
'<input type="hidden" name="taskref" value="'.(GETPOSTISSET(
"ref") ?
GETPOST(
"ref",
'alpha') : $defaultref).
'">';
790 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td><td>';
791 print
'<input type="text" name="label" autofocus class="minwidth500" value="'.$label.
'">';
795 print
'<tr><td class="fieldrequired">'.$langs->trans(
"ChildOfProjectTask").
'</td><td>';
796 print
img_picto(
'',
'project',
'class="pictofixedwidth"');
797 if ($projectoktoentertime) {
798 $formother->selectProjectTasks(
GETPOST(
'task_parent'), empty($projectid) ?
$object->id : $projectid,
'task_parent', 0, 0, 1, 1, 0,
'0,1',
'maxwidth500 widthcentpercentminusxx');
800 $formother->selectProjectTasks(
GETPOST(
'task_parent'), empty($projectid) ?
$object->id : $projectid,
'task_parent', 0, 0, 1, 1, 0,
'',
'maxwidth500 widthcentpercentminusxx');
804 $contactsofproject = (empty(
$object->id) ?
'' :
$object->getListContactId(
'internal'));
807 print
'<tr><td>'.$langs->trans(
"AffectedTo").
'</td><td>';
808 print
img_picto(
'',
'user',
'class="pictofixedwidth"');
809 if (is_array($contactsofproject) && count($contactsofproject)) {
810 print $form->select_dolusers($user->id,
'userid', 0,
'', 0,
'', $contactsofproject, 0, 0, 0,
'', 0,
'',
'maxwidth500 widthcentpercentminusx');
812 if ((isset($projectid) && $projectid > 0) ||
$object->id > 0) {
813 print
'<span class="opacitymedium">'.$langs->trans(
"NoUserAssignedToTheProject").
'</span>';
815 print $form->select_dolusers($user->id,
'userid', 0,
'', 0,
'',
'', 0, 0, 0,
'', 0,
'',
'maxwidth500 widthcentpercentminusx');
821 print
'<tr><td>'.$langs->trans(
"Billable").
'</td><td>';
822 print $form->selectyesno(
'billable');
826 print
'<tr><td>'.$langs->trans(
"DateStart").
'</td><td>';
827 print
img_picto(
'',
'action',
'class="pictofixedwidth"');
828 print $form->selectDate((!empty($date_start) ? $date_start :
''),
'date_start', 1, 1, 0,
'', 1, 1);
832 print
'<tr><td>'.$langs->trans(
"DateEnd").
'</td><td>';
833 print
img_picto(
'',
'action',
'class="pictofixedwidth"');
834 print $form->selectDate((!empty($date_end) ? $date_end : -1),
'date_end', -1, 1, 0,
'', 1, 1);
838 print
'<tr><td>'.$langs->trans(
"PlannedWorkload").
'</td><td>';
839 print
img_picto(
'',
'clock',
'class="pictofixedwidth"');
840 print $form->select_duration(
'planned_workload', $planned_workload, 0,
'text');
844 print
'<tr><td>'.$langs->trans(
"ProgressDeclared").
'</td><td colspan="3">';
845 print
img_picto(
'',
'fa-percent',
'class="pictofixedwidth"');
846 print $formother->select_percent($progress,
'progress', 0, 5, 0, 100, 1);
850 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td>';
854 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
859 $doleditor =
new DolEditor(
'description',
$object->description,
'', 80,
'dolibarr_details',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), $nbrows,
'90%');
860 print $doleditor->Create();
864 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
865 print
img_picto(
'',
'currency',
'class="pictofixedwidth"');
866 print
'<input size="8" type="text" name="budget_amount" value="'.dol_escape_htmltag(GETPOSTISSET(
'budget_amount') ?
GETPOST(
'budget_amount') :
'').
'"></td>';
870 $parameters = array(
'arrayfields' => &$arrayfields);
871 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $taskstatic, $action);
872 print $hookmanager->resPrint;
874 if (empty($reshook) && !empty($extrafields->attributes[$taskstatic->table_element][
'label'])) {
875 print $taskstatic->showOptionals($extrafields,
'edit');
883 print $form->buttonsSaveCancel(
"Add");
886} elseif ($id > 0 || !empty($ref)) {
887 $selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
894 $linktocreatetaskParam = array();
895 $linktocreatetaskUserRight =
false;
896 if ($user->hasRight(
'projet',
'all',
'creer') || $user->hasRight(
'projet',
'creer')) {
897 if (
$object->public || $userWrite > 0) {
898 $linktocreatetaskUserRight =
true;
900 $linktocreatetaskParam[
'attr'][
'title'] = $langs->trans(
"NotOwnerOfProject");
904 $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),
'', (
int) $linktocreatetaskUserRight, $linktocreatetaskParam);
906 print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'">';
907 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
908 print
'<input type="hidden" name="token" value="'.newToken().
'">';
909 print
'<input type="hidden" name="action" value="list">';
910 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
911 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
912 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
913 print
'<input type="hidden" name="page" value="'.$page.
'">';
914 print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
916 $title = $langs->trans(
"ListOfTasks");
917 $linktotasks =
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/projet/tasks.php?id='.
$object->id,
'', 1, array(
'morecss' =>
'reposition btnTitleSelected'));
918 $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'));
921 print
load_fiche_titre($title, $linktotasks.
' '.$linktocreatetask,
'projecttask', 0,
'',
'', $massactionbutton);
923 $objecttmp =
new Task($db);
924 $trackid =
'task'.$taskstatic->id;
925 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
929 $filteronthirdpartyid = $socid;
930 $tasksarray = $taskstatic->getTasksArray(0, 0,
$object->id, $filteronthirdpartyid, 0,
'', -1, $morewherefilter, 0, 0, $extrafields, 1, $search_array_options, 1, 1, $sortfield, $sortorder);
933 $tmpuser =
new User($db);
934 if ($search_user_id > 0) {
935 $tmpuser->fetch($search_user_id);
938 $tasksrole = ($tmpuser->id > 0 ? $taskstatic->getUserRolesForProjectsOrTasks(
null, $tmpuser,
$object->id, 0) :
'');
942 if (!empty(
$conf->use_javascript_ajax)) {
943 include DOL_DOCUMENT_ROOT.
'/core/tpl/ajaxrow.tpl.php';
948 $moreforfilter .=
'<div class="divsearchfield">';
949 $moreforfilter .=
img_picto(
'',
'user',
'class="pictofixedwidth"');
950 $moreforfilter .= $form->select_dolusers($tmpuser->id > 0 ? $tmpuser->id :
'',
'search_user_id', $langs->trans(
"TasksAssignedTo"), null, 0,
'',
'');
951 $moreforfilter .=
'</div>';
952 if ($moreforfilter) {
953 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
954 print $moreforfilter;
959 if ($massactionbutton && $contextpage !=
'poslist') {
960 $selectedfields .= $form->showCheckAddButtons(
'checkforselect', 1);
963 print
'<div class="div-table-responsive">';
964 print
'<table id="tablelines" class="tagtable nobottom liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">';
967 print
'<tr class="liste_titre_filter">';
971 print
'<td class="liste_titre maxwidthsearch">';
972 $searchpicto = $form->showFilterButtons();
977 if (!empty($arrayfields[
't.ref'][
'checked'])) {
978 print
'<td class="liste_titre">';
979 print
'<input class="flat searchstring maxwidth50" type="text" name="search_taskref" value="'.dol_escape_htmltag($search_taskref).
'">';
983 if (!empty($arrayfields[
't.label'][
'checked'])) {
984 print
'<td class="liste_titre">';
985 print
'<input class="flat searchstring maxwidth100" type="text" name="search_tasklabel" value="'.dol_escape_htmltag($search_tasklabel).
'">';
989 if (!empty($arrayfields[
't.description'][
'checked'])) {
990 print
'<td class="liste_titre">';
991 print
'<input class="flat searchstring maxwidth100" type="text" name="search_taskdescription" value="'.dol_escape_htmltag($search_taskdescription).
'">';
995 if (!empty($arrayfields[
't.dateo'][
'checked'])) {
996 print
'<td class="liste_titre center">';
1000 print
'<div class="nowrapfordate">';
1001 print $form->selectDate($search_date_start_start ? $search_date_start_start : -1,
'search_date_start_start', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
1003 print
'<div class="nowrapfordate">';
1004 print $form->selectDate($search_date_start_end ? $search_date_start_end : -1,
'search_date_start_end', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
1009 if (!empty($arrayfields[
't.datee'][
'checked'])) {
1010 print
'<td class="liste_titre center">';
1014 print
'<div class="nowrapfordate">';
1015 print $form->selectDate($search_date_end_start ? $search_date_end_start : -1,
'search_date_end_start', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
1017 print
'<div class="nowrapfordate">';
1018 print $form->selectDate($search_date_end_end ? $search_date_end_end : -1,
'search_date_end_end', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
1023 if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
1024 print
'<td class="liste_titre right">';
1025 print
'<input class="flat" type="text" size="4" name="search_planedworkload" value="'.$search_planedworkload.
'">';
1029 if (!empty($arrayfields[
't.duration_effective'][
'checked'])) {
1030 print
'<td class="liste_titre right">';
1031 print
'<input class="flat" type="text" size="4" name="search_timespend" value="'.$search_timespend.
'">';
1035 if (!empty($arrayfields[
't.progress_calculated'][
'checked'])) {
1036 print
'<td class="liste_titre right">';
1037 print
'<input class="flat" type="text" size="4" name="search_progresscalc" value="'.$search_progresscalc.
'">';
1041 if (!empty($arrayfields[
't.progress'][
'checked'])) {
1042 print
'<td class="liste_titre right">';
1043 print
'<input class="flat" type="text" size="4" name="search_progressdeclare" value="'.$search_progressdeclare.
'">';
1048 if (!empty($arrayfields[
't.progress_summary'][
'checked'])) {
1049 print
'<td class="liste_titre right"></td>';
1052 if (
$object->usage_bill_time) {
1053 if (!empty($arrayfields[
't.tobill'][
'checked'])) {
1054 print
'<td class="liste_titre right">';
1058 if (!empty($arrayfields[
't.billed'][
'checked'])) {
1059 print
'<td class="liste_titre right">';
1070 if (!empty($arrayfields[
't.budget_amount'][
'checked'])) {
1071 print
'<td class="liste_titre center">';
1072 print
'<input type="text" class="flat" name="search_task_budget_amount" value="'.$search_task_budget_amount.
'" size="4">';
1076 if (!empty($arrayfields[
'c.assigned'][
'checked'])) {
1077 print
'<td class="liste_titre right">';
1081 if (!empty($arrayfields[
't.billable'][
'checked'])) {
1082 print
'<td class="liste_titre center">';
1083 print $form->selectyesno(
'search_task_billable', $search_task_billable, 0,
false, 1);
1087 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
1090 $parameters = array(
'arrayfields' => $arrayfields);
1091 $reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
1092 print $hookmanager->resPrint;
1094 print
'<td class="liste_titre maxwidthsearch"> </td>';
1098 print
'<td class="liste_titre maxwidthsearch">';
1099 $searchpicto = $form->showFilterButtons();
1106 print
'<tr class="liste_titre nodrag nodrop">';
1109 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
1112 if (!empty($arrayfields[
't.ref'][
'checked'])) {
1114 print_liste_field_titre($arrayfields[
't.ref'][
'label'], $_SERVER[
"PHP_SELF"],
't.ref',
'', $param,
'', $sortfield, $sortorder,
'');
1116 if (!empty($arrayfields[
't.label'][
'checked'])) {
1117 print_liste_field_titre($arrayfields[
't.label'][
'label'], $_SERVER[
"PHP_SELF"],
"t.label",
'', $param,
'', $sortfield, $sortorder,
'');
1119 if (!empty($arrayfields[
't.description'][
'checked'])) {
1120 print_liste_field_titre($arrayfields[
't.description'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'');
1122 if (!empty($arrayfields[
't.dateo'][
'checked'])) {
1123 print_liste_field_titre($arrayfields[
't.dateo'][
'label'], $_SERVER[
"PHP_SELF"],
"t.dateo",
'', $param,
'', $sortfield, $sortorder,
'center ');
1125 if (!empty($arrayfields[
't.datee'][
'checked'])) {
1126 print_liste_field_titre($arrayfields[
't.datee'][
'label'], $_SERVER[
"PHP_SELF"],
"t.datee",
'', $param,
'', $sortfield, $sortorder,
'center ');
1128 if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
1129 print_liste_field_titre($arrayfields[
't.planned_workload'][
'label'], $_SERVER[
"PHP_SELF"],
"t.planned_workload",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1131 if (!empty($arrayfields[
't.duration_effective'][
'checked'])) {
1132 print_liste_field_titre($arrayfields[
't.duration_effective'][
'label'], $_SERVER[
"PHP_SELF"],
"t.duration_effective",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1134 if (!empty($arrayfields[
't.progress_calculated'][
'checked'])) {
1135 print_liste_field_titre($arrayfields[
't.progress_calculated'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1137 if (!empty($arrayfields[
't.progress'][
'checked'])) {
1138 print_liste_field_titre($arrayfields[
't.progress'][
'label'], $_SERVER[
"PHP_SELF"],
"t.progress",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1140 if (!empty($arrayfields[
't.progress_summary'][
'checked'])) {
1141 print_liste_field_titre($arrayfields[
't.progress_summary'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'center ',
'', 1);
1143 if (
$object->usage_bill_time) {
1144 if (!empty($arrayfields[
't.tobill'][
'checked'])) {
1145 print_liste_field_titre($arrayfields[
't.tobill'][
'label'], $_SERVER[
"PHP_SELF"],
"t.tobill",
'', $param,
'', $sortfield, $sortorder,
'right ');
1147 if (!empty($arrayfields[
't.billed'][
'checked'])) {
1148 print_liste_field_titre($arrayfields[
't.billed'][
'label'], $_SERVER[
"PHP_SELF"],
"t.billed",
'', $param,
'', $sortfield, $sortorder,
'right ');
1158 if (!empty($arrayfields[
't.budget_amount'][
'checked'])) {
1159 print_liste_field_titre($arrayfields[
't.budget_amount'][
'label'], $_SERVER[
"PHP_SELF"],
"t.budget_amount",
"", $param,
'', $sortfield, $sortorder,
'center ');
1162 if (!empty($arrayfields[
'c.assigned'][
'checked'])) {
1163 print_liste_field_titre($arrayfields[
'c.assigned'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'center ',
'');
1166 if (!empty($arrayfields[
't.billable'][
'checked'])) {
1167 print_liste_field_titre($arrayfields[
't.billable'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'center ',
'');
1170 $disablesortlink = 1;
1171 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
1173 $parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder);
1174 $reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters);
1175 print $hookmanager->resPrint;
1179 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
1184 if (count($tasksarray) > 0) {
1188 $nboftaskshown =
projectLinesa($j, 0, $tasksarray, $level,
'', 0, $tasksrole, (
string)
$object->id, 1,
$object->id,
'', (
$object->usage_bill_time ? 1 : 0), $arrayfields, $arrayofselected);
1190 $colspan = count($arrayfields);
1191 if (
$object->usage_bill_time) {
1194 print
'<tr class="oddeven"><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoTasks").
'</span></td></tr>';
1205 if ($user->hasRight(
'projet',
'all',
'lire')) {
1206 if ($search_user_id == $user->id) {
1207 if ($nboftaskshown < count($tasksrole)) {
1208 include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
1212 if ($nboftaskshown < count($tasksarray) && !
GETPOSTINT(
'search_user_id')) {
1213 include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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 to manage a WYSIWYG editor.
Class to manage projects.
const STATUS_CLOSED
Closed status.
const STATUS_DRAFT
Draft status.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
dolSqlDateFilter($datefield, $day_date, $month_date, $year_date, $excludefirstand=0, $gm=false)
Generate a SQL string to make a filter into a range (for second of date until last second of date).
cleanCorruptedTree($db, $tabletocleantree, $fieldfkparent)
Clean corrupted database tree (orphelins linked to a not existing parent), record linked to themself,...
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
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...
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
GETPOSTFLOAT($paramname, $rounding='')
Return the value of a $_GET or $_POST supervariable, converted into float.
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
projectLinesa(&$inc, $parent, &$lines, &$level, $var, $showproject, &$taskrole, $projectsListId='', $addordertick=0, $projectidfortotallink=0, $dummy='', $showbilltime=0, $arrayfields=array(), $arrayofselected=array())
Show task lines with a particular parent.
project_prepare_head(Project $project, $moreparam='')
Prepare array with list of tabs.
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.