32require
'../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/html.form.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/user/class/usergroup.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/holiday/class/holiday.class.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
44$langs->loadLangs(array(
'users',
'other',
'holiday',
'hrm'));
47if ($user->socid > 0) {
51$action =
GETPOST(
'action',
'aZ09');
52$massaction =
GETPOST(
'massaction',
'alpha');
54$confirm =
GETPOST(
'confirm',
'alpha');
55$cancel =
GETPOST(
'cancel',
'alpha');
56$toselect =
GETPOST(
'toselect',
'array');
57$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'holidaylist';
58$mode =
GETPOST(
'mode',
'alpha');
59$backtopage =
GETPOST(
'backtopage',
'alpha');
60$optioncss =
GETPOST(
'optioncss',
'aZ');
64$childids = $user->getAllChildIds(1);
67$diroutputmassaction = $conf->holiday->dir_output.
'/temp/massgeneration/'.$user->id;
72$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
73$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
75if (empty($page) || $page == -1) {
78$offset = $limit * $page;
85 $sortfield =
"cp.ref";
88$search_all = trim((
GETPOST(
'search_all',
'alphanohtml') !=
'') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml'));
89$search_ref =
GETPOST(
'search_ref',
'alphanohtml');
90$search_day_create =
GETPOST(
'search_day_create',
'int');
91$search_month_create =
GETPOST(
'search_month_create',
'int');
92$search_year_create =
GETPOST(
'search_year_create',
'int');
93$search_day_start =
GETPOST(
'search_day_start',
'int');
94$search_month_start =
GETPOST(
'search_month_start',
'int');
95$search_year_start =
GETPOST(
'search_year_start',
'int');
96$search_day_end =
GETPOST(
'search_day_end',
'int');
97$search_month_end =
GETPOST(
'search_month_end',
'int');
98$search_year_end =
GETPOST(
'search_year_end',
'int');
99$search_employee =
GETPOST(
'search_employee',
'intcomma');
100$search_valideur =
GETPOST(
'search_valideur',
'intcomma');
101$search_status =
GETPOST(
'search_status',
'intcomma');
102$search_type =
GETPOST(
'search_type',
'intcomma');
107$hookmanager->initHooks(array(
'holidaylist'));
110$extrafields->fetch_name_optionals_label(
$object->table_element);
112$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
115$fieldstosearchall = array(
117 'cp.description' =>
'Description',
118 'uu.lastname' =>
'EmployeeLastname',
119 'uu.firstname' =>
'EmployeeFirstname',
120 'uu.login' =>
'Login'
124 'cp.ref' => array(
'label' => $langs->trans(
"Ref"),
'checked' => 1),
125 'cp.fk_user' => array(
'label' => $langs->trans(
"Employee"),
'checked' => 1,
'position' => 20),
126 'cp.fk_validator' => array(
'label' => $langs->trans(
"ValidatorCP"),
'checked' => 1,
'position' => 30),
127 'cp.fk_type' => array(
'label' => $langs->trans(
"Type"),
'checked' => 1,
'position' => 35),
128 'duration' => array(
'label' => $langs->trans(
"NbUseDaysCPShort"),
'checked' => 1,
'position' => 38),
129 'cp.date_debut' => array(
'label' => $langs->trans(
"DateStart"),
'checked' => 1,
'position' => 40),
130 'cp.date_fin' => array(
'label' => $langs->trans(
"DateEnd"),
'checked' => 1,
'position' => 42),
131 'cp.date_valid' => array(
'label' => $langs->trans(
"DateValidation"),
'checked' => 1,
'position' => 60),
132 'cp.date_approval' => array(
'label' => $langs->trans(
"DateApprove"),
'checked' => 1,
'position' => 70),
133 'cp.date_create' => array(
'label' => $langs->trans(
"DateCreation"),
'checked' => 0,
'position' => 500),
134 'cp.tms' => array(
'label' => $langs->trans(
"DateModificationShort"),
'checked' => 0,
'position' => 501),
135 'cp.statut' => array(
'label' => $langs->trans(
"Status"),
'checked' => 1,
'position' => 1000),
138include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
143if ($user->socid > 0) {
148$permissiontoread = $user->hasRight(
'holiday',
'read');
149$permissiontodelete = $user->hasRight(
'holiday',
'delete');
150$permissiontoapprove = $user->hasRight(
'holiday',
'approve');
152if (!isModEnabled(
'holiday')) {
160 if (
$id == $user->id) {
163 if ($user->hasRight(
'holiday',
'readall')) {
166 if ($user->hasRight(
'holiday',
'read') && in_array(
$id, $childids)) {
180if (
GETPOST(
'cancel',
'alpha')) {
184if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
188$parameters = array(
'socid' => $socid,
'arrayfields' => &$arrayfields);
189$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
194if (empty($reshook)) {
196 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
199 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
201 $search_month_create =
"";
202 $search_year_create =
"";
203 $search_month_start =
"";
204 $search_year_start =
"";
205 $search_month_end =
"";
206 $search_year_end =
"";
207 $search_employee =
"";
208 $search_valideur =
"";
212 $search_array_options = array();
214 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
215 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
220 $objectclass =
'Holiday';
221 $objectlabel =
'Holiday';
222 $uploaddir = $conf->holiday->dir_output;
223 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
231$form =
new Form($db);
235$fuser =
new User($db);
236$holidaystatic =
new Holiday($db);
239$result =
$object->updateBalance();
241$title = $langs->trans(
'CPTitreMenu');
242$help_url =
'EN:Module_Holiday';
244llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'bodyforlist mod-holiday page-list');
254 $fuser->fetch(
$id,
'',
'', 1);
255 $fuser->loadRights();
256 $user_id = $fuser->id;
258 $search_employee = $user_id;
268$sql .=
" cp.fk_user,";
269$sql .=
" cp.fk_type,";
270$sql .=
" cp.date_create,";
271$sql .=
" cp.tms as date_modification,";
272$sql .=
" cp.description,";
273$sql .=
" cp.date_debut,";
274$sql .=
" cp.date_fin,";
275$sql .=
" cp.halfday,";
276$sql .=
" cp.statut as status,";
277$sql .=
" cp.fk_validator,";
278$sql .=
" cp.date_valid,";
279$sql .=
" cp.fk_user_valid,";
280$sql .=
" cp.date_approval,";
281$sql .=
" cp.fk_user_approve,";
282$sql .=
" cp.date_refuse,";
283$sql .=
" cp.fk_user_refuse,";
284$sql .=
" cp.date_cancel,";
285$sql .=
" cp.fk_user_cancel,";
286$sql .=
" cp.detail_refuse,";
288$sql .=
" uu.lastname as user_lastname,";
289$sql .=
" uu.firstname as user_firstname,";
290$sql .=
" uu.admin as user_admin,";
291$sql .=
" uu.email as user_email,";
292$sql .=
" uu.login as user_login,";
293$sql .=
" uu.statut as user_status,";
294$sql .=
" uu.photo as user_photo,";
296$sql .=
" ua.lastname as validator_lastname,";
297$sql .=
" ua.firstname as validator_firstname,";
298$sql .=
" ua.admin as validator_admin,";
299$sql .=
" ua.email as validator_email,";
300$sql .=
" ua.login as validator_login,";
301$sql .=
" ua.statut as validator_status,";
302$sql .=
" ua.photo as validator_photo";
304if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
305 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
306 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
310$parameters = array();
311$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters);
312$sql .= $hookmanager->resPrint;
313$sql = preg_replace(
'/,\s*$/',
'', $sql);
317$sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as cp";
318if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
319 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (cp.rowid = ef.fk_object)";
321$sql .=
", ".MAIN_DB_PREFIX.
"user as uu, ".MAIN_DB_PREFIX.
"user as ua";
322$sql .=
" WHERE cp.entity IN (".getEntity(
'holiday').
")";
323$sql .=
" AND cp.fk_user = uu.rowid AND cp.fk_validator = ua.rowid ";
325if (!empty($search_all)) {
326 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
329if (!empty($search_ref)) {
333$sql .=
dolSqlDateFilter(
"cp.date_debut", $search_day_start, $search_month_start, $search_year_start);
335$sql .=
dolSqlDateFilter(
"cp.date_fin", $search_day_end, $search_month_end, $search_year_end);
337$sql .=
dolSqlDateFilter(
"cp.date_create", $search_day_create, $search_month_create, $search_year_create);
339if (!empty($search_employee) && $search_employee != -1) {
340 $sql .=
" AND cp.fk_user = '".$db->escape($search_employee).
"'\n";
343if (!empty($search_valideur) && $search_valideur != -1) {
344 $sql .=
" AND cp.fk_validator = '".$db->escape($search_valideur).
"'\n";
347if (!empty($search_type) && $search_type != -1) {
348 $sql .=
' AND cp.fk_type IN ('.$db->sanitize($db->escape($search_type)).
')';
351if (!empty($search_status) && $search_status != -1) {
352 $sql .=
" AND cp.statut = '".$db->escape($search_status).
"'\n";
355if (!$user->hasRight(
'holiday',
'readall')) {
356 $sql .=
' AND cp.fk_user IN ('.$db->sanitize(implode(
',', $childids)).
')';
359 $sql .=
" AND cp.fk_user IN (".$db->sanitize(
$id).
")";
363include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
365$parameters = array();
366$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
367$sql .= $hookmanager->resPrint;
370$nbtotalofrecords =
'';
373 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
374 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
375 $resql = $db->query($sqlforcount);
377 $objforcount = $db->fetch_object($resql);
378 $nbtotalofrecords = $objforcount->nbtotalofrecords;
383 if (($page * $limit) > $nbtotalofrecords) {
391$sql .= $db->order($sortfield, $sortorder);
393 $sql .= $db->plimit($limit + 1, $offset);
397$resql = $db->query($sql);
403$num = $db->num_rows($resql);
405$arrayofselected = is_array($toselect) ? $toselect : array();
409 $param .=
'&mode='.urlencode($mode);
411if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
412 $param .=
'&contextpage='.urlencode($contextpage);
414if ($limit > 0 && $limit != $conf->liste_limit) {
415 $param .=
'&limit='.((int) $limit);
417if ($optioncss !=
'') {
418 $param .=
'&optioncss='.urlencode($optioncss);
421 $param .=
'&search_ref='.urlencode($search_ref);
423if ($search_day_create) {
424 $param .=
'&search_day_create='.urlencode($search_day_create);
426if ($search_month_create) {
427 $param .=
'&search_month_create='.urlencode($search_month_create);
429if ($search_year_create) {
430 $param .=
'&search_year_create='.urlencode($search_year_create);
432if ($search_day_start) {
433 $param .=
'&search_day_start='.urlencode($search_day_start);
435if ($search_month_start) {
436 $param .=
'&search_month_start='.urlencode($search_month_start);
438if ($search_year_start) {
439 $param .=
'&search_year_start='.urlencode($search_year_start);
441if ($search_day_end) {
442 $param .=
'&search_day_end='.urlencode($search_day_end);
444if ($search_month_end) {
445 $param .=
'&search_month_end='.urlencode($search_month_end);
447if ($search_year_end) {
448 $param .=
'&search_year_end='.urlencode($search_year_end);
450if ($search_employee > 0) {
451 $param .=
'&search_employee='.urlencode($search_employee);
453if ($search_valideur > 0) {
454 $param .=
'&search_valideur='.urlencode((
string) ($search_valideur));
456if ($search_type > 0) {
457 $param .=
'&search_type='.urlencode((
string) ($search_type));
459if ($search_status > 0) {
460 $param .=
'&search_status='.urlencode($search_status);
463include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
466$arrayofmassactions = array(
471if (!empty($permissiontodelete)) {
472 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
474if (!empty($permissiontoapprove)) {
475 $arrayofmassactions[
'preapproveleave'] =
img_picto(
'',
'check',
'class="pictofixedwidth"').$langs->trans(
"Approve");
477if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
478 $arrayofmassactions = array();
480$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
482print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
483if ($optioncss !=
'') {
484 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
486print
'<input type="hidden" name="token" value="'.newToken().
'">';
487print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
488print
'<input type="hidden" name="action" value="'.($action ==
'edit' ?
'update' :
'list').
'">';
489print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
490print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
491print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
492print
'<input type="hidden" name="page" value="'.$page.
'">';
493print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
494print
'<input type="hidden" name="page_y" value="">';
495print
'<input type="hidden" name="mode" value="'.$mode.
'">';
497 print
'<input type="hidden" name="id" value="'.$id.
'">';
501 $title = $langs->trans(
"User");
502 $linkback =
'<a href="'.DOL_URL_ROOT.
'/user/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
507 dol_banner_tab($fuser,
'id', $linkback, $user->hasRight(
'user',
'user',
'lire') || $user->admin);
510 print
'<div class="underbanner clearboth"></div>';
521 print
'<div class="tabsAction">';
524 if ($user->hasRight(
'holiday',
'writeall')) {
527 if ($user->hasRight(
'holiday',
'write') && in_array($user_id, $childids)) {
532 print
'<a href="'.DOL_URL_ROOT.
'/holiday/card.php?action=create&fuserid='.$user_id.
'" class="butAction">'.$langs->trans(
"AddCP").
'</a>';
537 $title = $langs->trans(
"ListeCP");
541 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=common'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ((empty($mode) || $mode ==
'common') ? 2 : 1), array(
'morecss' =>
'reposition'));
542 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewKanban'),
'',
'fa fa-th-list imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=kanban'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ($mode ==
'kanban' ? 2 : 1), array(
'morecss' =>
'reposition'));
544 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'MenuAddCP'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/holiday/card.php?action=create',
'', $user->hasRight(
'holiday',
'write'));
546 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'title_hrm', 0, $newcardbutton,
'', $limit, 0, 0, 1);
549$topicmail =
"Information";
550$modelmail =
"leaverequest";
552$trackid =
'leav'.$object->id;
553include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
557 foreach ($fieldstosearchall as $key => $val) {
558 $fieldstosearchall[$key] = $langs->trans($val);
559 $setupstring .= $key.
"=".$val.
";";
561 print
'<!-- Search done like if HOLIDAY_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
562 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>';
567$parameters = array();
568$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
569if (empty($reshook)) {
570 $moreforfilter .= $hookmanager->resPrint;
572 $moreforfilter = $hookmanager->resPrint;
575if (!empty($moreforfilter)) {
576 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
577 print $moreforfilter;
581$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
582$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
583$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
584$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
587if (!$user->hasRight(
'holiday',
'readall')) {
588 $include =
'hierarchyme';
591print
'<div class="div-table-responsive">';
592print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
596print
'<tr class="liste_titre_filter">';
599 print
'<td class="liste_titre center maxwidthsearch">';
600 $searchpicto = $form->showFilterButtons(
'left');
604if (!empty($arrayfields[
'cp.ref'][
'checked'])) {
605 print
'<td class="liste_titre">';
606 print
'<input class="flat maxwidth50" type="text" name="search_ref" value="'.dol_escape_htmltag($search_ref).
'">';
610if (!empty($arrayfields[
'cp.fk_user'][
'checked'])) {
613 $morefilter =
'AND employee = 1';
619 if (
$id && !GETPOSTISSET(
'search_employee')) {
620 $search_employee =
$id;
624 print
'<td class="liste_titre maxwidthonsmartphone left">';
625 print $form->select_dolusers($search_employee,
"search_employee", 1,
"", $disabled, $include,
'', 0, 0, 0, $morefilter, 0,
'',
'maxwidth125');
630if (!empty($arrayfields[
'cp.fk_validator'][
'checked'])) {
631 if ($user->hasRight(
'holiday',
'readall')) {
632 print
'<td class="liste_titre maxwidthonsmartphone left">';
634 $excludefilter = $user->admin ?
'' :
'u.rowid <> '.((int) $user->id);
635 $valideurobjects = $validator->listUsersForGroup($excludefilter, 1);
636 $valideurarray = array();
637 foreach ($valideurobjects as $val) {
638 $valideurarray[$val] = $val;
640 print $form->select_dolusers($search_valideur,
"search_valideur", 1,
"", 0, $valideurarray,
'', 0, 0, 0, $morefilter, 0,
'',
'maxwidth125');
643 print
'<td class="liste_titre"> </td>';
648if (!empty($arrayfields[
'cp.fk_type'][
'checked'])) {
649 print
'<td class="liste_titre">';
650 if (empty($mysoc->country_id)) {
651 setEventMessages(
null, array($langs->trans(
"ErrorSetACountryFirst"), $langs->trans(
"CompanyFoundation")),
'errors');
653 $typeleaves = $holidaystatic->getTypes(1, -1);
654 $arraytypeleaves = array();
655 foreach ($typeleaves as $key => $val) {
656 $labeltoshow = ($langs->trans($val[
'code']) != $val[
'code'] ? $langs->trans($val[
'code']) : $val[
'label']);
658 $arraytypeleaves[$val[
'rowid']] = $labeltoshow;
660 print $form->selectarray(
'search_type', $arraytypeleaves, $search_type, 1, 0, 0,
'', 0, 0, 0,
'',
'maxwidth100', 1);
666if (!empty($arrayfields[
'duration'][
'checked'])) {
667 print
'<td class="liste_titre"> </td>';
671if (!empty($arrayfields[
'cp.date_debut'][
'checked'])) {
672 print
'<td class="liste_titre center nowraponall">';
673 print
'<input class="flat valignmiddle maxwidth25" type="text" maxlength="2" name="search_month_start" value="'.dol_escape_htmltag($search_month_start).
'">';
674 print $formother->selectyear($search_year_start,
'search_year_start', 1, $min_year, $max_year);
679if (!empty($arrayfields[
'cp.date_fin'][
'checked'])) {
680 print
'<td class="liste_titre center nowraponall">';
681 print
'<input class="flat valignmiddle maxwidth25" type="text" maxlength="2" name="search_month_end" value="'.dol_escape_htmltag($search_month_end).
'">';
682 print $formother->selectyear($search_year_end,
'search_year_end', 1, $min_year, $max_year);
687if (!empty($arrayfields[
'cp.date_valid'][
'checked'])) {
688 print
'<td class="liste_titre center nowraponall">';
693if (!empty($arrayfields[
'cp.date_approval'][
'checked'])) {
694 print
'<td class="liste_titre center nowraponall">';
699include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
702$parameters = array(
'arrayfields' => $arrayfields);
703$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
704print $hookmanager->resPrint;
707if (!empty($arrayfields[
'cp.date_create'][
'checked'])) {
708 print
'<td class="liste_titre center width200">';
709 print
'<input class="flat valignmiddle maxwidth25" type="text" maxlength="2" name="search_month_create" value="'.dol_escape_htmltag($search_month_create).
'">';
710 print $formother->selectyear($search_year_create,
'search_year_create', 1, $min_year, 0);
715if (!empty($arrayfields[
'cp.tms'][
'checked'])) {
716 print
'<td class="liste_titre center width200">';
717 print
'<input class="flat valignmiddle maxwidth25" type="text" maxlength="2" name="search_month_update" value="'.dol_escape_htmltag($search_month_update).
'">';
718 print $formother->selectyear($search_year_update,
'search_year_update', 1, $min_year, 0);
723if (!empty($arrayfields[
'cp.statut'][
'checked'])) {
724 print
'<td class="liste_titre center parentonrightofpage">';
725 print
$object->selectStatutCP($search_status,
'search_status',
'search_status width100 onrightofpage');
731 print
'<td class="liste_titre center maxwidthsearch">';
732 $searchpicto = $form->showFilterButtons();
739$totalarray = array();
740$totalarray[
'nbfield'] = 0;
744print
'<tr class="liste_titre">';
746 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
747 $totalarray[
'nbfield']++;
749if (!empty($arrayfields[
'cp.ref'][
'checked'])) {
750 print_liste_field_titre($arrayfields[
'cp.ref'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.ref",
"", $param,
'', $sortfield, $sortorder);
751 $totalarray[
'nbfield']++;
753if (!empty($arrayfields[
'cp.fk_user'][
'checked'])) {
754 print_liste_field_titre($arrayfields[
'cp.fk_user'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.fk_user",
"", $param,
'', $sortfield, $sortorder);
755 $totalarray[
'nbfield']++;
757if (!empty($arrayfields[
'cp.fk_validator'][
'checked'])) {
758 print_liste_field_titre($arrayfields[
'cp.fk_validator'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.fk_validator",
"", $param,
'', $sortfield, $sortorder);
759 $totalarray[
'nbfield']++;
761if (!empty($arrayfields[
'cp.fk_type'][
'checked'])) {
762 print_liste_field_titre($arrayfields[
'cp.fk_type'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'', $param,
'', $sortfield, $sortorder);
763 $totalarray[
'nbfield']++;
765if (!empty($arrayfields[
'duration'][
'checked'])) {
766 print_liste_field_titre($arrayfields[
'duration'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'', $param,
'', $sortfield, $sortorder,
'right maxwidth100');
767 $totalarray[
'nbfield']++;
769if (!empty($arrayfields[
'cp.date_debut'][
'checked'])) {
770 print_liste_field_titre($arrayfields[
'cp.date_debut'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.date_debut",
"", $param,
'', $sortfield, $sortorder,
'center ');
771 $totalarray[
'nbfield']++;
773if (!empty($arrayfields[
'cp.date_fin'][
'checked'])) {
774 print_liste_field_titre($arrayfields[
'cp.date_fin'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.date_fin",
"", $param,
'', $sortfield, $sortorder,
'center ');
775 $totalarray[
'nbfield']++;
777if (!empty($arrayfields[
'cp.date_valid'][
'checked'])) {
778 print_liste_field_titre($arrayfields[
'cp.date_valid'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.date_valid",
"", $param,
'', $sortfield, $sortorder,
'center ');
779 $totalarray[
'nbfield']++;
781if (!empty($arrayfields[
'cp.date_approval'][
'checked'])) {
782 print_liste_field_titre($arrayfields[
'cp.date_approval'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.date_approval",
"", $param,
'', $sortfield, $sortorder,
'center ');
783 $totalarray[
'nbfield']++;
786include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
788$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
789$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
790print $hookmanager->resPrint;
791if (!empty($arrayfields[
'cp.date_create'][
'checked'])) {
792 print_liste_field_titre($arrayfields[
'cp.date_create'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.date_create",
"", $param,
'', $sortfield, $sortorder,
'center ');
793 $totalarray[
'nbfield']++;
795if (!empty($arrayfields[
'cp.tms'][
'checked'])) {
796 print_liste_field_titre($arrayfields[
'cp.tms'][
'label'], $_SERVER[
"PHP_SELF"],
"cp.tms",
"", $param,
'', $sortfield, $sortorder,
'center ');
797 $totalarray[
'nbfield']++;
799if (!empty($arrayfields[
'cp.statut'][
'checked'])) {
800 print_liste_field_titre(
"Status", $_SERVER[
"PHP_SELF"],
"cp.statut",
"", $param,
'', $sortfield, $sortorder,
'center ');
801 $totalarray[
'nbfield']++;
805 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
806 $totalarray[
'nbfield']++;
810$listhalfday = array(
'morning' => $langs->trans(
"Morning"),
"afternoon" => $langs->trans(
"Afternoon"));
817if (
$id && !$user->hasRight(
'holiday',
'readall') && !in_array(
$id, $childids)) {
818 $langs->load(
"errors");
819 print
'<tr class="oddeven opacitymedium"><td colspan="10">'.$langs->trans(
"NotEnoughPermissions").
'</td></tr>';
821} elseif ($num > 0 && !empty($mysoc->country_id)) {
823 $userstatic =
new User($db);
824 $approbatorstatic =
new User($db);
826 $typeleaves =
$object->getTypes(1, -1);
829 $savnbfield = $totalarray[
'nbfield'];
830 $totalarray = array();
831 $totalarray[
'nbfield'] = 0;
833 $imaxinloop = ($limit ? min($num, $limit) : $num);
834 while ($i < $imaxinloop) {
835 $obj = $db->fetch_object($resql);
841 $holidaystatic->id = $obj->rowid;
842 $holidaystatic->ref = ($obj->ref ? $obj->ref : $obj->rowid);
843 $holidaystatic->status = $obj->status;
844 $holidaystatic->date_debut = $db->jdate($obj->date_debut);
845 $holidaystatic->date_fin = $db->jdate($obj->date_fin);
848 $userstatic->id = $obj->fk_user;
849 $userstatic->lastname = $obj->user_lastname;
850 $userstatic->firstname = $obj->user_firstname;
851 $userstatic->admin = $obj->user_admin;
852 $userstatic->email = $obj->user_email;
853 $userstatic->login = $obj->user_login;
854 $userstatic->status = $obj->user_status;
855 $userstatic->photo = $obj->user_photo;
858 $approbatorstatic->id = $obj->fk_validator;
859 $approbatorstatic->lastname = $obj->validator_lastname;
860 $approbatorstatic->firstname = $obj->validator_firstname;
861 $approbatorstatic->admin = $obj->validator_admin;
862 $approbatorstatic->email = $obj->validator_email;
863 $approbatorstatic->login = $obj->validator_login;
864 $approbatorstatic->status = $obj->validator_status;
865 $approbatorstatic->photo = $obj->validator_photo;
867 $date = $obj->date_create;
868 $date_modif = $obj->date_modification;
870 $starthalfday = ($obj->halfday == -1 || $obj->halfday == 2) ?
'afternoon' :
'morning';
871 $endhalfday = ($obj->halfday == 1 || $obj->halfday == 2) ?
'morning' :
'afternoon';
873 $nbopenedday =
num_open_day($db->jdate($obj->date_debut, 1), $db->jdate($obj->date_fin, 1), 0, 1, $obj->halfday);
874 $totalduration += $nbopenedday;
876 if ($mode ==
'kanban') {
878 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
879 print
'<div class="box-flex-container kanban">';
882 $holidaystatic->fk_type = empty($typeleaves[$obj->fk_type][
'rowid']) ? 0 : $typeleaves[$obj->fk_type][
'rowid'];
885 if ($massactionbutton || $massaction) {
887 if (in_array(
$object->id, $arrayofselected)) {
890 if (empty($typeleaves[$obj->fk_type])) {
891 $labeltypeleavetoshow = $langs->trans(
"TypeWasDisabledOrRemoved", $obj->fk_type);
893 $labeltypeleavetoshow = ($langs->trans($typeleaves[$obj->fk_type][
'code']) != $typeleaves[$obj->fk_type][
'code'] ? $langs->trans($typeleaves[$obj->fk_type][
'code']) : $typeleaves[$obj->fk_type][
'label']);
896 $arraydata = array(
'user' => $userstatic,
'labeltype' => $labeltypeleavetoshow,
'selected' => $selected,
'nbopenedday' => $nbopenedday);
898 print $holidaystatic->getKanbanView(
'', $arraydata);
899 if ($i == ($imaxinloop - 1)) {
906 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
909 print
'<td class="nowrap center">';
910 if ($massactionbutton || $massaction) {
912 if (in_array($obj->rowid, $arrayofselected)) {
915 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
919 $totalarray[
'nbfield']++;
922 if (!empty($arrayfields[
'cp.ref'][
'checked'])) {
923 print
'<td class="nowraponall">';
924 print $holidaystatic->getNomUrl(1, 1);
927 $totalarray[
'nbfield']++;
930 if (!empty($arrayfields[
'cp.fk_user'][
'checked'])) {
931 print
'<td class="tdoverflowmax125">'.$userstatic->getNomUrl(-1,
'leave').
'</td>';
933 $totalarray[
'nbfield']++;
936 if (!empty($arrayfields[
'cp.fk_validator'][
'checked'])) {
937 print
'<td class="tdoverflowmax125">'.$approbatorstatic->getNomUrl(-1).
'</td>';
939 $totalarray[
'nbfield']++;
942 if (!empty($arrayfields[
'cp.fk_type'][
'checked'])) {
943 if (empty($typeleaves[$obj->fk_type])) {
944 $labeltypeleavetoshow = $langs->trans(
"TypeWasDisabledOrRemoved", $obj->fk_type);
946 $labeltypeleavetoshow = ($langs->trans($typeleaves[$obj->fk_type][
'code']) != $typeleaves[$obj->fk_type][
'code'] ? $langs->trans($typeleaves[$obj->fk_type][
'code']) : $typeleaves[$obj->fk_type][
'label']);
949 print
'<td class="tdoverflowmax100" title="'.dol_escape_htmltag($labeltypeleavetoshow).
'">';
950 print $labeltypeleavetoshow;
953 $totalarray[
'nbfield']++;
956 if (!empty($arrayfields[
'duration'][
'checked'])) {
957 print
'<td class="right">';
962 $totalarray[
'nbfield']++;
965 if (!empty($arrayfields[
'cp.date_debut'][
'checked'])) {
966 print
'<td class="center">';
968 print
' <span class="opacitymedium nowraponall">('.$langs->trans($listhalfday[$starthalfday]).
')</span>';
971 $totalarray[
'nbfield']++;
974 if (!empty($arrayfields[
'cp.date_fin'][
'checked'])) {
975 print
'<td class="center">';
977 print
' <span class="opacitymedium nowraponall">('.$langs->trans($listhalfday[$endhalfday]).
')</span>';
980 $totalarray[
'nbfield']++;
984 if (!empty($arrayfields[
'cp.date_valid'][
'checked'])) {
985 print
'<td class="center" title="'.dol_print_date($db->jdate($obj->date_valid),
'dayhour').
'">';
989 $totalarray[
'nbfield']++;
993 if (!empty($arrayfields[
'cp.date_approval'][
'checked'])) {
994 print
'<td class="center" title="'.dol_print_date($db->jdate($obj->date_approval),
'dayhour').
'">';
998 $totalarray[
'nbfield']++;
1003 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
1005 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
1006 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
1007 print $hookmanager->resPrint;
1010 if (!empty($arrayfields[
'cp.date_create'][
'checked'])) {
1011 print
'<td style="text-align: center;">'.dol_print_date($date,
'dayhour').
'</td>';
1013 $totalarray[
'nbfield']++;
1016 if (!empty($arrayfields[
'cp.tms'][
'checked'])) {
1017 print
'<td style="text-align: center;">'.dol_print_date($date_modif,
'dayhour').
'</td>';
1019 $totalarray[
'nbfield']++;
1023 if (!empty($arrayfields[
'cp.statut'][
'checked'])) {
1024 print
'<td class="center nowrap">'.$holidaystatic->getLibStatut(5).
'</td>';
1026 $totalarray[
'nbfield']++;
1032 print
'<td class="nowrap center">';
1033 if ($massactionbutton || $massaction) {
1035 if (in_array($obj->rowid, $arrayofselected)) {
1038 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1042 $totalarray[
'nbfield']++;
1052 if ($mode !=
'kanban' && !empty($arrayfields[
'duration'][
'checked'])) {
1053 print
'<tr class="total">';
1057 foreach ($arrayfields as $key => $val) {
1058 if (!empty($val[
'checked'])) {
1059 if ($key ==
'duration') {
1060 print
'<td class="right">'.$totalduration.
' '.$langs->trans(
'DurationDays').
'</td>';
1077 foreach ($arrayfields as $key => $val) {
1078 if (!empty($val[
'checked'])) {
1082 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
1087$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
1088$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
1089print $hookmanager->resPrint;
1091print
'</table>'.
"\n";
1094print
'</form>'.
"\n";
1119 $typeleaves = $holiday->getTypes(1, 1);
1120 foreach ($typeleaves as $key => $val) {
1121 $nb_type = $holiday->getCPforUser($user_id, $val[
'rowid']);
1122 $nb_holiday += $nb_type;
1123 $out .=
' - '.$val[
'label'].
': <strong>'.($nb_type ?
price2num($nb_type) : 0).
'</strong><br>';
1125 $out = $langs->trans(
'SoldeCPUser', round($nb_holiday, 5)).
'<br>'.$out;
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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 of the module paid holiday.
Class to manage user groups.
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).
num_open_day($timestampStart, $timestampEnd, $inhour=0, $lastday=0, $halfday=0, $country_code='')
Function to return number of working days (and text of units) between two dates (working days)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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...
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).
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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.
showMyBalance($holiday, $user_id)
Show balance of user.
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.
user_prepare_head(User $object)
Prepare array with list of tabs.