dolibarr 20.0.0
mod_supplier_payment_bronan.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
27require_once DOL_DOCUMENT_ROOT.'/core/modules/supplier_payment/modules_supplier_payment.php';
28
33{
38 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
39
40 public $prefix = 'SPAY';
41
45 public $error = '';
46
52 public $nom = 'Bronan';
53
57 public $name = 'Bronan';
58
59
66 public function info($langs)
67 {
68 global $langs;
69 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
70 }
71
72
78 public function getExample()
79 {
80 return $this->prefix."0501-0001";
81 }
82
83
91 public function canBeActivated($object)
92 {
93 global $conf, $langs, $db;
94
95 $payyymm = '';
96 $max = '';
97
98 $posindice = strlen($this->prefix) + 6;
99 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
100 $sql .= " FROM ".MAIN_DB_PREFIX."paiementfourn";
101 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
102 $sql .= " AND entity = ".$conf->entity;
103
104 $resql = $db->query($sql);
105 if ($resql) {
106 $row = $db->fetch_row($resql);
107 if ($row) {
108 $payyymm = substr($row[0], 0, 6);
109 $max = $row[0];
110 }
111 }
112 if ($payyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $payyymm)) {
113 $langs->load("errors");
114 $this->error = $langs->trans('ErrorNumRefModel', $max);
115 return false;
116 }
117
118 return true;
119 }
120
128 public function getNextValue($objsoc, $object)
129 {
130 global $db, $conf;
131
132 // First, we get the max value
133 $posindice = strlen($this->prefix) + 6;
134 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
135 $sql .= " FROM ".MAIN_DB_PREFIX."paiementfourn";
136 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
137 $sql .= " AND entity = ".$conf->entity;
138
139 $resql = $db->query($sql);
140 if ($resql) {
141 $obj = $db->fetch_object($resql);
142 if ($obj) {
143 $max = intval($obj->max);
144 } else {
145 $max = 0;
146 }
147 } else {
148 dol_syslog(__METHOD__, LOG_DEBUG);
149 return -1;
150 }
151
152 //$date=time();
153 $date = $object->datepaye;
154 $yymm = dol_print_date($date, "%y%m");
155
156 if ($max >= (pow(10, 4) - 1)) {
157 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
158 } else {
159 $num = sprintf("%04d", $max + 1);
160 }
161
162 dol_syslog(__METHOD__." return ".$this->prefix.$yymm."-".$num);
163 return $this->prefix.$yymm."-".$num;
164 }
165}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
ModeleNumRefSupplierPayments.
Class to manage customer payment numbering rules Cicada.
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.
getNextValue($objsoc, $object)
Return next free value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
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.