29require
'../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/holiday/class/holiday.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
37$langs->loadLangs(array(
'holiday',
'hrm'));
39$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
40$massaction =
GETPOST(
'massaction',
'alpha');
41$contextpage =
GETPOST(
'contextpage',
'aZ');
42$optioncss =
GETPOST(
'optioncss',
'aZ');
46$search_ref =
GETPOST(
'search_ref',
'alphanohtml');
47$search_employee =
GETPOST(
'search_employee',
"intcomma");
48$search_type =
GETPOST(
'search_type',
"intcomma");
49$search_description =
GETPOST(
'search_description',
'alphanohtml');
52$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
53$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
56 $sortfield =
"cp.rowid";
63if (empty($page) || $page == -1) {
67$hookmanager->initHooks(array(
'leavemovementlist'));
69$arrayfields = array();
70$arrayofmassactions = array();
73if ($user->socid > 0) {
79if (!$user->hasRight(
'holiday',
'readall')) {
88if (
GETPOST(
'cancel',
'alpha')) {
92if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
97$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
102if (empty($reshook)) {
104 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
107 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
109 $search_employee =
'';
111 $search_description =
'';
113 $search_array_options = array();
116 if (
GETPOST(
'button_removefilter_x',
'alpha')
117 ||
GETPOST(
'button_removefilter.x',
'alpha')
118 ||
GETPOST(
'button_removefilter',
'alpha')
119 ||
GETPOST(
'button_search_x',
'alpha')
120 ||
GETPOST(
'button_search.x',
'alpha')
121 ||
GETPOST(
'button_search',
'alpha')) {
127 'cp.ref' => array(
'label' =>
'Ref',
'checked' => 1,
'position' => 5),
128 'cp.fk_type' => array(
'label' =>
'Type',
'checked' => 1,
'position' => 10),
129 'cp.fk_user' => array(
'label' =>
'Employee',
'checked' => 1,
'position' => 20),
130 'cp.date_debut' => array(
'label' =>
'DateDebCP',
'checked' => -1,
'position' => 30),
131 'cp.date_fin' => array(
'label' =>
'DateFinCP',
'checked' => -1,
'position' => 32),
132 'used_days' => array(
'label' =>
'NbUseDaysCPShort',
'checked' => -1,
'position' => 34),
133 'date_start_month' => array(
'label' =>
'DateStartInMonth',
'checked' => 1,
'position' => 50),
134 'date_end_month' => array(
'label' =>
'DateEndInMonth',
'checked' => 1,
'position' => 52),
135 'used_days_month' => array(
'label' =>
'NbUseDaysCPShortInMonth',
'checked' => 1,
'position' => 54),
136 'cp.description' => array(
'label' =>
'DescCP',
'checked' => -1,
'position' => 800),
144$form =
new Form($db);
146$holidaystatic =
new Holiday($db);
148$listhalfday = array(
'morning' => $langs->trans(
"Morning"),
"afternoon" => $langs->trans(
"Afternoon"));
150$title = $langs->trans(
'CPTitreMenu');
151$help_url =
'EN:Module_Holiday';
153llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-holiday page-month_report');
157$year_month = sprintf(
"%04d", $search_year).
'-'.sprintf(
"%02d", $search_month);
159$sql =
"SELECT cp.rowid, cp.ref, cp.fk_user, cp.date_debut, cp.date_fin, cp.fk_type, cp.description, cp.halfday, cp.statut as status";
160$sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday cp";
161$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"user u ON cp.fk_user = u.rowid";
162$sql .=
" WHERE cp.rowid > 0";
163$sql .=
" AND cp.statut = ".Holiday::STATUS_APPROVED;
165$sql .=
" (date_format(cp.date_debut, '%Y-%m') = '".$db->escape($year_month).
"' OR date_format(cp.date_fin, '%Y-%m') = '".$db->escape($year_month).
"')";
167$sql .=
" (date_format(cp.date_debut, '%Y-%m') < '".$db->escape($year_month).
"' AND date_format(cp.date_fin, '%Y-%m') > '".$db->escape($year_month).
"') ";
169if (!empty($search_ref)) {
172if (!empty($search_employee) && $search_employee > 0) {
173 $sql .=
" AND cp.fk_user = ".((int) $search_employee);
175if (!empty($search_type) && $search_type !=
'-1') {
176 $sql .=
' AND cp.fk_type IN ('.$db->sanitize($search_type).
')';
178if (!empty($search_description)) {
182$sql .= $db->order($sortfield, $sortorder);
184$resql = $db->query($sql);
190$num = $db->num_rows($resql);
193if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
194 $param .=
'&contextpage='.urlencode($contextpage);
196if ($limit > 0 && $limit != $conf->liste_limit) {
197 $param .=
'&limit='.((int) $limit);
199if (!empty($search_ref)) {
200 $param .=
'&search_ref='.urlencode($search_ref);
202if (!empty($search_employee)) {
203 $param .=
'&search_employee='.urlencode($search_employee);
205if (!empty($search_type)) {
206 $param .=
'&search_type='.urlencode($search_type);
208if (!empty($search_description)) {
209 $param .=
'&search_description='.urlencode($search_description);
212print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">';
213if ($optioncss !=
'') {
214 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
216print
'<input type="hidden" name="token" value="'.newToken().
'">';
217print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
218print
'<input type="hidden" name="action" value="list">';
219print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
220print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
221print
'<input type="hidden" name="page" value="'.$page.
'">';
222print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
227print
'<div class="tabBar">';
228print $formother->select_month($search_month,
'remonth', 0, 0,
'minwidth50 maxwidth75imp valignmiddle',
true);
229print $formother->selectyear($search_year,
'reyear', 0, 10, 5, 0, 0,
'',
'valignmiddle width75',
true);
230print
'<input type="submit" class="button" value="'.dol_escape_htmltag($langs->trans(
"Search")).
'" />';
236$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
237$selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
238$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
240print
'<div class="div-table-responsive">';
241print
'<table class="tagtable nobottomiftotal liste">';
243print
'<tr class="liste_titre_filter">';
247 print
'<th class="wrapcolumntitle center maxwidthsearch liste_titre">';
248 $searchpicto = $form->showFilterButtons(
'left');
254if (!empty($arrayfields[
'cp.ref'][
'checked'])) {
255 print
'<th class="liste_titre">';
256 print
'<input class="flat maxwidth100" type="text" name="search_ref" value="'.dol_escape_htmltag($search_ref).
'">';
261if (!empty($arrayfields[
'cp.fk_type'][
'checked'])) {
262 $typeleaves = $holidaystatic->getTypes(1, -1);
263 $arraytypeleaves = array();
264 foreach ($typeleaves as $key => $val) {
265 $labeltoshow = ($langs->trans($val[
'code']) != $val[
'code'] ? $langs->trans($val[
'code']) : $val[
'label']);
266 $arraytypeleaves[$val[
'rowid']] = $labeltoshow;
269 print
'<th class="liste_titre">';
270 print $form->selectarray(
'search_type', $arraytypeleaves, $search_type, 1, 0, 0,
'', 0, 0, 0,
'',
'maxwidth100', 1);
275if (!empty($arrayfields[
'cp.fk_user'][
'checked'])) {
276 print
'<th class="liste_titre">';
277 print $form->select_dolusers($search_employee,
"search_employee", 1,
null, 0,
'',
'', 0, 0, 0,
'', 0,
'',
'maxwidth100');
281if (!empty($arrayfields[
'cp.date_debut'][
'checked'])) {
282 print
'<th class="liste_titre"></th>';
284if (!empty($arrayfields[
'cp.date_fin'][
'checked'])) {
285 print
'<th class="liste_titre"></th>';
287if (!empty($arrayfields[
'used_days'][
'checked'])) {
288 print
'<th class="liste_titre"></th>';
290if (!empty($arrayfields[
'date_start_month'][
'checked'])) {
291 print
'<th class="liste_titre"></th>';
293if (!empty($arrayfields[
'date_end_month'][
'checked'])) {
294 print
'<th class="liste_titre"></th>';
296if (!empty($arrayfields[
'used_days_month'][
'checked'])) {
297 print
'<th class="liste_titre"></th>';
301if (!empty($arrayfields[
'cp.description'][
'checked'])) {
302 print
'<th class="liste_titre">';
303 print
'<input type="text" class="maxwidth100" name="search_description" value="'.$search_description.
'">';
308 print
'<th class="liste_titre maxwidthsearch">';
309 $searchpicto = $form->showFilterButtons();
315print
'<tr class="liste_titre">';
318 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
320if (!empty($arrayfields[
'cp.ref'][
'checked'])) {
321 print_liste_field_titre($arrayfields[
'cp.ref'][
'label'], $_SERVER[
"PHP_SELF"],
'cp.ref',
'',
'',
'', $sortfield, $sortorder);
323if (!empty($arrayfields[
'cp.fk_type'][
'checked'])) {
324 print_liste_field_titre($arrayfields[
'cp.fk_type'][
'label'], $_SERVER[
"PHP_SELF"],
'cp.fk_type',
'',
'',
'', $sortfield, $sortorder);
326if (!empty($arrayfields[
'cp.fk_user'][
'checked'])) {
327 print_liste_field_titre($arrayfields[
'cp.fk_user'][
'label'], $_SERVER[
"PHP_SELF"],
'u.lastname',
'',
'',
'', $sortfield, $sortorder);
329if (!empty($arrayfields[
'ct.label'][
'checked'])) {
330 print_liste_field_titre($arrayfields[
'ct.label'][
'label'], $_SERVER[
"PHP_SELF"],
'ct.label',
'',
'',
'', $sortfield, $sortorder);
332if (!empty($arrayfields[
'cp.date_debut'][
'checked'])) {
333 print_liste_field_titre($arrayfields[
'cp.date_debut'][
'label'], $_SERVER[
"PHP_SELF"],
'cp.date_debut',
'',
'',
'', $sortfield, $sortorder,
'center ');
335if (!empty($arrayfields[
'cp.date_fin'][
'checked'])) {
336 print_liste_field_titre($arrayfields[
'cp.date_fin'][
'label'], $_SERVER[
"PHP_SELF"],
'cp.date_fin',
'',
'',
'', $sortfield, $sortorder,
'center ');
338if (!empty($arrayfields[
'used_days'][
'checked'])) {
339 print_liste_field_titre($arrayfields[
'used_days'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'maxwidth125 right ');
341if (!empty($arrayfields[
'date_start_month'][
'checked'])) {
342 print_liste_field_titre($arrayfields[
'date_start_month'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center ');
344if (!empty($arrayfields[
'date_end_month'][
'checked'])) {
345 print_liste_field_titre($arrayfields[
'date_end_month'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center ');
347if (!empty($arrayfields[
'used_days_month'][
'checked'])) {
348 print_liste_field_titre($arrayfields[
'used_days_month'][
'label'], $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'maxwidth125 right ');
350if (!empty($arrayfields[
'cp.description'][
'checked'])) {
351 print_liste_field_titre($arrayfields[
'cp.description'][
'label'], $_SERVER[
"PHP_SELF"],
'cp.description',
'',
'',
'', $sortfield, $sortorder);
355 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
360 print
'<tr><td colspan="11"><span class="opacitymedium">'.$langs->trans(
'None').
'</span></td></tr>';
362 $tmpuser =
new User($db);
363 while ($obj = $db->fetch_object($resql)) {
364 $tmpuser->fetch($obj->fk_user);
366 $date_start = $db->jdate($obj->date_debut,
true);
367 $date_end = $db->jdate($obj->date_fin,
true);
372 $starthalfday = ($obj->halfday == -1 || $obj->halfday == 2) ?
'afternoon' :
'morning';
373 $endhalfday = ($obj->halfday == 1 || $obj->halfday == 2) ?
'morning' :
'afternoon';
375 $halfdayinmonth = $obj->halfday;
376 $starthalfdayinmonth = $starthalfday;
377 $endhalfdayinmonth = $endhalfday;
382 $date_start_inmonth = $db->jdate($obj->date_debut,
true);
383 $date_end_inmonth = $db->jdate($obj->date_fin,
true);
384 if ($tmpstart[
'year'] < $search_year || $tmpstart[
'mon'] < $search_month) {
386 $starthalfdayinmonth =
'morning';
387 if ($halfdayinmonth == 2) {
390 if ($halfdayinmonth == -1) {
394 if ($tmpend[
'year'] > $search_year || $tmpend[
'mon'] > $search_month) {
395 $date_end_inmonth =
dol_get_last_day($search_year, $search_month,
true) - ((24 * 3600) - 1);
396 $endhalfdayinmonth =
'afternoon';
397 if ($halfdayinmonth == 2) {
398 $halfdayinmonth = -1;
400 if ($halfdayinmonth == 1) {
406 $holidaystatic->id = $obj->rowid;
407 $holidaystatic->ref = $obj->ref;
408 $holidaystatic->status = $obj->status;
409 $holidaystatic->status = $obj->status;
410 $holidaystatic->fk_user = $obj->fk_user;
411 $holidaystatic->fk_type = $obj->fk_type;
412 $holidaystatic->description = $obj->description;
413 $holidaystatic->halfday = $obj->halfday;
414 $holidaystatic->date_debut = $db->jdate($obj->date_debut);
415 $holidaystatic->date_fin = $db->jdate($obj->date_fin);
418 print
'<tr class="oddeven">';
424 if (!empty($arrayfields[
'cp.ref'][
'checked'])) {
425 print
'<td class="nowraponall">'.$holidaystatic->getNomUrl(1, 1).
'</td>';
427 if (!empty($arrayfields[
'cp.fk_type'][
'checked'])) {
428 print
'<td>'.$arraytypeleaves[$obj->fk_type].
'</td>';
430 if (!empty($arrayfields[
'cp.fk_user'][
'checked'])) {
431 print
'<td class="tdoverflowmax150">'.$tmpuser->getNomUrl(-1).
'</td>';
434 if (!empty($arrayfields[
'cp.date_debut'][
'checked'])) {
435 print
'<td class="center">'.dol_print_date($db->jdate($obj->date_debut),
'day');
436 print
' <span class="opacitymedium">('.$langs->trans($listhalfday[$starthalfday]).
')</span>';
440 if (!empty($arrayfields[
'cp.date_fin'][
'checked'])) {
441 print
'<td class="center">'.dol_print_date($db->jdate($obj->date_fin),
'day');
442 print
' <span class="opacitymedium">('.$langs->trans($listhalfday[$endhalfday]).
')</span>';
446 if (!empty($arrayfields[
'used_days'][
'checked'])) {
447 print
'<td class="right">'.num_open_day($date_start, $date_end, 0, 1, $obj->halfday).
'</td>';
450 if (!empty($arrayfields[
'date_start_month'][
'checked'])) {
451 print
'<td class="center">'.dol_print_date($date_start_inmonth,
'day');
452 print
' <span class="opacitymedium">('.$langs->trans($listhalfday[$starthalfdayinmonth]).
')</span>';
456 if (!empty($arrayfields[
'date_end_month'][
'checked'])) {
457 print
'<td class="center">'.dol_print_date($date_end_inmonth,
'day');
458 print
' <span class="opacitymedium">('.$langs->trans($listhalfday[$endhalfdayinmonth]).
')</span>';
462 if (!empty($arrayfields[
'used_days_month'][
'checked'])) {
463 print
'<td class="right">'.num_open_day($date_start_inmonth, $date_end_inmonth, 0, 1, $halfdayinmonth).
'</td>';
465 if (!empty($arrayfields[
'cp.description'][
'checked'])) {
466 print
'<td class="maxwidth300 small">';
467 print
'<div class="twolinesmax">';
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 Dolibarr users.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetFirstLineOfText($text, $nboflines=1, $charset='UTF-8')
Return first line of text.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
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...
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.
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.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
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.