dolibarr  13.0.2
mod_contract_serpis.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/contract/modules_contract.php';
25 
30 {
35  public $version = 'dolibarr';
36 
37  public $prefix = 'CT';
38 
42  public $error = '';
43 
49  public $nom = 'Serpis';
50 
54  public $name = 'Serpis';
55 
59  public $code_auto = 1;
60 
61 
67  public function info()
68  {
69  global $langs;
70  return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
71  }
72 
73 
79  public function getExample()
80  {
81  return $this->prefix."0501-0001";
82  }
83 
84 
90  public function canBeActivated()
91  {
92  global $conf, $langs, $db;
93 
94  $coyymm = ''; $max = '';
95 
96  $posindice = strlen($this->prefix) + 6;
97  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
98  $sql .= " FROM ".MAIN_DB_PREFIX."contrat";
99  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
100  $sql .= " AND entity = ".$conf->entity;
101 
102  $resql = $db->query($sql);
103  if ($resql)
104  {
105  $row = $db->fetch_row($resql);
106  if ($row) { $coyymm = substr($row[0], 0, 6); $max = $row[0]; }
107  }
108  if ($coyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $coyymm))
109  {
110  $langs->load("errors");
111  $this->error = $langs->trans('ErrorNumRefModel', $max);
112  return false;
113  }
114 
115  return true;
116  }
117 
125  public function getNextValue($objsoc, $contract)
126  {
127  global $db, $conf;
128 
129  $posindice = strlen($this->prefix) + 6;
130  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
131  $sql .= " FROM ".MAIN_DB_PREFIX."contrat";
132  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
133  $sql .= " AND entity = ".$conf->entity;
134 
135  $resql = $db->query($sql);
136  if ($resql)
137  {
138  $obj = $db->fetch_object($resql);
139  if ($obj) $max = intval($obj->max);
140  else $max = 0;
141  } else {
142  dol_syslog("mod_contract_serpis::getNextValue", LOG_DEBUG);
143  return -1;
144  }
145 
146  $date = $contract->date_contrat;
147  $yymm = strftime("%y%m", $date);
148 
149  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
150  else $num = sprintf("%04s", $max + 1);
151 
152  dol_syslog("mod_contract_serpis::getNextValue return ".$this->prefix.$yymm."-".$num);
153  return $this->prefix.$yymm."-".$num;
154  }
155 
156 
157  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
165  public function contract_get_num($objsoc, $objforref)
166  {
167  // phpcs:enable
168  return $this->getNextValue($objsoc, $objforref);
169  }
170 }
canBeActivated()
Test if existing numbers make problems with numbering.
contract_get_num($objsoc, $objforref)
Return next value.
info()
Return default description of numbering model.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
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.
Class to manage contract numbering rules Serpis.
Parent class for all contract numbering modules.
getNextValue($objsoc, $contract)
Return next value.