dolibarr 22.0.5
mod_evaluation_standard.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
4 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 * or see https://www.gnu.org/
20 */
21
27require_once DOL_DOCUMENT_ROOT . '/core/modules/hrm/modules_evaluation.php';
28
29
34{
39 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
40
44 public $prefix = 'EVAL';
45
49 public $error = '';
50
54 public $name = 'standard';
55
56
63 public function info($langs)
64 {
65 global $langs;
66 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
67 }
68
69
75 public function getExample()
76 {
77 return $this->prefix."0501-0001";
78 }
79
80
88 public function canBeActivated($object)
89 {
90 global $conf, $langs, $db;
91
92 $coyymm = '';
93 $max = '';
94
95 $posindice = strlen($this->prefix) + 6;
96 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
97 $sql .= " FROM ".MAIN_DB_PREFIX."hrm_evaluation";
98 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
99 if ($object->ismultientitymanaged == 1) {
100 $sql .= " AND entity = ".$conf->entity;
101 } elseif (!is_numeric($object->ismultientitymanaged)) {
102 // TODO
103 }
104
105 $resql = $db->query($sql);
106 if ($resql) {
107 $row = $db->fetch_row($resql);
108 if ($row) {
109 $coyymm = substr($row[0], 0, 6);
110 $max = $row[0];
111 }
112 }
113 if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
114 $langs->load("errors");
115 $this->error = $langs->trans('ErrorNumRefModel', $max);
116 return false;
117 }
118
119 return true;
120 }
121
128 public function getNextValue($object)
129 {
130 global $db, $conf;
131
132 // first we get the max value
133 $posindice = strlen($this->prefix) + 6;
134 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
135 $sql .= " FROM ".MAIN_DB_PREFIX."hrm_evaluation";
136 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
137 if ($object->ismultientitymanaged == 1) {
138 $sql .= " AND entity = ".$conf->entity;
139 } elseif (!is_numeric($object->ismultientitymanaged)) {
140 // TODO
141 }
142
143 $resql = $db->query($sql);
144 if ($resql) {
145 $obj = $db->fetch_object($resql);
146 if ($obj) {
147 $max = intval($obj->max);
148 } else {
149 $max = 0;
150 }
151 } else {
152 dol_syslog("mod_evaluation_standard::getNextValue", LOG_DEBUG);
153 return -1;
154 }
155
156 //$date=time();
157 $date = $object->date_creation;
158 $yymm = dol_print_date($date, "%y%m");
159
160 if ($max >= (pow(10, 4) - 1)) {
161 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
162 } else {
163 $num = sprintf("%04d", $max + 1);
164 }
165
166 dol_syslog("mod_evaluation_standard::getNextValue return ".$this->prefix.$yymm."-".$num);
167 return $this->prefix.$yymm."-".$num;
168 }
169}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:67
Parent class to manage numbering of Evaluation.
Class to manage the Standard numbering rule for HR evaluation.
getExample()
Return an example of numbering.
canBeActivated($object)
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
info($langs)
Return description of numbering module.
getNextValue($object)
Return next free 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_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79