dolibarr 24.0.0-beta
mod_propale_marbre.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2008 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2005-2012 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
28require_once DOL_DOCUMENT_ROOT.'/core/modules/propale/modules_propale.php';
29
30
35{
40 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
41
45 public $prefix = 'PR';
46
50 public $error = '';
51
55 public $position = 10;
56
60 public $name = 'Marbre';
61
62
69 public function info($langs)
70 {
71 global $langs;
72 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
73 }
74
75
81 public function getExample()
82 {
83 return $this->prefix."0501-0001";
84 }
85
86
94 public function canBeActivated($object)
95 {
96 global $conf, $langs, $db;
97
98 $pryymm = '';
99 $max = '';
100
101 $posindice = strlen($this->prefix) + 6;
102 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
103 $sql .= " FROM ".MAIN_DB_PREFIX."propal";
104 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
105 $sql .= " AND entity = ".$conf->entity;
106
107 $resql = $db->query($sql);
108 if ($resql) {
109 $row = $db->fetch_row($resql);
110 if ($row) {
111 $pryymm = substr($row[0], 0, 6);
112 $max = $row[0];
113 }
114 }
115
116 if (!$pryymm || preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $pryymm)) {
117 return true;
118 } else {
119 $langs->load("errors");
120 $this->error = $langs->trans('ErrorNumRefModel', $max);
121 return false;
122 }
123 }
124
132 public function getNextValue($objsoc, $propal)
133 {
134 global $db, $conf;
135
136 // First, we get the max value
137 $posindice = strlen($this->prefix) + 6;
138 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max"; // This is standard SQL
139 $sql .= " FROM ".MAIN_DB_PREFIX."propal";
140 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
141 $sql .= " AND entity IN (".getEntity('proposalnumber', 1, $propal).")";
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(get_class($this)."::getNextValue", LOG_DEBUG);
153 return -1;
154 }
155
156 $date = time();
157 $yymm = dol_print_date($date, "%y%m");
158
159 if ($max >= (pow(10, 4) - 1)) {
160 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
161 } else {
162 $num = sprintf("%04d", $max + 1);
163 }
164
165 dol_syslog(get_class($this)."::getNextValue return ".$this->prefix.$yymm."-".$num);
166 return $this->prefix.$yymm."-".$num;
167 }
168
177 public function getNumRef($objsoc, $objforref)
178 {
179 return $this->getNextValue($objsoc, $objforref);
180 }
181}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Parent class for numbering rules of proposals.
Class to manage business proposition rules Marbre.
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 module values.
getNumRef($objsoc, $objforref)
Return next free value.
getNextValue($objsoc, $propal)
Return next value.
info($langs)
Return description of numbering module.
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_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.