dolibarr  20.0.0-beta
mod_propale_marbre.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2005-2008 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5  * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <https://www.gnu.org/licenses/>.
19  * or see https://www.gnu.org/
20  */
21 
28 require_once DOL_DOCUMENT_ROOT.'/core/modules/propale/modules_propale.php';
29 
30 
35 {
40  public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
41 
42  public $prefix = 'PR';
43 
47  public $error = '';
48 
54  public $nom = 'Marbre';
55 
59  public $name = 'Marbre';
60 
61 
68  public function info($langs)
69  {
70  global $langs;
71  return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
72  }
73 
74 
80  public function getExample()
81  {
82  return $this->prefix."0501-0001";
83  }
84 
85 
93  public function canBeActivated($object)
94  {
95  global $conf, $langs, $db;
96 
97  $pryymm = '';
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."propal";
103  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
104  $sql .= " AND entity = ".$conf->entity;
105 
106  $resql = $db->query($sql);
107  if ($resql) {
108  $row = $db->fetch_row($resql);
109  if ($row) {
110  $pryymm = substr($row[0], 0, 6);
111  $max = $row[0];
112  }
113  }
114 
115  if (!$pryymm || preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $pryymm)) {
116  return true;
117  } else {
118  $langs->load("errors");
119  $this->error = $langs->trans('ErrorNumRefModel', $max);
120  return false;
121  }
122  }
123 
131  public function getNextValue($objsoc, $propal)
132  {
133  global $db, $conf;
134 
135  // First, we get the max value
136  $posindice = strlen($this->prefix) + 6;
137  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max"; // This is standard SQL
138  $sql .= " FROM ".MAIN_DB_PREFIX."propal";
139  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
140  $sql .= " AND entity IN (".getEntity('proposalnumber', 1, $propal).")";
141 
142  $resql = $db->query($sql);
143  if ($resql) {
144  $obj = $db->fetch_object($resql);
145  if ($obj) {
146  $max = intval($obj->max);
147  } else {
148  $max = 0;
149  }
150  } else {
151  dol_syslog(get_class($this)."::getNextValue", LOG_DEBUG);
152  return -1;
153  }
154 
155  $date = time();
156  $yymm = dol_print_date($date, "%y%m");
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("%04d", $max + 1);
162  }
163 
164  dol_syslog(get_class($this)."::getNextValue return ".$this->prefix.$yymm."-".$num);
165  return $this->prefix.$yymm."-".$num;
166  }
167 
176  public function getNumRef($objsoc, $objforref)
177  {
178  return $this->getNextValue($objsoc, $objforref);
179  }
180 }
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
Parent class for numbering rules of proposals.
Class to manage business proposition rules Marbre.
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.
getNumRef($objsoc, $objforref)
Return next free value.
getNextValue($objsoc, $propal)
Return next value.
info($langs)
Return description of numbering module.
if(isModEnabled('invoice') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') && $user->hasRight('tax', 'charges', 'lire')) if(isModEnabled('invoice') &&isModEnabled('order') && $user->hasRight("commande", "lire") &&!getDolGlobalString('WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER')) $sql
Social contributions to pay.
Definition: index.php:745
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.