dolibarr 21.0.0-beta
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-2024 Frédéric France <frederic.france@free.fr>
6 * Copyright (C) 2023 William Mead <william.mead@manchenumerique.fr>
7 * Copyright (C) 2024 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
60$object = new Dolresource($db);
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
112/*
113 * Actions
114 */
115
116$parameters = array('resource_id' => $resource_id);
117$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
118if ($reshook < 0) {
119 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
120}
121
122if (empty($reshook)) {
123 $error = 0;
124 $objstat = null;
125
126 if ($action == 'add_element_resource' && !$cancel) {
127 $res = 0;
128 if (!($resource_id > 0)) {
129 $error++;
130 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Resource")), null, 'errors');
131 $action = '';
132 } else {
133 $objstat = fetchObjectByElement($element_id, $element, $element_ref);
134 $objstat->element = $element; // For externals module, we need to keep @xx
135
136 // TODO : add this check at update_linked_resource and when modifying event start or end date
137 // check if an event resource is already in use
138 if (getDolGlobalString('RESOURCE_USED_IN_EVENT_CHECK') && $objstat->element == 'action' && $resource_type == 'dolresource' && intval($busy) == 1) {
139 $eventDateStart = $objstat->datep;
140 $eventDateEnd = $objstat->datef;
141 $isFullDayEvent = $objstat->fulldayevent;
142 if (empty($eventDateEnd)) {
143 if ($isFullDayEvent) {
144 $eventDateStartArr = dol_getdate($eventDateStart);
145 $eventDateStart = dol_mktime(0, 0, 0, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
146 $eventDateEnd = dol_mktime(23, 59, 59, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
147 }
148 }
149
150 $sql = "SELECT er.rowid, r.ref as r_ref, ac.id as ac_id, ac.label as ac_label";
151 $sql .= " FROM ".MAIN_DB_PREFIX."element_resources as er";
152 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."resource as r ON r.rowid = er.resource_id AND er.resource_type = '".$db->escape($resource_type)."'";
153 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."actioncomm as ac ON ac.id = er.element_id AND er.element_type = '".$db->escape($objstat->element)."'";
154 $sql .= " WHERE er.resource_id = ".((int) $resource_id);
155 $sql .= " AND er.busy = 1";
156 $sql .= " AND (";
157
158 // event date start between ac.datep and ac.datep2 (if datep2 is null we consider there is no end)
159 $sql .= " (ac.datep <= '".$db->idate($eventDateStart)."' AND (ac.datep2 IS NULL OR ac.datep2 >= '".$db->idate($eventDateStart)."'))";
160 // event date end between ac.datep and ac.datep2
161 if (!empty($eventDateEnd)) {
162 $sql .= " OR (ac.datep <= '".$db->idate($eventDateEnd)."' AND (ac.datep2 >= '".$db->idate($eventDateEnd)."'))";
163 }
164 // event date start before ac.datep and event date end after ac.datep2
165 $sql .= " OR (";
166 $sql .= "ac.datep >= '".$db->idate($eventDateStart)."'";
167 if (!empty($eventDateEnd)) {
168 $sql .= " AND (ac.datep2 IS NOT NULL AND ac.datep2 <= '".$db->idate($eventDateEnd)."')";
169 }
170 $sql .= ")";
171
172 $sql .= ")";
173 $resql = $db->query($sql);
174 if (!$resql) {
175 $error++;
176 $objstat->error = $db->lasterror();
177 $objstat->errors[] = $objstat->error;
178 } else {
179 if ($db->num_rows($resql) > 0) {
180 // Resource already in use
181 $error++;
182 $objstat->error = $langs->trans('ErrorResourcesAlreadyInUse').' : ';
183 while ($obj = $db->fetch_object($resql)) {
184 $objstat->error .= '<br> - '.$langs->trans('ErrorResourceUseInEvent', $obj->r_ref, $obj->ac_label.' ['.$obj->ac_id.']');
185 }
186 $objstat->errors[] = $objstat->error;
187 }
188 $db->free($resql);
189 }
190 }
191
192 if (!$error) {
193 $res = $objstat->add_element_resource($resource_id, $resource_type, $busy, $mandatory);
194 }
195 }
196
197 if (!$error && $res > 0 && is_object($objstat)) {
198 setEventMessages($langs->trans('ResourceLinkedWithSuccess'), null, 'mesgs');
199 header("Location: ".$_SERVER['PHP_SELF'].'?element='.$element.'&element_id='.$objstat->id);
200 exit;
201 } elseif ($objstat) {
202 setEventMessages($objstat->error, $objstat->errors, 'errors');
203 }
204 }
205
206 // Update resource
207 if ($action == 'update_linked_resource' && $user->hasRight('resource', 'write') && !GETPOST('cancel', 'alpha') && is_object($objstat)) {
208 $res = $object->fetchElementResource($lineid);
209 if ($res) {
210 $object->busy = $busy;
211 $object->mandatory = $mandatory;
212
213 if (getDolGlobalString('RESOURCE_USED_IN_EVENT_CHECK') && $object->element_type == 'action' && $object->resource_type == 'dolresource' && intval($object->busy) == 1) {
214 $eventDateStart = $object->objelement->datep; // @phan-suppress-current-line PhanUndeclaredProperty
215 $eventDateEnd = $object->objelement->datef; // @phan-suppress-current-line PhanUndeclaredProperty
216 $isFullDayEvent = $objstat->fulldayevent;
217 if (empty($eventDateEnd)) {
218 if ($isFullDayEvent) {
219 $eventDateStartArr = dol_getdate($eventDateStart);
220 $eventDateStart = dol_mktime(0, 0, 0, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
221 $eventDateEnd = dol_mktime(23, 59, 59, $eventDateStartArr['mon'], $eventDateStartArr['mday'], $eventDateStartArr['year']);
222 }
223 }
224
225 $sql = "SELECT er.rowid, r.ref as r_ref, ac.id as ac_id, ac.label as ac_label";
226 $sql .= " FROM ".MAIN_DB_PREFIX."element_resources as er";
227 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."resource as r ON r.rowid = er.resource_id AND er.resource_type = '".$db->escape($object->resource_type)."'";
228 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."actioncomm as ac ON ac.id = er.element_id AND er.element_type = '".$db->escape($object->element_type)."'";
229 $sql .= " WHERE er.resource_id = ".((int) $object->resource_id);
230 $sql .= " AND ac.id <> ".((int) $object->element_id);
231 $sql .= " AND er.busy = 1";
232 $sql .= " AND (";
233
234 // event date start between ac.datep and ac.datep2 (if datep2 is null we consider there is no end)
235 $sql .= " (ac.datep <= '".$db->idate($eventDateStart)."' AND (ac.datep2 IS NULL OR ac.datep2 >= '".$db->idate($eventDateStart)."'))";
236 // event date end between ac.datep and ac.datep2
237 if (!empty($eventDateEnd)) {
238 $sql .= " OR (ac.datep <= '".$db->idate($eventDateEnd)."' AND (ac.datep2 IS NULL OR ac.datep2 >= '".$db->idate($eventDateEnd)."'))";
239 }
240 // event date start before ac.datep and event date end after ac.datep2
241 $sql .= " OR (";
242 $sql .= "ac.datep >= '".$db->idate($eventDateStart)."'";
243 if (!empty($eventDateEnd)) {
244 $sql .= " AND (ac.datep2 IS NOT NULL AND ac.datep2 <= '".$db->idate($eventDateEnd)."')";
245 }
246 $sql .= ")";
247
248 $sql .= ")";
249 $resql = $db->query($sql);
250 if (!$resql) {
251 $error++;
252 $object->error = $db->lasterror();
253 $object->errors[] = $object->error;
254 } else {
255 if ($db->num_rows($resql) > 0) {
256 // Resource already in use
257 $error++;
258 $object->error = $langs->trans('ErrorResourcesAlreadyInUse').' : ';
259 while ($obj = $db->fetch_object($resql)) {
260 $object->error .= '<br> - '.$langs->trans('ErrorResourceUseInEvent', $obj->r_ref, $obj->ac_label.' ['.$obj->ac_id.']');
261 }
262 $object->errors[] = $objstat->error;
263 }
264 $db->free($resql);
265 }
266 }
267
268 if (!$error) {
269 $result = $object->updateElementResource($user);
270 if ($result < 0) {
271 $error++;
272 }
273 }
274
275 if ($error) {
276 setEventMessages($object->error, $object->errors, 'errors');
277 } else {
278 setEventMessages($langs->trans('RessourceLineSuccessfullyUpdated'), null, 'mesgs');
279 header("Location: ".$_SERVER['PHP_SELF']."?element=".$element."&element_id=".$element_id);
280 exit;
281 }
282 }
283 }
284
285 // Delete a resource linked to an element
286 if ($action == 'confirm_delete_linked_resource' && $user->hasRight('resource', 'delete') && $confirm === 'yes') {
287 $result = $object->delete_resource($lineid, $element);
288
289 if ($result >= 0) {
290 setEventMessages($langs->trans('RessourceLineSuccessfullyDeleted'), null, 'mesgs');
291 header("Location: ".$_SERVER['PHP_SELF']."?element=".$element."&element_id=".$element_id);
292 exit;
293 } else {
294 setEventMessages($object->error, $object->errors, 'errors');
295 }
296 }
297}
298
299$parameters = array('resource_id' => $resource_id);
300$reshook = $hookmanager->executeHooks('getElementResources', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
301if ($reshook < 0) {
302 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
303}
304
305
306
307/*
308 * View
309 */
310
311$form = new Form($db);
312
313$pagetitle = $langs->trans('ResourceElementPage');
314$help_url = '';
315llxHeader('', $pagetitle, $help_url, '', 0, 0, '', '', '', 'mod-resource page-element_resource');
316
317$now = dol_now();
318$delay_warning = getDolGlobalInt('MAIN_DELAY_ACTIONS_TODO') * 24 * 60 * 60;
319
320// Load available resource, declared by modules
321$ret = count($object->available_resources);
322if ($ret == -1) {
323 dol_print_error($db, $object->error);
324 exit;
325}
326if (!$ret) {
327 print '<div class="warning">'.$langs->trans('NoResourceInDatabase').'</div>';
328} else {
329 // Confirmation suppression resource line
330 if ($action == 'delete_resource') {
331 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);
332 }
333
334
335 // Specific to agenda module
336 if (($element_id || $element_ref) && $element == 'action') {
337 require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
338
339 // Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
340 $hookmanager->initHooks(array('actioncard', 'globalcard'));
341
342 $act = fetchObjectByElement($element_id, $element, $element_ref);
343 if (is_object($act)) {
344 '@phan-var-force ActionComm $act';
345 $head = actions_prepare_head($act);
346
347 print dol_get_fiche_head($head, 'resources', $langs->trans("Action"), -1, 'action');
348
349 $linkback = '<a href="'.DOL_URL_ROOT.'/comm/action/list.php?mode=show_list&restore_lastsearch_values=1">';
350 $linkback .= img_picto($langs->trans("BackToList"), 'object_calendarlist', 'class="pictoactionview pictofixedwidth"');
351 $linkback .= '<span class="hideonsmartphone">'.$langs->trans("BackToList").'</span>';
352 $linkback .= '</a>';
353
354 // Link to other agenda views
355 $out = '';
356 $out .= '</li><li class="noborder litext">';
357 $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').'">';
358 $out .= img_picto($langs->trans("ViewCal"), 'object_calendar', 'class="pictofixedwidth pictoactionview"');
359 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewCal").'</span>';
360 $out .= '</a>';
361 $out .= '</li><li class="noborder litext">';
362 $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').'">';
363 $out .= img_picto($langs->trans("ViewWeek"), 'object_calendarweek', 'class="pictofixedwidth pictoactionview"');
364 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewWeek").'</span>';
365 $out .= '</a>';
366 $out .= '</li><li class="noborder litext">';
367 $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').'">';
368 $out .= img_picto($langs->trans("ViewDay"), 'object_calendarday', 'class="pictofixedwidth pictoactionview"');
369 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewDay").'</span>';
370 $out .= '</a>';
371 $out .= '</li><li class="noborder litext">';
372 $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').'">';
373 $out .= img_picto($langs->trans("ViewPerUser"), 'object_calendarperuser', 'class="pictofixedwidth pictoactionview"');
374 $out .= '<span class="hideonsmartphone">'.$langs->trans("ViewPerUser").'</span>';
375 $out .= '</a>';
376
377 // Add more views from hooks
378 $parameters = array();
379 $reshook = $hookmanager->executeHooks('addCalendarView', $parameters, $object, $action);
380 if (empty($reshook)) {
381 $out .= $hookmanager->resPrint;
382 } elseif ($reshook > 1) {
383 $out = $hookmanager->resPrint;
384 }
385
386 $linkback .= $out;
387
388 $morehtmlref = '<div class="refidno">';
389 // Thirdparty
390 //$morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $object->thirdparty->getNomUrl(1);
391 // Project
392 $savobject = $object;
393 $object = $act;
394 if (isModEnabled('project')) {
395 $langs->load("projects");
396 //$morehtmlref .= '<br>';
397 if (0) {
398 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
399 if ($action != 'classify') {
400 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
401 }
402 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
403 } else {
404 if (!empty($object->fk_project)) {
405 $proj = new Project($db);
406 $proj->fetch($object->fk_project);
407 $morehtmlref .= $proj->getNomUrl(1);
408 if ($proj->title) {
409 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
410 }
411 }
412 }
413 }
414 $object = $savobject;
415 $morehtmlref .= '</div>';
416
417 dol_banner_tab($act, 'element_id', $linkback, ($user->socid ? 0 : 1), 'id', 'ref', $morehtmlref, '&element='.$element, 0, '', '');
418
419 print '<div class="fichecenter">';
420
421 print '<div class="underbanner clearboth"></div>';
422
423 print '<table class="border tableforfield centpercent">';
424
425 // Type
426 if (getDolGlobalString('AGENDA_USE_EVENT_TYPE')) {
427 print '<tr><td class="titlefield">'.$langs->trans("Type").'</td><td>';
428 print $act->getTypePicto();
429 print $langs->trans("Action".$act->type_code);
430 print '</td></tr>';
431 }
432
433 // Full day event
434 print '<tr><td class="titlefield">'.$langs->trans("EventOnFullDay").'</td><td colspan="3">'.yn($act->fulldayevent ? 1 : 0, 3).'</td></tr>';
435
436 // Date start
437 print '<tr><td>'.$langs->trans("DateActionStart").'</td><td colspan="3">';
438 if (empty($act->fulldayevent)) {
439 print dol_print_date($act->datep, 'dayhour', 'tzuser');
440 } else {
441 $tzforfullday = getDolGlobalString('MAIN_STORE_FULL_EVENT_IN_GMT');
442 print dol_print_date($act->datep, 'day', ($tzforfullday ? $tzforfullday : 'tzuser'));
443 }
444 if ($act->percentage == 0 && $act->datep && $act->datep < ($now - $delay_warning)) {
445 print img_warning($langs->trans("Late"));
446 }
447 print '</td>';
448 print '</tr>';
449
450 // Date end
451 print '<tr><td>'.$langs->trans("DateActionEnd").'</td><td colspan="3">';
452 if (empty($act->fulldayevent)) {
453 print dol_print_date($act->datef, 'dayhour', 'tzuser');
454 } else {
455 $tzforfullday = getDolGlobalString('MAIN_STORE_FULL_EVENT_IN_GMT');
456 print dol_print_date($act->datef, 'day', ($tzforfullday ? $tzforfullday : 'tzuser'));
457 }
458 if ($act->percentage > 0 && $act->percentage < 100 && $act->datef && $act->datef < ($now - $delay_warning)) {
459 print img_warning($langs->trans("Late"));
460 }
461 print '</td></tr>';
462
463 // Location
464 if (!getDolGlobalString('AGENDA_DISABLE_LOCATION')) {
465 print '<tr><td>'.$langs->trans("Location").'</td><td colspan="3">'.$act->location.'</td></tr>';
466 }
467
468 // Assigned to
469 print '<tr><td class="nowrap">'.$langs->trans("ActionAffectedTo").'</td><td colspan="3">';
470 $listofuserid = array();
471 if (empty($donotclearsession)) {
472 if ($act->userownerid > 0) {
473 $listofuserid[$act->userownerid] = array('id' => $act->userownerid, 'transparency' => $act->transparency); // Owner first
474 }
475 if (!empty($act->userassigned)) { // Now concat assigned users
476 // Restore array with key with same value than param 'id'
477 $tmplist1 = $act->userassigned;
478 $tmplist2 = array();
479 foreach ($tmplist1 as $key => $val) {
480 if ($val['id'] && $val['id'] != $act->userownerid) {
481 $listofuserid[$val['id']] = $val;
482 }
483 }
484 }
485 $_SESSION['assignedtouser'] = json_encode($listofuserid);
486 } else {
487 if (!empty($_SESSION['assignedtouser'])) {
488 $listofuserid = json_decode($_SESSION['assignedtouser'], true);
489 }
490 }
491 $listofcontactid = array(); // not used yet
492 $listofotherid = array(); // not used yet
493 print '<div class="assignedtouser">';
494 print $form->select_dolusers_forevent('view', 'assignedtouser', 1, array(), 0, '', array(), 0, 0, 0, '', ($act->datep != $act->datef) ? 1 : 0, $listofuserid, $listofcontactid, $listofotherid);
495 print '</div>';
496 /*if (in_array($user->id,array_keys($listofuserid)))
497 {
498 print '<div class="myavailability">';
499 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
500 print '</div>';
501 }*/
502 print ' </td></tr>';
503
504 print '</table>';
505
506 print '</div>';
507
508 print dol_get_fiche_end();
509 }
510 }
511
512 // Specific to thirdparty module
513 if (($element_id || $element_ref) && $element == 'societe') {
514 $socstatic = fetchObjectByElement($element_id, $element, $element_ref);
515 if (is_object($socstatic)) {
516 '@phan-var-force Societe $socstatic';
518 $savobject = $object;
519 $object = $socstatic;
520
521 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
522 $head = societe_prepare_head($socstatic);
523
524 print dol_get_fiche_head($head, 'resources', $langs->trans("ThirdParty"), -1, 'company');
525
526 dol_banner_tab($socstatic, 'socid', '', ($user->socid ? 0 : 1), 'rowid', 'nom', '', '&element='.$element);
527
528 print '<div class="fichecenter">';
529
530 print '<div class="underbanner clearboth"></div>';
531 print '<table class="border centpercent">';
532
533 // Alias name (commercial, trademark or alias name)
534 print '<tr><td class="titlefield">'.$langs->trans('AliasNames').'</td><td colspan="3">';
535 print $socstatic->name_alias;
536 print "</td></tr>";
537
538 print '</table>';
539
540 print '</div>';
541
542 print dol_get_fiche_end();
543
544 $object = $savobject;
545 }
546 }
547
548 // Specific to fichinter module
549 if (($element_id || $element_ref) && $element == 'fichinter') {
550 require_once DOL_DOCUMENT_ROOT.'/core/lib/fichinter.lib.php';
551
552 $fichinter = new Fichinter($db);
553 $fichinter->fetch($element_id, $element_ref);
554 $fichinter->fetch_thirdparty();
555
556 $usercancreate = $user->hasRight('fichinter', 'creer');
557
558 if (is_object($fichinter)) {
559 $head = fichinter_prepare_head($fichinter);
560 print dol_get_fiche_head($head, 'resource', $langs->trans("InterventionCard"), -1, 'intervention');
561
562 // Intervention card
563 $linkback = '<a href="'.DOL_URL_ROOT.'/fichinter/list.php'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
564
565
566 $morehtmlref = '<div class="refidno">';
567 // Ref customer
568 //$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, $user->rights->ficheinter->creer, 'string', '', 0, 1);
569 //$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, $user->rights->ficheinter->creer, 'string', '', null, null, '', 1);
570 $morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, 0, 'string', '', 0, 1);
571 $morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $fichinter->ref_client, $fichinter, 0, 'string', '', null, null, '', 1);
572 // Thirdparty
573 $morehtmlref .= '<br>'.$fichinter->thirdparty->getNomUrl(1, 'customer');
574 // Project
575 if (isModEnabled('project')) {
576 $langs->load("projects");
577 $morehtmlref .= '<br>';
578 if ($usercancreate && 0) {
579 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
580 if ($action != 'classify') {
581 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$fichinter->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
582 }
583 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$fichinter->id, $fichinter->socid, $fichinter->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
584 } else {
585 if (!empty($fichinter->fk_project)) {
586 $proj = new Project($db);
587 $proj->fetch($fichinter->fk_project);
588 $morehtmlref .= $proj->getNomUrl(1);
589 if ($proj->title) {
590 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
591 }
592 }
593 }
594 }
595 $morehtmlref .= '</div>';
596
597 dol_banner_tab($fichinter, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref, '&element='.$element, 0, '', '', 1);
598
599 print dol_get_fiche_end();
600 }
601 }
602
603 // Specific to product/service module
604 if (($element_id || $element_ref) && ($element == 'product' || $element == 'service')) {
605 require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
606
607 $product = new Product($db);
608 $product->fetch($element_id, $element_ref);
609
610 if (is_object($product)) {
611 $head = product_prepare_head($product);
612 $titre = $langs->trans("CardProduct".$product->type);
613 $picto = ($product->type == Product::TYPE_SERVICE ? 'service' : 'product');
614
615 print dol_get_fiche_head($head, 'resources', $titre, -1, $picto);
616
617 $shownav = 1;
618 if ($user->socid && !in_array('product', explode(',', getDolGlobalString('MAIN_MODULES_FOR_EXTERNAL')))) {
619 $shownav = 0;
620 }
621 dol_banner_tab($product, 'ref', '', $shownav, 'ref', 'ref', '', '&element='.$element);
622
623 print dol_get_fiche_end();
624 }
625 }
626
627
628 // hook for other elements linked
629 $parameters = array('element' => $element, 'element_id' => $element_id, 'element_ref' => $element_ref);
630 $reshook = $hookmanager->executeHooks('printElementTab', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
631 if ($reshook < 0) {
632 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
633 }
634
635
636 //print load_fiche_titre($langs->trans('ResourcesLinkedToElement'),'','');
637 print '<br>';
638
639 // Show list of resource links
640
641 foreach ($object->available_resources as $modresources => $resources) {
642 $resources = (array) $resources; // To be sure $resources is an array
643 foreach ($resources as $resource_obj) {
644 $element_prop = getElementProperties($resource_obj);
645
646 //print '/'.$modresources.'/class/'.$resource_obj.'.class.php<br>';
647
648 $path = '';
649 if (strpos($resource_obj, '@')) {
650 $path .= '/'.$element_prop['module'];
651 }
652
653 $linked_resources = $object->getElementResources($element, $element_id, $resource_obj);
654
655 // Output template part (modules that overwrite templates must declare this into descriptor)
656 $defaulttpldir = '/core/tpl';
657 $dirtpls = array_merge($conf->modules_parts['tpl'], array($defaulttpldir), array($path.$defaulttpldir));
658
659 foreach ($dirtpls as $module => $reldir) {
660 if (file_exists(dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_add.tpl.php'))) {
661 $tpl = dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_add.tpl.php');
662 } else {
663 $tpl = DOL_DOCUMENT_ROOT.$reldir.'/resource_add.tpl.php';
664 }
665 if (empty($conf->file->strict_mode)) {
666 $res = @include $tpl;
667 } else {
668 $res = include $tpl; // for debug
669 }
670 if ($res) {
671 break;
672 }
673 }
674
675 if ($mode != 'add' || $resource_obj != $resource_type) {
676 foreach ($dirtpls as $module => $reldir) {
677 if (file_exists(dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_view.tpl.php'))) {
678 $tpl = dol_buildpath($reldir.'/resource_'.$element_prop['element'].'_view.tpl.php');
679 } else {
680 $tpl = DOL_DOCUMENT_ROOT.$reldir.'/resource_view.tpl.php';
681 }
682 if (empty($conf->file->strict_mode)) {
683 $res = @include $tpl;
684 } else {
685 $res = include $tpl; // for debug
686 }
687 if ($res) {
688 break;
689 }
690 }
691 }
692 }
693 }
694}
695
696// End of page
697llxFooter();
698$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
actions_prepare_head($object)
Prepare array with list of tabs.
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:71
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)
Return array of tabs to used on pages for third parties cards.
llxFooter()
Footer empty.
Definition document.php:107
fichinter_prepare_head($object)
Prepare array with list of tabs.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_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.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getElementProperties($elementType)
Get an array with properties of an element.
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).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
fetchObjectByElement($element_id, $element_type, $element_ref='', $useCache=0, $maxCacheByType=10)
Fetch an object from its id and element_type Inclusion of classes is automatic.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
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.