dolibarr  13.0.2
mod_chequereceipt_mint.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2015 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 
25 require_once DOL_DOCUMENT_ROOT.'/core/modules/cheque/modules_chequereceipts.php';
26 
31 {
36  public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
37 
38  public $prefix = 'CHK';
39 
43  public $error = '';
44 
45  public $name = 'Mint';
46 
47 
53  public function info()
54  {
55  global $langs;
56  return $langs->trans("SimpleNumRefModelDesc", $this->prefix);
57  }
58 
59 
65  public function getExample()
66  {
67  return $this->prefix."0501-0001";
68  }
69 
70 
77  public function canBeActivated()
78  {
79  global $conf, $langs, $db;
80 
81  $payyymm = ''; $max = '';
82 
83  $posindice = strlen($this->prefix) + 6;
84  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
85  $sql .= " FROM ".MAIN_DB_PREFIX."bordereau_cheque";
86  $sql .= " WHERE ref LIKE '".$db->escape($this->prefix)."____-%'";
87  $sql .= " AND entity = ".$conf->entity;
88 
89  $resql = $db->query($sql);
90  if ($resql)
91  {
92  $row = $db->fetch_row($resql);
93  if ($row) { $payyymm = substr($row[0], 0, 6); $max = $row[0]; }
94  }
95  if ($payyymm && !preg_match('/'.$this->prefix.'[0-9][0-9][0-9][0-9]/i', $payyymm))
96  {
97  $langs->load("errors");
98  $this->error = $langs->trans('ErrorNumRefModel', $max);
99  return false;
100  }
101 
102  return true;
103  }
104 
112  public function getNextValue($objsoc, $object)
113  {
114  global $db, $conf;
115 
116  // First, we get the max value
117  $posindice = strlen($this->prefix) + 6;
118  $sql = "SELECT MAX(CAST(SUBSTRING(ref FROM ".$posindice.") AS SIGNED)) as max";
119  $sql .= " FROM ".MAIN_DB_PREFIX."bordereau_cheque";
120  $sql .= " WHERE ref like '".$db->escape($this->prefix)."____-%'";
121  $sql .= " AND entity = ".$conf->entity;
122 
123  $resql = $db->query($sql);
124  if ($resql)
125  {
126  $obj = $db->fetch_object($resql);
127  if ($obj) $max = intval($obj->max);
128  else $max = 0;
129  } else {
130  dol_syslog(__METHOD__, LOG_DEBUG);
131  return -1;
132  }
133 
134  //$date=time();
135  $date = $object->date_bordereau;
136  $yymm = strftime("%y%m", $date);
137 
138  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
139  else $num = sprintf("%04s", $max + 1);
140 
141  dol_syslog(__METHOD__." return ".$this->prefix.$yymm."-".$num);
142  return $this->prefix.$yymm."-".$num;
143  }
144 
145 
146  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
154  public function chequereceipt_get_num($objsoc, $objforref)
155  {
156  // phpcs:enable
157  return $this->getNextValue($objsoc, $objforref);
158  }
159 }
canBeActivated()
Checks if the numbers already in the database do not cause conflicts that would prevent this numberin...
getExample()
Return an example of numbering.
info()
Return description of numbering module.
getNextValue($objsoc, $object)
Return next free value.
Cheque Receipts numbering references mother class.
Class to manage cheque receipts numbering rules Mint.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
chequereceipt_get_num($objsoc, $objforref)
Return next free value.
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