dolibarr 19.0.3
mod_member_simple.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 = '';
46
50 public $error = '';
51
55 public $name = 'Simple';
56
60 public $code_auto = 1;
61
68 public function info($langs)
69 {
70 global $langs;
71 return $langs->trans("SimpleRefNumRefModelDesc");
72 }
73
74
80 public function getExample()
81 {
82 return "1";
83 }
84
85
93 public function canBeActivated($object)
94 {
95 global $conf, $langs, $db;
96
97 $coyymm = '';
98 $max = '';
99
100 $sql = "SELECT MAX(CAST(ref AS SIGNED)) as max";
101 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
102 $sql .= " WHERE entity = ".$conf->entity;
103 $resql = $db->query($sql);
104 if ($resql) {
105 $row = $db->fetch_row($resql);
106 if ($row) {
107 $coyymm = substr($row[0], 0, 6);
108 $max = $row[0];
109 }
110 }
111 if (!$coyymm || preg_match('/[0-9][0-9][0-9][0-9]/i', $coyymm)) {
112 return true;
113 } else {
114 $langs->load("errors");
115 $this->error = $langs->trans('ErrorNumRefModel', $max);
116 return false;
117 }
118 }
119
120
128 public function getNextValue($objsoc, $object)
129 {
130 global $conf, $db;
131
132 // the ref of a member is the rowid
133 $sql = "SELECT MAX(CAST(ref AS SIGNED)) as max";
134 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
135 $sql .= " WHERE entity = ".(int) $conf->entity;
136
137 $resql = $db->query($sql);
138 if ($resql) {
139 $obj = $db->fetch_object($resql);
140 if ($obj) {
141 $max = intval($obj->max) + 1;
142 } else {
143 $max = 1;
144 }
145 } else {
146 dol_syslog("mod_member_simple::getNextValue", LOG_DEBUG);
147 return -1;
148 }
149 $max = str_pad((string) $max, getDolGlobalInt('MEMBER_MOD_SIMPLE_LPAD'), "0", STR_PAD_LEFT);
150 return $max;
151 }
152}
Classe mere des modeles de numerotation des references de members.
Class to manage the numbering module Simple for member references.
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...
getExample()
Return an example of numbering module values.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.