dolibarr  13.0.2
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 = ''; $max = '';
90 
91  $posindice = strlen($this->prefix) + 6;
92  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
93  $sql .= " FROM ".MAIN_DB_PREFIX."expedition";
94  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
95  $sql .= " AND entity = ".$conf->entity;
96 
97  $resql = $db->query($sql);
98  if ($resql)
99  {
100  $row = $db->fetch_row($resql);
101  if ($row) { $coyymm = substr($row[0], 0, 6); $max = $row[0]; }
102  }
103  if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm))
104  {
105  $langs->load("errors");
106  $this->error = $langs->trans('ErrorNumRefModel', $max);
107  return false;
108  }
109 
110  return true;
111  }
112 
120  public function getNextValue($objsoc, $shipment)
121  {
122  global $db, $conf;
123 
124  $posindice = strlen($this->prefix) + 6;
125  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
126  $sql .= " FROM ".MAIN_DB_PREFIX."expedition";
127  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
128  $sql .= " AND entity = ".$conf->entity;
129 
130  $resql = $db->query($sql);
131  if ($resql)
132  {
133  $obj = $db->fetch_object($resql);
134  if ($obj) $max = intval($obj->max);
135  else $max = 0;
136  } else {
137  dol_syslog("mod_expedition_safor::getNextValue", LOG_DEBUG);
138  return -1;
139  }
140 
141  $date = time();
142  $yymm = strftime("%y%m", $date);
143 
144  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
145  else $num = sprintf("%04s", $max + 1);
146 
147  dol_syslog("mod_expedition_safor::getNextValue return ".$this->prefix.$yymm."-".$num);
148  return $this->prefix.$yymm."-".$num;
149  }
150 
151  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
159  public function expedition_get_num($objsoc, $objforref)
160  {
161  // phpcs:enable
162  return $this->getNextValue($objsoc, $objforref);
163  }
164 }
info()
Return default description of numbering model.
Class to manage expedition numbering rules Safor.
getNextValue($objsoc, $shipment)
Return next value.
getExample()
Return numbering example.
Parent Class of numbering models of sending receipts references.
expedition_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.
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