dolibarr  13.0.2
mod_reception_beryl.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2018 Quentin Vial-Gouteyron <quentin.vial-gouteyron@atm-consulting.fr>
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 
24 require_once DOL_DOCUMENT_ROOT.'/core/modules/reception/modules_reception.php';
25 
30 {
31  public $version = 'dolibarr';
32  public $prefix = 'RCP';
33  public $error = '';
34  public $nom = 'Beryl';
35 
36 
42  public function info()
43  {
44  global $langs;
45  return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
46  }
47 
48 
54  public function getExample()
55  {
56  return $this->prefix."0501-0001";
57  }
58 
59 
65  public function canBeActivated()
66  {
67  global $conf, $langs, $db;
68 
69  $coyymm = ''; $max = '';
70 
71  $posindice = strlen($this->prefix) + 6;
72  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
73  $sql .= " FROM ".MAIN_DB_PREFIX."reception";
74  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
75  $sql .= " AND entity = ".$conf->entity;
76 
77  $resql = $db->query($sql);
78  if ($resql)
79  {
80  $row = $db->fetch_row($resql);
81  if ($row) { $coyymm = substr($row[0], 0, 6); $max = $row[0]; }
82  }
83  if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm))
84  {
85  $langs->load("errors");
86  $this->error = $langs->trans('ErrorNumRefModel', $max);
87  return false;
88  }
89 
90  return true;
91  }
92 
100  public function getNextValue($objsoc, $shipment)
101  {
102  global $db, $conf;
103 
104  $posindice = strlen($this->prefix) + 6;
105  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
106  $sql .= " FROM ".MAIN_DB_PREFIX."reception";
107  $sql .= " WHERE ref like '".$db->escape($this->prefix)."____-%'";
108  $sql .= " AND entity = ".$conf->entity;
109 
110  $resql = $db->query($sql);
111  if ($resql)
112  {
113  $obj = $db->fetch_object($resql);
114  if ($obj) $max = intval($obj->max);
115  else $max = 0;
116  } else {
117  dol_syslog("mod_reception_beryl::getNextValue", LOG_DEBUG);
118  return -1;
119  }
120 
121  $date = time();
122  $yymm = strftime("%y%m", $date);
123 
124  if ($max >= (pow(10, 4) - 1)) $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
125  else $num = sprintf("%04s", $max + 1);
126 
127  dol_syslog("mod_reception_beryl::getNextValue return ".$this->prefix.$yymm."-".$num);
128  return $this->prefix.$yymm."-".$num;
129  }
130 
131  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
139  public function reception_get_num($objsoc, $objforref)
140  {
141  // phpcs:enable
142  return $this->getNextValue($objsoc, $objforref);
143  }
144 }
reception_get_num($objsoc, $objforref)
Return next free value.
Parent Class of numbering models of sending receipts references.
Class to manage reception numbering rules Beryl.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
info()
Return default description of numbering model.
getNextValue($objsoc, $shipment)
Return next value.
canBeActivated()
Test if existing numbers make problems with numbering.
if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) if(!empty($conf->don->enabled)&&$user->rights->don->lire) if(!empty($conf->tax->enabled)&&$user->rights->tax->charges->lire) if(!empty($conf->facture->enabled)&&!empty($conf->commande->enabled)&&$user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) if(!empty($conf->facture->enabled)&&$user->rights->facture->lire) if((!empty($conf->fournisseur->enabled)&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)||!empty($conf->supplier_invoice->enabled))&&$user->rights->fournisseur->facture->lire) $resql
Social contributions to pay.
Definition: index.php:1232
getExample()
Return numbering example.