dolibarr 21.0.0-alpha
holiday.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2011 Dimitri Mouillard <dmouillard@teclib.com>
3 * Copyright (C) 2012-2014 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2012-2016 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
6 * Copyright (C) 2016 Juanjo Menent <jmenent@2byte.es>
7 * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
8 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
29require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
30
31
35class Holiday extends CommonObject
36{
40 public $element = 'holiday';
41
45 public $table_element = 'holiday';
46
50 public $fk_element = 'fk_holiday';
51
55 public $picto = 'holiday';
56
60 public $fk_user;
61
65 public $date_create = '';
66
70 public $description;
71
75 public $date_debut = '';
76
80 public $date_fin = '';
81
85 public $date_debut_gmt = '';
86
90 public $date_fin_gmt = '';
91
95 public $halfday = '';
96
101 public $statut = 0;
102
106 public $fk_validator;
107
111 public $date_valid = 0;
112
116 public $fk_user_valid;
117
121 public $date_approval;
122
126 public $fk_user_approve;
127
131 public $date_refuse = 0;
132
136 public $fk_user_refuse;
137
141 public $date_cancel = 0;
142
146 public $fk_user_cancel;
147
151 public $fk_user_create;
152
156 public $detail_refuse = '';
157
161 public $fk_type;
162
163 public $holiday = array();
164 public $events = array();
165 public $logs = array();
166
167
171 public $optName = '';
175 public $optValue = '';
179 public $optRowid = 0;
180
184 const STATUS_DRAFT = 1;
200 const STATUS_REFUSED = 5;
201
202
208 public function __construct($db)
209 {
210 $this->db = $db;
211
212 $this->ismultientitymanaged = 0;
213 }
214
215
223 public function getNextNumRef($objsoc)
224 {
225 global $langs, $conf;
226 $langs->load("order");
227
228 if (!getDolGlobalString('HOLIDAY_ADDON')) {
229 $conf->global->HOLIDAY_ADDON = 'mod_holiday_madonna';
230 }
231
232 if (getDolGlobalString('HOLIDAY_ADDON')) {
233 $mybool = false;
234
235 $file = getDolGlobalString('HOLIDAY_ADDON') . ".php";
236 $classname = getDolGlobalString('HOLIDAY_ADDON');
237
238 // Include file with class
239 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
240 foreach ($dirmodels as $reldir) {
241 $dir = dol_buildpath($reldir."core/modules/holiday/");
242
243 // Load file with numbering class (if found)
244 $mybool = ((bool) @include_once $dir.$file) || $mybool;
245 }
246
247 if (!$mybool) {
248 dol_print_error(null, "Failed to include file ".$file);
249 return '';
250 }
251
252 $obj = new $classname();
253 '@phan-var-force ModelNumRefHolidays $obj';
254 $numref = $obj->getNextValue($objsoc, $this);
255
256 if ($numref != "") {
257 return $numref;
258 } else {
259 $this->error = $obj->error;
260 //dol_print_error($this->db,get_class($this)."::getNextNumRef ".$obj->error);
261 return "";
262 }
263 } else {
264 print $langs->trans("Error")." ".$langs->trans("Error_HOLIDAY_ADDON_NotDefined");
265 return "";
266 }
267 }
268
274 public function updateBalance()
275 {
276 $this->db->begin();
277
278 // Update sold of vocations
279 $result = $this->updateSoldeCP();
280
281 // Check nb of users into table llx_holiday_users and update with empty lines
282 //if ($result > 0) $result = $this->verifNbUsers($this->countActiveUsersWithoutCP(), $this->getConfCP('nbUser'));
283
284 if ($result >= 0) {
285 $this->db->commit();
286 return 0; // for cronjob use (0 is OK, any other value is an error code)
287 } else {
288 $this->db->rollback();
289 return -1;
290 }
291 }
292
300 public function create($user, $notrigger = 0)
301 {
302 global $conf;
303 $error = 0;
304
305 $now = dol_now();
306
307 // Check parameters
308 if (empty($this->fk_user) || !is_numeric($this->fk_user) || $this->fk_user < 0) {
309 $this->error = "ErrorBadParameterFkUser";
310 return -1;
311 }
312 if (empty($this->fk_validator) || !is_numeric($this->fk_validator) || $this->fk_validator < 0) {
313 $this->error = "ErrorBadParameterFkValidator";
314 return -1;
315 }
316 if (empty($this->fk_type) || !is_numeric($this->fk_type) || $this->fk_type < 0) {
317 $this->error = "ErrorBadParameterFkType";
318 return -1;
319 }
320
321 // Insert request
322 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday(";
323 $sql .= "ref,";
324 $sql .= "fk_user,";
325 $sql .= "date_create,";
326 $sql .= "description,";
327 $sql .= "date_debut,";
328 $sql .= "date_fin,";
329 $sql .= "halfday,";
330 $sql .= "statut,";
331 $sql .= "fk_validator,";
332 $sql .= "fk_type,";
333 $sql .= "fk_user_create,";
334 $sql .= "entity";
335 $sql .= ") VALUES (";
336 $sql .= "'(PROV)',";
337 $sql .= " ".((int) $this->fk_user).",";
338 $sql .= " '".$this->db->idate($now)."',";
339 $sql .= " '".$this->db->escape($this->description)."',";
340 $sql .= " '".$this->db->idate($this->date_debut)."',";
341 $sql .= " '".$this->db->idate($this->date_fin)."',";
342 $sql .= " ".((int) $this->halfday).",";
343 $sql .= " '1',";
344 $sql .= " ".((int) $this->fk_validator).",";
345 $sql .= " ".((int) $this->fk_type).",";
346 $sql .= " ".((int) $user->id).",";
347 $sql .= " ".((int) $conf->entity);
348 $sql .= ")";
349
350 $this->db->begin();
351
352 dol_syslog(get_class($this)."::create", LOG_DEBUG);
353 $resql = $this->db->query($sql);
354 if (!$resql) {
355 $error++;
356 $this->errors[] = "Error ".$this->db->lasterror();
357 }
358
359 if (!$error) {
360 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."holiday");
361
362 if ($this->id) {
363 // update ref
364 $initialref = '(PROV'.$this->id.')';
365 if (!empty($this->ref)) {
366 $initialref = $this->ref;
367 }
368
369 $sql = 'UPDATE '.MAIN_DB_PREFIX."holiday SET ref='".$this->db->escape($initialref)."' WHERE rowid=".((int) $this->id);
370 if ($this->db->query($sql)) {
371 $this->ref = $initialref;
372
373 if (!$error) {
374 $result = $this->insertExtraFields();
375 if ($result < 0) {
376 $error++;
377 }
378 }
379
380 if (!$error && !$notrigger) {
381 // Call trigger
382 $result = $this->call_trigger('HOLIDAY_CREATE', $user);
383 if ($result < 0) {
384 $error++;
385 }
386 // End call triggers
387 }
388 }
389 }
390 }
391
392 // Commit or rollback
393 if ($error) {
394 foreach ($this->errors as $errmsg) {
395 dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
396 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
397 }
398 $this->db->rollback();
399 return -1 * $error;
400 } else {
401 $this->db->commit();
402 return $this->id;
403 }
404 }
405
406
414 public function fetch($id, $ref = '')
415 {
416 $sql = "SELECT";
417 $sql .= " cp.rowid,";
418 $sql .= " cp.ref,";
419 $sql .= " cp.fk_user,";
420 $sql .= " cp.date_create,";
421 $sql .= " cp.description,";
422 $sql .= " cp.date_debut,";
423 $sql .= " cp.date_fin,";
424 $sql .= " cp.halfday,";
425 $sql .= " cp.statut as status,";
426 $sql .= " cp.fk_validator,";
427 $sql .= " cp.date_valid,";
428 $sql .= " cp.fk_user_valid,";
429 $sql .= " cp.date_approval,";
430 $sql .= " cp.fk_user_approve,";
431 $sql .= " cp.date_refuse,";
432 $sql .= " cp.fk_user_refuse,";
433 $sql .= " cp.date_cancel,";
434 $sql .= " cp.fk_user_cancel,";
435 $sql .= " cp.detail_refuse,";
436 $sql .= " cp.note_private,";
437 $sql .= " cp.note_public,";
438 $sql .= " cp.fk_user_create,";
439 $sql .= " cp.fk_type,";
440 $sql .= " cp.entity";
441 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as cp";
442 if ($id > 0) {
443 $sql .= " WHERE cp.rowid = ".((int) $id);
444 } else {
445 $sql .= " WHERE cp.ref = '".$this->db->escape($ref)."'";
446 }
447
448 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
449 $resql = $this->db->query($sql);
450 if ($resql) {
451 if ($this->db->num_rows($resql)) {
452 $obj = $this->db->fetch_object($resql);
453
454 $this->id = $obj->rowid;
455 $this->ref = ($obj->ref ? $obj->ref : $obj->rowid);
456 $this->fk_user = $obj->fk_user;
457 $this->date_create = $this->db->jdate($obj->date_create);
458 $this->description = $obj->description;
459 $this->date_debut = $this->db->jdate($obj->date_debut);
460 $this->date_fin = $this->db->jdate($obj->date_fin);
461 $this->date_debut_gmt = $this->db->jdate($obj->date_debut, 1);
462 $this->date_fin_gmt = $this->db->jdate($obj->date_fin, 1);
463 $this->halfday = $obj->halfday;
464 $this->status = $obj->status;
465 $this->statut = $obj->status; // deprecated
466 $this->fk_validator = $obj->fk_validator;
467 $this->date_valid = $this->db->jdate($obj->date_valid);
468 $this->fk_user_valid = $obj->fk_user_valid;
469 $this->user_validation_id = $obj->fk_user_valid;
470 $this->date_approval = $this->db->jdate($obj->date_approval);
471 $this->fk_user_approve = $obj->fk_user_approve;
472 $this->date_refuse = $this->db->jdate($obj->date_refuse);
473 $this->fk_user_refuse = $obj->fk_user_refuse;
474 $this->date_cancel = $this->db->jdate($obj->date_cancel);
475 $this->fk_user_cancel = $obj->fk_user_cancel;
476 $this->detail_refuse = $obj->detail_refuse;
477 $this->note_private = $obj->note_private;
478 $this->note_public = $obj->note_public;
479 $this->fk_user_create = $obj->fk_user_create;
480 $this->fk_type = $obj->fk_type;
481 $this->entity = $obj->entity;
482
483 $this->fetch_optionals();
484
485 $result = 1;
486 } else {
487 $result = 0;
488 }
489 $this->db->free($resql);
490
491 return $result;
492 } else {
493 $this->error = "Error ".$this->db->lasterror();
494 return -1;
495 }
496 }
497
506 public function fetchByUser($user_id, $order = '', $filter = '')
507 {
508 $this->holiday = [];
509 $sql = "SELECT";
510 $sql .= " cp.rowid,";
511 $sql .= " cp.ref,";
512
513 $sql .= " cp.fk_user,";
514 $sql .= " cp.fk_type,";
515 $sql .= " cp.date_create,";
516 $sql .= " cp.description,";
517 $sql .= " cp.date_debut,";
518 $sql .= " cp.date_fin,";
519 $sql .= " cp.halfday,";
520 $sql .= " cp.statut as status,";
521 $sql .= " cp.fk_validator,";
522 $sql .= " cp.date_valid,";
523 $sql .= " cp.fk_user_valid,";
524 $sql .= " cp.date_approval,";
525 $sql .= " cp.fk_user_approve,";
526 $sql .= " cp.date_refuse,";
527 $sql .= " cp.fk_user_refuse,";
528 $sql .= " cp.date_cancel,";
529 $sql .= " cp.fk_user_cancel,";
530 $sql .= " cp.detail_refuse,";
531
532 $sql .= " uu.lastname as user_lastname,";
533 $sql .= " uu.firstname as user_firstname,";
534 $sql .= " uu.login as user_login,";
535 $sql .= " uu.statut as user_status,";
536 $sql .= " uu.photo as user_photo,";
537
538 $sql .= " ua.lastname as validator_lastname,";
539 $sql .= " ua.firstname as validator_firstname,";
540 $sql .= " ua.login as validator_login,";
541 $sql .= " ua.statut as validator_status,";
542 $sql .= " ua.photo as validator_photo";
543
544 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as cp, ".MAIN_DB_PREFIX."user as uu, ".MAIN_DB_PREFIX."user as ua";
545 $sql .= " WHERE cp.entity IN (".getEntity('holiday').")";
546 $sql .= " AND cp.fk_user = uu.rowid AND cp.fk_validator = ua.rowid"; // Hack pour la recherche sur le tableau
547 $sql .= " AND cp.fk_user IN (".$this->db->sanitize($user_id).")";
548
549 // Selection filter
550 if (!empty($filter)) {
551 $sql .= $filter;
552 }
553
554 // Order of display of the result
555 if (!empty($order)) {
556 $sql .= $order;
557 }
558
559 dol_syslog(get_class($this)."::fetchByUser", LOG_DEBUG);
560 $resql = $this->db->query($sql);
561
562 // If no SQL error
563 if ($resql) {
564 $i = 0;
565 $tab_result = $this->holiday;
566 $num = $this->db->num_rows($resql);
567
568 // If no registration
569 if (!$num) {
570 return 2;
571 }
572
573 // List the records and add them to the table
574 while ($i < $num) {
575 $obj = $this->db->fetch_object($resql);
576
577 $tab_result[$i]['rowid'] = $obj->rowid;
578 $tab_result[$i]['id'] = $obj->rowid;
579 $tab_result[$i]['ref'] = ($obj->ref ? $obj->ref : $obj->rowid);
580
581 $tab_result[$i]['fk_user'] = $obj->fk_user;
582 $tab_result[$i]['fk_type'] = $obj->fk_type;
583 $tab_result[$i]['date_create'] = $this->db->jdate($obj->date_create);
584 $tab_result[$i]['description'] = $obj->description;
585 $tab_result[$i]['date_debut'] = $this->db->jdate($obj->date_debut);
586 $tab_result[$i]['date_fin'] = $this->db->jdate($obj->date_fin);
587 $tab_result[$i]['date_debut_gmt'] = $this->db->jdate($obj->date_debut, 1);
588 $tab_result[$i]['date_fin_gmt'] = $this->db->jdate($obj->date_fin, 1);
589 $tab_result[$i]['halfday'] = $obj->halfday;
590 $tab_result[$i]['statut'] = $obj->status;
591 $tab_result[$i]['status'] = $obj->status;
592 $tab_result[$i]['fk_validator'] = $obj->fk_validator;
593 $tab_result[$i]['date_valid'] = $this->db->jdate($obj->date_valid);
594 $tab_result[$i]['fk_user_valid'] = $obj->fk_user_valid;
595 $tab_result[$i]['date_approval'] = $this->db->jdate($obj->date_approval);
596 $tab_result[$i]['fk_user_approve'] = $obj->fk_user_approve;
597 $tab_result[$i]['date_refuse'] = $this->db->jdate($obj->date_refuse);
598 $tab_result[$i]['fk_user_refuse'] = $obj->fk_user_refuse;
599 $tab_result[$i]['date_cancel'] = $this->db->jdate($obj->date_cancel);
600 $tab_result[$i]['fk_user_cancel'] = $obj->fk_user_cancel;
601 $tab_result[$i]['detail_refuse'] = $obj->detail_refuse;
602
603 $tab_result[$i]['user_firstname'] = $obj->user_firstname;
604 $tab_result[$i]['user_lastname'] = $obj->user_lastname;
605 $tab_result[$i]['user_login'] = $obj->user_login;
606 $tab_result[$i]['user_statut'] = $obj->user_status;
607 $tab_result[$i]['user_status'] = $obj->user_status;
608 $tab_result[$i]['user_photo'] = $obj->user_photo;
609
610 $tab_result[$i]['validator_firstname'] = $obj->validator_firstname;
611 $tab_result[$i]['validator_lastname'] = $obj->validator_lastname;
612 $tab_result[$i]['validator_login'] = $obj->validator_login;
613 $tab_result[$i]['validator_statut'] = $obj->validator_status;
614 $tab_result[$i]['validator_status'] = $obj->validator_status;
615 $tab_result[$i]['validator_photo'] = $obj->validator_photo;
616
617 $i++;
618 }
619
620 // Returns 1 with the filled array
621 $this->holiday = $tab_result;
622 return 1;
623 } else {
624 // SQL Error
625 $this->error = "Error ".$this->db->lasterror();
626 return -1;
627 }
628 }
629
637 public function fetchAll($order, $filter)
638 {
639 $sql = "SELECT";
640 $sql .= " cp.rowid,";
641 $sql .= " cp.ref,";
642 $sql .= " cp.fk_user,";
643 $sql .= " cp.fk_type,";
644 $sql .= " cp.date_create,";
645 $sql .= " cp.tms as date_modification,";
646 $sql .= " cp.description,";
647 $sql .= " cp.date_debut,";
648 $sql .= " cp.date_fin,";
649 $sql .= " cp.halfday,";
650 $sql .= " cp.statut as status,";
651 $sql .= " cp.fk_validator,";
652 $sql .= " cp.date_valid,";
653 $sql .= " cp.fk_user_valid,";
654 $sql .= " cp.date_approval,";
655 $sql .= " cp.fk_user_approve,";
656 $sql .= " cp.date_refuse,";
657 $sql .= " cp.fk_user_refuse,";
658 $sql .= " cp.date_cancel,";
659 $sql .= " cp.fk_user_cancel,";
660 $sql .= " cp.detail_refuse,";
661
662 $sql .= " uu.lastname as user_lastname,";
663 $sql .= " uu.firstname as user_firstname,";
664 $sql .= " uu.login as user_login,";
665 $sql .= " uu.statut as user_status,";
666 $sql .= " uu.photo as user_photo,";
667
668 $sql .= " ua.lastname as validator_lastname,";
669 $sql .= " ua.firstname as validator_firstname,";
670 $sql .= " ua.login as validator_login,";
671 $sql .= " ua.statut as validator_status,";
672 $sql .= " ua.photo as validator_photo";
673
674 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as cp, ".MAIN_DB_PREFIX."user as uu, ".MAIN_DB_PREFIX."user as ua";
675 $sql .= " WHERE cp.entity IN (".getEntity('holiday').")";
676 $sql .= " AND cp.fk_user = uu.rowid AND cp.fk_validator = ua.rowid "; // Hack pour la recherche sur le tableau
677
678 // Selection filtering
679 if (!empty($filter)) {
680 $sql .= $filter;
681 }
682
683 // order of display
684 if (!empty($order)) {
685 $sql .= $order;
686 }
687
688 dol_syslog(get_class($this)."::fetchAll", LOG_DEBUG);
689 $resql = $this->db->query($sql);
690
691 // If no SQL error
692 if ($resql) {
693 $i = 0;
694 $tab_result = $this->holiday;
695 $num = $this->db->num_rows($resql);
696
697 // If no registration
698 if (!$num) {
699 return 2;
700 }
701
702 // List the records and add them to the table
703 while ($i < $num) {
704 $obj = $this->db->fetch_object($resql);
705
706 $tab_result[$i]['rowid'] = $obj->rowid;
707 $tab_result[$i]['id'] = $obj->rowid;
708 $tab_result[$i]['ref'] = ($obj->ref ? $obj->ref : $obj->rowid);
709
710 $tab_result[$i]['fk_user'] = $obj->fk_user;
711 $tab_result[$i]['fk_type'] = $obj->fk_type;
712 $tab_result[$i]['date_create'] = $this->db->jdate($obj->date_create);
713 $tab_result[$i]['date_modification'] = $this->db->jdate($obj->date_modification);
714 $tab_result[$i]['description'] = $obj->description;
715 $tab_result[$i]['date_debut'] = $this->db->jdate($obj->date_debut);
716 $tab_result[$i]['date_fin'] = $this->db->jdate($obj->date_fin);
717 $tab_result[$i]['date_debut_gmt'] = $this->db->jdate($obj->date_debut, 1);
718 $tab_result[$i]['date_fin_gmt'] = $this->db->jdate($obj->date_fin, 1);
719 $tab_result[$i]['halfday'] = $obj->halfday;
720 $tab_result[$i]['statut'] = $obj->status;
721 $tab_result[$i]['status'] = $obj->status;
722 $tab_result[$i]['fk_validator'] = $obj->fk_validator;
723 $tab_result[$i]['date_valid'] = $this->db->jdate($obj->date_valid);
724 $tab_result[$i]['fk_user_valid'] = $obj->fk_user_valid;
725 $tab_result[$i]['date_approval'] = $this->db->jdate($obj->date_approval);
726 $tab_result[$i]['fk_user_approve'] = $obj->fk_user_approve;
727 $tab_result[$i]['date_refuse'] = $obj->date_refuse;
728 $tab_result[$i]['fk_user_refuse'] = $obj->fk_user_refuse;
729 $tab_result[$i]['date_cancel'] = $obj->date_cancel;
730 $tab_result[$i]['fk_user_cancel'] = $obj->fk_user_cancel;
731 $tab_result[$i]['detail_refuse'] = $obj->detail_refuse;
732
733 $tab_result[$i]['user_firstname'] = $obj->user_firstname;
734 $tab_result[$i]['user_lastname'] = $obj->user_lastname;
735 $tab_result[$i]['user_login'] = $obj->user_login;
736 $tab_result[$i]['user_statut'] = $obj->user_status;
737 $tab_result[$i]['user_status'] = $obj->user_status;
738 $tab_result[$i]['user_photo'] = $obj->user_photo;
739
740 $tab_result[$i]['validator_firstname'] = $obj->validator_firstname;
741 $tab_result[$i]['validator_lastname'] = $obj->validator_lastname;
742 $tab_result[$i]['validator_login'] = $obj->validator_login;
743 $tab_result[$i]['validator_statut'] = $obj->validator_status;
744 $tab_result[$i]['validator_status'] = $obj->validator_status;
745 $tab_result[$i]['validator_photo'] = $obj->validator_photo;
746
747 $i++;
748 }
749 // Returns 1 and adds the array to the variable
750 $this->holiday = $tab_result;
751 return 1;
752 } else {
753 // SQL Error
754 $this->error = "Error ".$this->db->lasterror();
755 return -1;
756 }
757 }
758
759
767 public function validate($user = null, $notrigger = 0)
768 {
769 global $conf, $langs;
770 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
771 $error = 0;
772
773 $checkBalance = getDictionaryValue('c_holiday_types', 'block_if_negative', $this->fk_type, true);
774
775 if ($checkBalance > 0) {
776 $balance = $this->getCPforUser($this->fk_user, $this->fk_type);
777
778 if ($balance < 0) {
779 $this->error = 'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
780 return -1;
781 }
782 }
783
784 // Define new ref
785 if (!$error && (preg_match('/^[\‍(]?PROV/i', $this->ref) || empty($this->ref) || $this->ref == $this->id)) {
786 $num = $this->getNextNumRef(null);
787 } else {
788 $num = $this->ref;
789 }
790 $this->newref = dol_sanitizeFileName($num);
791
792 // Update status
793 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday SET";
794 $sql .= " fk_user_valid = ".((int) $user->id).",";
795 $sql .= " date_valid = '".$this->db->idate(dol_now())."',";
796 if (!empty($this->status) && is_numeric($this->status)) {
797 $sql .= " statut = ".((int) $this->status).",";
798 } else {
799 $this->error = 'Property status must be a numeric value';
800 $error++;
801 }
802 $sql .= " ref = '".$this->db->escape($num)."'";
803 $sql .= " WHERE rowid = ".((int) $this->id);
804
805 $this->db->begin();
806
807 dol_syslog(get_class($this)."::validate", LOG_DEBUG);
808 $resql = $this->db->query($sql);
809 if (!$resql) {
810 $error++;
811 $this->errors[] = "Error ".$this->db->lasterror();
812 }
813
814 if (!$error) {
815 if (!$notrigger) {
816 // Call trigger
817 $result = $this->call_trigger('HOLIDAY_VALIDATE', $user);
818 if ($result < 0) {
819 $error++;
820 }
821 // End call triggers
822 }
823 }
824
825 if (!$error) {
826 $this->oldref = $this->ref;
827
828 // Rename directory if dir was a temporary ref
829 if (preg_match('/^[\‍(]?PROV/i', $this->ref)) {
830 // Now we rename also files into index
831 $sql = 'UPDATE ' . MAIN_DB_PREFIX . "ecm_files set filename = CONCAT('" . $this->db->escape($this->newref) . "', SUBSTR(filename, " . (strlen($this->ref) + 1) . ")), filepath = 'holiday/" . $this->db->escape($this->newref) . "'";
832 $sql .= " WHERE filename LIKE '" . $this->db->escape($this->ref) . "%' AND filepath = 'holiday/" . $this->db->escape($this->ref) . "' and entity = " . ((int) $conf->entity);
833 $resql = $this->db->query($sql);
834 if (!$resql) {
835 $error++;
836 $this->error = $this->db->lasterror();
837 }
838 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filepath = 'holiday/".$this->db->escape($this->newref)."'";
839 $sql .= " WHERE filepath = 'holiday/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
840 $resql = $this->db->query($sql);
841 if (!$resql) {
842 $error++;
843 $this->error = $this->db->lasterror();
844 }
845
846 // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
847 $oldref = dol_sanitizeFileName($this->ref);
848 $newref = dol_sanitizeFileName($num);
849 $dirsource = $conf->holiday->multidir_output[$this->entity] . '/' . $oldref;
850 $dirdest = $conf->holiday->multidir_output[$this->entity] . '/' . $newref;
851 if (!$error && file_exists($dirsource)) {
852 dol_syslog(get_class($this) . "::validate rename dir " . $dirsource . " into " . $dirdest);
853 if (@rename($dirsource, $dirdest)) {
854 dol_syslog("Rename ok");
855 // Rename docs starting with $oldref with $newref
856 $listoffiles = dol_dir_list($dirdest, 'files', 1, '^' . preg_quote($oldref, '/'));
857 foreach ($listoffiles as $fileentry) {
858 $dirsource = $fileentry['name'];
859 $dirdest = preg_replace('/^' . preg_quote($oldref, '/') . '/', $newref, $dirsource);
860 $dirsource = $fileentry['path'] . '/' . $dirsource;
861 $dirdest = $fileentry['path'] . '/' . $dirdest;
862 @rename($dirsource, $dirdest);
863 }
864 }
865 }
866 }
867 }
868
869
870 // Commit or rollback
871 if ($error) {
872 foreach ($this->errors as $errmsg) {
873 dol_syslog(get_class($this)."::validate ".$errmsg, LOG_ERR);
874 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
875 }
876 $this->db->rollback();
877 return -1 * $error;
878 } else {
879 $this->db->commit();
880 return 1;
881 }
882 }
883
884
892 public function approve($user = null, $notrigger = 0)
893 {
894 $error = 0;
895
896 $checkBalance = getDictionaryValue('c_holiday_types', 'block_if_negative', $this->fk_type, true);
897
898 if ($checkBalance > 0) {
899 $balance = $this->getCPforUser($this->fk_user, $this->fk_type);
900
901 if ($balance < 0) {
902 $this->error = 'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
903 return -1;
904 }
905 }
906
907 // Update request
908 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday SET";
909 $sql .= " description= '".$this->db->escape($this->description)."',";
910 if (!empty($this->date_debut)) {
911 $sql .= " date_debut = '".$this->db->idate($this->date_debut)."',";
912 } else {
913 $error++;
914 }
915 if (!empty($this->date_fin)) {
916 $sql .= " date_fin = '".$this->db->idate($this->date_fin)."',";
917 } else {
918 $error++;
919 }
920 $sql .= " halfday = ".((int) $this->halfday).",";
921 if (!empty($this->status) && is_numeric($this->status)) {
922 $sql .= " statut = ".((int) $this->status).",";
923 } else {
924 $error++;
925 }
926 if (!empty($this->fk_validator)) {
927 $sql .= " fk_validator = ".((int) $this->fk_validator).",";
928 } else {
929 $error++;
930 }
931 if (!empty($this->date_valid)) {
932 $sql .= " date_valid = '".$this->db->idate($this->date_valid)."',";
933 } else {
934 $sql .= " date_valid = NULL,";
935 }
936 if (!empty($this->fk_user_valid)) {
937 $sql .= " fk_user_valid = ".((int) $this->fk_user_valid).",";
938 } else {
939 $sql .= " fk_user_valid = NULL,";
940 }
941 if (!empty($this->date_approval)) {
942 $sql .= " date_approval = '".$this->db->idate($this->date_approval)."',";
943 } else {
944 $sql .= " date_approval = NULL,";
945 }
946 if (!empty($this->fk_user_approve)) {
947 $sql .= " fk_user_approve = ".((int) $this->fk_user_approve).",";
948 } else {
949 $sql .= " fk_user_approve = NULL,";
950 }
951 if (!empty($this->date_refuse)) {
952 $sql .= " date_refuse = '".$this->db->idate($this->date_refuse)."',";
953 } else {
954 $sql .= " date_refuse = NULL,";
955 }
956 if (!empty($this->fk_user_refuse)) {
957 $sql .= " fk_user_refuse = ".((int) $this->fk_user_refuse).",";
958 } else {
959 $sql .= " fk_user_refuse = NULL,";
960 }
961 if (!empty($this->date_cancel)) {
962 $sql .= " date_cancel = '".$this->db->idate($this->date_cancel)."',";
963 } else {
964 $sql .= " date_cancel = NULL,";
965 }
966 if (!empty($this->fk_user_cancel)) {
967 $sql .= " fk_user_cancel = ".((int) $this->fk_user_cancel).",";
968 } else {
969 $sql .= " fk_user_cancel = NULL,";
970 }
971 if (!empty($this->detail_refuse)) {
972 $sql .= " detail_refuse = '".$this->db->escape($this->detail_refuse)."'";
973 } else {
974 $sql .= " detail_refuse = NULL";
975 }
976 $sql .= " WHERE rowid = ".((int) $this->id);
977
978 $this->db->begin();
979
980 dol_syslog(get_class($this)."::approve", LOG_DEBUG);
981 $resql = $this->db->query($sql);
982 if (!$resql) {
983 $error++;
984 $this->errors[] = "Error ".$this->db->lasterror();
985 }
986
987 if (!$error) {
988 if (!$notrigger) {
989 // Call trigger
990 $result = $this->call_trigger('HOLIDAY_APPROVE', $user);
991 if ($result < 0) {
992 $error++;
993 }
994 // End call triggers
995 }
996 }
997
998 // Commit or rollback
999 if ($error) {
1000 foreach ($this->errors as $errmsg) {
1001 dol_syslog(get_class($this)."::approve ".$errmsg, LOG_ERR);
1002 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1003 }
1004 $this->db->rollback();
1005 return -1 * $error;
1006 } else {
1007 $this->db->commit();
1008 return 1;
1009 }
1010 }
1011
1019 public function update($user = null, $notrigger = 0)
1020 {
1021 global $conf, $langs;
1022 $error = 0;
1023
1024 $checkBalance = getDictionaryValue('c_holiday_types', 'block_if_negative', $this->fk_type, true);
1025
1026 if ($checkBalance > 0 && $this->status != self::STATUS_DRAFT) {
1027 $balance = $this->getCPforUser($this->fk_user, $this->fk_type);
1028
1029 if ($balance < 0) {
1030 $this->error = 'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
1031 return -1;
1032 }
1033 }
1034
1035 // Update request
1036 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday SET";
1037
1038 $sql .= " description= '".$this->db->escape($this->description)."',";
1039
1040 if (!empty($this->date_debut)) {
1041 $sql .= " date_debut = '".$this->db->idate($this->date_debut)."',";
1042 } else {
1043 $error++;
1044 }
1045 if (!empty($this->date_fin)) {
1046 $sql .= " date_fin = '".$this->db->idate($this->date_fin)."',";
1047 } else {
1048 $error++;
1049 }
1050 $sql .= " halfday = ".((int) $this->halfday).",";
1051 if (!empty($this->status) && is_numeric($this->status)) {
1052 $sql .= " statut = ".((int) $this->status).",";
1053 } else {
1054 $error++;
1055 }
1056 if (!empty($this->fk_validator)) {
1057 $sql .= " fk_validator = '".$this->db->escape($this->fk_validator)."',";
1058 } else {
1059 $error++;
1060 }
1061 if (!empty($this->date_valid)) {
1062 $sql .= " date_valid = '".$this->db->idate($this->date_valid)."',";
1063 } else {
1064 $sql .= " date_valid = NULL,";
1065 }
1066 if (!empty($this->fk_user_valid)) {
1067 $sql .= " fk_user_valid = ".((int) $this->fk_user_valid).",";
1068 } else {
1069 $sql .= " fk_user_valid = NULL,";
1070 }
1071 if (!empty($this->date_approval)) {
1072 $sql .= " date_approval = '".$this->db->idate($this->date_approval)."',";
1073 } else {
1074 $sql .= " date_approval = NULL,";
1075 }
1076 if (!empty($this->fk_user_approve)) {
1077 $sql .= " fk_user_approve = ".((int) $this->fk_user_approve).",";
1078 } else {
1079 $sql .= " fk_user_approve = NULL,";
1080 }
1081 if (!empty($this->date_refuse)) {
1082 $sql .= " date_refuse = '".$this->db->idate($this->date_refuse)."',";
1083 } else {
1084 $sql .= " date_refuse = NULL,";
1085 }
1086 if (!empty($this->fk_user_refuse)) {
1087 $sql .= " fk_user_refuse = ".((int) $this->fk_user_refuse).",";
1088 } else {
1089 $sql .= " fk_user_refuse = NULL,";
1090 }
1091 if (!empty($this->date_cancel)) {
1092 $sql .= " date_cancel = '".$this->db->idate($this->date_cancel)."',";
1093 } else {
1094 $sql .= " date_cancel = NULL,";
1095 }
1096 if (!empty($this->fk_user_cancel)) {
1097 $sql .= " fk_user_cancel = ".((int) $this->fk_user_cancel).",";
1098 } else {
1099 $sql .= " fk_user_cancel = NULL,";
1100 }
1101 if (!empty($this->detail_refuse)) {
1102 $sql .= " detail_refuse = '".$this->db->escape($this->detail_refuse)."'";
1103 } else {
1104 $sql .= " detail_refuse = NULL";
1105 }
1106
1107 $sql .= " WHERE rowid = ".((int) $this->id);
1108
1109 $this->db->begin();
1110
1111 dol_syslog(get_class($this)."::update", LOG_DEBUG);
1112 $resql = $this->db->query($sql);
1113 if (!$resql) {
1114 $error++;
1115 $this->errors[] = "Error ".$this->db->lasterror();
1116 }
1117
1118 if (!$error) {
1119 $result = $this->insertExtraFields();
1120 if ($result < 0) {
1121 $error++;
1122 }
1123 }
1124
1125 if (!$error) {
1126 if (!$notrigger) {
1127 // Call trigger
1128 $result = $this->call_trigger('HOLIDAY_MODIFY', $user);
1129 if ($result < 0) {
1130 $error++;
1131 }
1132 // End call triggers
1133 }
1134 }
1135
1136 // Commit or rollback
1137 if ($error) {
1138 foreach ($this->errors as $errmsg) {
1139 dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
1140 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1141 }
1142 $this->db->rollback();
1143 return -1 * $error;
1144 } else {
1145 $this->db->commit();
1146 return 1;
1147 }
1148 }
1149
1150
1158 public function delete($user, $notrigger = 0)
1159 {
1160 global $conf, $langs;
1161 $error = 0;
1162
1163 $sql = "DELETE FROM ".MAIN_DB_PREFIX."holiday";
1164 $sql .= " WHERE rowid=".((int) $this->id);
1165
1166 $this->db->begin();
1167
1168 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
1169 $resql = $this->db->query($sql);
1170 if (!$resql) {
1171 $error++;
1172 $this->errors[] = "Error ".$this->db->lasterror();
1173 }
1174
1175 if (!$error) {
1176 if (!$notrigger) {
1177 // Call trigger
1178 $result = $this->call_trigger('HOLIDAY_DELETE', $user);
1179 if ($result < 0) {
1180 $error++;
1181 }
1182 // End call triggers
1183 }
1184 }
1185
1186 // Commit or rollback
1187 if ($error) {
1188 foreach ($this->errors as $errmsg) {
1189 dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
1190 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1191 }
1192 $this->db->rollback();
1193 return -1 * $error;
1194 } else {
1195 $this->db->commit();
1196 return 1;
1197 }
1198 }
1199
1213 public function verifDateHolidayCP($fk_user, $dateStart, $dateEnd, $halfday = 0)
1214 {
1215 $this->fetchByUser($fk_user, '', '');
1216
1217 foreach ($this->holiday as $infos_CP) {
1218 if ($infos_CP['statut'] == Holiday::STATUS_CANCELED) {
1219 continue; // ignore not validated holidays
1220 }
1221 if ($infos_CP['statut'] == Holiday::STATUS_REFUSED) {
1222 continue; // ignore refused holidays
1223 }
1224 //var_dump("--");
1225 //var_dump("old: ".dol_print_date($infos_CP['date_debut'],'dayhour').' '.dol_print_date($infos_CP['date_fin'],'dayhour').' '.$infos_CP['halfday']);
1226 //var_dump("new: ".dol_print_date($dateStart,'dayhour').' '.dol_print_date($dateEnd,'dayhour').' '.$halfday);
1227
1228 if ($halfday == 0) {
1229 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1230 return false;
1231 }
1232 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1233 return false;
1234 }
1235 } elseif ($halfday == -1) {
1236 // new start afternoon, new end afternoon
1237 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1238 if ($dateStart < $infos_CP['date_fin'] || in_array($infos_CP['halfday'], array(0, -1))) {
1239 return false;
1240 }
1241 }
1242 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1243 if ($dateStart < $dateEnd) {
1244 return false;
1245 }
1246 if ($dateEnd < $infos_CP['date_fin'] || in_array($infos_CP['halfday'], array(0, -1))) {
1247 return false;
1248 }
1249 }
1250 } elseif ($halfday == 1) {
1251 // new start morning, new end morning
1252 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1253 if ($dateStart < $dateEnd) {
1254 return false;
1255 }
1256 if ($dateStart > $infos_CP['date_debut'] || in_array($infos_CP['halfday'], array(0, 1))) {
1257 return false;
1258 }
1259 }
1260 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1261 if ($dateEnd > $infos_CP['date_debut'] || in_array($infos_CP['halfday'], array(0, 1))) {
1262 return false;
1263 }
1264 }
1265 } elseif ($halfday == 2) {
1266 // new start afternoon, new end morning
1267 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1268 if ($dateStart < $infos_CP['date_fin'] || in_array($infos_CP['halfday'], array(0, -1))) {
1269 return false;
1270 }
1271 }
1272 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1273 if ($dateEnd > $infos_CP['date_debut'] || in_array($infos_CP['halfday'], array(0, 1))) {
1274 return false;
1275 }
1276 }
1277 } else {
1278 dol_print_error(null, 'Bad value of parameter halfday when calling function verifDateHolidayCP');
1279 }
1280 }
1281
1282 return true;
1283 }
1284
1285
1295 public function verifDateHolidayForTimestamp($fk_user, $timestamp, $status = '-1')
1296 {
1297 $isavailablemorning = true;
1298 $isavailableafternoon = true;
1299
1300 // Check into leave requests
1301 $sql = "SELECT cp.rowid, cp.date_debut as date_start, cp.date_fin as date_end, cp.halfday, cp.statut as status";
1302 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as cp";
1303 $sql .= " WHERE cp.entity IN (".getEntity('holiday').")";
1304 $sql .= " AND cp.fk_user = ".(int) $fk_user;
1305 $sql .= " AND cp.date_debut <= '".$this->db->idate($timestamp)."' AND cp.date_fin >= '".$this->db->idate($timestamp)."'";
1306 if ($status != '-1') {
1307 $sql .= " AND cp.statut IN (".$this->db->sanitize($status).")";
1308 }
1309
1310 $resql = $this->db->query($sql);
1311 if ($resql) {
1312 $num_rows = $this->db->num_rows($resql); // Note, we can have 2 records if on is morning and the other one is afternoon
1313 if ($num_rows > 0) {
1314 $arrayofrecord = array();
1315 $i = 0;
1316 while ($i < $num_rows) {
1317 $obj = $this->db->fetch_object($resql);
1318
1319 // Note: $obj->halfday is 0:Full days, 2:Start afternoon end morning, -1:Start afternoon, 1:End morning
1320 $arrayofrecord[$obj->rowid] = array('date_start' => $this->db->jdate($obj->date_start), 'date_end' => $this->db->jdate($obj->date_end), 'halfday' => $obj->halfday, 'status' => $obj->status);
1321 $i++;
1322 }
1323
1324 // We found a record, user is on holiday by default, so is not available is true.
1325 $isavailablemorning = true;
1326 foreach ($arrayofrecord as $record) {
1327 if ($timestamp == $record['date_start'] && $record['halfday'] == 2) {
1328 continue;
1329 }
1330 if ($timestamp == $record['date_start'] && $record['halfday'] == -1) {
1331 continue;
1332 }
1333 $isavailablemorning = false;
1334 break;
1335 }
1336 $isavailableafternoon = true;
1337 foreach ($arrayofrecord as $record) {
1338 if ($timestamp == $record['date_end'] && $record['halfday'] == 2) {
1339 continue;
1340 }
1341 if ($timestamp == $record['date_end'] && $record['halfday'] == 1) {
1342 continue;
1343 }
1344 $isavailableafternoon = false;
1345 break;
1346 }
1347 }
1348 } else {
1349 dol_print_error($this->db);
1350 }
1351
1352 $result = array('morning' => $isavailablemorning, 'afternoon' => $isavailableafternoon);
1353 if (!$isavailablemorning) {
1354 $result['morning_reason'] = 'leave_request';
1355 }
1356 if (!$isavailableafternoon) {
1357 $result['afternoon_reason'] = 'leave_request';
1358 }
1359 return $result;
1360 }
1361
1368 public function getTooltipContentArray($params)
1369 {
1370 global $langs;
1371
1372 $langs->load('holiday');
1373 $nofetch = !empty($params['nofetch']);
1374
1375 $datas = array();
1376 $datas['picto'] = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("Holiday").'</u>';
1377 if (isset($this->status)) {
1378 $datas['picto'] .= ' '.$this->getLibStatut(5);
1379 }
1380 $datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
1381 // show type for this record only in ajax to not overload lists
1382 if (!$nofetch && !empty($this->fk_type)) {
1383 $typeleaves = $this->getTypes(1, -1);
1384 if (empty($typeleaves[$this->fk_type])) {
1385 $labeltoshow = $langs->trans("TypeWasDisabledOrRemoved", $this->fk_type);
1386 } else {
1387 $labeltoshow = (($typeleaves[$this->fk_type]['code'] && $langs->trans($typeleaves[$this->fk_type]['code']) != $typeleaves[$this->fk_type]['code']) ? $langs->trans($typeleaves[$this->fk_type]['code']) : $typeleaves[$this->fk_type]['label']);
1388 }
1389 $datas['type'] = '<br><b>'.$langs->trans("Type") . ':</b> ' . $labeltoshow;
1390 }
1391 if (isset($this->halfday) && !empty($this->date_debut) && !empty($this->date_fin)) {
1392 $listhalfday = array(
1393 'morning' => $langs->trans("Morning"),
1394 "afternoon" => $langs->trans("Afternoon")
1395 );
1396 $starthalfday = ($this->halfday == -1 || $this->halfday == 2) ? 'afternoon' : 'morning';
1397 $endhalfday = ($this->halfday == 1 || $this->halfday == 2) ? 'morning' : 'afternoon';
1398 $datas['date_start'] = '<br><b>'.$langs->trans('DateDebCP') . '</b>: '. dol_print_date($this->date_debut, 'day') . '&nbsp;&nbsp;<span class="opacitymedium">'.$langs->trans($listhalfday[$starthalfday]).'</span>';
1399 $datas['date_end'] = '<br><b>'.$langs->trans('DateFinCP') . '</b>: '. dol_print_date($this->date_fin, 'day') . '&nbsp;&nbsp;<span class="opacitymedium">'.$langs->trans($listhalfday[$endhalfday]).'</span>';
1400 }
1401
1402
1403 return $datas;
1404 }
1405
1415 public function getNomUrl($withpicto = 0, $save_lastsearch_value = -1, $notooltip = 0, $morecss = '')
1416 {
1417 global $conf, $langs, $hookmanager;
1418
1419 if (!empty($conf->dol_no_mouse_hover)) {
1420 $notooltip = 1; // Force disable tooltips
1421 }
1422
1423 $result = '';
1424 $params = [
1425 'id' => $this->id,
1426 'objecttype' => $this->element,
1427 'nofetch' => 1,
1428 ];
1429 $classfortooltip = 'classfortooltip';
1430 $dataparams = '';
1431 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
1432 $classfortooltip = 'classforajaxtooltip';
1433 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
1434 $label = '';
1435 } else {
1436 $label = implode($this->getTooltipContentArray($params));
1437 }
1438
1439 $url = DOL_URL_ROOT.'/holiday/card.php?id='.$this->id;
1440
1441 //if ($option != 'nolink')
1442 //{
1443 // Add param to save lastsearch_values or not
1444 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1445 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
1446 $add_save_lastsearch_values = 1;
1447 }
1448 if ($add_save_lastsearch_values) {
1449 $url .= '&save_lastsearch_values=1';
1450 }
1451 //}
1452
1453 $linkclose = '';
1454 if (empty($notooltip)) {
1455 if (getDolGlobalInt('MAIN_OPTIMIZEFORTEXTBROWSER')) {
1456 $label = $langs->trans("ShowMyObject");
1457 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
1458 }
1459 $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"');
1460 $linkclose .= $dataparams.' class="'.$classfortooltip.($morecss ? ' '.$morecss : '').'"';
1461 } else {
1462 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
1463 }
1464
1465 $linkstart = '<a href="'.$url.'"';
1466 $linkstart .= $linkclose.'>';
1467 $linkend = '</a>';
1468
1469 $result .= $linkstart;
1470
1471 if ($withpicto) {
1472 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"'), 0, 0, $notooltip ? 0 : 1);
1473 }
1474 if ($withpicto != 2) {
1475 $result .= $this->ref;
1476 }
1477 $result .= $linkend;
1478
1479 global $action;
1480 $hookmanager->initHooks(array($this->element . 'dao'));
1481 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
1482 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1483 if ($reshook > 0) {
1484 $result = $hookmanager->resPrint;
1485 } else {
1486 $result .= $hookmanager->resPrint;
1487 }
1488 return $result;
1489 }
1490
1491
1498 public function getLibStatut($mode = 0)
1499 {
1500 return $this->LibStatut($this->status, $mode, $this->date_debut);
1501 }
1502
1503 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1512 public function LibStatut($status, $mode = 0, $startdate = '')
1513 {
1514 // phpcs:enable
1515 global $langs;
1516
1517 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
1518 global $langs;
1519 //$langs->load("mymodule");
1520 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('DraftCP');
1521 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ToReviewCP');
1522 $this->labelStatus[self::STATUS_APPROVED] = $langs->transnoentitiesnoconv('ApprovedCP');
1523 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('CancelCP');
1524 $this->labelStatus[self::STATUS_REFUSED] = $langs->transnoentitiesnoconv('RefuseCP');
1525 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('DraftCP');
1526 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ToReviewCP');
1527 $this->labelStatusShort[self::STATUS_APPROVED] = $langs->transnoentitiesnoconv('ApprovedCP');
1528 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('CancelCP');
1529 $this->labelStatusShort[self::STATUS_REFUSED] = $langs->transnoentitiesnoconv('RefuseCP');
1530 }
1531
1532 $params = array();
1533 $statusType = 'status6';
1534 if (!empty($startdate) && $startdate >= dol_now()) { // If not yet passed, we use a green "in live" color
1535 $statusType = 'status4';
1536 $params = array('tooltip' => $this->labelStatus[$status].' - '.$langs->trans("Forthcoming"));
1537 }
1538 if ($status == self::STATUS_DRAFT) {
1539 $statusType = 'status0';
1540 }
1541 if ($status == self::STATUS_VALIDATED) {
1542 $statusType = 'status1';
1543 }
1544 if ($status == self::STATUS_CANCELED) {
1545 $statusType = 'status9';
1546 }
1547 if ($status == self::STATUS_REFUSED) {
1548 $statusType = 'status9';
1549 }
1550
1551 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode, '', $params);
1552 }
1553
1554
1563 public function selectStatutCP($selected = 0, $htmlname = 'select_statut', $morecss = 'minwidth125')
1564 {
1565 global $langs;
1566
1567 // List of status label
1568 $name = array('DraftCP', 'ToReviewCP', 'ApprovedCP', 'CancelCP', 'RefuseCP');
1569 $nb = count($name) + 1;
1570
1571 // Select HTML
1572 $out = '<select name="'.$htmlname.'" id="'.$htmlname.'" class="flat'.($morecss ? ' '.$morecss : '').'">'."\n";
1573 $out .= '<option value="-1">&nbsp;</option>'."\n";
1574
1575 // Loop on status
1576 for ($i = 1; $i < $nb; $i++) {
1577 if ($i == $selected) {
1578 $out .= '<option value="'.$i.'" selected>'.$langs->trans($name[$i - 1]).'</option>'."\n";
1579 } else {
1580 $out .= '<option value="'.$i.'">'.$langs->trans($name[$i - 1]).'</option>'."\n";
1581 }
1582 }
1583
1584 $out .= "</select>\n";
1585
1586 $showempty = 0;
1587 $out .= ajax_combobox($htmlname, array(), 0, 0, 'resolve', ($showempty < 0 ? (string) $showempty : '-1'), $morecss);
1588
1589 return $out;
1590 }
1591
1599 public function updateConfCP($name, $value)
1600 {
1601 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday_config SET";
1602 $sql .= " value = '".$this->db->escape($value)."'";
1603 $sql .= " WHERE name = '".$this->db->escape($name)."'";
1604
1605 dol_syslog(get_class($this).'::updateConfCP name='.$name, LOG_DEBUG);
1606 $result = $this->db->query($sql);
1607 if ($result) {
1608 return true;
1609 }
1610
1611 return false;
1612 }
1613
1622 public function getConfCP($name, $createifnotfound = '')
1623 {
1624 $sql = "SELECT value";
1625 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_config";
1626 $sql .= " WHERE name = '".$this->db->escape($name)."'";
1627
1628 dol_syslog(get_class($this).'::getConfCP name='.$name.' createifnotfound='.$createifnotfound, LOG_DEBUG);
1629 $result = $this->db->query($sql);
1630
1631 if ($result) {
1632 $obj = $this->db->fetch_object($result);
1633 // Return value
1634 if (empty($obj)) {
1635 if ($createifnotfound) {
1636 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_config(name, value)";
1637 $sql .= " VALUES('".$this->db->escape($name)."', '".$this->db->escape($createifnotfound)."')";
1638 $result = $this->db->query($sql);
1639 if ($result) {
1640 return $createifnotfound;
1641 } else {
1642 $this->error = $this->db->lasterror();
1643 return -2;
1644 }
1645 } else {
1646 return '';
1647 }
1648 } else {
1649 return $obj->value;
1650 }
1651 } else {
1652 // Erreur SQL
1653 $this->error = $this->db->lasterror();
1654 return -1;
1655 }
1656 }
1657
1666 public function updateSoldeCP($userID = 0, $nbHoliday = 0, $fk_type = 0)
1667 {
1668 global $user, $langs, $conf;
1669
1670 $error = 0;
1671
1672 if (empty($userID) && empty($nbHoliday) && empty($fk_type)) {
1673 $langs->load("holiday");
1674
1675 $decrease = getDolGlobalInt('HOLIDAY_DECREASE_AT_END_OF_MONTH');
1676
1677 // Si mise à jour pour tout le monde en début de mois
1678 $now = dol_now();
1679
1680 // Get month of last update
1681 $lastUpdate = dol_stringtotime($this->getConfCP('lastUpdate', dol_print_date($now, '%Y%m%d%H%M%S')));
1682 //print 'month: '.$month.' lastUpdate:'.$lastUpdate.' monthLastUpdate:'.$monthLastUpdate;exit;
1683
1684 $yearMonthLastUpdate = dol_print_date($lastUpdate, '%Y%m');
1685 $yearMonthNow = dol_print_date($now, '%Y%m');
1686
1687 // If month date is not same than the one of last update (the one we saved in database), then we update the timestamp and balance of each open user,
1688 // catching up to the current month if a gap is detected
1689 while ($yearMonthLastUpdate < $yearMonthNow) {
1690 $this->db->begin();
1691
1692 $year = dol_print_date($lastUpdate, '%Y');
1693 $month = dol_print_date($lastUpdate, '%m');
1694
1695 $users = $this->fetchUsers(false, false, ' AND u.statut > 0');
1696 $nbUser = count($users);
1697
1698 $typeleaves = $this->getTypes(1, 1);
1699
1700 // Update each user counter
1701 foreach ($users as $userCounter) {
1702 $nbDaysToAdd = (isset($typeleaves[$userCounter['type']]['newbymonth']) ? $typeleaves[$userCounter['type']]['newbymonth'] : 0);
1703 if (empty($nbDaysToAdd)) {
1704 continue;
1705 }
1706
1707 dol_syslog("We update leave type id ".$userCounter['type']." for user id ".$userCounter['rowid'], LOG_DEBUG);
1708
1709 $nowHoliday = (float) $userCounter['nb_holiday'];
1710 $newSolde = $nowHoliday + $nbDaysToAdd;
1711
1712 // We add a log for each user when its balance gets increased
1713 $this->addLogCP($user->id, $userCounter['rowid'], $langs->trans('HolidayMonthlyCredit'), $newSolde, $userCounter['type']);
1714
1715 $result = $this->updateSoldeCP($userCounter['rowid'], $newSolde, $userCounter['type']);
1716
1717 if ($result < 0) {
1718 $this->db->rollback();
1719 return -1;
1720 }
1721
1722 if (empty($decrease)) {
1723 continue;
1724 }
1725
1726 // We fetch a user's holiday in the current month and then calculate the number of days to deduct if he has at least one registered
1727 $filter = " AND cp.statut = ".((int) self::STATUS_APPROVED);
1728 $filter .= " AND cp.date_fin >= '".$this->db->idate(dol_stringtotime(dol_print_date($lastUpdate, '%Y-%m-01')))."'";
1729 $filter .= " AND cp.date_debut <= '".$this->db->idate(dol_stringtotime(dol_print_date($lastUpdate, '%Y-%m-t')))."'";
1730 $filter .= " AND cp.fk_type = ".((int) $userCounter['type']);
1731 $this->fetchByUser($userCounter['id'], '', $filter);
1732
1733 if (empty($this->holiday)) {
1734 continue;
1735 }
1736
1737 $startOfMonth = dol_mktime(0, 0, 0, (int) $month, 1, (int) $year, 1);
1738 $endOfMonth = dol_mktime(0, 0, 0, (int) $month, (int) dol_print_date($lastUpdate, 't'), (int) $year, 1);
1739
1740 foreach ($this->holiday as $obj) {
1741 $startDate = $obj['date_debut_gmt'];
1742 $endDate = $obj['date_fin_gmt'];
1743
1744 if ($startDate <= $endOfMonth && $startDate < $startOfMonth) {
1745 $startDate = $startOfMonth;
1746 }
1747
1748 if ($startOfMonth <= $endDate && $endDate > $endOfMonth) {
1749 $endDate = $endOfMonth;
1750 }
1751
1752 $nbDaysToDeduct = (int) num_open_day($startDate, $endDate, 0, 1, $obj['halfday']);
1753
1754 if ($nbDaysToDeduct <= 0) {
1755 continue;
1756 }
1757
1758 $newSolde -= $nbDaysToDeduct;
1759
1760 // We add a log for each user when its balance gets decreased
1761 $this->addLogCP($user->id, $userCounter['rowid'], $obj['ref'].' - '.$langs->trans('HolidayConsumption'), $newSolde, $userCounter['type']);
1762
1763 $result = $this->updateSoldeCP($userCounter['rowid'], $newSolde, $userCounter['type']);
1764
1765 if ($result < 0) {
1766 $this->db->rollback();
1767 return -1;
1768 }
1769 }
1770 }
1771
1772 //updating the date of the last monthly balance update
1773 $newMonth = dol_get_next_month((int) dol_print_date($lastUpdate, '%m'), (int) dol_print_date($lastUpdate, '%Y'));
1774 $lastUpdate = dol_mktime(0, 0, 0, (int) $newMonth['month'], 1, (int) $newMonth['year']);
1775 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday_config SET";
1776 $sql .= " value = '".$this->db->escape(dol_print_date($lastUpdate, '%Y%m%d%H%M%S'))."'";
1777 $sql .= " WHERE name = 'lastUpdate'";
1778 $result = $this->db->query($sql);
1779
1780 if (!$result) {
1781 $this->db->rollback();
1782 return -1;
1783 }
1784
1785 $this->db->commit();
1786
1787 $yearMonthLastUpdate = dol_print_date($lastUpdate, '%Y%m');
1788 }
1789
1790 if (!$error) {
1791 return 1;
1792 } else {
1793 return 0;
1794 }
1795 } else {
1796 // Mise à jour pour un utilisateur
1797 $nbHoliday = price2num($nbHoliday, 5);
1798
1799 $sql = "SELECT nb_holiday FROM ".MAIN_DB_PREFIX."holiday_users";
1800 $sql .= " WHERE fk_user = ".(int) $userID." AND fk_type = ".(int) $fk_type;
1801 $resql = $this->db->query($sql);
1802 if ($resql) {
1803 $num = $this->db->num_rows($resql);
1804
1805 if ($num > 0) {
1806 // Update for user
1807 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday_users SET";
1808 $sql .= " nb_holiday = ".((float) $nbHoliday);
1809 $sql .= " WHERE fk_user = ".(int) $userID." AND fk_type = ".(int) $fk_type;
1810 $result = $this->db->query($sql);
1811 if (!$result) {
1812 $error++;
1813 $this->errors[] = $this->db->lasterror();
1814 }
1815 } else {
1816 // Insert for user
1817 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_users(nb_holiday, fk_user, fk_type) VALUES (";
1818 $sql .= ((float) $nbHoliday);
1819 $sql .= ", ".(int) $userID.", ".(int) $fk_type.")";
1820 $result = $this->db->query($sql);
1821 if (!$result) {
1822 $error++;
1823 $this->errors[] = $this->db->lasterror();
1824 }
1825 }
1826 } else {
1827 $this->errors[] = $this->db->lasterror();
1828 $error++;
1829 }
1830
1831 if (!$error) {
1832 return 1;
1833 } else {
1834 return -1;
1835 }
1836 }
1837 }
1838
1846 public function createCPusers($single = false, $userid = 0)
1847 {
1848 // do we have to add balance for all users ?
1849 if (!$single) {
1850 dol_syslog(get_class($this).'::createCPusers');
1851 $arrayofusers = $this->fetchUsers(false, true);
1852
1853 foreach ($arrayofusers as $users) {
1854 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_users";
1855 $sql .= " (fk_user, nb_holiday)";
1856 $sql .= " VALUES (".((int) $users['rowid'])."', '0')";
1857
1858 $resql = $this->db->query($sql);
1859 if (!$resql) {
1860 dol_print_error($this->db);
1861 }
1862 }
1863 } else {
1864 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_users";
1865 $sql .= " (fk_user, nb_holiday)";
1866 $sql .= " VALUES (".((int) $userid)."', '0')";
1867
1868 $resql = $this->db->query($sql);
1869 if (!$resql) {
1870 dol_print_error($this->db);
1871 }
1872 }
1873 }
1874
1882 public function getCPforUser($user_id, $fk_type = 0)
1883 {
1884 $sql = "SELECT nb_holiday";
1885 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_users";
1886 $sql .= " WHERE fk_user = ".(int) $user_id;
1887 if ($fk_type > 0) {
1888 $sql .= " AND fk_type = ".(int) $fk_type;
1889 }
1890
1891 dol_syslog(get_class($this).'::getCPforUser user_id='.$user_id.' type_id='.$fk_type, LOG_DEBUG);
1892 $result = $this->db->query($sql);
1893 if ($result) {
1894 $obj = $this->db->fetch_object($result);
1895 //return number_format($obj->nb_holiday,2);
1896 if ($obj) {
1897 return $obj->nb_holiday;
1898 } else {
1899 return null;
1900 }
1901 } else {
1902 return null;
1903 }
1904 }
1905
1914 public function fetchUsers($stringlist = true, $type = true, $filters = '')
1915 {
1916 global $conf;
1917
1918 dol_syslog(get_class($this)."::fetchUsers", LOG_DEBUG);
1919
1920 if ($stringlist) {
1921 if ($type) {
1922 // If user of Dolibarr
1923 $sql = "SELECT";
1924 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
1925 $sql .= " DISTINCT";
1926 }
1927 $sql .= " u.rowid";
1928 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
1929
1930 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
1931 $sql .= ", ".MAIN_DB_PREFIX."usergroup_user as ug";
1932 $sql .= " WHERE ((ug.fk_user = u.rowid";
1933 $sql .= " AND ug.entity IN (".getEntity('usergroup')."))";
1934 $sql .= " OR u.entity = 0)"; // Show always superadmin
1935 } else {
1936 $sql .= " WHERE u.entity IN (".getEntity('user').")";
1937 }
1938 $sql .= " AND u.statut > 0";
1939 $sql .= " AND u.employee = 1"; // We only want employee users for holidays
1940 if ($filters) {
1941 $sql .= $filters;
1942 }
1943
1944 $resql = $this->db->query($sql);
1945
1946 // Si pas d'erreur SQL
1947 if ($resql) {
1948 $i = 0;
1949 $num = $this->db->num_rows($resql);
1950 $stringlist = '';
1951
1952 // Boucles du listage des utilisateurs
1953 while ($i < $num) {
1954 $obj = $this->db->fetch_object($resql);
1955
1956 if ($i == 0) {
1957 $stringlist .= $obj->rowid;
1958 } else {
1959 $stringlist .= ', '.$obj->rowid;
1960 }
1961
1962 $i++;
1963 }
1964 // Retoune le tableau des utilisateurs
1965 return $stringlist;
1966 } else {
1967 // Erreur SQL
1968 $this->error = "Error ".$this->db->lasterror();
1969 return -1;
1970 }
1971 } else {
1972 // We want only list of vacation balance for user ids
1973 $sql = "SELECT DISTINCT cpu.fk_user";
1974 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_users as cpu, ".MAIN_DB_PREFIX."user as u";
1975 $sql .= " WHERE cpu.fk_user = u.rowid";
1976 if ($filters) {
1977 $sql .= $filters;
1978 }
1979
1980 $resql = $this->db->query($sql);
1981
1982 // Si pas d'erreur SQL
1983 if ($resql) {
1984 $i = 0;
1985 $num = $this->db->num_rows($resql);
1986 $stringlist = '';
1987
1988 // Boucles du listage des utilisateurs
1989 while ($i < $num) {
1990 $obj = $this->db->fetch_object($resql);
1991
1992 if ($i == 0) {
1993 $stringlist .= $obj->fk_user;
1994 } else {
1995 $stringlist .= ', '.$obj->fk_user;
1996 }
1997
1998 $i++;
1999 }
2000 // Retoune le tableau des utilisateurs
2001 return $stringlist;
2002 } else {
2003 // Erreur SQL
2004 $this->error = "Error ".$this->db->lasterror();
2005 return -1;
2006 }
2007 }
2008 } else {
2009 // Si faux donc return array
2010 // List for Dolibarr users
2011 if ($type) {
2012 // If we need users of Dolibarr
2013 $sql = "SELECT";
2014 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
2015 $sql .= " DISTINCT";
2016 }
2017 $sql .= " u.rowid, u.lastname, u.firstname, u.gender, u.photo, u.employee, u.statut as status, u.fk_user";
2018 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
2019
2020 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
2021 $sql .= ", ".MAIN_DB_PREFIX."usergroup_user as ug";
2022 $sql .= " WHERE ((ug.fk_user = u.rowid";
2023 $sql .= " AND ug.entity IN (".getEntity('usergroup')."))";
2024 $sql .= " OR u.entity = 0)"; // Show always superadmin
2025 } else {
2026 $sql .= " WHERE u.entity IN (".getEntity('user').")";
2027 }
2028
2029 $sql .= " AND u.statut > 0";
2030 $sql .= " AND u.employee = 1"; // We only want employee users for holidays
2031 if ($filters) {
2032 $sql .= $filters;
2033 }
2034
2035 $resql = $this->db->query($sql);
2036
2037 // Si pas d'erreur SQL
2038 if ($resql) {
2039 $i = 0;
2040 $tab_result = $this->holiday;
2041 $num = $this->db->num_rows($resql);
2042
2043 // Boucles du listage des utilisateurs
2044 while ($i < $num) {
2045 $obj = $this->db->fetch_object($resql);
2046
2047 $tab_result[$i]['rowid'] = (int) $obj->rowid; // rowid of user
2048 $tab_result[$i]['id'] = (int) $obj->rowid; // id of user
2049 $tab_result[$i]['name'] = $obj->lastname; // deprecated
2050 $tab_result[$i]['lastname'] = $obj->lastname;
2051 $tab_result[$i]['firstname'] = $obj->firstname;
2052 $tab_result[$i]['gender'] = $obj->gender;
2053 $tab_result[$i]['status'] = (int) $obj->status;
2054 $tab_result[$i]['employee'] = (int) $obj->employee;
2055 $tab_result[$i]['photo'] = $obj->photo;
2056 $tab_result[$i]['fk_user'] = (int) $obj->fk_user; // rowid of manager
2057 //$tab_result[$i]['type'] = $obj->type;
2058 //$tab_result[$i]['nb_holiday'] = $obj->nb_holiday;
2059
2060 $i++;
2061 }
2062 // Retoune le tableau des utilisateurs
2063 return $tab_result;
2064 } else {
2065 // Erreur SQL
2066 $this->errors[] = "Error ".$this->db->lasterror();
2067 return -1;
2068 }
2069 } else {
2070 // List of vacation balance users
2071 $sql = "SELECT cpu.fk_type, cpu.nb_holiday, u.rowid, u.lastname, u.firstname, u.gender, u.photo, u.employee, u.statut as status, u.fk_user";
2072 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_users as cpu, ".MAIN_DB_PREFIX."user as u";
2073 $sql .= " WHERE cpu.fk_user = u.rowid";
2074 if ($filters) {
2075 $sql .= $filters;
2076 }
2077
2078 $resql = $this->db->query($sql);
2079
2080 // Si pas d'erreur SQL
2081 if ($resql) {
2082 $i = 0;
2083 $tab_result = $this->holiday;
2084 $num = $this->db->num_rows($resql);
2085
2086 // Boucles du listage des utilisateurs
2087 while ($i < $num) {
2088 $obj = $this->db->fetch_object($resql);
2089
2090 $tab_result[$i]['rowid'] = $obj->rowid; // rowid of user
2091 $tab_result[$i]['id'] = $obj->rowid; // id of user
2092 $tab_result[$i]['name'] = $obj->lastname; // deprecated
2093 $tab_result[$i]['lastname'] = $obj->lastname;
2094 $tab_result[$i]['firstname'] = $obj->firstname;
2095 $tab_result[$i]['gender'] = $obj->gender;
2096 $tab_result[$i]['status'] = $obj->status;
2097 $tab_result[$i]['employee'] = $obj->employee;
2098 $tab_result[$i]['photo'] = $obj->photo;
2099 $tab_result[$i]['fk_user'] = $obj->fk_user; // rowid of manager
2100
2101 $tab_result[$i]['type'] = $obj->fk_type;
2102 $tab_result[$i]['nb_holiday'] = $obj->nb_holiday;
2103
2104 $i++;
2105 }
2106 // Retoune le tableau des utilisateurs
2107 return $tab_result;
2108 } else {
2109 // Erreur SQL
2110 $this->error = "Error ".$this->db->lasterror();
2111 return -1;
2112 }
2113 }
2114 }
2115 }
2116
2117
2118 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2126 {
2127 // phpcs:enable
2128 $users_validator = array();
2129
2130 $sql = "SELECT DISTINCT ur.fk_user";
2131 $sql .= " FROM ".MAIN_DB_PREFIX."user_rights as ur, ".MAIN_DB_PREFIX."rights_def as rd";
2132 $sql .= " WHERE ur.fk_id = rd.id and rd.module = 'holiday' AND rd.perms = 'approve'"; // Permission 'Approve';
2133 $sql .= "UNION";
2134 $sql .= " SELECT DISTINCT ugu.fk_user";
2135 $sql .= " FROM ".MAIN_DB_PREFIX."usergroup_user as ugu, ".MAIN_DB_PREFIX."usergroup_rights as ur, ".MAIN_DB_PREFIX."rights_def as rd";
2136 $sql .= " WHERE ugu.fk_usergroup = ur.fk_usergroup AND ur.fk_id = rd.id and rd.module = 'holiday' AND rd.perms = 'approve'"; // Permission 'Approve';
2137 //print $sql;
2138
2139 dol_syslog(get_class($this)."::fetch_users_approver_holiday sql=".$sql);
2140 $result = $this->db->query($sql);
2141 if ($result) {
2142 $num_rows = $this->db->num_rows($result);
2143 $i = 0;
2144 while ($i < $num_rows) {
2145 $objp = $this->db->fetch_object($result);
2146 array_push($users_validator, $objp->fk_user);
2147 $i++;
2148 }
2149 return $users_validator;
2150 } else {
2151 $this->error = $this->db->lasterror();
2152 dol_syslog(get_class($this)."::fetch_users_approver_holiday Error ".$this->error, LOG_ERR);
2153 return -1;
2154 }
2155 }
2156
2157
2163 public function countActiveUsers()
2164 {
2165 $sql = "SELECT count(u.rowid) as compteur";
2166 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
2167 $sql .= " WHERE u.statut > 0";
2168
2169 $result = $this->db->query($sql);
2170 $object = $this->db->fetch_object($result);
2171
2172 return $object->compteur;
2173 }
2180 {
2181 $sql = "SELECT count(u.rowid) as compteur";
2182 $sql .= " FROM ".MAIN_DB_PREFIX."user as u LEFT OUTER JOIN ".MAIN_DB_PREFIX."holiday_users hu ON (hu.fk_user=u.rowid)";
2183 $sql .= " WHERE u.statut > 0 AND hu.fk_user IS NULL";
2184
2185 $result = $this->db->query($sql);
2186 $object = $this->db->fetch_object($result);
2187
2188 return $object->compteur;
2189 }
2190
2198 public function verifNbUsers($userDolibarrWithoutCP, $userCP)
2199 {
2200 if (empty($userCP)) {
2201 $userCP = 0;
2202 }
2203 dol_syslog(get_class($this).'::verifNbUsers userDolibarr='.$userDolibarrWithoutCP.' userCP='.$userCP);
2204 return 1;
2205 }
2206
2207
2218 public function addLogCP($fk_user_action, $fk_user_update, $label, $new_solde, $fk_type)
2219 {
2220 global $conf, $langs;
2221
2222 $error = 0;
2223
2224 $prev_solde = price2num($this->getCPforUser($fk_user_update, $fk_type), 5);
2225 $new_solde = price2num($new_solde, 5);
2226 //print "$prev_solde == $new_solde";
2227
2228 if ($prev_solde == $new_solde) {
2229 return 0;
2230 }
2231
2232 $this->db->begin();
2233
2234 // Insert request
2235 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_logs (";
2236 $sql .= "date_action,";
2237 $sql .= "fk_user_action,";
2238 $sql .= "fk_user_update,";
2239 $sql .= "type_action,";
2240 $sql .= "prev_solde,";
2241 $sql .= "new_solde,";
2242 $sql .= "fk_type";
2243 $sql .= ") VALUES (";
2244 $sql .= " '".$this->db->idate(dol_now())."',";
2245 $sql .= " ".((int) $fk_user_action).",";
2246 $sql .= " ".((int) $fk_user_update).",";
2247 $sql .= " '".$this->db->escape($label)."',";
2248 $sql .= " ".((float) $prev_solde).",";
2249 $sql .= " ".((float) $new_solde).",";
2250 $sql .= " ".((int) $fk_type);
2251 $sql .= ")";
2252
2253 $resql = $this->db->query($sql);
2254 if (!$resql) {
2255 $error++;
2256 $this->errors[] = "Error ".$this->db->lasterror();
2257 }
2258
2259 if (!$error) {
2260 $this->optRowid = $this->db->last_insert_id(MAIN_DB_PREFIX."holiday_logs");
2261 }
2262
2263 // Commit or rollback
2264 if ($error) {
2265 foreach ($this->errors as $errmsg) {
2266 dol_syslog(get_class($this)."::addLogCP ".$errmsg, LOG_ERR);
2267 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
2268 }
2269 $this->db->rollback();
2270 return -1 * $error;
2271 } else {
2272 $this->db->commit();
2273 return $this->optRowid;
2274 }
2275 }
2276
2284 public function fetchLog($sqlorder, $sqlwhere)
2285 {
2286 $sql = "SELECT";
2287 $sql .= " cpl.rowid,";
2288 $sql .= " cpl.date_action,";
2289 $sql .= " cpl.fk_user_action,";
2290 $sql .= " cpl.fk_user_update,";
2291 $sql .= " cpl.type_action,";
2292 $sql .= " cpl.prev_solde,";
2293 $sql .= " cpl.new_solde,";
2294 $sql .= " cpl.fk_type";
2295 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_logs as cpl";
2296 $sql .= " WHERE cpl.rowid > 0"; // To avoid error with other search and criteria
2297
2298 // Filter
2299 if (!empty($sqlwhere)) {
2300 $sql .= " ".$sqlwhere;
2301 }
2302
2303 // Order
2304 if (!empty($sqlorder)) {
2305 $sql .= " ".$sqlorder;
2306 }
2307
2308 dol_syslog(get_class($this)."::fetchLog", LOG_DEBUG);
2309 $resql = $this->db->query($sql);
2310
2311 // If no error SQL
2312 if ($resql) {
2313 $i = 0;
2314 $tab_result = $this->logs;
2315 $num = $this->db->num_rows($resql);
2316
2317 // If no record
2318 if (!$num) {
2319 return 2;
2320 }
2321
2322 // Loop on result to fill the array
2323 while ($i < $num) {
2324 $obj = $this->db->fetch_object($resql);
2325
2326 $tab_result[$i]['rowid'] = $obj->rowid;
2327 $tab_result[$i]['id'] = $obj->rowid;
2328 $tab_result[$i]['date_action'] = $obj->date_action;
2329 $tab_result[$i]['fk_user_action'] = $obj->fk_user_action;
2330 $tab_result[$i]['fk_user_update'] = $obj->fk_user_update;
2331 $tab_result[$i]['type_action'] = $obj->type_action;
2332 $tab_result[$i]['prev_solde'] = $obj->prev_solde;
2333 $tab_result[$i]['new_solde'] = $obj->new_solde;
2334 $tab_result[$i]['fk_type'] = $obj->fk_type;
2335
2336 $i++;
2337 }
2338 // Retourne 1 et ajoute le tableau à la variable
2339 $this->logs = $tab_result;
2340 return 1;
2341 } else {
2342 // Erreur SQL
2343 $this->error = "Error ".$this->db->lasterror();
2344 return -1;
2345 }
2346 }
2347
2348
2356 public function getTypes($active = -1, $affect = -1)
2357 {
2358 global $mysoc;
2359
2360 $sql = "SELECT rowid, code, label, affect, delay, newbymonth";
2361 $sql .= " FROM ".MAIN_DB_PREFIX."c_holiday_types";
2362 $sql .= " WHERE (fk_country IS NULL OR fk_country = ".((int) $mysoc->country_id).')';
2363 $sql .= " AND entity IN (".getEntity('c_holiday_types').")";
2364 if ($active >= 0) {
2365 $sql .= " AND active = ".((int) $active);
2366 }
2367 if ($affect >= 0) {
2368 $sql .= " AND affect = ".((int) $affect);
2369 }
2370 $sql .= " ORDER BY sortorder";
2371
2372 $result = $this->db->query($sql);
2373 if ($result) {
2374 $num = $this->db->num_rows($result);
2375 if ($num) {
2376 $types = array();
2377 while ($obj = $this->db->fetch_object($result)) {
2378 $types[$obj->rowid] = array('id' => $obj->rowid, 'rowid' => $obj->rowid, 'code' => $obj->code, 'label' => $obj->label, 'affect' => $obj->affect, 'delay' => $obj->delay, 'newbymonth' => $obj->newbymonth);
2379 }
2380
2381 return $types;
2382 }
2383 } else {
2384 dol_print_error($this->db);
2385 }
2386
2387 return array();
2388 }
2389
2390
2397 public function info($id)
2398 {
2399 global $conf;
2400
2401 $sql = "SELECT f.rowid, f.statut as status,";
2402 $sql .= " f.date_create as datec,";
2403 $sql .= " f.tms as date_modification,";
2404 $sql .= " f.date_valid as datev,";
2405 $sql .= " f.date_approval as datea,";
2406 $sql .= " f.date_refuse as dater,";
2407 $sql .= " f.fk_user_create as fk_user_creation,";
2408 $sql .= " f.fk_user_modif as fk_user_modification,";
2409 $sql .= " f.fk_user_valid as fk_user_validation,";
2410 $sql .= " f.fk_user_approve as fk_user_approval_done,";
2411 $sql .= " f.fk_validator as fk_user_approval_expected,";
2412 $sql .= " f.fk_user_refuse as fk_user_refuse";
2413 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as f";
2414 $sql .= " WHERE f.rowid = ".((int) $id);
2415 $sql .= " AND f.entity = ".$conf->entity;
2416
2417 $resql = $this->db->query($sql);
2418 if ($resql) {
2419 if ($this->db->num_rows($resql)) {
2420 $obj = $this->db->fetch_object($resql);
2421
2422 $this->id = $obj->rowid;
2423
2424 $this->date_creation = $this->db->jdate($obj->datec);
2425 $this->date_modification = $this->db->jdate($obj->date_modification);
2426 $this->date_validation = $this->db->jdate($obj->datev);
2427 $this->date_approval = $this->db->jdate($obj->datea);
2428
2429 $this->user_creation_id = $obj->fk_user_creation;
2430 $this->user_validation_id = $obj->fk_user_validation;
2431 $this->user_modification_id = $obj->fk_user_modification;
2432
2433 if ($obj->status == Holiday::STATUS_APPROVED || $obj->status == Holiday::STATUS_CANCELED) {
2434 if ($obj->fk_user_approval_done) {
2435 $this->fk_user_approve = $obj->fk_user_approval_done;
2436 }
2437 }
2438 }
2439 $this->db->free($resql);
2440 } else {
2441 dol_print_error($this->db);
2442 }
2443 }
2444
2445
2453 public function initAsSpecimen()
2454 {
2455 global $user, $langs;
2456
2457 // Initialise parameters
2458 $this->id = 0;
2459 $this->specimen = 1;
2460
2461 $this->fk_user = $user->id;
2462 $this->description = 'SPECIMEN description';
2463 $this->date_debut = dol_now();
2464 $this->date_fin = dol_now() + (24 * 3600);
2465 $this->date_valid = dol_now();
2466 $this->fk_validator = $user->id;
2467 $this->halfday = 0;
2468 $this->fk_type = 1;
2470
2471 return 1;
2472 }
2473
2479 public function loadStateBoard()
2480 {
2481 global $user;
2482
2483 $this->nb = array();
2484
2485 $sql = "SELECT count(h.rowid) as nb";
2486 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as h";
2487 $sql .= " WHERE h.statut > 1";
2488 $sql .= " AND h.entity IN (".getEntity('holiday').")";
2489 if (!$user->hasRight('expensereport', 'readall')) {
2490 $userchildids = $user->getAllChildIds(1);
2491 $sql .= " AND (h.fk_user IN (".$this->db->sanitize(implode(',', $userchildids)).")";
2492 $sql .= " OR h.fk_validator IN (".$this->db->sanitize(implode(',', $userchildids))."))";
2493 }
2494
2495 $resql = $this->db->query($sql);
2496 if ($resql) {
2497 while ($obj = $this->db->fetch_object($resql)) {
2498 $this->nb["holidays"] = $obj->nb;
2499 }
2500 $this->db->free($resql);
2501 return 1;
2502 } else {
2503 dol_print_error($this->db);
2504 $this->error = $this->db->error();
2505 return -1;
2506 }
2507 }
2508
2509 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2516 public function load_board($user)
2517 {
2518 // phpcs:enable
2519 global $conf, $langs;
2520
2521 if ($user->socid) {
2522 return -1; // protection pour eviter appel par utilisateur externe
2523 }
2524
2525 $now = dol_now();
2526
2527 $sql = "SELECT h.rowid, h.date_debut";
2528 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as h";
2529 $sql .= " WHERE h.statut = 2";
2530 $sql .= " AND h.entity IN (".getEntity('holiday').")";
2531 if (!$user->hasRight('expensereport', 'read_all')) {
2532 $userchildids = $user->getAllChildIds(1);
2533 $sql .= " AND (h.fk_user IN (".$this->db->sanitize(implode(',', $userchildids)).")";
2534 $sql .= " OR h.fk_validator IN (".$this->db->sanitize(implode(',', $userchildids))."))";
2535 }
2536
2537 $resql = $this->db->query($sql);
2538 if ($resql) {
2539 $langs->load("members");
2540
2541 $response = new WorkboardResponse();
2542 $response->warning_delay = $conf->holiday->approve->warning_delay / 60 / 60 / 24;
2543 $response->label = $langs->trans("HolidaysToApprove");
2544 $response->labelShort = $langs->trans("ToApprove");
2545 $response->url = DOL_URL_ROOT.'/holiday/list.php?search_status=2&amp;mainmenu=hrm&amp;leftmenu=holiday';
2546 $response->img = img_object('', "holiday");
2547
2548 while ($obj = $this->db->fetch_object($resql)) {
2549 $response->nbtodo++;
2550
2551 if ($this->db->jdate($obj->date_debut) < ($now - $conf->holiday->approve->warning_delay)) {
2552 $response->nbtodolate++;
2553 }
2554 }
2555
2556 return $response;
2557 } else {
2558 dol_print_error($this->db);
2559 $this->error = $this->db->error();
2560 return -1;
2561 }
2562 }
2570 public function getKanbanView($option = '', $arraydata = null)
2571 {
2572 global $langs;
2573
2574 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2575
2576 $return = '<div class="box-flex-item box-flex-grow-zero">';
2577 $return .= '<div class="info-box info-box-sm">';
2578 $return .= '<span class="info-box-icon bg-infobox-action">';
2579 $return .= img_picto('', $this->picto);
2580 $return .= '</span>';
2581 $return .= '<div class="info-box-content">';
2582 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.$this->getNomUrl().'</span>';
2583 if ($selected >= 0) {
2584 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2585 }
2586 if (property_exists($this, 'fk_type')) {
2587 $return .= '<br>';
2588 //$return .= '<span class="opacitymedium">'.$langs->trans("Type").'</span> : ';
2589 $return .= '<div class="info_box-label tdoverflowmax100" title="'.dol_escape_htmltag($arraydata['labeltype']).'">'.dol_escape_htmltag($arraydata['labeltype']).'</div>';
2590 }
2591 if (property_exists($this, 'date_debut') && property_exists($this, 'date_fin')) {
2592 $return .= '<span class="info-box-label small">'.dol_print_date($this->date_debut, 'day').'</span>';
2593 $return .= ' <span class="opacitymedium small">'.$langs->trans("To").'</span> ';
2594 $return .= '<span class="info-box-label small">'.dol_print_date($this->date_fin, 'day').'</span>';
2595 if (!empty($arraydata['nbopenedday'])) {
2596 $return .= ' ('.$arraydata['nbopenedday'].')';
2597 }
2598 }
2599 if (method_exists($this, 'getLibStatut')) {
2600 $return .= '<div class="info-box-status">'.$this->getLibStatut(3).'</div>';
2601 }
2602 $return .= '</div>';
2603 $return .= '</div>';
2604 $return .= '</div>';
2605 return $return;
2606 }
2607}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
Definition ajax.lib.php:457
$object ref
Definition info.php:79
Parent class of all other business classes (invoices, contracts, proposals, orders,...
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class of the module paid holiday.
getTypes($active=-1, $affect=-1)
Return array with list of types.
getNomUrl($withpicto=0, $save_lastsearch_value=-1, $notooltip=0, $morecss='')
Return clickable name (with picto eventually)
verifDateHolidayCP($fk_user, $dateStart, $dateEnd, $halfday=0)
Check if a user is on holiday (partially or completely) into a period.
validate($user=null, $notrigger=0)
Validate leave request.
info($id)
Load information on object.
updateBalance()
Update balance of vacations and check table of users for holidays is complete.
updateConfCP($name, $value)
Met à jour une option du module Holiday Payés.
const STATUS_VALIDATED
Validated status.
const STATUS_DRAFT
Draft status.
fetch($id, $ref='')
Load object in memory from database.
addLogCP($fk_user_action, $fk_user_update, $label, $new_solde, $fk_type)
addLogCP
verifNbUsers($userDolibarrWithoutCP, $userCP)
Compare le nombre d'utilisateur actif de Dolibarr à celui des utilisateurs des congés payés.
verifDateHolidayForTimestamp($fk_user, $timestamp, $status='-1')
Check that a user is not on holiday for a particular timestamp.
approve($user=null, $notrigger=0)
Approve leave request.
getNextNumRef($objsoc)
Returns the reference to the following non used Order depending on the active numbering module define...
const STATUS_REFUSED
Refused.
getConfCP($name, $createifnotfound='')
Return value of a conf parameter for leave module TODO Move this into llx_const table.
load_board($user)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
initAsSpecimen()
Initialise an instance with random values.
create($user, $notrigger=0)
Créer un congés payés dans la base de données.
selectStatutCP($selected=0, $htmlname='select_statut', $morecss='minwidth125')
Show select with list of leave status.
countActiveUsersWithoutCP()
Compte le nombre d'utilisateur actifs dans Dolibarr sans CP.
updateSoldeCP($userID=0, $nbHoliday=0, $fk_type=0)
Met à jour le timestamp de la dernière mise à jour du solde des CP.
update($user=null, $notrigger=0)
Update database.
getCPforUser($user_id, $fk_type=0)
Return the balance of annual leave of a user.
fetch_users_approver_holiday()
Return list of people with permission to validate leave requests.
__construct($db)
Constructor.
loadStateBoard()
Load this->nb for dashboard.
getLibStatut($mode=0)
Returns the label status.
createCPusers($single=false, $userid=0)
Create entries for each user at setup step.
fetchAll($order, $filter)
List all holidays of all users.
const STATUS_CANCELED
Canceled.
fetchLog($sqlorder, $sqlwhere)
List log of leaves.
countActiveUsers()
Compte le nombre d'utilisateur actifs dans Dolibarr.
fetchByUser($user_id, $order='', $filter='')
List holidays for a particular user or list of users.
const STATUS_APPROVED
Approved.
getTooltipContentArray($params)
getTooltipContentArray
fetchUsers($stringlist=true, $type=true, $filters='')
Get list of Users or list of vacation balance.
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
LibStatut($status, $mode=0, $startdate='')
Returns the label of a status.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition index.php:162
dol_get_next_month($month, $year)
Return next month.
Definition date.lib.php:534
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)
dol_stringtotime($string, $gm=1)
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not s...
Definition date.lib.php:427
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:63
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...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_now($mode='auto')
Return date for now.
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).
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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.
getDictionaryValue($tablename, $field, $id, $checkentity=false, $rowidfield='rowid')
Return the value of a filed into a dictionary for the record $id.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...