dolibarr 18.0.6
mod_asset_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) 2022 Frédéric France <frederic.france@netlogic.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
27require_once DOL_DOCUMENT_ROOT.'/core/modules/asset/modules_asset.php';
28
33{
38 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
39
40 public $prefix = 'ASSET';
41
45 public $error = '';
46
50 public $name = 'standard';
51
52
58 public function info()
59 {
60 global $langs;
61 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
62 }
63
64
70 public function getExample()
71 {
72 return $this->prefix."0501-0001";
73 }
74
75
83 public function canBeActivated($object)
84 {
85 global $conf, $langs, $db;
86
87 $coyymm = '';
88 $max = '';
89
90 $posindice = strlen($this->prefix) + 6;
91 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
92 $sql .= " FROM ".MAIN_DB_PREFIX."asset_asset";
93 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
94 if ($object->ismultientitymanaged == 1) {
95 $sql .= " AND entity = ".$conf->entity;
96 } elseif ($object->ismultientitymanaged == 2) {
97 // TODO
98 }
99
100 $resql = $db->query($sql);
101 if ($resql) {
102 $row = $db->fetch_row($resql);
103 if ($row) {
104 $coyymm = substr($row[0], 0, 6); $max = $row[0];
105 }
106 }
107 if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
108 $langs->load("errors");
109 $this->error = $langs->trans('ErrorNumRefModel', $max);
110 return false;
111 }
112
113 return true;
114 }
115
122 public function getNextValue($object)
123 {
124 global $db, $conf;
125
126 // first we get the max value
127 $posindice = strlen($this->prefix) + 6;
128 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
129 $sql .= " FROM ".MAIN_DB_PREFIX."asset";
130 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
131 if ($object->ismultientitymanaged == 1) {
132 $sql .= " AND entity = ".$conf->entity;
133 } elseif ($object->ismultientitymanaged == 2) {
134 // TODO
135 }
136
137 $resql = $db->query($sql);
138 if ($resql) {
139 $obj = $db->fetch_object($resql);
140 if ($obj) {
141 $max = intval($obj->max);
142 } else {
143 $max = 0;
144 }
145 } else {
146 dol_syslog("mod_asset_standard::getNextValue", LOG_DEBUG);
147 return -1;
148 }
149
150 //$date=time();
151 $date = $object->date_creation;
152 $yymm = strftime("%y%m", $date);
153
154 if ($max >= (pow(10, 4) - 1)) {
155 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
156 } else {
157 $num = sprintf("%04s", $max + 1);
158 }
159
160 dol_syslog("mod_asset_standard::getNextValue return ".$this->prefix.$yymm."-".$num);
161 return $this->prefix.$yymm."-".$num;
162 }
163}
Parent class to manage numbering of Asset.
Class to manage the Standard numbering rule for Asset.
info()
Return description of numbering module.
getNextValue($object)
Return next free value.
canBeActivated($object)
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
getExample()
Return an example of numbering.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.