dolibarr 24.0.0-beta
mod_task_simple.php
1<?php
2/* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2010 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 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
28require_once DOL_DOCUMENT_ROOT.'/core/modules/project/task/modules_task.php';
29
30
35{
40 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
41
45 public $prefix = 'TK';
46
50 public $error = '';
51
57 public $nom = 'Simple';
58
62 public $name = 'Simple';
63
64
71 public function info($langs)
72 {
73 global $langs;
74 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
75 }
76
77
83 public function getExample()
84 {
85 return $this->prefix."0501-0001";
86 }
87
88
96 public function canBeActivated($object)
97 {
98 global $conf, $langs, $db;
99
100 $coyymm = '';
101 $max = '';
102
103 $posindice = strlen($this->prefix) + 6;
104 $sql = "SELECT MAX(CAST(SUBSTRING(task.ref FROM ".$posindice.") AS SIGNED)) as max";
105 $sql .= " FROM ".MAIN_DB_PREFIX."projet_task AS task, ";
106 $sql .= MAIN_DB_PREFIX."projet AS project WHERE task.fk_projet = project.rowid";
107 $sql .= " AND task.ref LIKE '".$db->escape($this->prefix)."____-%'";
108 $sql .= " AND project.entity = ".((int) $conf->entity);
109 $resql = $db->query($sql);
110 if ($resql) {
111 $row = $db->fetch_row($resql);
112 if ($row) {
113 $coyymm = substr($row[0], 0, 6);
114 $max = $row[0];
115 }
116 }
117 if (!$coyymm || preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
118 return true;
119 } else {
120 $langs->load("errors");
121 $this->error = $langs->trans('ErrorNumRefModel', $max);
122 return false;
123 }
124 }
125
126
134 public function getNextValue($objsoc, $object)
135 {
136 global $db;
137
138 // First, we get the max value
139 $posindice = strlen($this->prefix) + 6;
140 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
141 $sql .= " FROM ".MAIN_DB_PREFIX."projet_task";
142 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
143
144 $resql = $db->query($sql);
145 if ($resql) {
146 $obj = $db->fetch_object($resql);
147 if ($obj) {
148 $max = intval($obj->max);
149 } else {
150 $max = 0;
151 }
152 } else {
153 dol_syslog("mod_task_simple::getNextValue", LOG_DEBUG);
154 return -1;
155 }
156
157 $date = empty($object->date_c) ? dol_now() : $object->date_c;
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_task_simple::getNextValue return ".$this->prefix.$yymm."-".$num);
167 return $this->prefix.$yymm."-".$num;
168 }
169}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Parent class of task reference numbering models.
Class to manage the numbering module Simple for project references.
getExample()
Return an example of numbering module values.
info($langs)
Return description of numbering module.
getNextValue($objsoc, $object)
Return next value.
canBeActivated($object)
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_now($mode='gmt')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
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.