dolibarr  17.0.4
mod_expedition_safor.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2011 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 
24 require_once DOL_DOCUMENT_ROOT.'/core/modules/expedition/modules_expedition.php';
25 
30 {
35  public $version = 'dolibarr';
36 
37  public $prefix = 'SH';
38 
42  public $error = '';
43 
49  public $nom = 'Safor';
50 
54  public $name = 'Safor';
55 
56 
62  public function info()
63  {
64  global $langs;
65  return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
66  }
67 
68 
74  public function getExample()
75  {
76  return $this->prefix."0501-0001";
77  }
78 
79 
85  public function canBeActivated()
86  {
87  global $conf, $langs, $db;
88 
89  $coyymm = '';
90  $max = '';
91 
92  $posindice = strlen($this->prefix) + 6;
93  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
94  $sql .= " FROM ".MAIN_DB_PREFIX."expedition";
95  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
96  $sql .= " AND entity = ".$conf->entity;
97 
98  $resql = $db->query($sql);
99  if ($resql) {
100  $row = $db->fetch_row($resql);
101  if ($row) {
102  $coyymm = substr($row[0], 0, 6);
103  $max = $row[0];
104  }
105  }
106  if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
107  $langs->load("errors");
108  $this->error = $langs->trans('ErrorNumRefModel', $max);
109  return false;
110  }
111 
112  return true;
113  }
114 
122  public function getNextValue($objsoc, $shipment)
123  {
124  global $db, $conf;
125 
126  $posindice = strlen($this->prefix) + 6;
127  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
128  $sql .= " FROM ".MAIN_DB_PREFIX."expedition";
129  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
130  $sql .= " AND entity = ".$conf->entity;
131 
132  $resql = $db->query($sql);
133  if ($resql) {
134  $obj = $db->fetch_object($resql);
135  if ($obj) {
136  $max = intval($obj->max);
137  } else {
138  $max = 0;
139  }
140  } else {
141  dol_syslog("mod_expedition_safor::getNextValue", LOG_DEBUG);
142  return -1;
143  }
144 
145  $date = time();
146  $yymm = strftime("%y%m", $date);
147 
148  if ($max >= (pow(10, 4) - 1)) {
149  $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
150  } else {
151  $num = sprintf("%04s", $max + 1);
152  }
153 
154  dol_syslog("mod_expedition_safor::getNextValue return ".$this->prefix.$yymm."-".$num);
155  return $this->prefix.$yymm."-".$num;
156  }
157 
158  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
166  public function expedition_get_num($objsoc, $objforref)
167  {
168  // phpcs:enable
169  return $this->getNextValue($objsoc, $objforref);
170  }
171 }
Parent Class of numbering models of sending receipts references.
Class to manage expedition numbering rules Safor.
expedition_get_num($objsoc, $objforref)
Return next free value.
info()
Return default description of numbering model.
getExample()
Return numbering example.
canBeActivated()
Test if existing numbers make problems with numbering.
getNextValue($objsoc, $shipment)
Return next value.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:745
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.