dolibarr 19.0.3
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
24require_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
63 public function info($langs)
64 {
65 global $langs;
66 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
67 }
68
69
75 public function getExample()
76 {
77 return $this->prefix."0501-0001";
78 }
79
80
87 public function canBeActivated($object)
88 {
89 global $conf, $langs, $db;
90
91 $coyymm = '';
92 $max = '';
93
94 $posindice = strlen($this->prefix) + 6;
95 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
96 $sql .= " FROM ".MAIN_DB_PREFIX."expedition";
97 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
98 $sql .= " AND entity = ".$conf->entity;
99
100 $resql = $db->query($sql);
101 if ($resql) {
102 $row = $db->fetch_row($resql);
103 if ($row) {
104 $coyymm = substr($row[0], 0, 6);
105 $max = $row[0];
106 }
107 }
108 if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
109 $langs->load("errors");
110 $this->error = $langs->trans('ErrorNumRefModel', $max);
111 return false;
112 }
113
114 return true;
115 }
116
124 public function getNextValue($objsoc, $shipment)
125 {
126 global $db, $conf;
127
128 $posindice = strlen($this->prefix) + 6;
129 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
130 $sql .= " FROM ".MAIN_DB_PREFIX."expedition";
131 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
132 $sql .= " AND entity = ".$conf->entity;
133
134 $resql = $db->query($sql);
135 if ($resql) {
136 $obj = $db->fetch_object($resql);
137 if ($obj) {
138 $max = intval($obj->max);
139 } else {
140 $max = 0;
141 }
142 } else {
143 dol_syslog("mod_expedition_safor::getNextValue", LOG_DEBUG);
144 return -1;
145 }
146
147 $date = $shipment->date_creation;
148 $yymm = dol_print_date($date, "%y%m");
149
150 if ($max >= (pow(10, 4) - 1)) {
151 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
152 } else {
153 $num = sprintf("%04s", $max + 1);
154 }
155
156 dol_syslog("mod_expedition_safor::getNextValue return ".$this->prefix.$yymm."-".$num);
157 return $this->prefix.$yymm."-".$num;
158 }
159
160 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
168 public function expedition_get_num($objsoc, $objforref)
169 {
170 // phpcs:enable
171 return $this->getNextValue($objsoc, $objforref);
172 }
173}
Parent Class of numbering models of sending receipts references.
Class to manage expedition numbering rules Safor.
canBeActivated($object)
Test if existing numbers make problems with numbering.
expedition_get_num($objsoc, $objforref)
Return next free value.
info($langs)
Return default description of numbering model.
getExample()
Return numbering example.
getNextValue($objsoc, $shipment)
Return next value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $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.