dolibarr 21.0.0-alpha
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-2024 Frédéric France <frederic.france@free.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{
34
35 // variables inherited from ModeleNumRefMembers class
36 public $name = 'Simple';
37 public $version = 'dolibarr';
38
39 // variables not inherited
40
44 public $prefix = '';
45
49 public function __construct()
50 {
51 $this->code_auto = 1;
52 }
53
60 public function info($langs)
61 {
62 global $langs;
63 return $langs->trans("SimpleRefNumRefModelDesc");
64 }
65
66
72 public function getExample()
73 {
74 return "1";
75 }
76
77
85 public function canBeActivated($object)
86 {
87 global $conf, $langs, $db;
88
89 $coyymm = '';
90 $max = '';
91
92 $sql = "SELECT MAX(CAST(ref AS SIGNED)) as max";
93 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
94 $sql .= " WHERE entity = ".$conf->entity;
95 $resql = $db->query($sql);
96 if ($resql) {
97 $row = $db->fetch_row($resql);
98 if ($row) {
99 $coyymm = substr($row[0], 0, 6);
100 $max = $row[0];
101 }
102 }
103 if (!$coyymm || preg_match('/[0-9][0-9][0-9][0-9]/i', $coyymm)) {
104 return true;
105 } else {
106 $langs->load("errors");
107 $this->error = $langs->trans('ErrorNumRefModel', $max);
108 return false;
109 }
110 }
111
112
120 public function getNextValue($objsoc, $object)
121 {
122 global $conf, $db;
123
124 // the ref of a member is the rowid
125 $sql = "SELECT MAX(CAST(ref AS SIGNED)) as max";
126 $sql .= " FROM ".MAIN_DB_PREFIX."adherent";
127 $sql .= " WHERE entity = ".(int) $conf->entity;
128
129 $resql = $db->query($sql);
130 if ($resql) {
131 $obj = $db->fetch_object($resql);
132 if ($obj) {
133 $max = intval($obj->max) + 1;
134 } else {
135 $max = 1;
136 }
137 } else {
138 dol_syslog("mod_member_simple::getNextValue", LOG_DEBUG);
139 return -1;
140 }
141 $max = str_pad((string) $max, getDolGlobalInt('MEMBER_MOD_SIMPLE_LPAD'), "0", STR_PAD_LEFT);
142 return $max;
143 }
144}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class mere des modeles de numerotation des references de members.
Class to manage the numbering module Simple for member references.
__construct()
Constructor.
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.