29require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
40 public $element =
'holiday';
45 public $table_element =
'holiday';
50 public $fk_element =
'fk_holiday';
55 public $picto =
'holiday';
65 public $date_create =
'';
75 public $date_debut =
'';
80 public $date_fin =
'';
85 public $date_debut_gmt =
'';
90 public $date_fin_gmt =
'';
106 public $fk_validator;
111 public $date_valid = 0;
116 public $fk_user_valid;
121 public $date_approval;
126 public $fk_user_approve;
131 public $date_refuse = 0;
136 public $fk_user_refuse;
141 public $date_cancel = 0;
146 public $fk_user_cancel;
151 public $fk_user_create;
156 public $detail_refuse =
'';
163 public $holiday = array();
164 public $events = array();
165 public $logs = array();
171 public $optName =
'';
175 public $optValue =
'';
179 public $optRowid = 0;
212 $this->ismultientitymanaged = 0;
225 global $langs, $conf;
226 $langs->load(
"order");
229 $conf->global->HOLIDAY_ADDON =
'mod_holiday_madonna';
239 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
240 foreach ($dirmodels as $reldir) {
244 $mybool = ((bool) @include_once $dir.$file) || $mybool;
252 $obj =
new $classname();
253 '@phan-var-force ModelNumRefHolidays $obj';
254 $numref = $obj->getNextValue($objsoc, $this);
259 $this->error = $obj->error;
264 print $langs->trans(
"Error").
" ".$langs->trans(
"Error_HOLIDAY_ADDON_NotDefined");
288 $this->db->rollback();
300 public function create($user, $notrigger = 0)
308 if (empty($this->fk_user) || !is_numeric($this->fk_user) || $this->fk_user < 0) {
309 $this->error =
"ErrorBadParameterFkUser";
312 if (empty($this->fk_validator) || !is_numeric($this->fk_validator) || $this->fk_validator < 0) {
313 $this->error =
"ErrorBadParameterFkValidator";
316 if (empty($this->fk_type) || !is_numeric($this->fk_type) || $this->fk_type < 0) {
317 $this->error =
"ErrorBadParameterFkType";
322 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday(";
325 $sql .=
"date_create,";
326 $sql .=
"description,";
327 $sql .=
"date_debut,";
331 $sql .=
"fk_validator,";
333 $sql .=
"fk_user_create,";
335 $sql .=
") VALUES (";
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).
",";
344 $sql .=
" ".((int) $this->fk_validator).
",";
345 $sql .=
" ".((int) $this->fk_type).
",";
346 $sql .=
" ".((int) $user->id).
",";
347 $sql .=
" ".((int) $conf->entity);
352 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
353 $resql = $this->db->query($sql);
356 $this->errors[] =
"Error ".$this->db->lasterror();
360 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"holiday");
364 $initialref =
'(PROV'.$this->id.
')';
365 if (!empty($this->
ref)) {
366 $initialref = $this->ref;
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;
380 if (!$error && !$notrigger) {
394 foreach ($this->errors as $errmsg) {
395 dol_syslog(get_class($this).
"::create ".$errmsg, LOG_ERR);
396 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
398 $this->db->rollback();
414 public function fetch($id, $ref =
'')
417 $sql .=
" cp.rowid,";
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";
443 $sql .=
" WHERE cp.rowid = ".((int) $id);
445 $sql .=
" WHERE cp.ref = '".$this->db->escape($ref).
"'";
448 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
449 $resql = $this->db->query($sql);
451 if ($this->db->num_rows($resql)) {
452 $obj = $this->db->fetch_object($resql);
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);
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;
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;
489 $this->db->free($resql);
493 $this->error =
"Error ".$this->db->lasterror();
510 $sql .=
" cp.rowid,";
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,";
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,";
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";
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";
547 $sql .=
" AND cp.fk_user IN (".$this->db->sanitize($user_id).
")";
550 if (!empty($filter)) {
555 if (!empty($order)) {
559 dol_syslog(get_class($this).
"::fetchByUser", LOG_DEBUG);
560 $resql = $this->db->query($sql);
565 $tab_result = $this->holiday;
566 $num = $this->db->num_rows($resql);
575 $obj = $this->db->fetch_object($resql);
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);
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;
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;
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;
621 $this->holiday = $tab_result;
625 $this->error =
"Error ".$this->db->lasterror();
640 $sql .=
" cp.rowid,";
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,";
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,";
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";
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 ";
679 if (!empty($filter)) {
684 if (!empty($order)) {
688 dol_syslog(get_class($this).
"::fetchAll", LOG_DEBUG);
689 $resql = $this->db->query($sql);
694 $tab_result = $this->holiday;
695 $num = $this->db->num_rows($resql);
704 $obj = $this->db->fetch_object($resql);
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);
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;
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;
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;
750 $this->holiday = $tab_result;
754 $this->error =
"Error ".$this->db->lasterror();
767 public function validate($user =
null, $notrigger = 0)
769 global $conf, $langs;
770 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
773 $checkBalance =
getDictionaryValue(
'c_holiday_types',
'block_if_negative', $this->fk_type,
true);
775 if ($checkBalance > 0) {
776 $balance = $this->
getCPforUser($this->fk_user, $this->fk_type);
779 $this->error =
'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
785 if (!$error && (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref) || $this->
ref == $this->
id)) {
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).
",";
799 $this->error =
'Property status must be a numeric value';
802 $sql .=
" ref = '".$this->db->escape($num).
"'";
803 $sql .=
" WHERE rowid = ".((int) $this->
id);
807 dol_syslog(get_class($this).
"::validate", LOG_DEBUG);
808 $resql = $this->db->query($sql);
811 $this->errors[] =
"Error ".$this->db->lasterror();
817 $result = $this->
call_trigger(
'HOLIDAY_VALIDATE', $user);
826 $this->oldref = $this->ref;
829 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
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);
836 $this->error = $this->db->lasterror();
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);
843 $this->error = $this->db->lasterror();
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)) {
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);
872 foreach ($this->errors as $errmsg) {
873 dol_syslog(get_class($this).
"::validate ".$errmsg, LOG_ERR);
874 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
876 $this->db->rollback();
892 public function approve($user =
null, $notrigger = 0)
896 $checkBalance =
getDictionaryValue(
'c_holiday_types',
'block_if_negative', $this->fk_type,
true);
898 if ($checkBalance > 0) {
899 $balance = $this->
getCPforUser($this->fk_user, $this->fk_type);
902 $this->error =
'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
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).
"',";
915 if (!empty($this->date_fin)) {
916 $sql .=
" date_fin = '".$this->db->idate($this->date_fin).
"',";
920 $sql .=
" halfday = ".((int) $this->halfday).
",";
921 if (!empty($this->
status) && is_numeric($this->
status)) {
922 $sql .=
" statut = ".((int) $this->
status).
",";
926 if (!empty($this->fk_validator)) {
927 $sql .=
" fk_validator = ".((int) $this->fk_validator).
",";
931 if (!empty($this->date_valid)) {
932 $sql .=
" date_valid = '".$this->db->idate($this->date_valid).
"',";
934 $sql .=
" date_valid = NULL,";
936 if (!empty($this->fk_user_valid)) {
937 $sql .=
" fk_user_valid = ".((int) $this->fk_user_valid).
",";
939 $sql .=
" fk_user_valid = NULL,";
941 if (!empty($this->date_approval)) {
942 $sql .=
" date_approval = '".$this->db->idate($this->date_approval).
"',";
944 $sql .=
" date_approval = NULL,";
946 if (!empty($this->fk_user_approve)) {
947 $sql .=
" fk_user_approve = ".((int) $this->fk_user_approve).
",";
949 $sql .=
" fk_user_approve = NULL,";
951 if (!empty($this->date_refuse)) {
952 $sql .=
" date_refuse = '".$this->db->idate($this->date_refuse).
"',";
954 $sql .=
" date_refuse = NULL,";
956 if (!empty($this->fk_user_refuse)) {
957 $sql .=
" fk_user_refuse = ".((int) $this->fk_user_refuse).
",";
959 $sql .=
" fk_user_refuse = NULL,";
961 if (!empty($this->date_cancel)) {
962 $sql .=
" date_cancel = '".$this->db->idate($this->date_cancel).
"',";
964 $sql .=
" date_cancel = NULL,";
966 if (!empty($this->fk_user_cancel)) {
967 $sql .=
" fk_user_cancel = ".((int) $this->fk_user_cancel).
",";
969 $sql .=
" fk_user_cancel = NULL,";
971 if (!empty($this->detail_refuse)) {
972 $sql .=
" detail_refuse = '".$this->db->escape($this->detail_refuse).
"'";
974 $sql .=
" detail_refuse = NULL";
976 $sql .=
" WHERE rowid = ".((int) $this->
id);
980 dol_syslog(get_class($this).
"::approve", LOG_DEBUG);
981 $resql = $this->db->query($sql);
984 $this->errors[] =
"Error ".$this->db->lasterror();
990 $result = $this->
call_trigger(
'HOLIDAY_APPROVE', $user);
1000 foreach ($this->errors as $errmsg) {
1001 dol_syslog(get_class($this).
"::approve ".$errmsg, LOG_ERR);
1002 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1004 $this->db->rollback();
1007 $this->db->commit();
1019 public function update($user =
null, $notrigger = 0)
1021 global $conf, $langs;
1024 $checkBalance =
getDictionaryValue(
'c_holiday_types',
'block_if_negative', $this->fk_type,
true);
1026 if ($checkBalance > 0 && $this->
status != self::STATUS_DRAFT) {
1027 $balance = $this->
getCPforUser($this->fk_user, $this->fk_type);
1030 $this->error =
'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
1036 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday SET";
1038 $sql .=
" description= '".$this->db->escape($this->
description).
"',";
1040 if (!empty($this->date_debut)) {
1041 $sql .=
" date_debut = '".$this->db->idate($this->date_debut).
"',";
1045 if (!empty($this->date_fin)) {
1046 $sql .=
" date_fin = '".$this->db->idate($this->date_fin).
"',";
1050 $sql .=
" halfday = ".((int) $this->halfday).
",";
1051 if (!empty($this->
status) && is_numeric($this->
status)) {
1052 $sql .=
" statut = ".((int) $this->
status).
",";
1056 if (!empty($this->fk_validator)) {
1057 $sql .=
" fk_validator = '".$this->db->escape($this->fk_validator).
"',";
1061 if (!empty($this->date_valid)) {
1062 $sql .=
" date_valid = '".$this->db->idate($this->date_valid).
"',";
1064 $sql .=
" date_valid = NULL,";
1066 if (!empty($this->fk_user_valid)) {
1067 $sql .=
" fk_user_valid = ".((int) $this->fk_user_valid).
",";
1069 $sql .=
" fk_user_valid = NULL,";
1071 if (!empty($this->date_approval)) {
1072 $sql .=
" date_approval = '".$this->db->idate($this->date_approval).
"',";
1074 $sql .=
" date_approval = NULL,";
1076 if (!empty($this->fk_user_approve)) {
1077 $sql .=
" fk_user_approve = ".((int) $this->fk_user_approve).
",";
1079 $sql .=
" fk_user_approve = NULL,";
1081 if (!empty($this->date_refuse)) {
1082 $sql .=
" date_refuse = '".$this->db->idate($this->date_refuse).
"',";
1084 $sql .=
" date_refuse = NULL,";
1086 if (!empty($this->fk_user_refuse)) {
1087 $sql .=
" fk_user_refuse = ".((int) $this->fk_user_refuse).
",";
1089 $sql .=
" fk_user_refuse = NULL,";
1091 if (!empty($this->date_cancel)) {
1092 $sql .=
" date_cancel = '".$this->db->idate($this->date_cancel).
"',";
1094 $sql .=
" date_cancel = NULL,";
1096 if (!empty($this->fk_user_cancel)) {
1097 $sql .=
" fk_user_cancel = ".((int) $this->fk_user_cancel).
",";
1099 $sql .=
" fk_user_cancel = NULL,";
1101 if (!empty($this->detail_refuse)) {
1102 $sql .=
" detail_refuse = '".$this->db->escape($this->detail_refuse).
"'";
1104 $sql .=
" detail_refuse = NULL";
1107 $sql .=
" WHERE rowid = ".((int) $this->
id);
1111 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
1112 $resql = $this->db->query($sql);
1115 $this->errors[] =
"Error ".$this->db->lasterror();
1128 $result = $this->
call_trigger(
'HOLIDAY_MODIFY', $user);
1138 foreach ($this->errors as $errmsg) {
1139 dol_syslog(get_class($this).
"::update ".$errmsg, LOG_ERR);
1140 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1142 $this->db->rollback();
1145 $this->db->commit();
1158 public function delete($user, $notrigger = 0)
1160 global $conf, $langs;
1163 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"holiday";
1164 $sql .=
" WHERE rowid=".((int) $this->
id);
1168 dol_syslog(get_class($this).
"::delete", LOG_DEBUG);
1169 $resql = $this->db->query($sql);
1172 $this->errors[] =
"Error ".$this->db->lasterror();
1178 $result = $this->
call_trigger(
'HOLIDAY_DELETE', $user);
1188 foreach ($this->errors as $errmsg) {
1189 dol_syslog(get_class($this).
"::delete ".$errmsg, LOG_ERR);
1190 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1192 $this->db->rollback();
1195 $this->db->commit();
1217 foreach ($this->holiday as $infos_CP) {
1228 if ($halfday == 0) {
1229 if ($dateStart >= $infos_CP[
'date_debut'] && $dateStart <= $infos_CP[
'date_fin']) {
1232 if ($dateEnd <= $infos_CP[
'date_fin'] && $dateEnd >= $infos_CP[
'date_debut']) {
1235 } elseif ($halfday == -1) {
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))) {
1242 if ($dateEnd <= $infos_CP[
'date_fin'] && $dateEnd >= $infos_CP[
'date_debut']) {
1243 if ($dateStart < $dateEnd) {
1246 if ($dateEnd < $infos_CP[
'date_fin'] || in_array($infos_CP[
'halfday'], array(0, -1))) {
1250 } elseif ($halfday == 1) {
1252 if ($dateStart >= $infos_CP[
'date_debut'] && $dateStart <= $infos_CP[
'date_fin']) {
1253 if ($dateStart < $dateEnd) {
1256 if ($dateStart > $infos_CP[
'date_debut'] || in_array($infos_CP[
'halfday'], array(0, 1))) {
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))) {
1265 } elseif ($halfday == 2) {
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))) {
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))) {
1278 dol_print_error(
null,
'Bad value of parameter halfday when calling function verifDateHolidayCP');
1297 $isavailablemorning =
true;
1298 $isavailableafternoon =
true;
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).
")";
1310 $resql = $this->db->query($sql);
1312 $num_rows = $this->db->num_rows($resql);
1313 if ($num_rows > 0) {
1314 $arrayofrecord = array();
1316 while ($i < $num_rows) {
1317 $obj = $this->db->fetch_object($resql);
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);
1325 $isavailablemorning =
true;
1326 foreach ($arrayofrecord as $record) {
1327 if ($timestamp == $record[
'date_start'] && $record[
'halfday'] == 2) {
1330 if ($timestamp == $record[
'date_start'] && $record[
'halfday'] == -1) {
1333 $isavailablemorning =
false;
1336 $isavailableafternoon =
true;
1337 foreach ($arrayofrecord as $record) {
1338 if ($timestamp == $record[
'date_end'] && $record[
'halfday'] == 2) {
1341 if ($timestamp == $record[
'date_end'] && $record[
'halfday'] == 1) {
1344 $isavailableafternoon =
false;
1352 $result = array(
'morning' => $isavailablemorning,
'afternoon' => $isavailableafternoon);
1353 if (!$isavailablemorning) {
1354 $result[
'morning_reason'] =
'leave_request';
1356 if (!$isavailableafternoon) {
1357 $result[
'afternoon_reason'] =
'leave_request';
1372 $langs->load(
'holiday');
1373 $nofetch = !empty($params[
'nofetch']);
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);
1380 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
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);
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']);
1389 $datas[
'type'] =
'<br><b>'.$langs->trans(
"Type") .
':</b> ' . $labeltoshow;
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")
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') .
' <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') .
' <span class="opacitymedium">'.$langs->trans($listhalfday[$endhalfday]).
'</span>';
1415 public function getNomUrl($withpicto = 0, $save_lastsearch_value = -1, $notooltip = 0, $morecss =
'')
1417 global $conf, $langs, $hookmanager;
1419 if (!empty($conf->dol_no_mouse_hover)) {
1426 'objecttype' => $this->element,
1429 $classfortooltip =
'classfortooltip';
1432 $classfortooltip =
'classforajaxtooltip';
1433 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
1439 $url = DOL_URL_ROOT.
'/holiday/card.php?id='.$this->id;
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;
1448 if ($add_save_lastsearch_values) {
1449 $url .=
'&save_lastsearch_values=1';
1454 if (empty($notooltip)) {
1456 $label = $langs->trans(
"ShowMyObject");
1457 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
1459 $linkclose .= ($label ?
' title="'.dol_escape_htmltag($label, 1).
'"' :
' title="tocomplete"');
1460 $linkclose .= $dataparams.
' class="'.$classfortooltip.($morecss ?
' '.$morecss :
'').
'"';
1462 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
1465 $linkstart =
'<a href="'.$url.
'"';
1466 $linkstart .= $linkclose.
'>';
1469 $result .= $linkstart;
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);
1474 if ($withpicto != 2) {
1475 $result .= $this->ref;
1477 $result .= $linkend;
1480 $hookmanager->initHooks(array($this->element .
'dao'));
1481 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
1482 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1484 $result = $hookmanager->resPrint;
1486 $result .= $hookmanager->resPrint;
1512 public function LibStatut($status, $mode = 0, $startdate =
'')
1517 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
1525 $this->labelStatusShort[
self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'DraftCP');
1533 $statusType =
'status6';
1534 if (!empty($startdate) && $startdate >=
dol_now()) {
1535 $statusType =
'status4';
1536 $params = array(
'tooltip' => $this->labelStatus[$status].
' - '.$langs->trans(
"Forthcoming"));
1538 if ($status == self::STATUS_DRAFT) {
1539 $statusType =
'status0';
1541 if ($status == self::STATUS_VALIDATED) {
1542 $statusType =
'status1';
1544 if ($status == self::STATUS_CANCELED) {
1545 $statusType =
'status9';
1547 if ($status == self::STATUS_REFUSED) {
1548 $statusType =
'status9';
1551 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode,
'', $params);
1563 public function selectStatutCP($selected = 0, $htmlname =
'select_statut', $morecss =
'minwidth125')
1568 $name = array(
'DraftCP',
'ToReviewCP',
'ApprovedCP',
'CancelCP',
'RefuseCP');
1569 $nb = count($name) + 1;
1572 $out =
'<select name="'.$htmlname.
'" id="'.$htmlname.
'" class="flat'.($morecss ?
' '.$morecss :
'').
'">'.
"\n";
1573 $out .=
'<option value="-1"> </option>'.
"\n";
1576 for ($i = 1; $i < $nb; $i++) {
1577 if ($i == $selected) {
1578 $out .=
'<option value="'.$i.
'" selected>'.$langs->trans($name[$i - 1]).
'</option>'.
"\n";
1580 $out .=
'<option value="'.$i.
'">'.$langs->trans($name[$i - 1]).
'</option>'.
"\n";
1584 $out .=
"</select>\n";
1587 $out .=
ajax_combobox($htmlname, array(), 0, 0,
'resolve', ($showempty < 0 ? (
string) $showempty :
'-1'), $morecss);
1601 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday_config SET";
1602 $sql .=
" value = '".$this->db->escape($value).
"'";
1603 $sql .=
" WHERE name = '".$this->db->escape($name).
"'";
1605 dol_syslog(get_class($this).
'::updateConfCP name='.$name, LOG_DEBUG);
1606 $result = $this->db->query($sql);
1624 $sql =
"SELECT value";
1625 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_config";
1626 $sql .=
" WHERE name = '".$this->db->escape($name).
"'";
1628 dol_syslog(get_class($this).
'::getConfCP name='.$name.
' createifnotfound='.$createifnotfound, LOG_DEBUG);
1629 $result = $this->db->query($sql);
1632 $obj = $this->db->fetch_object($result);
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);
1640 return $createifnotfound;
1642 $this->error = $this->db->lasterror();
1653 $this->error = $this->db->lasterror();
1668 global $user, $langs, $conf;
1672 if (empty($userID) && empty($nbHoliday) && empty($fk_type)) {
1673 $langs->load(
"holiday");
1689 while ($yearMonthLastUpdate < $yearMonthNow) {
1695 $users = $this->
fetchUsers(
false,
false,
' AND u.statut > 0');
1696 $nbUser = count($users);
1698 $typeleaves = $this->
getTypes(1, 1);
1701 foreach ($users as $userCounter) {
1702 $nbDaysToAdd = (isset($typeleaves[$userCounter[
'type']][
'newbymonth']) ? $typeleaves[$userCounter[
'type']][
'newbymonth'] : 0);
1703 if (empty($nbDaysToAdd)) {
1707 dol_syslog(
"We update leave type id ".$userCounter[
'type'].
" for user id ".$userCounter[
'rowid'], LOG_DEBUG);
1709 $nowHoliday = (float) $userCounter[
'nb_holiday'];
1710 $newSolde = $nowHoliday + $nbDaysToAdd;
1713 $this->
addLogCP($user->id, $userCounter[
'rowid'], $langs->trans(
'HolidayMonthlyCredit'), $newSolde, $userCounter[
'type']);
1715 $result = $this->
updateSoldeCP($userCounter[
'rowid'], $newSolde, $userCounter[
'type']);
1718 $this->db->rollback();
1722 if (empty($decrease)) {
1727 $filter =
" AND cp.statut = ".((int) self::STATUS_APPROVED);
1730 $filter .=
" AND cp.fk_type = ".((int) $userCounter[
'type']);
1731 $this->
fetchByUser($userCounter[
'id'],
'', $filter);
1733 if (empty($this->holiday)) {
1737 $startOfMonth =
dol_mktime(0, 0, 0, (
int) $month, 1, (
int) $year, 1);
1740 foreach ($this->holiday as $obj) {
1741 $startDate = $obj[
'date_debut_gmt'];
1742 $endDate = $obj[
'date_fin_gmt'];
1744 if ($startDate <= $endOfMonth && $startDate < $startOfMonth) {
1745 $startDate = $startOfMonth;
1748 if ($startOfMonth <= $endDate && $endDate > $endOfMonth) {
1749 $endDate = $endOfMonth;
1752 $nbDaysToDeduct = (int)
num_open_day($startDate, $endDate, 0, 1, $obj[
'halfday']);
1754 if ($nbDaysToDeduct <= 0) {
1758 $newSolde -= $nbDaysToDeduct;
1761 $this->
addLogCP($user->id, $userCounter[
'rowid'], $obj[
'ref'].
' - '.$langs->trans(
'HolidayConsumption'), $newSolde, $userCounter[
'type']);
1763 $result = $this->
updateSoldeCP($userCounter[
'rowid'], $newSolde, $userCounter[
'type']);
1766 $this->db->rollback();
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);
1781 $this->db->rollback();
1785 $this->db->commit();
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);
1803 $num = $this->db->num_rows($resql);
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);
1813 $this->errors[] = $this->db->lasterror();
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);
1823 $this->errors[] = $this->db->lasterror();
1827 $this->errors[] = $this->db->lasterror();
1850 dol_syslog(get_class($this).
'::createCPusers');
1851 $arrayofusers = $this->
fetchUsers(
false,
true);
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')";
1858 $resql = $this->db->query($sql);
1864 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday_users";
1865 $sql .=
" (fk_user, nb_holiday)";
1866 $sql .=
" VALUES (".((int) $userid).
"', '0')";
1868 $resql = $this->db->query($sql);
1884 $sql =
"SELECT nb_holiday";
1885 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_users";
1886 $sql .=
" WHERE fk_user = ".(int) $user_id;
1888 $sql .=
" AND fk_type = ".(int) $fk_type;
1891 dol_syslog(get_class($this).
'::getCPforUser user_id='.$user_id.
' type_id='.$fk_type, LOG_DEBUG);
1892 $result = $this->db->query($sql);
1894 $obj = $this->db->fetch_object($result);
1897 return $obj->nb_holiday;
1914 public function fetchUsers($stringlist =
true, $type =
true, $filters =
'')
1918 dol_syslog(get_class($this).
"::fetchUsers", LOG_DEBUG);
1924 if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICOMPANY_TRANSVERSE_MODE')) {
1925 $sql .=
" DISTINCT";
1928 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user as u";
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)";
1936 $sql .=
" WHERE u.entity IN (".getEntity(
'user').
")";
1938 $sql .=
" AND u.statut > 0";
1939 $sql .=
" AND u.employee = 1";
1944 $resql = $this->db->query($sql);
1949 $num = $this->db->num_rows($resql);
1954 $obj = $this->db->fetch_object($resql);
1957 $stringlist .= $obj->rowid;
1959 $stringlist .=
', '.$obj->rowid;
1968 $this->error =
"Error ".$this->db->lasterror();
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";
1980 $resql = $this->db->query($sql);
1985 $num = $this->db->num_rows($resql);
1990 $obj = $this->db->fetch_object($resql);
1993 $stringlist .= $obj->fk_user;
1995 $stringlist .=
', '.$obj->fk_user;
2004 $this->error =
"Error ".$this->db->lasterror();
2014 if (isModEnabled(
'multicompany') &&
getDolGlobalString(
'MULTICOMPANY_TRANSVERSE_MODE')) {
2015 $sql .=
" DISTINCT";
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";
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)";
2026 $sql .=
" WHERE u.entity IN (".getEntity(
'user').
")";
2029 $sql .=
" AND u.statut > 0";
2030 $sql .=
" AND u.employee = 1";
2035 $resql = $this->db->query($sql);
2040 $tab_result = $this->holiday;
2041 $num = $this->db->num_rows($resql);
2045 $obj = $this->db->fetch_object($resql);
2047 $tab_result[$i][
'rowid'] = (int) $obj->rowid;
2048 $tab_result[$i][
'id'] = (int) $obj->rowid;
2049 $tab_result[$i][
'name'] = $obj->lastname;
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;
2066 $this->errors[] =
"Error ".$this->db->lasterror();
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";
2078 $resql = $this->db->query($sql);
2083 $tab_result = $this->holiday;
2084 $num = $this->db->num_rows($resql);
2088 $obj = $this->db->fetch_object($resql);
2090 $tab_result[$i][
'rowid'] = $obj->rowid;
2091 $tab_result[$i][
'id'] = $obj->rowid;
2092 $tab_result[$i][
'name'] = $obj->lastname;
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;
2101 $tab_result[$i][
'type'] = $obj->fk_type;
2102 $tab_result[$i][
'nb_holiday'] = $obj->nb_holiday;
2110 $this->error =
"Error ".$this->db->lasterror();
2128 $users_validator = array();
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'";
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'";
2139 dol_syslog(get_class($this).
"::fetch_users_approver_holiday sql=".$sql);
2140 $result = $this->db->query($sql);
2142 $num_rows = $this->db->num_rows($result);
2144 while ($i < $num_rows) {
2145 $objp = $this->db->fetch_object($result);
2146 array_push($users_validator, $objp->fk_user);
2149 return $users_validator;
2151 $this->error = $this->db->lasterror();
2152 dol_syslog(get_class($this).
"::fetch_users_approver_holiday Error ".$this->error, LOG_ERR);
2165 $sql =
"SELECT count(u.rowid) as compteur";
2166 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user as u";
2167 $sql .=
" WHERE u.statut > 0";
2169 $result = $this->db->query($sql);
2170 $object = $this->db->fetch_object($result);
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";
2185 $result = $this->db->query($sql);
2186 $object = $this->db->fetch_object($result);
2200 if (empty($userCP)) {
2203 dol_syslog(get_class($this).
'::verifNbUsers userDolibarr='.$userDolibarrWithoutCP.
' userCP='.$userCP);
2218 public function addLogCP($fk_user_action, $fk_user_update, $label, $new_solde, $fk_type)
2220 global $conf, $langs;
2228 if ($prev_solde == $new_solde) {
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,";
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);
2253 $resql = $this->db->query($sql);
2256 $this->errors[] =
"Error ".$this->db->lasterror();
2260 $this->optRowid = $this->db->last_insert_id(MAIN_DB_PREFIX.
"holiday_logs");
2265 foreach ($this->errors as $errmsg) {
2266 dol_syslog(get_class($this).
"::addLogCP ".$errmsg, LOG_ERR);
2267 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
2269 $this->db->rollback();
2272 $this->db->commit();
2273 return $this->optRowid;
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";
2299 if (!empty($sqlwhere)) {
2300 $sql .=
" ".$sqlwhere;
2304 if (!empty($sqlorder)) {
2305 $sql .=
" ".$sqlorder;
2308 dol_syslog(get_class($this).
"::fetchLog", LOG_DEBUG);
2309 $resql = $this->db->query($sql);
2314 $tab_result = $this->logs;
2315 $num = $this->db->num_rows($resql);
2324 $obj = $this->db->fetch_object($resql);
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;
2339 $this->logs = $tab_result;
2343 $this->error =
"Error ".$this->db->lasterror();
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').
")";
2365 $sql .=
" AND active = ".((int) $active);
2368 $sql .=
" AND affect = ".((int) $affect);
2370 $sql .=
" ORDER BY sortorder";
2372 $result = $this->db->query($sql);
2374 $num = $this->db->num_rows($result);
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);
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;
2417 $resql = $this->db->query($sql);
2419 if ($this->db->num_rows($resql)) {
2420 $obj = $this->db->fetch_object($resql);
2422 $this->
id = $obj->rowid;
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);
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;
2434 if ($obj->fk_user_approval_done) {
2435 $this->fk_user_approve = $obj->fk_user_approval_done;
2439 $this->db->free($resql);
2455 global $user, $langs;
2459 $this->specimen = 1;
2461 $this->fk_user = $user->id;
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;
2483 $this->nb = array();
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)).
"))";
2495 $resql = $this->db->query($sql);
2497 while ($obj = $this->db->fetch_object($resql)) {
2498 $this->nb[
"holidays"] = $obj->nb;
2500 $this->db->free($resql);
2504 $this->error = $this->db->error();
2519 global $conf, $langs;
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)).
"))";
2537 $resql = $this->db->query($sql);
2539 $langs->load(
"members");
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&mainmenu=hrm&leftmenu=holiday';
2548 while ($obj = $this->db->fetch_object($resql)) {
2549 $response->nbtodo++;
2551 if ($this->db->jdate($obj->date_debut) < ($now - $conf->holiday->approve->warning_delay)) {
2552 $response->nbtodolate++;
2559 $this->error = $this->db->error();
2574 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
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">';
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"' :
'').
'>';
2586 if (property_exists($this,
'fk_type')) {
2589 $return .=
'<div class="info_box-label tdoverflowmax100" title="'.dol_escape_htmltag($arraydata[
'labeltype']).
'">'.
dol_escape_htmltag($arraydata[
'labeltype']).
'</div>';
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'].
')';
2599 if (method_exists($this,
'getLibStatut')) {
2600 $return .=
'<div class="info-box-status">'.$this->getLibStatut(3).
'</div>';
2602 $return .=
'</div>';
2603 $return .=
'</div>';
2604 $return .=
'</div>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
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...
dol_get_next_month($month, $year)
Return next month.
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...
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.
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...