dolibarr 19.0.3
mod_holiday_madonna.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
3 * Copyright (C) 2018-2023 Charlene Benke <charlene@patas-monkey.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 * or see https://www.gnu.org/
18 */
19
25require_once DOL_DOCUMENT_ROOT.'/core/modules/holiday/modules_holiday.php';
26
31{
36 public $version = 'dolibarr';
37
38 public $prefix = 'HL';
39
43 public $error = '';
44
50 public $nom = 'Madonna';
51
55 public $name = 'Madonna';
56
60 public $code_auto = 1;
61
62
69 public function info($langs)
70 {
71 global $langs;
72 return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
73 }
74
75
81 public function getExample()
82 {
83 return $this->prefix."0501-0001";
84 }
85
86
93 public function canBeActivated($object)
94 {
95 global $conf, $langs, $db;
96
97 $coyymm = '';
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."holiday";
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 $coyymm = substr($row[0], 0, 6);
111 $max = $row[0];
112 }
113 }
114 if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm)) {
115 $langs->load("errors");
116 $this->error = $langs->trans('ErrorNumRefModel', $max);
117 return false;
118 }
119
120 return true;
121 }
122
130 public function getNextValue($objsoc, $holiday)
131 {
132 global $db, $conf;
133
134 $posindice = strlen($this->prefix) + 6;
135 $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
136 $sql .= " FROM ".MAIN_DB_PREFIX."holiday";
137 $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
138 $sql .= " AND entity = ".$conf->entity;
139
140 $resql = $db->query($sql);
141 if ($resql) {
142 $obj = $db->fetch_object($resql);
143 if ($obj) {
144 $max = intval($obj->max);
145 } else {
146 $max = 0;
147 }
148 } else {
149 dol_syslog("mod_holiday_madonna::getNextValue", LOG_DEBUG);
150 return -1;
151 }
152
153 $date = $holiday->date_debut;
154 $yymm = dol_print_date($date, "%y%m");
155
156 if ($max >= (pow(10, 4) - 1)) {
157 $num = $max + 1; // If counter > 9999, we do not format on 4 chars, we take number as it is
158 } else {
159 $num = sprintf("%04s", $max + 1);
160 }
161
162 dol_syslog("mod_holiday_madonna::getNextValue return ".$this->prefix.$yymm."-".$num);
163 return $this->prefix.$yymm."-".$num;
164 }
165
166
167 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
175 public function holiday_get_num($fuser, $objforref)
176 {
177 // phpcs:enable
178 return $this->getNextValue($fuser, $objforref);
179 }
180}
Parent class for all holidays numbering modules.
Class to manage contract numbering rules madonna.
getExample()
Return numbering example.
canBeActivated($object)
Test if existing numbers make problems with numbering.
info($langs)
Return default description of numbering model.
holiday_get_num($fuser, $objforref)
Return next value.
getNextValue($objsoc, $holiday)
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.