dolibarr 21.0.4
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
774 $checkBalance = getDictionaryValue('c_holiday_types', 'block_if_negative', $this->fk_type, true);
775
776 if ($checkBalance > 0) {
777 $balance = $this->getCPforUser($this->fk_user, $this->fk_type);
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 $days = num_between_day($this->date_debut, $this->date_fin);
902 if ($balance - $days < 0 && getDolGlobalString('HOLIDAY_DISALLOW_NEGATIVE_BALANCE')) {
903 $this->error = 'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
904 return -1;
905 }
906 }
907
908 // Update request
909 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday SET";
910 $sql .= " description= '".$this->db->escape($this->description)."',";
911 if (!empty($this->date_debut)) {
912 $sql .= " date_debut = '".$this->db->idate($this->date_debut)."',";
913 } else {
914 $error++;
915 }
916 if (!empty($this->date_fin)) {
917 $sql .= " date_fin = '".$this->db->idate($this->date_fin)."',";
918 } else {
919 $error++;
920 }
921 $sql .= " halfday = ".((int) $this->halfday).",";
922 if (!empty($this->status) && is_numeric($this->status)) {
923 $sql .= " statut = ".((int) $this->status).",";
924 } else {
925 $error++;
926 }
927 if (!empty($this->fk_validator)) {
928 $sql .= " fk_validator = ".((int) $this->fk_validator).",";
929 } else {
930 $error++;
931 }
932 if (!empty($this->date_valid)) {
933 $sql .= " date_valid = '".$this->db->idate($this->date_valid)."',";
934 } else {
935 $sql .= " date_valid = NULL,";
936 }
937 if (!empty($this->fk_user_valid)) {
938 $sql .= " fk_user_valid = ".((int) $this->fk_user_valid).",";
939 } else {
940 $sql .= " fk_user_valid = NULL,";
941 }
942 if (!empty($this->date_approval)) {
943 $sql .= " date_approval = '".$this->db->idate($this->date_approval)."',";
944 } else {
945 $sql .= " date_approval = NULL,";
946 }
947 if (!empty($this->fk_user_approve)) {
948 $sql .= " fk_user_approve = ".((int) $this->fk_user_approve).",";
949 } else {
950 $sql .= " fk_user_approve = NULL,";
951 }
952 if (!empty($this->date_refuse)) {
953 $sql .= " date_refuse = '".$this->db->idate($this->date_refuse)."',";
954 } else {
955 $sql .= " date_refuse = NULL,";
956 }
957 if (!empty($this->fk_user_refuse)) {
958 $sql .= " fk_user_refuse = ".((int) $this->fk_user_refuse).",";
959 } else {
960 $sql .= " fk_user_refuse = NULL,";
961 }
962 if (!empty($this->date_cancel)) {
963 $sql .= " date_cancel = '".$this->db->idate($this->date_cancel)."',";
964 } else {
965 $sql .= " date_cancel = NULL,";
966 }
967 if (!empty($this->fk_user_cancel)) {
968 $sql .= " fk_user_cancel = ".((int) $this->fk_user_cancel).",";
969 } else {
970 $sql .= " fk_user_cancel = NULL,";
971 }
972 if (!empty($this->detail_refuse)) {
973 $sql .= " detail_refuse = '".$this->db->escape($this->detail_refuse)."'";
974 } else {
975 $sql .= " detail_refuse = NULL";
976 }
977 $sql .= " WHERE rowid = ".((int) $this->id);
978
979 $this->db->begin();
980
981 dol_syslog(get_class($this)."::approve", LOG_DEBUG);
982 $resql = $this->db->query($sql);
983 if (!$resql) {
984 $error++;
985 $this->errors[] = "Error ".$this->db->lasterror();
986 }
987
988 if (!$error) {
989 if (!$notrigger) {
990 // Call trigger
991 $result = $this->call_trigger('HOLIDAY_APPROVE', $user);
992 if ($result < 0) {
993 $error++;
994 }
995 // End call triggers
996 }
997 }
998
999 // Commit or rollback
1000 if ($error) {
1001 foreach ($this->errors as $errmsg) {
1002 dol_syslog(get_class($this)."::approve ".$errmsg, LOG_ERR);
1003 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1004 }
1005 $this->db->rollback();
1006 return -1 * $error;
1007 } else {
1008 $this->db->commit();
1009 return 1;
1010 }
1011 }
1012
1020 public function update($user = null, $notrigger = 0)
1021 {
1022 global $conf, $langs;
1023 $error = 0;
1024
1025 $checkBalance = getDictionaryValue('c_holiday_types', 'block_if_negative', $this->fk_type, true);
1026
1027 if ($checkBalance > 0 && $this->status != self::STATUS_DRAFT) {
1028 $balance = $this->getCPforUser($this->fk_user, $this->fk_type);
1029
1030 if ($balance < 0) {
1031 $this->error = 'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
1032 return -1;
1033 }
1034 }
1035
1036 // Update request
1037 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday SET";
1038
1039 $sql .= " description= '".$this->db->escape($this->description)."',";
1040
1041 if (!empty($this->date_debut)) {
1042 $sql .= " date_debut = '".$this->db->idate($this->date_debut)."',";
1043 } else {
1044 $error++;
1045 }
1046 if (!empty($this->date_fin)) {
1047 $sql .= " date_fin = '".$this->db->idate($this->date_fin)."',";
1048 } else {
1049 $error++;
1050 }
1051 $sql .= " halfday = ".((int) $this->halfday).",";
1052 if (!empty($this->status) && is_numeric($this->status)) {
1053 $sql .= " statut = ".((int) $this->status).",";
1054 } else {
1055 $error++;
1056 }
1057 if (!empty($this->fk_validator)) {
1058 $sql .= " fk_validator = '".$this->db->escape($this->fk_validator)."',";
1059 } else {
1060 $error++;
1061 }
1062 if (!empty($this->date_valid)) {
1063 $sql .= " date_valid = '".$this->db->idate($this->date_valid)."',";
1064 } else {
1065 $sql .= " date_valid = NULL,";
1066 }
1067 if (!empty($this->fk_user_valid)) {
1068 $sql .= " fk_user_valid = ".((int) $this->fk_user_valid).",";
1069 } else {
1070 $sql .= " fk_user_valid = NULL,";
1071 }
1072 if (!empty($this->date_approval)) {
1073 $sql .= " date_approval = '".$this->db->idate($this->date_approval)."',";
1074 } else {
1075 $sql .= " date_approval = NULL,";
1076 }
1077 if (!empty($this->fk_user_approve)) {
1078 $sql .= " fk_user_approve = ".((int) $this->fk_user_approve).",";
1079 } else {
1080 $sql .= " fk_user_approve = NULL,";
1081 }
1082 if (!empty($this->date_refuse)) {
1083 $sql .= " date_refuse = '".$this->db->idate($this->date_refuse)."',";
1084 } else {
1085 $sql .= " date_refuse = NULL,";
1086 }
1087 if (!empty($this->fk_user_refuse)) {
1088 $sql .= " fk_user_refuse = ".((int) $this->fk_user_refuse).",";
1089 } else {
1090 $sql .= " fk_user_refuse = NULL,";
1091 }
1092 if (!empty($this->date_cancel)) {
1093 $sql .= " date_cancel = '".$this->db->idate($this->date_cancel)."',";
1094 } else {
1095 $sql .= " date_cancel = NULL,";
1096 }
1097 if (!empty($this->fk_user_cancel)) {
1098 $sql .= " fk_user_cancel = ".((int) $this->fk_user_cancel).",";
1099 } else {
1100 $sql .= " fk_user_cancel = NULL,";
1101 }
1102 if (!empty($this->detail_refuse)) {
1103 $sql .= " detail_refuse = '".$this->db->escape($this->detail_refuse)."'";
1104 } else {
1105 $sql .= " detail_refuse = NULL";
1106 }
1107
1108 $sql .= " WHERE rowid = ".((int) $this->id);
1109
1110 $this->db->begin();
1111
1112 dol_syslog(get_class($this)."::update", LOG_DEBUG);
1113 $resql = $this->db->query($sql);
1114 if (!$resql) {
1115 $error++;
1116 $this->errors[] = "Error ".$this->db->lasterror();
1117 }
1118
1119 if (!$error) {
1120 $result = $this->insertExtraFields();
1121 if ($result < 0) {
1122 $error++;
1123 }
1124 }
1125
1126 if (!$error) {
1127 if (!$notrigger) {
1128 // Call trigger
1129 $result = $this->call_trigger('HOLIDAY_MODIFY', $user);
1130 if ($result < 0) {
1131 $error++;
1132 }
1133 // End call triggers
1134 }
1135 }
1136
1137 // Commit or rollback
1138 if ($error) {
1139 foreach ($this->errors as $errmsg) {
1140 dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
1141 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1142 }
1143 $this->db->rollback();
1144 return -1 * $error;
1145 } else {
1146 $this->db->commit();
1147 return 1;
1148 }
1149 }
1150
1151
1159 public function delete($user, $notrigger = 0)
1160 {
1161 global $conf, $langs;
1162 $error = 0;
1163
1164 $sql = "DELETE FROM ".MAIN_DB_PREFIX."holiday";
1165 $sql .= " WHERE rowid=".((int) $this->id);
1166
1167 $this->db->begin();
1168
1169 dol_syslog(get_class($this)."::delete", LOG_DEBUG);
1170 $resql = $this->db->query($sql);
1171 if (!$resql) {
1172 $error++;
1173 $this->errors[] = "Error ".$this->db->lasterror();
1174 }
1175
1176 if (!$error) {
1177 if (!$notrigger) {
1178 // Call trigger
1179 $result = $this->call_trigger('HOLIDAY_DELETE', $user);
1180 if ($result < 0) {
1181 $error++;
1182 }
1183 // End call triggers
1184 }
1185 }
1186
1187 // Commit or rollback
1188 if ($error) {
1189 foreach ($this->errors as $errmsg) {
1190 dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
1191 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1192 }
1193 $this->db->rollback();
1194 return -1 * $error;
1195 } else {
1196 $this->db->commit();
1197 return 1;
1198 }
1199 }
1200
1214 public function verifDateHolidayCP($fk_user, $dateStart, $dateEnd, $halfday = 0)
1215 {
1216 $this->fetchByUser($fk_user, '', '');
1217
1218 foreach ($this->holiday as $infos_CP) {
1219 if ($infos_CP['statut'] == Holiday::STATUS_CANCELED) {
1220 continue; // ignore not validated holidays
1221 }
1222 if ($infos_CP['statut'] == Holiday::STATUS_REFUSED) {
1223 continue; // ignore refused holidays
1224 }
1225 //var_dump("--");
1226 //var_dump("old: ".dol_print_date($infos_CP['date_debut'],'dayhour').' '.dol_print_date($infos_CP['date_fin'],'dayhour').' '.$infos_CP['halfday']);
1227 //var_dump("new: ".dol_print_date($dateStart,'dayhour').' '.dol_print_date($dateEnd,'dayhour').' '.$halfday);
1228
1229 if ($halfday == 0) {
1230 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1231 return false;
1232 }
1233 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1234 return false;
1235 }
1236 } elseif ($halfday == -1) {
1237 // new start afternoon, new end afternoon
1238 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1239 if ($dateStart < $infos_CP['date_fin'] || in_array($infos_CP['halfday'], array(0, -1))) {
1240 return false;
1241 }
1242 }
1243 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1244 if ($dateStart < $dateEnd) {
1245 return false;
1246 }
1247 if ($dateEnd < $infos_CP['date_fin'] || in_array($infos_CP['halfday'], array(0, -1))) {
1248 return false;
1249 }
1250 }
1251 } elseif ($halfday == 1) {
1252 // new start morning, new end morning
1253 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1254 if ($dateStart < $dateEnd) {
1255 return false;
1256 }
1257 if ($dateStart > $infos_CP['date_debut'] || in_array($infos_CP['halfday'], array(0, 1))) {
1258 return false;
1259 }
1260 }
1261 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1262 if ($dateEnd > $infos_CP['date_debut'] || in_array($infos_CP['halfday'], array(0, 1))) {
1263 return false;
1264 }
1265 }
1266 } elseif ($halfday == 2) {
1267 // new start afternoon, new end morning
1268 if ($dateStart >= $infos_CP['date_debut'] && $dateStart <= $infos_CP['date_fin']) {
1269 if ($dateStart < $infos_CP['date_fin'] || in_array($infos_CP['halfday'], array(0, -1))) {
1270 return false;
1271 }
1272 }
1273 if ($dateEnd <= $infos_CP['date_fin'] && $dateEnd >= $infos_CP['date_debut']) {
1274 if ($dateEnd > $infos_CP['date_debut'] || in_array($infos_CP['halfday'], array(0, 1))) {
1275 return false;
1276 }
1277 }
1278 } else {
1279 dol_print_error(null, 'Bad value of parameter halfday when calling function verifDateHolidayCP');
1280 }
1281 }
1282
1283 return true;
1284 }
1285
1286
1296 public function verifDateHolidayForTimestamp($fk_user, $timestamp, $status = '-1')
1297 {
1298 $isavailablemorning = true;
1299 $isavailableafternoon = true;
1300
1301 // Check into leave requests
1302 $sql = "SELECT cp.rowid, cp.date_debut as date_start, cp.date_fin as date_end, cp.halfday, cp.statut as status";
1303 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as cp";
1304 $sql .= " WHERE cp.entity IN (".getEntity('holiday').")";
1305 $sql .= " AND cp.fk_user = ".(int) $fk_user;
1306 $sql .= " AND cp.date_debut <= '".$this->db->idate($timestamp)."' AND cp.date_fin >= '".$this->db->idate($timestamp)."'";
1307 if ($status != '-1') {
1308 $sql .= " AND cp.statut IN (".$this->db->sanitize($status).")";
1309 }
1310
1311 $resql = $this->db->query($sql);
1312 if ($resql) {
1313 $num_rows = $this->db->num_rows($resql); // Note, we can have 2 records if on is morning and the other one is afternoon
1314 if ($num_rows > 0) {
1315 $arrayofrecord = array();
1316 $i = 0;
1317 while ($i < $num_rows) {
1318 $obj = $this->db->fetch_object($resql);
1319
1320 // Note: $obj->halfday is 0:Full days, 2:Start afternoon end morning, -1:Start afternoon, 1:End morning
1321 $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);
1322 $i++;
1323 }
1324
1325 // We found a record, user is on holiday by default, so is not available is true.
1326 $isavailablemorning = true;
1327 foreach ($arrayofrecord as $record) {
1328 if ($timestamp == $record['date_start'] && $record['halfday'] == 2) {
1329 continue;
1330 }
1331 if ($timestamp == $record['date_start'] && $record['halfday'] == -1) {
1332 continue;
1333 }
1334 $isavailablemorning = false;
1335 break;
1336 }
1337 $isavailableafternoon = true;
1338 foreach ($arrayofrecord as $record) {
1339 if ($timestamp == $record['date_end'] && $record['halfday'] == 2) {
1340 continue;
1341 }
1342 if ($timestamp == $record['date_end'] && $record['halfday'] == 1) {
1343 continue;
1344 }
1345 $isavailableafternoon = false;
1346 break;
1347 }
1348 }
1349 } else {
1350 dol_print_error($this->db);
1351 }
1352
1353 $result = array('morning' => $isavailablemorning, 'afternoon' => $isavailableafternoon);
1354 if (!$isavailablemorning) {
1355 $result['morning_reason'] = 'leave_request';
1356 }
1357 if (!$isavailableafternoon) {
1358 $result['afternoon_reason'] = 'leave_request';
1359 }
1360 return $result;
1361 }
1362
1369 public function getTooltipContentArray($params)
1370 {
1371 global $langs;
1372
1373 $langs->load('holiday');
1374 $nofetch = !empty($params['nofetch']);
1375
1376 $datas = array();
1377 $datas['picto'] = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("Holiday").'</u>';
1378 if (isset($this->status)) {
1379 $datas['picto'] .= ' '.$this->getLibStatut(5);
1380 }
1381 $datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
1382 // show type for this record only in ajax to not overload lists
1383 if (!$nofetch && !empty($this->fk_type)) {
1384 $typeleaves = $this->getTypes(1, -1);
1385 if (empty($typeleaves[$this->fk_type])) {
1386 $labeltoshow = $langs->trans("TypeWasDisabledOrRemoved", $this->fk_type);
1387 } else {
1388 $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']);
1389 }
1390 $datas['type'] = '<br><b>'.$langs->trans("Type") . ':</b> ' . $labeltoshow;
1391 }
1392 if (isset($this->halfday) && !empty($this->date_debut) && !empty($this->date_fin)) {
1393 $listhalfday = array(
1394 'morning' => $langs->trans("Morning"),
1395 "afternoon" => $langs->trans("Afternoon")
1396 );
1397 $starthalfday = ($this->halfday == -1 || $this->halfday == 2) ? 'afternoon' : 'morning';
1398 $endhalfday = ($this->halfday == 1 || $this->halfday == 2) ? 'morning' : 'afternoon';
1399 $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>';
1400 $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>';
1401 }
1402
1403
1404 return $datas;
1405 }
1406
1416 public function getNomUrl($withpicto = 0, $save_lastsearch_value = -1, $notooltip = 0, $morecss = '')
1417 {
1418 global $conf, $langs, $hookmanager;
1419
1420 if (!empty($conf->dol_no_mouse_hover)) {
1421 $notooltip = 1; // Force disable tooltips
1422 }
1423
1424 $result = '';
1425 $params = [
1426 'id' => $this->id,
1427 'objecttype' => $this->element,
1428 'nofetch' => 1,
1429 ];
1430 $classfortooltip = 'classfortooltip';
1431 $dataparams = '';
1432 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
1433 $classfortooltip = 'classforajaxtooltip';
1434 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
1435 $label = '';
1436 } else {
1437 $label = implode($this->getTooltipContentArray($params));
1438 }
1439
1440 $url = DOL_URL_ROOT.'/holiday/card.php?id='.$this->id;
1441
1442 //if ($option != 'nolink')
1443 //{
1444 // Add param to save lastsearch_values or not
1445 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1446 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
1447 $add_save_lastsearch_values = 1;
1448 }
1449 if ($add_save_lastsearch_values) {
1450 $url .= '&save_lastsearch_values=1';
1451 }
1452 //}
1453
1454 $linkclose = '';
1455 if (empty($notooltip)) {
1456 if (getDolGlobalInt('MAIN_OPTIMIZEFORTEXTBROWSER')) {
1457 $label = $langs->trans("ShowMyObject");
1458 $linkclose .= ' alt="'.dolPrintHTMLForAttribute($label).'"';
1459 }
1460 $linkclose .= ($label ? ' title="'.dolPrintHTMLForAttribute($label).'"' : ' title="tocomplete"');
1461 $linkclose .= $dataparams.' class="'.$classfortooltip.($morecss ? ' '.$morecss : '').'"';
1462 } else {
1463 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
1464 }
1465
1466 $linkstart = '<a href="'.$url.'"';
1467 $linkstart .= $linkclose.'>';
1468 $linkend = '</a>';
1469
1470 $result .= $linkstart;
1471
1472 if ($withpicto) {
1473 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'"'), 0, 0, $notooltip ? 0 : 1);
1474 }
1475 if ($withpicto != 2) {
1476 $result .= $this->ref;
1477 }
1478 $result .= $linkend;
1479
1480 global $action;
1481 $hookmanager->initHooks(array($this->element . 'dao'));
1482 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
1483 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1484 if ($reshook > 0) {
1485 $result = $hookmanager->resPrint;
1486 } else {
1487 $result .= $hookmanager->resPrint;
1488 }
1489 return $result;
1490 }
1491
1492
1499 public function getLibStatut($mode = 0)
1500 {
1501 return $this->LibStatut($this->status, $mode, $this->date_debut);
1502 }
1503
1504 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1513 public function LibStatut($status, $mode = 0, $startdate = '')
1514 {
1515 // phpcs:enable
1516 global $langs;
1517
1518 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
1519 global $langs;
1520 //$langs->load("mymodule");
1521 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('DraftCP');
1522 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ToReviewCP');
1523 $this->labelStatus[self::STATUS_APPROVED] = $langs->transnoentitiesnoconv('ApprovedCP');
1524 $this->labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('CancelCP');
1525 $this->labelStatus[self::STATUS_REFUSED] = $langs->transnoentitiesnoconv('RefuseCP');
1526 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('DraftCP');
1527 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ToReviewCP');
1528 $this->labelStatusShort[self::STATUS_APPROVED] = $langs->transnoentitiesnoconv('ApprovedCP');
1529 $this->labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv('CancelCP');
1530 $this->labelStatusShort[self::STATUS_REFUSED] = $langs->transnoentitiesnoconv('RefuseCP');
1531 }
1532
1533 $params = array();
1534 $statusType = 'status6';
1535 if (!empty($startdate) && $startdate >= dol_now()) { // If not yet passed, we use a green "in live" color
1536 $statusType = 'status4';
1537 $params = array('tooltip' => $this->labelStatus[$status].' - '.$langs->trans("Forthcoming"));
1538 }
1539 if ($status == self::STATUS_DRAFT) {
1540 $statusType = 'status0';
1541 }
1542 if ($status == self::STATUS_VALIDATED) {
1543 $statusType = 'status1';
1544 }
1545 if ($status == self::STATUS_CANCELED) {
1546 $statusType = 'status9';
1547 }
1548 if ($status == self::STATUS_REFUSED) {
1549 $statusType = 'status9';
1550 }
1551
1552 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode, '', $params);
1553 }
1554
1555
1564 public function selectStatutCP($selected = 0, $htmlname = 'select_statut', $morecss = 'minwidth125')
1565 {
1566 global $langs;
1567
1568 // List of status label
1569 $name = array('DraftCP', 'ToReviewCP', 'ApprovedCP', 'CancelCP', 'RefuseCP');
1570 $nb = count($name) + 1;
1571
1572 // Select HTML
1573 $out = '<select name="'.$htmlname.'" id="'.$htmlname.'" class="flat'.($morecss ? ' '.$morecss : '').'">'."\n";
1574 $out .= '<option value="-1">&nbsp;</option>'."\n";
1575
1576 // Loop on status
1577 for ($i = 1; $i < $nb; $i++) {
1578 if ($i == $selected) {
1579 $out .= '<option value="'.$i.'" selected>'.$langs->trans($name[$i - 1]).'</option>'."\n";
1580 } else {
1581 $out .= '<option value="'.$i.'">'.$langs->trans($name[$i - 1]).'</option>'."\n";
1582 }
1583 }
1584
1585 $out .= "</select>\n";
1586
1587 $showempty = 0;
1588 $out .= ajax_combobox($htmlname, array(), 0, 0, 'resolve', ($showempty < 0 ? (string) $showempty : '-1'), $morecss);
1589
1590 return $out;
1591 }
1592
1600 public function updateConfCP($name, $value)
1601 {
1602 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday_config SET";
1603 $sql .= " value = '".$this->db->escape($value)."'";
1604 $sql .= " WHERE name = '".$this->db->escape($name)."'";
1605
1606 dol_syslog(get_class($this).'::updateConfCP name='.$name, LOG_DEBUG);
1607 $result = $this->db->query($sql);
1608 if ($result) {
1609 return true;
1610 }
1611
1612 return false;
1613 }
1614
1623 public function getConfCP($name, $createifnotfound = '')
1624 {
1625 $sql = "SELECT value";
1626 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_config";
1627 $sql .= " WHERE name = '".$this->db->escape($name)."'";
1628
1629 dol_syslog(get_class($this).'::getConfCP name='.$name.' createifnotfound='.$createifnotfound, LOG_DEBUG);
1630 $result = $this->db->query($sql);
1631
1632 if ($result) {
1633 $obj = $this->db->fetch_object($result);
1634 // Return value
1635 if (empty($obj)) {
1636 if ($createifnotfound) {
1637 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_config(name, value)";
1638 $sql .= " VALUES('".$this->db->escape($name)."', '".$this->db->escape($createifnotfound)."')";
1639 $result = $this->db->query($sql);
1640 if ($result) {
1641 return $createifnotfound;
1642 } else {
1643 $this->error = $this->db->lasterror();
1644 return -2;
1645 }
1646 } else {
1647 return '';
1648 }
1649 } else {
1650 return $obj->value;
1651 }
1652 } else {
1653 // Erreur SQL
1654 $this->error = $this->db->lasterror();
1655 return -1;
1656 }
1657 }
1658
1667 public function updateSoldeCP($userID = 0, $nbHoliday = 0, $fk_type = 0)
1668 {
1669 global $user, $langs;
1670
1671 $error = 0;
1672
1673 if (empty($userID) && empty($nbHoliday) && empty($fk_type)) {
1674 $langs->load("holiday");
1675
1676 $decrease = getDolGlobalInt('HOLIDAY_DECREASE_AT_END_OF_MONTH');
1677
1678 // Si mise à jour pour tout le monde en début de mois
1679 $now = dol_now();
1680
1681 // Get month of last update
1682 $stringInDBForLastUpdate = $this->getConfCP('lastUpdate', dol_print_date($now, '%Y%m%d%H%M%S')); // Example '20200101120000'
1683 // Protection when $lastUpdate has a not valid value
1684 if ($stringInDBForLastUpdate < '20000101000000') {
1685 $stringInDBForLastUpdate = '20000101000000';
1686 }
1687 $lastUpdate = dol_stringtotime($stringInDBForLastUpdate);
1688 //print 'lastUpdate:'.$lastUpdate;exit;
1689
1690 $yearMonthLastUpdate = dol_print_date($lastUpdate, '%Y%m');
1691 $yearMonthNow = dol_print_date($now, '%Y%m');
1692 //print 'yearMonthLastUpdate='.$yearMonthLastUpdate.' yearMonthNow='.$yearMonthNow;
1693
1694 // 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,
1695 // catching up to the current month if a gap is detected
1696 while ($yearMonthLastUpdate < $yearMonthNow) {
1697 $this->db->begin();
1698
1699 $year = dol_print_date($lastUpdate, '%Y');
1700 $month = dol_print_date($lastUpdate, '%m');
1701
1702 $users = $this->fetchUsers(false, false, ' AND u.statut > 0');
1703 $nbUser = count($users);
1704
1705 $typeleaves = $this->getTypes(1, 1);
1706
1707 // Update each user counter
1708 foreach ($users as $userCounter) {
1709 $nbDaysToAdd = (isset($typeleaves[$userCounter['type']]['newbymonth']) ? $typeleaves[$userCounter['type']]['newbymonth'] : 0);
1710 if (empty($nbDaysToAdd)) {
1711 continue;
1712 }
1713
1714 dol_syslog("We update leave type id ".$userCounter['type']." for user id ".$userCounter['rowid'], LOG_DEBUG);
1715
1716 $nowHoliday = (float) $userCounter['nb_holiday'];
1717 $newSolde = $nowHoliday + $nbDaysToAdd;
1718
1719 // We add a log for each user when its balance gets increased
1720 $this->addLogCP($user->id, $userCounter['rowid'], $langs->trans('HolidayMonthlyCredit'), $newSolde, $userCounter['type']);
1721
1722 $result = $this->updateSoldeCP($userCounter['rowid'], $newSolde, $userCounter['type']);
1723
1724 if ($result < 0) {
1725 $this->db->rollback();
1726 return -1;
1727 }
1728
1729 if (empty($decrease)) {
1730 continue;
1731 }
1732
1733 // 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
1734 $filter = " AND cp.statut = ".((int) self::STATUS_APPROVED);
1735 $filter .= " AND cp.date_fin >= '".$this->db->idate(dol_stringtotime(dol_print_date($lastUpdate, '%Y-%m-01')))."'";
1736 $filter .= " AND cp.date_debut <= '".$this->db->idate(dol_stringtotime(dol_print_date($lastUpdate, '%Y-%m-t')))."'";
1737 $filter .= " AND cp.fk_type = ".((int) $userCounter['type']);
1738 $this->fetchByUser($userCounter['id'], '', $filter);
1739
1740 if (empty($this->holiday)) {
1741 continue;
1742 }
1743
1744 $startOfMonth = dol_mktime(0, 0, 0, (int) $month, 1, (int) $year, 1);
1745 $endOfMonth = dol_mktime(0, 0, 0, (int) $month, (int) dol_print_date($lastUpdate, 't'), (int) $year, 1);
1746
1747 foreach ($this->holiday as $obj) {
1748 $startDate = $obj['date_debut_gmt'];
1749 $endDate = $obj['date_fin_gmt'];
1750
1751 if ($startDate <= $endOfMonth && $startDate < $startOfMonth) {
1752 $startDate = $startOfMonth;
1753 }
1754
1755 if ($startOfMonth <= $endDate && $endDate > $endOfMonth) {
1756 $endDate = $endOfMonth;
1757 }
1758
1759 $nbDaysToDeduct = (int) num_open_day($startDate, $endDate, 0, 1, $obj['halfday']);
1760
1761 if ($nbDaysToDeduct <= 0) {
1762 continue;
1763 }
1764
1765 $newSolde -= $nbDaysToDeduct;
1766
1767 // We add a log for each user when its balance gets decreased
1768 $this->addLogCP($user->id, $userCounter['rowid'], $obj['ref'].' - '.$langs->trans('HolidayConsumption'), $newSolde, $userCounter['type']);
1769
1770 $result = $this->updateSoldeCP($userCounter['rowid'], $newSolde, $userCounter['type']);
1771
1772 if ($result < 0) {
1773 $this->db->rollback();
1774 return -1;
1775 }
1776 }
1777 }
1778
1779 //updating the date of the last monthly balance update
1780 $newMonth = dol_get_next_month((int) dol_print_date($lastUpdate, '%m'), (int) dol_print_date($lastUpdate, '%Y'));
1781 $lastUpdate = dol_mktime(0, 0, 0, (int) $newMonth['month'], 1, (int) $newMonth['year']);
1782
1783 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday_config SET";
1784 $sql .= " value = '".$this->db->escape(dol_print_date($lastUpdate, '%Y%m%d%H%M%S'))."'";
1785 $sql .= " WHERE name = 'lastUpdate'";
1786 $result = $this->db->query($sql);
1787
1788 if (!$result) {
1789 $this->db->rollback();
1790 return -1;
1791 }
1792
1793 $this->db->commit();
1794
1795 $yearMonthLastUpdate = dol_print_date($lastUpdate, '%Y%m');
1796 }
1797
1798 if (!$error) {
1799 return 1;
1800 } else {
1801 return 0;
1802 }
1803 } else {
1804 // Mise à jour pour un utilisateur
1805 $nbHoliday = price2num($nbHoliday, 5);
1806
1807 $sql = "SELECT nb_holiday FROM ".MAIN_DB_PREFIX."holiday_users";
1808 $sql .= " WHERE fk_user = ".(int) $userID." AND fk_type = ".(int) $fk_type;
1809 $resql = $this->db->query($sql);
1810 if ($resql) {
1811 $num = $this->db->num_rows($resql);
1812
1813 if ($num > 0) {
1814 // Update for user
1815 $sql = "UPDATE ".MAIN_DB_PREFIX."holiday_users SET";
1816 $sql .= " nb_holiday = ".((float) $nbHoliday);
1817 $sql .= " WHERE fk_user = ".(int) $userID." AND fk_type = ".(int) $fk_type;
1818 $result = $this->db->query($sql);
1819 if (!$result) {
1820 $error++;
1821 $this->errors[] = $this->db->lasterror();
1822 }
1823 } else {
1824 // Insert for user
1825 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_users(nb_holiday, fk_user, fk_type) VALUES (";
1826 $sql .= ((float) $nbHoliday);
1827 $sql .= ", ".(int) $userID.", ".(int) $fk_type.")";
1828 $result = $this->db->query($sql);
1829 if (!$result) {
1830 $error++;
1831 $this->errors[] = $this->db->lasterror();
1832 }
1833 }
1834 } else {
1835 $this->errors[] = $this->db->lasterror();
1836 $error++;
1837 }
1838
1839 if (!$error) {
1840 return 1;
1841 } else {
1842 return -1;
1843 }
1844 }
1845 }
1846
1854 public function createCPusers($single = false, $userid = 0)
1855 {
1856 // do we have to add balance for all users ?
1857 if (!$single) {
1858 dol_syslog(get_class($this).'::createCPusers');
1859 $arrayofusers = $this->fetchUsers(false, true);
1860
1861 foreach ($arrayofusers as $users) {
1862 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_users";
1863 $sql .= " (fk_user, nb_holiday)";
1864 $sql .= " VALUES (".((int) $users['rowid'])."', '0')";
1865
1866 $resql = $this->db->query($sql);
1867 if (!$resql) {
1868 dol_print_error($this->db);
1869 }
1870 }
1871 } else {
1872 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_users";
1873 $sql .= " (fk_user, nb_holiday)";
1874 $sql .= " VALUES (".((int) $userid)."', '0')";
1875
1876 $resql = $this->db->query($sql);
1877 if (!$resql) {
1878 dol_print_error($this->db);
1879 }
1880 }
1881 }
1882
1890 public function getCPforUser($user_id, $fk_type = 0)
1891 {
1892 $sql = "SELECT nb_holiday";
1893 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_users";
1894 $sql .= " WHERE fk_user = ".(int) $user_id;
1895 if ($fk_type > 0) {
1896 $sql .= " AND fk_type = ".(int) $fk_type;
1897 }
1898
1899 dol_syslog(get_class($this).'::getCPforUser user_id='.$user_id.' type_id='.$fk_type, LOG_DEBUG);
1900 $result = $this->db->query($sql);
1901 if ($result) {
1902 $obj = $this->db->fetch_object($result);
1903 //return number_format($obj->nb_holiday,2);
1904 if ($obj) {
1905 return $obj->nb_holiday;
1906 } else {
1907 return null;
1908 }
1909 } else {
1910 return null;
1911 }
1912 }
1913
1922 public function fetchUsers($stringlist = true, $type = true, $filters = '')
1923 {
1924 global $conf;
1925
1926 dol_syslog(get_class($this)."::fetchUsers", LOG_DEBUG);
1927
1928 if ($stringlist) {
1929 if ($type) {
1930 // If user of Dolibarr
1931 $sql = "SELECT";
1932 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
1933 $sql .= " DISTINCT";
1934 }
1935 $sql .= " u.rowid";
1936 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
1937
1938 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
1939 $sql .= ", ".MAIN_DB_PREFIX."usergroup_user as ug";
1940 $sql .= " WHERE ((ug.fk_user = u.rowid";
1941 $sql .= " AND ug.entity IN (".getEntity('usergroup')."))";
1942 $sql .= " OR u.entity = 0)"; // Show always superadmin
1943 } else {
1944 $sql .= " WHERE u.entity IN (".getEntity('user').")";
1945 }
1946 $sql .= " AND u.statut > 0";
1947 $sql .= " AND u.employee = 1"; // We only want employee users for holidays
1948 if ($filters) {
1949 $sql .= $filters;
1950 }
1951
1952 $resql = $this->db->query($sql);
1953
1954 // Si pas d'erreur SQL
1955 if ($resql) {
1956 $i = 0;
1957 $num = $this->db->num_rows($resql);
1958 $stringlist = '';
1959
1960 // Boucles du listage des utilisateurs
1961 while ($i < $num) {
1962 $obj = $this->db->fetch_object($resql);
1963
1964 if ($i == 0) {
1965 $stringlist .= $obj->rowid;
1966 } else {
1967 $stringlist .= ', '.$obj->rowid;
1968 }
1969
1970 $i++;
1971 }
1972 // Retoune le tableau des utilisateurs
1973 return $stringlist;
1974 } else {
1975 // Erreur SQL
1976 $this->error = "Error ".$this->db->lasterror();
1977 return -1;
1978 }
1979 } else {
1980 // We want only list of vacation balance for user ids
1981 $sql = "SELECT DISTINCT cpu.fk_user";
1982 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_users as cpu, ".MAIN_DB_PREFIX."user as u";
1983 $sql .= " WHERE cpu.fk_user = u.rowid";
1984 if ($filters) {
1985 $sql .= $filters;
1986 }
1987
1988 $resql = $this->db->query($sql);
1989
1990 // Si pas d'erreur SQL
1991 if ($resql) {
1992 $i = 0;
1993 $num = $this->db->num_rows($resql);
1994 $stringlist = '';
1995
1996 // Boucles du listage des utilisateurs
1997 while ($i < $num) {
1998 $obj = $this->db->fetch_object($resql);
1999
2000 if ($i == 0) {
2001 $stringlist .= $obj->fk_user;
2002 } else {
2003 $stringlist .= ', '.$obj->fk_user;
2004 }
2005
2006 $i++;
2007 }
2008 // Retoune le tableau des utilisateurs
2009 return $stringlist;
2010 } else {
2011 // Erreur SQL
2012 $this->error = "Error ".$this->db->lasterror();
2013 return -1;
2014 }
2015 }
2016 } else {
2017 // Si faux donc return array
2018 // List for Dolibarr users
2019 if ($type) {
2020 // If we need users of Dolibarr
2021 $sql = "SELECT";
2022 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
2023 $sql .= " DISTINCT";
2024 }
2025 $sql .= " u.rowid, u.lastname, u.firstname, u.gender, u.photo, u.employee, u.statut as status, u.fk_user";
2026 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
2027
2028 if (isModEnabled('multicompany') && getDolGlobalString('MULTICOMPANY_TRANSVERSE_MODE')) {
2029 $sql .= ", ".MAIN_DB_PREFIX."usergroup_user as ug";
2030 $sql .= " WHERE ((ug.fk_user = u.rowid";
2031 $sql .= " AND ug.entity IN (".getEntity('usergroup')."))";
2032 $sql .= " OR u.entity = 0)"; // Show always superadmin
2033 } else {
2034 $sql .= " WHERE u.entity IN (".getEntity('user').")";
2035 }
2036
2037 $sql .= " AND u.statut > 0";
2038 $sql .= " AND u.employee = 1"; // We only want employee users for holidays
2039 if ($filters) {
2040 $sql .= $filters;
2041 }
2042
2043 $resql = $this->db->query($sql);
2044
2045 // Si pas d'erreur SQL
2046 if ($resql) {
2047 $i = 0;
2048 $tab_result = $this->holiday;
2049 $num = $this->db->num_rows($resql);
2050
2051 // Boucles du listage des utilisateurs
2052 while ($i < $num) {
2053 $obj = $this->db->fetch_object($resql);
2054
2055 $tab_result[$i]['rowid'] = (int) $obj->rowid; // rowid of user
2056 $tab_result[$i]['id'] = (int) $obj->rowid; // id of user
2057 $tab_result[$i]['name'] = $obj->lastname; // deprecated
2058 $tab_result[$i]['lastname'] = $obj->lastname;
2059 $tab_result[$i]['firstname'] = $obj->firstname;
2060 $tab_result[$i]['gender'] = $obj->gender;
2061 $tab_result[$i]['status'] = (int) $obj->status;
2062 $tab_result[$i]['employee'] = (int) $obj->employee;
2063 $tab_result[$i]['photo'] = $obj->photo;
2064 $tab_result[$i]['fk_user'] = (int) $obj->fk_user; // rowid of manager
2065 //$tab_result[$i]['type'] = $obj->type;
2066 //$tab_result[$i]['nb_holiday'] = $obj->nb_holiday;
2067
2068 $i++;
2069 }
2070 // Retoune le tableau des utilisateurs
2071 return $tab_result;
2072 } else {
2073 // Erreur SQL
2074 $this->errors[] = "Error ".$this->db->lasterror();
2075 return -1;
2076 }
2077 } else {
2078 // List of vacation balance users
2079 $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";
2080 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_users as cpu, ".MAIN_DB_PREFIX."user as u";
2081 $sql .= " WHERE cpu.fk_user = u.rowid";
2082 if ($filters) {
2083 $sql .= $filters;
2084 }
2085
2086 $resql = $this->db->query($sql);
2087
2088 // Si pas d'erreur SQL
2089 if ($resql) {
2090 $i = 0;
2091 $tab_result = $this->holiday;
2092 $num = $this->db->num_rows($resql);
2093
2094 // Boucles du listage des utilisateurs
2095 while ($i < $num) {
2096 $obj = $this->db->fetch_object($resql);
2097
2098 $tab_result[$i]['rowid'] = $obj->rowid; // rowid of user
2099 $tab_result[$i]['id'] = $obj->rowid; // id of user
2100 $tab_result[$i]['name'] = $obj->lastname; // deprecated
2101 $tab_result[$i]['lastname'] = $obj->lastname;
2102 $tab_result[$i]['firstname'] = $obj->firstname;
2103 $tab_result[$i]['gender'] = $obj->gender;
2104 $tab_result[$i]['status'] = $obj->status;
2105 $tab_result[$i]['employee'] = $obj->employee;
2106 $tab_result[$i]['photo'] = $obj->photo;
2107 $tab_result[$i]['fk_user'] = $obj->fk_user; // rowid of manager
2108
2109 $tab_result[$i]['type'] = $obj->fk_type;
2110 $tab_result[$i]['nb_holiday'] = $obj->nb_holiday;
2111
2112 $i++;
2113 }
2114 // Retoune le tableau des utilisateurs
2115 return $tab_result;
2116 } else {
2117 // Erreur SQL
2118 $this->error = "Error ".$this->db->lasterror();
2119 return -1;
2120 }
2121 }
2122 }
2123 }
2124
2125
2126 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2134 {
2135 // phpcs:enable
2136 $users_validator = array();
2137
2138 $sql = "SELECT DISTINCT ur.fk_user";
2139 $sql .= " FROM ".MAIN_DB_PREFIX."user_rights as ur, ".MAIN_DB_PREFIX."rights_def as rd";
2140 $sql .= " WHERE ur.fk_id = rd.id and rd.module = 'holiday' AND rd.perms = 'approve'"; // Permission 'Approve';
2141 $sql .= "UNION";
2142 $sql .= " SELECT DISTINCT ugu.fk_user";
2143 $sql .= " FROM ".MAIN_DB_PREFIX."usergroup_user as ugu, ".MAIN_DB_PREFIX."usergroup_rights as ur, ".MAIN_DB_PREFIX."rights_def as rd";
2144 $sql .= " WHERE ugu.fk_usergroup = ur.fk_usergroup AND ur.fk_id = rd.id and rd.module = 'holiday' AND rd.perms = 'approve'"; // Permission 'Approve';
2145 //print $sql;
2146
2147 dol_syslog(get_class($this)."::fetch_users_approver_holiday sql=".$sql);
2148 $result = $this->db->query($sql);
2149 if ($result) {
2150 $num_rows = $this->db->num_rows($result);
2151 $i = 0;
2152 while ($i < $num_rows) {
2153 $objp = $this->db->fetch_object($result);
2154 array_push($users_validator, $objp->fk_user);
2155 $i++;
2156 }
2157 return $users_validator;
2158 } else {
2159 $this->error = $this->db->lasterror();
2160 dol_syslog(get_class($this)."::fetch_users_approver_holiday Error ".$this->error, LOG_ERR);
2161 return -1;
2162 }
2163 }
2164
2165
2171 public function countActiveUsers()
2172 {
2173 $sql = "SELECT count(u.rowid) as compteur";
2174 $sql .= " FROM ".MAIN_DB_PREFIX."user as u";
2175 $sql .= " WHERE u.statut > 0";
2176
2177 $result = $this->db->query($sql);
2178 $object = $this->db->fetch_object($result);
2179
2180 return $object->compteur;
2181 }
2188 {
2189 $sql = "SELECT count(u.rowid) as compteur";
2190 $sql .= " FROM ".MAIN_DB_PREFIX."user as u LEFT OUTER JOIN ".MAIN_DB_PREFIX."holiday_users hu ON (hu.fk_user=u.rowid)";
2191 $sql .= " WHERE u.statut > 0 AND hu.fk_user IS NULL";
2192
2193 $result = $this->db->query($sql);
2194 $object = $this->db->fetch_object($result);
2195
2196 return $object->compteur;
2197 }
2198
2206 public function verifNbUsers($userDolibarrWithoutCP, $userCP)
2207 {
2208 if (empty($userCP)) {
2209 $userCP = 0;
2210 }
2211 dol_syslog(get_class($this).'::verifNbUsers userDolibarr='.$userDolibarrWithoutCP.' userCP='.$userCP);
2212 return 1;
2213 }
2214
2215
2226 public function addLogCP($fk_user_action, $fk_user_update, $label, $new_solde, $fk_type)
2227 {
2228 global $conf, $langs;
2229
2230 $error = 0;
2231
2232 $prev_solde = price2num($this->getCPforUser($fk_user_update, $fk_type), 5);
2233 $new_solde = price2num($new_solde, 5);
2234 //print "$prev_solde == $new_solde";
2235
2236 if ($prev_solde == $new_solde) {
2237 return 0;
2238 }
2239
2240 $this->db->begin();
2241
2242 // Insert request
2243 $sql = "INSERT INTO ".MAIN_DB_PREFIX."holiday_logs (";
2244 $sql .= "date_action,";
2245 $sql .= "fk_user_action,";
2246 $sql .= "fk_user_update,";
2247 $sql .= "type_action,";
2248 $sql .= "prev_solde,";
2249 $sql .= "new_solde,";
2250 $sql .= "fk_type";
2251 $sql .= ") VALUES (";
2252 $sql .= " '".$this->db->idate(dol_now())."',";
2253 $sql .= " ".((int) $fk_user_action).",";
2254 $sql .= " ".((int) $fk_user_update).",";
2255 $sql .= " '".$this->db->escape($label)."',";
2256 $sql .= " ".((float) $prev_solde).",";
2257 $sql .= " ".((float) $new_solde).",";
2258 $sql .= " ".((int) $fk_type);
2259 $sql .= ")";
2260
2261 $resql = $this->db->query($sql);
2262 if (!$resql) {
2263 $error++;
2264 $this->errors[] = "Error ".$this->db->lasterror();
2265 }
2266
2267 if (!$error) {
2268 $this->optRowid = $this->db->last_insert_id(MAIN_DB_PREFIX."holiday_logs");
2269 }
2270
2271 // Commit or rollback
2272 if ($error) {
2273 foreach ($this->errors as $errmsg) {
2274 dol_syslog(get_class($this)."::addLogCP ".$errmsg, LOG_ERR);
2275 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
2276 }
2277 $this->db->rollback();
2278 return -1 * $error;
2279 } else {
2280 $this->db->commit();
2281 return $this->optRowid;
2282 }
2283 }
2284
2292 public function fetchLog($sqlorder, $sqlwhere)
2293 {
2294 $sql = "SELECT";
2295 $sql .= " cpl.rowid,";
2296 $sql .= " cpl.date_action,";
2297 $sql .= " cpl.fk_user_action,";
2298 $sql .= " cpl.fk_user_update,";
2299 $sql .= " cpl.type_action,";
2300 $sql .= " cpl.prev_solde,";
2301 $sql .= " cpl.new_solde,";
2302 $sql .= " cpl.fk_type";
2303 $sql .= " FROM ".MAIN_DB_PREFIX."holiday_logs as cpl";
2304 $sql .= " WHERE cpl.rowid > 0"; // To avoid error with other search and criteria
2305
2306 // Filter
2307 if (!empty($sqlwhere)) {
2308 $sql .= " ".$sqlwhere;
2309 }
2310
2311 // Order
2312 if (!empty($sqlorder)) {
2313 $sql .= " ".$sqlorder;
2314 }
2315
2316 dol_syslog(get_class($this)."::fetchLog", LOG_DEBUG);
2317 $resql = $this->db->query($sql);
2318
2319 // If no error SQL
2320 if ($resql) {
2321 $i = 0;
2322 $tab_result = $this->logs;
2323 $num = $this->db->num_rows($resql);
2324
2325 // If no record
2326 if (!$num) {
2327 return 2;
2328 }
2329
2330 // Loop on result to fill the array
2331 while ($i < $num) {
2332 $obj = $this->db->fetch_object($resql);
2333
2334 $tab_result[$i]['rowid'] = $obj->rowid;
2335 $tab_result[$i]['id'] = $obj->rowid;
2336 $tab_result[$i]['date_action'] = $obj->date_action;
2337 $tab_result[$i]['fk_user_action'] = $obj->fk_user_action;
2338 $tab_result[$i]['fk_user_update'] = $obj->fk_user_update;
2339 $tab_result[$i]['type_action'] = $obj->type_action;
2340 $tab_result[$i]['prev_solde'] = $obj->prev_solde;
2341 $tab_result[$i]['new_solde'] = $obj->new_solde;
2342 $tab_result[$i]['fk_type'] = $obj->fk_type;
2343
2344 $i++;
2345 }
2346 // Retourne 1 et ajoute le tableau à la variable
2347 $this->logs = $tab_result;
2348 return 1;
2349 } else {
2350 // Erreur SQL
2351 $this->error = "Error ".$this->db->lasterror();
2352 return -1;
2353 }
2354 }
2355
2356
2364 public function getTypes($active = -1, $affect = -1)
2365 {
2366 global $mysoc;
2367
2368 $sql = "SELECT rowid, code, label, affect, delay, newbymonth";
2369 $sql .= " FROM ".MAIN_DB_PREFIX."c_holiday_types";
2370 $sql .= " WHERE (fk_country IS NULL OR fk_country = ".((int) $mysoc->country_id).')';
2371 $sql .= " AND entity IN (".getEntity('c_holiday_types').")";
2372 if ($active >= 0) {
2373 $sql .= " AND active = ".((int) $active);
2374 }
2375 if ($affect >= 0) {
2376 $sql .= " AND affect = ".((int) $affect);
2377 }
2378 $sql .= " ORDER BY sortorder";
2379
2380 $result = $this->db->query($sql);
2381 if ($result) {
2382 $num = $this->db->num_rows($result);
2383 if ($num) {
2384 $types = array();
2385 while ($obj = $this->db->fetch_object($result)) {
2386 $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);
2387 }
2388
2389 return $types;
2390 }
2391 } else {
2392 dol_print_error($this->db);
2393 }
2394
2395 return array();
2396 }
2397
2398
2405 public function info($id)
2406 {
2407 global $conf;
2408
2409 $sql = "SELECT f.rowid, f.statut as status,";
2410 $sql .= " f.date_create as datec,";
2411 $sql .= " f.tms as date_modification,";
2412 $sql .= " f.date_valid as datev,";
2413 $sql .= " f.date_approval as datea,";
2414 $sql .= " f.date_refuse as dater,";
2415 $sql .= " f.fk_user_create as fk_user_creation,";
2416 $sql .= " f.fk_user_modif as fk_user_modification,";
2417 $sql .= " f.fk_user_valid as fk_user_validation,";
2418 $sql .= " f.fk_user_approve as fk_user_approval_done,";
2419 $sql .= " f.fk_validator as fk_user_approval_expected,";
2420 $sql .= " f.fk_user_refuse as fk_user_refuse";
2421 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as f";
2422 $sql .= " WHERE f.rowid = ".((int) $id);
2423 $sql .= " AND f.entity = ".$conf->entity;
2424
2425 $resql = $this->db->query($sql);
2426 if ($resql) {
2427 if ($this->db->num_rows($resql)) {
2428 $obj = $this->db->fetch_object($resql);
2429
2430 $this->id = $obj->rowid;
2431
2432 $this->date_creation = $this->db->jdate($obj->datec);
2433 $this->date_modification = $this->db->jdate($obj->date_modification);
2434 $this->date_validation = $this->db->jdate($obj->datev);
2435 $this->date_approval = $this->db->jdate($obj->datea);
2436
2437 $this->user_creation_id = $obj->fk_user_creation;
2438 $this->user_validation_id = $obj->fk_user_validation;
2439 $this->user_modification_id = $obj->fk_user_modification;
2440
2441 if ($obj->status == Holiday::STATUS_APPROVED || $obj->status == Holiday::STATUS_CANCELED) {
2442 if ($obj->fk_user_approval_done) {
2443 $this->fk_user_approve = $obj->fk_user_approval_done;
2444 }
2445 }
2446 }
2447 $this->db->free($resql);
2448 } else {
2449 dol_print_error($this->db);
2450 }
2451 }
2452
2453
2461 public function initAsSpecimen()
2462 {
2463 global $user, $langs;
2464
2465 // Initialise parameters
2466 $this->id = 0;
2467 $this->specimen = 1;
2468
2469 $this->fk_user = $user->id;
2470 $this->description = 'SPECIMEN description';
2471 $this->date_debut = dol_now();
2472 $this->date_fin = dol_now() + (24 * 3600);
2473 $this->date_valid = dol_now();
2474 $this->fk_validator = $user->id;
2475 $this->halfday = 0;
2476 $this->fk_type = 1;
2478
2479 return 1;
2480 }
2481
2487 public function loadStateBoard()
2488 {
2489 global $user;
2490
2491 $this->nb = array();
2492
2493 $sql = "SELECT count(h.rowid) as nb";
2494 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as h";
2495 $sql .= " WHERE h.statut > 1";
2496 $sql .= " AND h.entity IN (".getEntity('holiday').")";
2497 if (!$user->hasRight('expensereport', 'readall')) {
2498 $userchildids = $user->getAllChildIds(1);
2499 $sql .= " AND (h.fk_user IN (".$this->db->sanitize(implode(',', $userchildids)).")";
2500 $sql .= " OR h.fk_validator IN (".$this->db->sanitize(implode(',', $userchildids))."))";
2501 }
2502
2503 $resql = $this->db->query($sql);
2504 if ($resql) {
2505 while ($obj = $this->db->fetch_object($resql)) {
2506 $this->nb["holidays"] = $obj->nb;
2507 }
2508 $this->db->free($resql);
2509 return 1;
2510 } else {
2511 dol_print_error($this->db);
2512 $this->error = $this->db->error();
2513 return -1;
2514 }
2515 }
2516
2517 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2524 public function load_board($user)
2525 {
2526 // phpcs:enable
2527 global $conf, $langs;
2528
2529 if ($user->socid) {
2530 return -1; // protection pour eviter appel par utilisateur externe
2531 }
2532
2533 $now = dol_now();
2534
2535 $sql = "SELECT h.rowid, h.date_debut";
2536 $sql .= " FROM ".MAIN_DB_PREFIX."holiday as h";
2537 $sql .= " WHERE h.statut = 2";
2538 $sql .= " AND h.entity IN (".getEntity('holiday').")";
2539 if (!$user->hasRight('expensereport', 'read_all')) {
2540 $userchildids = $user->getAllChildIds(1);
2541 $sql .= " AND (h.fk_user IN (".$this->db->sanitize(implode(',', $userchildids)).")";
2542 $sql .= " OR h.fk_validator IN (".$this->db->sanitize(implode(',', $userchildids))."))";
2543 }
2544
2545 $resql = $this->db->query($sql);
2546 if ($resql) {
2547 $langs->load("members");
2548
2549 $response = new WorkboardResponse();
2550 $response->warning_delay = $conf->holiday->approve->warning_delay / 60 / 60 / 24;
2551 $response->label = $langs->trans("HolidaysToApprove");
2552 $response->labelShort = $langs->trans("ToApprove");
2553 $response->url = DOL_URL_ROOT.'/holiday/list.php?search_status=2&amp;mainmenu=hrm&amp;leftmenu=holiday';
2554 $response->img = img_object('', "holiday");
2555
2556 while ($obj = $this->db->fetch_object($resql)) {
2557 $response->nbtodo++;
2558
2559 if ($this->db->jdate($obj->date_debut) < ($now - $conf->holiday->approve->warning_delay)) {
2560 $response->nbtodolate++;
2561 }
2562 }
2563
2564 return $response;
2565 } else {
2566 dol_print_error($this->db);
2567 $this->error = $this->db->error();
2568 return -1;
2569 }
2570 }
2578 public function getKanbanView($option = '', $arraydata = null)
2579 {
2580 global $langs;
2581
2582 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2583
2584 $return = '<div class="box-flex-item box-flex-grow-zero">';
2585 $return .= '<div class="info-box info-box-sm">';
2586 $return .= '<span class="info-box-icon bg-infobox-action">';
2587 $return .= img_picto('', $this->picto);
2588 $return .= '</span>';
2589 $return .= '<div class="info-box-content">';
2590 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.$this->getNomUrl().'</span>';
2591 if ($selected >= 0) {
2592 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2593 }
2594 if (property_exists($this, 'fk_type')) {
2595 $return .= '<br>';
2596 //$return .= '<span class="opacitymedium">'.$langs->trans("Type").'</span> : ';
2597 $return .= '<div class="info_box-label tdoverflowmax100" title="'.dol_escape_htmltag($arraydata['labeltype']).'">'.dol_escape_htmltag($arraydata['labeltype']).'</div>';
2598 }
2599 if (property_exists($this, 'date_debut') && property_exists($this, 'date_fin')) {
2600 $return .= '<span class="info-box-label small">'.dol_print_date($this->date_debut, 'day').'</span>';
2601 $return .= ' <span class="opacitymedium small">'.$langs->trans("To").'</span> ';
2602 $return .= '<span class="info-box-label small">'.dol_print_date($this->date_fin, 'day').'</span>';
2603 if (!empty($arraydata['nbopenedday'])) {
2604 $return .= ' ('.$arraydata['nbopenedday'].')';
2605 }
2606 }
2607 if (method_exists($this, 'getLibStatut')) {
2608 $return .= '<div class="info-box-status">'.$this->getLibStatut(3).'</div>';
2609 }
2610 $return .= '</div>';
2611 $return .= '</div>';
2612 $return .= '</div>';
2613 return $return;
2614 }
2615}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
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:459
$object ref
Definition info.php:89
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:171
dol_get_next_month($month, $year)
Return next month.
Definition date.lib.php:538
num_between_day($timestampStart, $timestampEnd, $lastday=0)
Function to return number of days between two dates (date must be UTC date !) Example: 2012-01-01 201...
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:431
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_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
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 '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
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).
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0)
Clean a string to use it as a file name.
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...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79