dolibarr 18.0.6
mod_chequereceipt_mint.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 * or see https://www.gnu.org/
17 */
18
25require_once DOL_DOCUMENT_ROOT.'/core/modules/cheque/modules_chequereceipts.php';
26
31{
36 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
37
38 public $prefix = 'CHK';
39
43 public $error = '';
44
45 public $name = 'Mint';
46
47
53 public function info()
54 {
55 global $langs;
56 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
57 }
58
59
65 public function getExample()
66 {
67 return $this->prefix."0501-0001";
68 }
69
70
77 public function canBeActivated()
78 {
79 global $conf, $langs, $db;
80
81 $payyymm = '';
82 $max = '';
83
84 $posindice = strlen($this->prefix) + 6;
85 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
86 $sql .= " FROM ".MAIN_DB_PREFIX."bordereau_cheque";
87 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
88 $sql .= " AND entity = ".$conf->entity;
89
90 $resql = $db->query($sql);
91 if ($resql) {
92 $row = $db->fetch_row($resql);
93 if ($row) {
94 $payyymm = substr($row[0], 0, 6);
95 $max = $row[0];
96 }
97 }
98 if ($payyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $payyymm)) {
99 $langs->load("errors");
100 $this->error = $langs->trans('ErrorNumRefModel', $max);
101 return false;
102 }
103
104 return true;
105 }
106
114 public function getNextValue($objsoc, $object)
115 {
116 global $db, $conf;
117
118 // First, we get the max value
119 $posindice = strlen($this->prefix) + 6;
120 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
121 $sql .= " FROM ".MAIN_DB_PREFIX."bordereau_cheque";
122 $sql .= " WHERE ref like '".$db->escape($this->prefix)."____-%'";
123 $sql .= " AND entity = ".$conf->entity;
124
125 $resql = $db->query($sql);
126 if ($resql) {
127 $obj = $db->fetch_object($resql);
128 if ($obj) {
129 $max = intval($obj->max);
130 } else {
131 $max = 0;
132 }
133 } else {
134 dol_syslog(__METHOD__, LOG_DEBUG);
135 return -1;
136 }
137
138 //$date=time();
139 $date = $object->date_bordereau;
140 $yymm = strftime("%y%m", $date);
141
142 if ($max >= (pow(10, 4) - 1)) {
143 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
144 } else {
145 $num = sprintf("%04s", $max + 1);
146 }
147
148 dol_syslog(__METHOD__." return ".$this->prefix.$yymm."-".$num);
149 return $this->prefix.$yymm."-".$num;
150 }
151
152
153 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
161 public function chequereceipt_get_num($objsoc, $objforref)
162 {
163 // phpcs:enable
164 return $this->getNextValue($objsoc, $objforref);
165 }
166}
Cheque Receipts numbering references mother class.
Class to manage cheque receipts numbering rules Mint.
getExample()
Return an example of numbering.
getNextValue($objsoc, $object)
Return next free value.
info()
Return description of numbering module.
canBeActivated()
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
chequereceipt_get_num($objsoc, $objforref)
Return next free value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.