dolibarr 19.0.3
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 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 * or see https://www.gnu.org/
18 */
19
26require_once DOL_DOCUMENT_ROOT.'/core/modules/project/task/modules_task.php';
27
28
33{
38 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
39
40 public $prefix = 'TK';
41
45 public $error = '';
46
52 public $nom = 'Simple';
53
57 public $name = 'Simple';
58
59
66 public function info($langs)
67 {
68 global $langs;
69 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
70 }
71
72
78 public function getExample()
79 {
80 return $this->prefix."0501-0001";
81 }
82
83
91 public function canBeActivated($object)
92 {
93 global $conf, $langs, $db;
94
95 $coyymm = '';
96 $max = '';
97
98 $posindice = strlen($this->prefix) + 6;
99 $sql = "SELECT MAX(CAST(SUBSTRING(task.ref FROM ".$posindice.") AS SIGNED)) as max";
100 $sql .= " FROM ".MAIN_DB_PREFIX."projet_task AS task, ";
101 $sql .= MAIN_DB_PREFIX."projet AS project WHERE task.fk_projet=project.rowid";
102 $sql .= " AND task.ref LIKE '".$db->escape($this->prefix)."____-%'";
103 $sql .= " AND project.entity = ".$conf->entity;
104 $resql = $db->query($sql);
105 if ($resql) {
106 $row = $db->fetch_row($resql);
107 if ($row) {
108 $coyymm = substr($row[0], 0, 6);
109 $max = $row[0];
110 }
111 }
112 if (!$coyymm || preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
113 return true;
114 } else {
115 $langs->load("errors");
116 $this->error = $langs->trans('ErrorNumRefModel', $max);
117 return false;
118 }
119 }
120
121
129 public function getNextValue($objsoc, $object)
130 {
131 global $db, $conf;
132
133 // First, we get the max value
134 $posindice = strlen($this->prefix) + 6;
135 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
136 $sql .= " FROM ".MAIN_DB_PREFIX."projet_task";
137 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
138
139 $resql = $db->query($sql);
140 if ($resql) {
141 $obj = $db->fetch_object($resql);
142 if ($obj) {
143 $max = intval($obj->max);
144 } else {
145 $max = 0;
146 }
147 } else {
148 dol_syslog("mod_task_simple::getNextValue", LOG_DEBUG);
149 return -1;
150 }
151
152 $date = empty($object->date_c) ? dol_now() : $object->date_c;
153 $yymm = dol_print_date($date, "%y%m");
154
155 if ($max >= (pow(10, 4) - 1)) {
156 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
157 } else {
158 $num = sprintf("%04s", $max + 1);
159 }
160
161 dol_syslog("mod_task_simple::getNextValue return ".$this->prefix.$yymm."-".$num);
162 return $this->prefix.$yymm."-".$num;
163 }
164
165
166 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
174 public function task_get_num($objsoc = 0, $object = '')
175 {
176 return $this->getNextValue($objsoc, $object);
177 }
178}
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...
task_get_num($objsoc=0, $object='')
Return next reference not yet used as a reference.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.