dolibarr  x.y.z
position_card.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
4  * Copyright (C) 2021 Greg Rastklan <greg.rastklan@atm-consulting.fr>
5  * Copyright (C) 2021 Jean-Pascal BOUDET <jean-pascal.boudet@atm-consulting.fr>
6  * Copyright (C) 2021 GrĂ©gory BLEMAND <gregory.blemand@atm-consulting.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
29 // Load Dolibarr environment
30 require '../main.inc.php';
31 
32 require_once DOL_DOCUMENT_ROOT . '/core/class/html.formcompany.class.php';
33 require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php';
34 require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php';
35 require_once DOL_DOCUMENT_ROOT . '/hrm/class/position.class.php';
36 require_once DOL_DOCUMENT_ROOT . '/hrm/class/job.class.php';
37 require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_position.lib.php';
38 //dol_include_once('/hrm/position.php');
39 
40 // Get Parameters
41 $action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'add', 'create', 'edit', 'update', 'view', ...
42 $backtopage = GETPOST('backtopage', 'alpha');
43 $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
44 $id = GETPOST('id', 'int');
45 
46 // Initialize technical objects
47 $form = new Form($db);
48 $object = new Position($db);
49 $res = $object->fetch($id);
50 if ($res < 0) {
51  dol_print_error($db, $object->error);
52 }
53 
54 // Permissions
55 $permissiontoread = $user->rights->hrm->all->read;
56 $permissiontoadd = $user->rights->hrm->all->write; // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
57 $permissiontodelete = $user->rights->hrm->all->delete;
58 $permissiondellink = $user->rights->hrm->all->write; // Used by the include of actions_dellink.inc.php
59 $upload_dir = $conf->hrm->multidir_output[isset($object->entity) ? $object->entity : 1] . '/position';
60 
61 // Security check (enable the most restrictive one)
62 //if ($user->socid > 0) accessforbidden();
63 //if ($user->socid > 0) $socid = $user->socid;
64 //$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
65 //restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
66 if (empty($conf->hrm->enabled)) accessforbidden();
67 if (!$permissiontoread || ($action === 'create' && !$permissiontoadd)) accessforbidden();
68 
69 $langs->loadLangs(array("hrm", "other"));
70 
71 
72 
73 // Get parameters
74 $id = GETPOST('id', 'int');
75 $fk_job = GETPOST('fk_job', 'int');
76 
77 $ref = GETPOST('ref', 'alpha');
78 $action = GETPOST('action', 'aZ09');
79 $confirm = GETPOST('confirm', 'alpha');
80 $cancel = GETPOST('cancel', 'aZ09');
81 $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'positioncard'; // To manage different context of search
82 $backtopage = GETPOST('backtopage', 'alpha');
83 $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
84 // $lineid = GETPOST('lineid', 'int');
85 
86 // Initialize technical objects
87 //$object = new Position($db);
88 //$res = $object->fetch($id);
89 /*if ($res < 0) {
90  dol_print_error($db, &$object->error);
91 }*/
92 
93 $extrafields = new ExtraFields($db);
94 
95 $diroutputmassaction = $conf->hrm->dir_output . '/temp/massgeneration/' . $user->id;
96 $hookmanager->initHooks(array('positioncard', 'globalcard')); // Note that conf->hooks_modules contains array
97 
98 // Fetch optionals attributes and labels
99 $extrafields->fetch_name_optionals_label($object->table_element);
100 
101 $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
102 
103 // Initialize array of search criterias
104 $search_all = GETPOST("search_all", 'alpha');
105 $search = array();
106 foreach ($object->fields as $key => $val) {
107  if (GETPOST('search_' . $key, 'alpha')) {
108  $search[$key] = GETPOST('search_' . $key, 'alpha');
109  }
110 }
111 
112 if (empty($action) && empty($id) && empty($ref)) {
113  $action = 'view';
114 }
115 
116 // Load object
117 include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once.
118 
119 
120 /*
121  * Actions
122  */
123 
124 $parameters = array();
125 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
126 if ($reshook < 0) {
127  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
128 }
129 
130 if (empty($reshook)) {
131  $error = 0;
132 
133  $backurlforlist = dol_buildpath('/hrm/position_list.php', 1);
134 
135  if (empty($backtopage) || ($cancel && empty($fk_job))) {
136  if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
137  if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
138  $backtopage = $backurlforlist;
139  } else {
140  $backtopage = dol_buildpath('/hrm/position_card.php', 1) . '?id=' . ($id > 0 ? $id : '__ID__');
141  }
142  }
143  }
144 
145  $triggermodname = 'hrm_POSITION_MODIFY'; // Name of trigger action code to execute when we modify record
146 
147  // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen
148  include DOL_DOCUMENT_ROOT . '/core/actions_addupdatedelete.inc.php';
149 
150  // Actions when linking object each other
151  include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php';
152 
153  // Actions when printing a doc from card
154  include DOL_DOCUMENT_ROOT . '/core/actions_printing.inc.php';
155 
156  // Action to move up and down lines of object
157  //include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php';
158 
159  // Action to build doc
160  include DOL_DOCUMENT_ROOT . '/core/actions_builddoc.inc.php';
161 
162  if ($action == 'set_thirdparty' && $permissiontoadd) {
163  $object->setValueFrom('fk_soc', GETPOST('fk_soc', 'int'), '', '', 'date', '', $user, $triggermodname);
164  }
165  if ($action == 'classin' && $permissiontoadd) {
166  $object->setProject(GETPOST('projectid', 'int'));
167  }
168 
169  // Actions to send emails
170  $triggersendname = 'hrm_POSITION_SENTBYMAIL';
171  $autocopy = 'MAIN_MAIL_AUTOCOPY_POSITION_TO';
172  $trackid = 'position' . $object->id;
173  include DOL_DOCUMENT_ROOT . '/core/actions_sendmails.inc.php';
174 }
175 
176 
177 displayPositionCard($object);
178 
179 
186 function displayPositionCard(&$object)
187 {
188  global $user, $langs, $db, $conf, $extrafields, $hookmanager, $action, $permissiontoadd, $permissiontodelete;
189 
190  $id = $object->id;
191 
192  /*
193  * View
194  *
195  * Put here all code to build page
196  */
197 
198  $form = new Form($db);
199  $formfile = new FormFile($db);
200  $formproject = new FormProjets($db);
201 
202  $backtopage = GETPOST('backtopage', 'alpha');
203  $backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
204 
205  $title = $langs->trans("Position");
206  $help_url = '';
207  llxHeader('', $title, $help_url);
208 
209 
210  // Part to edit record
211  if (($id || $ref) && $action == 'edit') {
212  print load_fiche_titre($langs->trans("Position"), '', 'object_' . $object->picto);
213 
214  print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '">';
215  print '<input type="hidden" name="token" value="' . newToken() . '">';
216  print '<input type="hidden" name="action" value="update">';
217  print '<input type="hidden" name="id" value="' . $object->id . '">';
218 
219  if ($backtopage) {
220  print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
221  }
222  if ($backtopageforcancel) {
223  print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
224  }
225 
226  print dol_get_fiche_head();
227 
228  print '<table class="border centpercent tableforfieldedit">' . "\n";
229 
230  // Common attributes
231  include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_edit.tpl.php';
232 
233  // Other attributes
234  include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_edit.tpl.php';
235 
236  print '</table>';
237 
238  print dol_get_fiche_end();
239 
240  print '<div class="center"><input type="submit" class="button button-save" name="save" value="' . $langs->trans("Save") . '">';
241  print ' &nbsp; <input type="submit" class="button button-cancel" name="cancel" value="' . $langs->trans("Cancel") . '">';
242  print '</div>';
243 
244  print '</form>';
245  }
246 
247 
248  // Part to show record
249  if ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'create'))) {
250  $res = $object->fetch_optionals();
251 
252 
253  $head = positionCardPrepareHead($object);
254  print dol_get_fiche_head($head, 'position', $langs->trans("Workstation"), -1, $object->picto);
255 
256  $formconfirm = '';
257 
258  // Confirmation to delete
259  if ($action == 'delete') {
260  $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('DeletePosition'), $langs->trans('ConfirmDeleteObject'), 'confirm_delete', '', 0, 1);
261  }
262 
263  // Call Hook formConfirm
264  $parameters = array('formConfirm' => $formconfirm/*, 'lineid' => $lineid*/);
265  $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
266  if (empty($reshook)) {
267  $formconfirm .= $hookmanager->resPrint;
268  } elseif ($reshook > 0) {
269  $formconfirm = $hookmanager->resPrint;
270  }
271 
272  // Print form confirm
273  print $formconfirm;
274 
275 
276  // Object card
277  // ------------------------------------------------------------
278  // $linkback = '<a href="' . dol_buildpath('/hrm/position.php', 1) . '?restore_lastsearch_values=1' . (!empty($object->fk_job) ? '&fk_job=' . $object->fk_job : '') . '">' . $langs->trans("BackToList") . '</a>';
279  $linkback = '<a href="' . dol_buildpath('/hrm/position_list.php', 1) . '">' . $langs->trans("BackToList") . '</a>';
280 
281  $morehtmlref = '<div class="refidno">';
282  $u_position = new User(($db));
283  $u_position->fetch($object->fk_user);
284  $morehtmlref .= $langs->trans('Employee').' : '.($u_position->id > 0 ? $u_position->getNomUrl(1) : '');
285  $job = new Job($db);
286  $job->fetch($object->fk_job);
287  $morehtmlref .= '<br>'.$langs->trans('Job').' : '.$job->getNomUrl(1);
288  $morehtmlref .= '</div>';
289 
290  dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'rowid', $morehtmlref);
291 
292 
293  print '<div class="fichecenter">';
294  print '<div class="fichehalfleft">';
295  print '<div class="underbanner clearboth"></div>';
296  print '<table class="border centpercent tableforfield">' . "\n";
297 
298  // Common attributes
299  //$keyforbreak='fieldkeytoswitchonsecondcolumn'; // We change column just before this field
300  //unset($object->fields['fk_project']); // Hide field already shown in banner
301  //unset($object->fields['fk_soc']); // Hide field already shown in banner
302  $object->fields['fk_user']['visible']=0; // Already in banner
303  $object->fields['fk_job']['visible']=0; // Already in banner
304  include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php';
305 
306  // Other attributes. Fields from hook formObjectOptions and Extrafields.
307  include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
308 
309  print '</table>';
310  print '</div>';
311  print '</div>';
312 
313  print '<div class="clearboth"></div>';
314 
315  print dol_get_fiche_end();
316 
317  /*
318  * Action bar
319  */
320  print '<div class="tabsAction">';
321 
322  $parameters = array();
323  $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
324 
325 
326  print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit&token=' . newToken(), '', $permissiontoadd);
327 
328  // Delete (need delete permission, or if draft, just need create/modify permission)
329  print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete&token=' . newToken(), '', $permissiontodelete);
330  }
331 }
332 
333 //if ($action != 'presend') {
334 // $formfile = new FormFile($db);
335 // print '<div class="fichecenter"><div class="fichehalfleft">';
336 //
337 // if (empty($conf->global->SOCIETE_DISABLE_BUILDDOC)) {
338 // print '<a name="builddoc"></a>'; // ancre
339 //
340 // /*
341 // * Generated documents
342 // */
343 // $filedir = $conf->societe->multidir_output[$object->entity].'/'.$object->id;
344 // $urlsource = $_SERVER["PHP_SELF"]."?socid=".$object->id;
345 // $genallowed = $user->hasRight('societe', 'lire');
346 // $delallowed = $user->rights->societe->creer;
347 //
348 // print $formfile->showdocuments('company', $object->id, $filedir, $urlsource, $genallowed, $delallowed, $object->model_pdf, 0, 0, 0, 28, 0, 'entity='.$object->entity, 0, '', $object->default_lang);
349 // }
350 //
351 //
352 // print '</div><div class="fichehalfright">';
353 //
354 // $MAXEVENT = 10;
355 //
356 // $morehtmlright = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/societe/agenda.php?socid='.$object->id);
357 //
358 // // List of actions on element
359 // include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
360 // $formactions = new FormActions($db);
361 // $somethingshown = $formactions->showactions($object, '', $object->id, 1, '', $MAXEVENT, '', $morehtmlright); // Show all action for thirdparty
362 //
363 // print '</div></div>';
364 //}
365 
366 
367 print '</table>' . "\n";
368 print '</div>' . "\n";
369 
370 print '</form>' . "\n";
371 
372 
373 if ($action !== 'edit' && $action !== 'create') {
374  print '<div class="fichecenter"><div class="fichehalfleft">';
375 
376  // Show links to link elements
377  $linktoelem = $form->showLinkToObjectBlock($object, null, array('position'));
378  $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
379 
380 
381  print '</div><div class="fichehalfright">';
382 
383  $MAXEVENT = 10;
384 
385  $morehtmlcenter = dolGetButtonTitle($langs->trans('SeeAll'), '', 'fa fa-bars imgforviewmode', DOL_URL_ROOT.'/hrm/position_agenda.php?id='.$object->id);
386 
387  // List of actions on element
388  include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php';
389  $formactions = new FormActions($db);
390  $somethingshown = $formactions->showactions($object, $object->element . '@' . $object->module, (is_object($object->thirdparty) ? $object->thirdparty->id : 0), 1, '', $MAXEVENT, '', $morehtmlcenter);
391 
392  print '</div></div>';
393 }
394 
395 
396 // End of page
397 llxFooter();
398 $db->close();
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:118
if(preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) if(preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) if($action=='set') elseif($action=='specimen') elseif($action=='setmodel') elseif($action=='del') elseif($action=='setdoc') $formactions
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
Class to manage standard extra fields.
Class to manage building of HTML components.
Class to offer components to list and upload files.
Class to manage generation of HTML components Only common components must be here.
Class to manage building of HTML components.
Class for Job.
Definition: job.class.php:37
Class for Position.
Class to manage Dolibarr users.
Definition: user.class.php:45
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
positionCardPrepareHead($object)
Prepare array of tabs for positions.
$formconfirm
if ($action == 'delbookkeepingyear') {
displayPositionCard(&$object)
Show the card of a position.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.