dolibarr 25.0.0-alpha
element_resource.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2013-2018 Jean-François Ferry <hello+jf@librethic.io>
3 * Copyright (C) 2016 Gilles Poirier <glgpoirier@gmail.com>
4 * Copyright (C) 2019 Josep Lluís Amador <joseplluis@lliuretic.cat>
5 * Copyright (C) 2021-2026 Frédéric France <frederic.france@free.fr>
6 * Copyright (C) 2023 William Mead <william.mead@manchenumerique.fr>
7 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
30// Load Dolibarr environment
31require '../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.'/resource/class/dolresource.class.php';
33require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
34require_once DOL_DOCUMENT_ROOT.'/fichinter/class/fichinter.class.php';
35if (isModEnabled('project')) {
36 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
37 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
38}
39if (isModEnabled("product") || isModEnabled("service")) {
40 require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
41}
42
51// Load translation files required by the page
52$langs->loadLangs(array('resource', 'other', 'interventions'));
53
54/*
55$sortorder = GETPOST('sortorder','alpha');
56$sortfield = GETPOST('sortfield','alpha');
57$page = GETPOST('page','int');
58*/
59
61
62$hookmanager->initHooks(array('element_resource'));
63$object->available_resources = array('dolresource');
64
65// Get parameters
66$id = GETPOSTINT('id'); // resource id
67$element_id = GETPOSTINT('element_id'); // element_id
68$element_ref = GETPOST('ref', 'alpha'); // element ref
69$element = GETPOST('element', 'alpha'); // element_type
70$action = GETPOST('action', 'alpha');
71$mode = GETPOST('mode', 'alpha');
72$lineid = GETPOSTINT('lineid');
73$resource_id = GETPOSTINT('fk_resource');
74$resource_type = GETPOST('resource_type', 'alpha');
75$busy = GETPOSTINT('busy');
76$mandatory = GETPOSTINT('mandatory');
77$cancel = GETPOST('cancel', 'alpha');
78$confirm = GETPOST('confirm', 'alpha');
79$socid = GETPOSTINT('socid');
80
81if (empty($mandatory)) {
82 $mandatory = 0;
83}
84if (empty($busy)) {
85 $busy = 0;
86}
87
88if ($socid > 0) { // Special for thirdparty
89 $element_id = $socid;
90 $element = 'societe';
91}
92
93if (!$user->hasRight('resource', 'read')) {
95}
96
97// Permission is not permission on resources. We just make link here on objects.
98if ($element == 'action') {
99 $result = restrictedArea($user, 'agenda', $element_id, 'actioncomm&societe', 'myactions|allactions', 'fk_soc', 'id');
100}
101if ($element == 'fichinter') {
102 $result = restrictedArea($user, 'ficheinter', $element_id, 'fichinter');
103}
104if ($element == 'product' || $element == 'service') { // When RESOURCE_ON_PRODUCTS or RESOURCE_ON_SERVICES is set
105 $tmpobject = new Product($db);
106 $tmpobject->fetch($element_id);
107 $fieldtype = $tmpobject->type;
108 $result = restrictedArea($user, 'produit|service', $element_id, 'product&product', '', '', (string) $fieldtype);
109}
110
111// TODO
112//$permissiontoadd should be set according to $element
113//$permissiontodelete should be set according to $element
114$permissiontoadd = $user->hasRight('resource', 'write');
115$permissiontodelete = $user->hasRight('resource', 'delete');
116
117
118/*
119 * Actions
120 */
121
122$parameters = array('resource_id' => $resource_id);
123$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
124if ($reshook < 0) {
125 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
126}
127
128if (empty($reshook)) {
129 $error = 0;
130 $objstat = null;
131
132 if ($action == 'add_element_resource' && !$cancel && $permissiontoadd) { // Test on permission already done in header before actions
133 $res = 0;
134 if (!($resource_id > 0)) {
135 $error++;
136 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Resource")), null, 'errors');
137 $action = '';
138 } else {
139 $objstat = fetchObjectByElement($element_id, $element, $element_ref);
140 $objstat->element = $element; // For externals module, we need to keep @xx
141
142 // check if the resource is already busy on another event or intervention that overlaps
143 // (only for the element types whose module is actually enabled)
144 $elementsToCheck = array();
145 if (isModEnabled('agenda')) {
146 $elementsToCheck[] = 'action';
147 }
148 if (isModEnabled('intervention')) {
149 $elementsToCheck[] = 'fichinter';
150 }
151 if (getDolGlobalString('RESOURCE_USED_IN_EVENT_CHECK') && in_array($objstat->element, $elementsToCheck) && $resource_type == 'dolresource' && intval($busy) == 1) {
152 $bookingDateStart = null;
153 $bookingDateEnd = null;
154
155 if ($objstat->element == 'action') {
157 '@phan-var-force ActionComm $objstat';
158 $bookingDateStart = $objstat->datep;
159 $bookingDateEnd = $objstat->datef;
160 if (empty($bookingDateEnd) && $objstat->fulldayevent) {
161 $eventDateStartArr = dol_getdate($bookingDateStart);
162 $bookingDateStart = dol_mktime(0, 0, 0, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
163 $bookingDateEnd = dol_mktime(23, 59, 59, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
164 }
165 } elseif ($objstat->element == 'fichinter') {
166 // Fichinter has no usable header date range of its own: derive it from its lines.
168 '@phan-var-force Fichinter $objstat';
169 $sqlrange = "SELECT MIN(fd.date) as dmin, MAX(fd.date + INTERVAL fd.duree SECOND) as dmax";
170 $sqlrange .= " FROM ".MAIN_DB_PREFIX."fichinterdet as fd";
171 $sqlrange .= " WHERE fd.fk_fichinter = ".((int) $objstat->id);
172 $resqlrange = $db->query($sqlrange);
173 if ($resqlrange) {
174 $objrange = $db->fetch_object($resqlrange);
175 if ($objrange && $objrange->dmin) {
176 $bookingDateStart = $db->jdate($objrange->dmin);
177 $bookingDateEnd = $db->jdate($objrange->dmax);
178 }
179 $db->free($resqlrange);
180 }
181 }
182
183 if (!empty($bookingDateStart)) {
184 $resourcestatic = new Dolresource($db);
185 $resourcestatic->fetch($resource_id);
186 $conflicts = $resourcestatic->getBookingConflicts($resource_id, $resource_type, $bookingDateStart, ($bookingDateEnd ? $bookingDateEnd : $bookingDateStart), $objstat->element, $objstat->id);
187 if (!is_array($conflicts)) {
188 $error++;
189 $objstat->error = $resourcestatic->error;
190 $objstat->errors[] = $objstat->error;
191 } elseif (count($conflicts) > 0) {
192 // Resource already in use
193 $error++;
194 $objstat->error = $langs->trans('ErrorResourcesAlreadyInUse').' : ';
195 foreach ($conflicts as $conflict) {
196 $objstat->error .= '<br> - '.$langs->trans('ErrorResourceUseInEvent', $resourcestatic->ref, $conflict['ref'].' ['.$conflict['element_id'].']');
197 }
198 $objstat->errors[] = $objstat->error;
199 }
200 }
201 }
202
203 if (!$error) {
204 $res = $objstat->add_element_resource($resource_id, $resource_type, $busy, $mandatory);
205 }
206 }
207
208 if (!$error && $res > 0 && is_object($objstat)) {
209 setEventMessages($langs->trans('ResourceLinkedWithSuccess'), null, 'mesgs');
210 header("Location: ".$_SERVER['PHP_SELF'].'?element='.$element.'&element_id='.$objstat->id);
211 exit;
212 } elseif ($objstat) {
213 setEventMessages($objstat->error, $objstat->errors, 'errors');
214 }
215 }
216
217 // Update resource
218 if ($action == 'update_linked_resource' && $permissiontoadd && !$cancel) {
219 $res = $object->fetchElementResource($lineid);
220 if ($res) {
221 $object->busy = $busy;
222 $object->mandatory = $mandatory;
223
224 if (getDolGlobalString('RESOURCE_USED_IN_EVENT_CHECK') && $object->objelement instanceof ActionComm && $object->element_type == 'action' && $object->resource_type == 'dolresource' && intval($object->busy) == 1) {
225 $eventDateStart = $object->objelement->datep; // @phan-suppress-current-line PhanUndeclaredProperty
226 $eventDateEnd = $object->objelement->datef; // @phan-suppress-current-line PhanUndeclaredProperty
227 $isFullDayEvent = $object->objelement->fulldayevent; // @phan-suppress-current-line PhanUndeclaredProperty
228 if (empty($eventDateEnd)) {
229 if ($isFullDayEvent) {
230 $eventDateStartArr = dol_getdate($eventDateStart);
231 $eventDateStart = dol_mktime(0, 0, 0, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
232 $eventDateEnd = dol_mktime(23, 59, 59, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
233 }
234 }
235
236 $sql = "SELECT er.rowid, r.ref as r_ref, ac.id as ac_id, ac.label as ac_label";
237 $sql .= " FROM ".MAIN_DB_PREFIX."element_resources as er";
238 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."resource as r ON r.rowid = er.resource_id AND er.resource_type = '".$db->escape($object->resource_type)."'";
239 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."actioncomm as ac ON ac.id = er.element_id AND er.element_type = '".$db->escape($object->element_type)."'";
240 $sql .= " WHERE er.resource_id = ".((int) $object->resource_id);
241 $sql .= " AND ac.id <> ".((int) $object->element_id);
242 $sql .= " AND er.busy = 1";
243 $sql .= " AND (";
244
245 // event date start between ac.datep and ac.datep2 (if datep2 is null we consider there is no end)
246 $sql .= " (ac.datep <= '".$db->idate($eventDateStart)."' AND (ac.datep2 IS NULL OR ac.datep2 >= '".$db->idate($eventDateStart)."'))";
247 // event date end between ac.datep and ac.datep2
248 if (!empty($eventDateEnd)) {
249 $sql .= " OR (ac.datep <= '".$db->idate($eventDateEnd)."' AND (ac.datep2 IS NULL OR ac.datep2 >= '".$db->idate($eventDateEnd)."'))";
250 }
251 // event date start before ac.datep and event date end after ac.datep2
252 $sql .= " OR (";
253 $sql .= "ac.datep >= '".$db->idate($eventDateStart)."'";
254 if (!empty($eventDateEnd)) {
255 $sql .= " AND (ac.datep2 IS NOT NULL AND ac.datep2 <= '".$db->idate($eventDateEnd)."')";
256 }
257 $sql .= ")";
258
259 $sql .= ")";
260 $resql = $db->query($sql);
261 if (!$resql) {
262 $error++;
263 $object->error = $db->lasterror();
264 $object->errors[] = $object->error;
265 } else {
266 if ($db->num_rows($resql) > 0) {
267 // Resource already in use
268 $error++;
269 $object->error = $langs->trans('ErrorResourcesAlreadyInUse').' : ';
270 while ($obj = $db->fetch_object($resql)) {
271 $object->error .= '<br> - '.$langs->trans('ErrorResourceUseInEvent', $obj->r_ref, $obj->ac_label.' ['.$obj->ac_id.']');
272 }
273 $object->errors[] = $object->error;
274 }
275 $db->free($resql);
276 }
277 }
278
279 if (!$error) {
280 $result = $object->updateElementResource($user);
281 if ($result < 0) {
282 $error++;
283 }
284 }
285
286 if ($error) {
287 setEventMessages($object->error, $object->errors, 'errors');
288 } else {
289 setEventMessages($langs->trans('RessourceLineSuccessfullyUpdated'), null, 'mesgs');
290 header("Location: ".$_SERVER['PHP_SELF']."?element=".$element."&element_id=".$element_id);
291 exit;
292 }
293 }
294 }
295
296 // Delete a resource linked to an element
297 if ($action == 'confirm_delete_linked_resource' && $permissiontodelete && $confirm === 'yes') {
298 $res = $object->fetchElementResource($lineid); // to have correct object deleting resource
299 if ($res) {
300 $result = $object->objelement->delete_resource($lineid, '');
301
302 if ($result >= 0) {
303 setEventMessages($langs->trans('RessourceLineSuccessfullyDeleted'), null, 'mesgs');
304 header("Location: ".$_SERVER['PHP_SELF']."?element=".$element."&element_id=".$element_id);
305 exit;
306 } else {
307 setEventMessages($object->error, $object->errors, 'errors');
308 }
309 } else {
310 setEventMessages($object->error, $object->errors, 'errors');
311 }
312 }
313}
314
315$parameters = array('resource_id' => $resource_id);
316$reshook = $hookmanager->executeHooks('getElementResources', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
317if ($reshook < 0) {
318 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
319}
320
321
322
323/*
324 * View
325 */
326
327$form = new Form($db);
328
329$pagetitle = $langs->trans('ResourceElementPage');
330$help_url = '';
331llxHeader('', $pagetitle, $help_url, '', 0, 0, '', '', '', 'mod-resource page-element_resource');
332
333$now = dol_now();
334$delay_warning = getDolGlobalInt('MAIN_DELAY_ACTIONS_TODO') * 24 * 60 * 60;
335
336// Load available resource, declared by modules
337$ret = count($object->available_resources);
338if ($ret == -1) {
339 dol_print_error($db, $object->error);
340 exit;
341}
342if (!$ret) {
343 print '<div class="warning">'.$langs->trans('NoResourceInDatabase').'</div>';
344} else {
345 // Deletion confirmation resource line
346 if ($action == 'delete_resource') {
347 print $form->formconfirm("element_resource.php?element=".$element."&element_id=".$element_id."&id=".$id."&lineid=".$lineid, $langs->trans("DeleteResource"), $langs->trans("ConfirmDeleteResourceElement"), "confirm_delete_linked_resource", '', '', 1);
348 }
349
350
351 // Specific to agenda module
352 if (($element_id || $element_ref) && $element == 'action') {
353 require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
354
355 // Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
356 $hookmanager->initHooks(array('actioncard', 'globalcard'));
357
358 $act = fetchObjectByElement($element_id, $element, $element_ref);
359 if (is_object($act)) {
360 '@phan-var-force ActionComm $act';
361 $head = actions_prepare_head($act);
362
363 print dol_get_fiche_head($head, 'resources', $langs->trans("Action"), -1, 'action');
364
365 $linkback = '<a href="'.DOL_URL_ROOT.'/comm/action/list.php?mode=show_list&restore_lastsearch_values=1">';
366 $linkback .= img_picto($langs->trans("BackToList"), 'object_calendarlist', 'class="pictoactionview pictofixedwidth"');
367 $linkback .= '<span class="hideonsmartphone">'.$langs->trans("BackToList").'</span>';
368 $linkback .= '</a>';
369
370 // Link to other agenda views
371 $out = '';
372 $out .= '</li><li class="noborder litext">';
373 $out .= '<a href="'.DOL_URL_ROOT.'/comm/action/index.php?mode=show_month&year='.dol_print_date($act->datep, '%Y').'&month='.dol_print_date($act->datep, '%m').'&day='.dol_print_date($act->datep, '%d').'">';
374 $out .= img_picto($langs->trans("ViewCal"), 'object_calendar', 'class="pictofixedwidth pictoactionview"');
375 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewCal").'</span>';
376 $out .= '</a>';
377 $out .= '</li><li class="noborder litext">';
378 $out .= '<a href="'.DOL_URL_ROOT.'/comm/action/index.php?mode=show_day&year='.dol_print_date($act->datep, '%Y').'&month='.dol_print_date($act->datep, '%m').'&day='.dol_print_date($act->datep, '%d').'">';
379 $out .= img_picto($langs->trans("ViewWeek"), 'object_calendarweek', 'class="pictofixedwidth pictoactionview"');
380 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewWeek").'</span>';
381 $out .= '</a>';
382 $out .= '</li><li class="noborder litext">';
383 $out .= '<a href="'.DOL_URL_ROOT.'/comm/action/index.php?mode=show_day&year='.dol_print_date($act->datep, '%Y').'&month='.dol_print_date($act->datep, '%m').'&day='.dol_print_date($act->datep, '%d').'">';
384 $out .= img_picto($langs->trans("ViewDay"), 'object_calendarday', 'class="pictofixedwidth pictoactionview"');
385 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewDay").'</span>';
386 $out .= '</a>';
387 $out .= '</li><li class="noborder litext">';
388 $out .= '<a href="'.DOL_URL_ROOT.'/comm/action/peruser.php?mode=show_peruser&year='.dol_print_date($act->datep, '%Y').'&month='.dol_print_date($act->datep, '%m').'&day='.dol_print_date($act->datep, '%d').'">';
389 $out .= img_picto($langs->trans("ViewPerUser"), 'object_calendarperuser', 'class="pictofixedwidth pictoactionview"');
390 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewPerUser").'</span>';
391 $out .= '</a>';
392
393 // Add more views from hooks
394 $parameters = array();
395 $reshook = $hookmanager->executeHooks('addCalendarView', $parameters, $object, $action);
396 if (empty($reshook)) {
397 $out .= $hookmanager->resPrint;
398 } elseif ($reshook > 1) {
399 $out = $hookmanager->resPrint;
400 }
401
402 $linkback .= $out;
403
404 $morehtmlref = '<div class="refidno">';
405 // Thirdparty
406 //$morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $object->thirdparty->getNomUrl(1);
407 // Project
408 $savobject = $object;
409 $object = $act;
410 if (isModEnabled('project')) {
411 $langs->load("projects");
412 //$morehtmlref .= '<br>';
413 if (0) { // @phpstan-ignore-line
414 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
415 if ($action != 'classify') {
416 $morehtmlref .= '<a class="editfielda" href="'.dolBuildUrl($_SERVER['PHP_SELF'], ['action' => 'classify', 'id' => $object->id], true).'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
417 }
418 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, (string) $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
419 } else {
420 if (!empty($object->fk_project)) {
421 $proj = new Project($db);
422 $proj->fetch($object->fk_project);
423 $morehtmlref .= $proj->getNomUrl(1);
424 if ($proj->title) {
425 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
426 }
427 }
428 }
429 }
430 $object = $savobject;
431 $morehtmlref .= '</div>';
432
433 dol_banner_tab($act, 'element_id', $linkback, ($user->socid ? 0 : 1), 'id', 'ref', $morehtmlref, '&element='.$element, 0, '', '');
434
435 print '<div class="fichecenter">';
436
437 print '<div class="underbanner clearboth"></div>';
438
439 print '<table class="border tableforfield centpercent">';
440
441 // Type
442 if (getDolGlobalString('AGENDA_USE_EVENT_TYPE')) {
443 print '<tr><td class="titlefield">'.$langs->trans("Type").'</td><td>';
444 print $act->getTypePicto();
445 print $langs->trans("Action".$act->type_code);
446 print '</td></tr>';
447 }
448
449 // Full day event
450 print '<tr><td class="titlefield">'.$langs->trans("EventOnFullDay").'</td><td colspan="3">'.yn($act->fulldayevent ? 1 : 0, 3).'</td></tr>';
451
452 // Date start
453 print '<tr><td>'.$langs->trans("DateActionStart").'</td><td colspan="3">';
454 if (empty($act->fulldayevent)) {
455 print dol_print_date($act->datep, 'dayhour', 'tzuser');
456 } else {
457 $tzforfullday = getDolGlobalString('MAIN_STORE_FULL_EVENT_IN_GMT');
458 print dol_print_date($act->datep, 'day', ($tzforfullday ? $tzforfullday : 'tzuser'));
459 }
460 if ($act->percentage == 0 && $act->datep && $act->datep < ($now - $delay_warning)) {
461 print img_warning($langs->trans("Late"));
462 }
463 print '</td>';
464 print '</tr>';
465
466 // Date end
467 print '<tr><td>'.$langs->trans("DateActionEnd").'</td><td colspan="3">';
468 if (empty($act->fulldayevent)) {
469 print dol_print_date($act->datef, 'dayhour', 'tzuser');
470 } else {
471 $tzforfullday = getDolGlobalString('MAIN_STORE_FULL_EVENT_IN_GMT');
472 print dol_print_date($act->datef, 'day', ($tzforfullday ? $tzforfullday : 'tzuser'));
473 }
474 if ($act->percentage > 0 && $act->percentage < 100 && $act->datef && $act->datef < ($now - $delay_warning)) {
475 print img_warning($langs->trans("Late"));
476 }
477 print '</td></tr>';
478
479 // Location
480 if (!getDolGlobalString('AGENDA_DISABLE_LOCATION')) {
481 print '<tr><td>'.$langs->trans("Location").'</td><td colspan="3">'.$act->location.'</td></tr>';
482 }
483
484 // Assigned to
485 print '<tr><td class="nowrap">'.$langs->trans("ActionAffectedTo").'</td><td colspan="3">';
486 $listofuserid = array();
487 if (empty($donotclearsession)) {
488 if ($act->userownerid > 0) {
489 $listofuserid[$act->userownerid] = array('id' => $act->userownerid, 'transparency' => $act->transparency); // Owner first
490 }
491 if (!empty($act->userassigned)) { // Now concat assigned users
492 // Restore array with key with same value than param 'id'
493 $tmplist1 = $act->userassigned;
494 $tmplist2 = array();
495 foreach ($tmplist1 as $key => $val) {
496 if ($val['id'] && $val['id'] != $act->userownerid) {
497 $listofuserid[$val['id']] = $val;
498 }
499 }
500 }
501 $_SESSION['assignedtouser'] = json_encode($listofuserid);
502 } else {
503 if (!empty($_SESSION['assignedtouser'])) {
504 $listofuserid = json_decode($_SESSION['assignedtouser'], true);
505 }
506 }
507 $listofcontactid = array(); // not used yet
508 $listofotherid = array(); // not used yet
509 print '<div class="assignedtouser">';
510 print $form->select_dolusers_forevent('view', 'assignedtouser', 1, array(), 0, '', array(), '0', 0, 0, '', ($act->datep != $act->datef) ? 1 : 0, $listofuserid, $listofcontactid, $listofotherid);
511 print '</div>';
512 /*if (in_array($user->id,array_keys($listofuserid)))
513 {
514 print '<div class="myavailability">';
515 print $langs->trans("MyAvailability").': '.(($act->userassigned[$user->id]['transparency'] > 0)?$langs->trans("Busy"):$langs->trans("Available")); // We show nothing if event is assigned to nobody
516 print '</div>';
517 }*/
518 print ' </td></tr>';
519
520 print '</table>';
521
522 print '</div>';
523
524 print dol_get_fiche_end();
525 }
526 }
527
528 // Specific to thirdparty module
529 if (($element_id || $element_ref) && $element == 'societe') {
530 $socstatic = fetchObjectByElement($element_id, $element, $element_ref);
531 if (is_object($socstatic)) {
532 '@phan-var-force Societe $socstatic';
534 $savobject = $object;
535 $object = $socstatic;
536
537 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
538 $head = societe_prepare_head($socstatic);
539
540 print dol_get_fiche_head($head, 'resources', $langs->trans("ThirdParty"), -1, 'company');
541
542 dol_banner_tab($socstatic, 'socid', '', ($user->socid ? 0 : 1), 'rowid', 'nom', '', '&element='.$element);
543
544 print '<div class="fichecenter">';
545
546 print '<div class="underbanner clearboth"></div>';
547 print '<table class="border centpercent">';
548
549 // Alias name (commercial, trademark or alias name)
550 print '<tr><td class="titlefield">'.$langs->trans('AliasNames').'</td><td colspan="3">';
551 print $socstatic->name_alias;
552 print "</td></tr>";
553
554 print '</table>';
555
556 print '</div>';
557
558 print dol_get_fiche_end();
559
560 $object = $savobject;
561 }
562 }
563
564 // Specific to fichinter module
565 if (($element_id || $element_ref) && $element == 'fichinter') {
566 require_once DOL_DOCUMENT_ROOT.'/core/lib/fichinter.lib.php';
567
568 $fichinter = new Fichinter($db);
569 $fichinter->fetch($element_id, $element_ref);
570 $fichinter->fetch_thirdparty();
571
572 $usercancreate = $user->hasRight('fichinter', 'creer');
573
574 if (is_object($fichinter)) {
575 $head = fichinter_prepare_head($fichinter);
576 print dol_get_fiche_head($head, 'resource', $langs->trans("InterventionCard"), -1, 'intervention');
577
578 // Intervention card
579 $linkback = '<a href="'.DOL_URL_ROOT.'/fichinter/list.php'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
580
581
582 $morehtmlref = '<div class="refidno">';
583 // Ref customer
584 //$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, $user->rights->ficheinter->creer, 'string', '', 0, 1);
585 //$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, $user->rights->ficheinter->creer, 'string', '', null, null, '', 1);
586 $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, 0, 'string', '', 0, 1);
587 $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, 0, 'string', '', null, null, '', 1);
588 // Thirdparty
589 $morehtmlref .= '<br>'.$fichinter->thirdparty->getNomUrl(1, 'customer');
590 // Project
591 if (isModEnabled('project')) {
592 $langs->load("projects");
593 $morehtmlref .= '<br>';
594 if ($usercancreate && 0) {
595 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
596 if ($action != 'classify') {
597 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$fichinter->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
598 }
599 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$fichinter->id, $fichinter->socid, (string) $fichinter->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
600 } else {
601 if (!empty($fichinter->fk_project)) {
602 $proj = new Project($db);
603 $proj->fetch($fichinter->fk_project);
604 $morehtmlref .= $proj->getNomUrl(1);
605 if ($proj->title) {
606 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
607 }
608 }
609 }
610 }
611 $morehtmlref .= '</div>';
612
613 dol_banner_tab($fichinter, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, '&element='.$element, 0, '', '', 1);
614
615 print dol_get_fiche_end();
616 }
617 }
618
619 // Specific to product/service module
620 if (($element_id || $element_ref) && ($element == 'product' || $element == 'service')) {
621 require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
622
623 $product = new Product($db);
624 $product->fetch($element_id, $element_ref);
625
626 if (is_object($product)) {
627 $head = product_prepare_head($product);
628 $titre = $langs->trans("CardProduct".$product->type);
629 $picto = ($product->type == Product::TYPE_SERVICE ? 'service' : 'product');
630
631 print dol_get_fiche_head($head, 'resources', $titre, -1, $picto);
632
633 $shownav = 1;
634 if ($user->socid && !in_array('product', explode(',', getDolGlobalString('MAIN_MODULES_FOR_EXTERNAL')))) {
635 $shownav = 0;
636 }
637 dol_banner_tab($product, 'ref', '', $shownav, 'ref', 'ref', '', '&element='.$element);
638
639 print dol_get_fiche_end();
640 }
641 }
642
643
644 // hook for other elements linked
645 $parameters = array('element' => $element, 'element_id' => $element_id, 'element_ref' => $element_ref);
646 $reshook = $hookmanager->executeHooks('printElementTab', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
647 if ($reshook < 0) {
648 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
649 }
650
651
652 //print load_fiche_titre($langs->trans('ResourcesLinkedToElement'),'','');
653 print '<br>';
654
655 // Show list of resource links
656
657 foreach ($object->available_resources as $modresources => $resources) {
658 $resources = (array) $resources; // To be sure $resources is an array
659 foreach ($resources as $resource_obj) {
660 $element_prop = getElementProperties($resource_obj);
661
662 //print '/'.$modresources.'/class/'.$resource_obj.'.class.php<br>';
663
664 $path = '';
665 if (strpos($resource_obj, '@')) {
666 $path .= '/'.$element_prop['module'];
667 }
668
669 $linked_resources = $object->getElementResources($element, $element_id, $resource_obj);
670
671 // Output template part (modules that overwrite templates must declare this into descriptor)
672 $defaulttpldir = '/core/tpl';
673 $dirtpls = array_merge($conf->modules_parts['tpl'], array($defaulttpldir), array($path.$defaulttpldir));
674
675 foreach ($dirtpls as $module => $reldir) {
676 if (file_exists(dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_add.tpl.php'))) {
677 $tpl = dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_add.tpl.php');
678 } else {
679 $tpl = DOL_DOCUMENT_ROOT.$reldir.'/resource_add.tpl.php';
680 }
681 if (empty($conf->file->strict_mode)) {
682 $res = @include $tpl;
683 } else {
684 $res = include $tpl; // for debug
685 }
686 if ($res) {
687 break;
688 }
689 }
690
691 if ($mode != 'add' || $resource_obj != $resource_type) {
692 foreach ($dirtpls as $module => $reldir) {
693 if (file_exists(dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_view.tpl.php'))) {
694 $tpl = dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_view.tpl.php');
695 } else {
696 $tpl = DOL_DOCUMENT_ROOT.$reldir.'/resource_view.tpl.php';
697 }
698 if (empty($conf->file->strict_mode)) {
699 $res = @include $tpl;
700 } else {
701 $res = include $tpl; // for debug
702 }
703 if ($res) {
704 break;
705 }
706 }
707 }
708 }
709 }
710}
711
712// End of page
713llxFooter();
714$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
actions_prepare_head($object)
Prepare array with list of tabs.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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.
Definition wrapper.php:73
Class to manage agenda events (actions)
DAO Resource object.
Class to manage generation of HTML components Only common components must be here.
Class to manage products or services.
const TYPE_SERVICE
Service.
Class to manage projects.
societe_prepare_head(Societe $object, $subtabs='')
Return array of tabs to used on pages for third parties cards.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
fichinter_prepare_head($object)
Prepare array with list of tabs.
dol_now($mode='gmt')
Return date for now.
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...
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getElementProperties($elementType)
Get an array with properties of an element.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
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, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
Definition html.lib.php:519
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition html.lib.php:717
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
product_prepare_head($object)
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.