dolibarr 19.0.3
mod_member_advanced.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2021 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2022 Frédéric France <frederic.france@netlogic.fr>
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/member/modules_member.class.php';
27
28
33{
38 public $version = 'dolibarr';
39
45 public $prefix = 'MEM';
46
50 public $error = '';
51
55 public $name = 'Advanced';
56
60 public $code_auto = 1;
61
68 public function info($langs)
69 {
70 global $langs;
71 return $langs->trans("AdvancedNumRefModelDesc", $this->prefix);
72 }
73
74
80 public function getExample()
81 {
82 return $this->prefix."2301-0001";
83 }
84
85
93 public function canBeActivated($object)
94 {
95 global $conf, $langs, $db;
96
97 $coyymm = '';
98 $max = '';
99
100 $posindice = strlen($this->prefix) + 6;
101 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
102 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
103 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
104 $sql .= " AND entity = ".$conf->entity;
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 return true;
115 } else {
116 $langs->load("errors");
117 $this->error = $langs->trans('ErrorNumRefModel', $max);
118 return false;
119 }
120 }
121
122
130 public function getNextValue($objsoc, $object)
131 {
132 global $db, $conf;
133
134 // First, we get the max value
135 $posindice = strlen($this->prefix) + 6;
136 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
137 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
138 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
139 $sql .= " AND entity = ".$conf->entity;
140
141 $resql = $db->query($sql);
142 if ($resql) {
143 $obj = $db->fetch_object($resql);
144 if ($obj) {
145 $max = intval($obj->max);
146 } else {
147 $max = 0;
148 }
149 } else {
150 dol_syslog("mod_member_advanced::getNextValue", LOG_DEBUG);
151 return -1;
152 }
153
154 $date = empty($object->datec) ? dol_now() : $object->datec;
155
156 $yymm = dol_print_date($date, '%y%m', 'gmt');
157
158 if ($max >= (pow(10, 4) - 1)) {
159 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
160 } else {
161 $num = sprintf("%04s", $max + 1);
162 }
163
164 dol_syslog("mod_member_advanced::getNextValue return ".$this->prefix.$yymm."-".$num, LOG_INFO);
165 return $this->prefix.$yymm."-".$num;
166 }
167}
Classe mere des modeles de numerotation des references de members.
Class to manage the numbering module Advanced for member references.
info($langs)
Return description of numbering module.
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.
getNextValue($objsoc, $object)
Return next value.
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.