dolibarr  13.0.2
mod_delivery_saphir.php
1 <?php
2 /* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2007 Regis Houssin <regis.houssin@inodbox.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  * or see https://www.gnu.org/
19  */
20 
26 require_once DOL_DOCUMENT_ROOT.'/core/modules/delivery/modules_delivery.php';
27 
33 {
38  public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
39 
43  public $error = '';
44 
50  public $nom = 'Saphir';
51 
55  public $name = 'Saphir';
56 
57 
63  public function info()
64  {
65  global $conf, $langs, $db;
66 
67  $langs->load("bills");
68 
69  $form = new Form($db);
70 
71  $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
72  $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
73  $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
74  $texte .= '<input type="hidden" name="action" value="updateMask">';
75  $texte .= '<input type="hidden" name="maskconstdelivery" value="DELIVERY_SAPHIR_MASK">';
76  $texte .= '<table class="nobordernopadding" width="100%">';
77 
78  $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Delivery"), $langs->transnoentities("Delivery"));
79  $tooltip .= $langs->trans("GenericMaskCodes2");
80  $tooltip .= $langs->trans("GenericMaskCodes3");
81  $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Delivery"), $langs->transnoentities("Delivery"));
82  $tooltip .= $langs->trans("GenericMaskCodes5");
83 
84  // Parametrage du prefix
85  $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
86  $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat" size="24" name="maskdelivery" value="'.$conf->global->DELIVERY_SAPHIR_MASK.'">', $tooltip, 1, 1).'</td>';
87 
88  $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button" value="'.$langs->trans("Modify").'" name="Button"></td>';
89 
90  $texte .= '</tr>';
91 
92  $texte .= '</table>';
93  $texte .= '</form>';
94 
95  return $texte;
96  }
97 
103  public function getExample()
104  {
105  global $conf, $langs, $mysoc;
106 
107  $old_code_client = $mysoc->code_client;
108  $mysoc->code_client = 'CCCCCCCCCC';
109  $numExample = $this->getNextValue($mysoc, '');
110  $mysoc->code_client = $old_code_client;
111 
112  if (!$numExample)
113  {
114  $numExample = $langs->trans('NotConfigured');
115  }
116  return $numExample;
117  }
118 
119 
127  public function getNextValue($objsoc, $object)
128  {
129  global $db, $conf;
130 
131  require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
132 
133  // On defini critere recherche compteur
134  $mask = $conf->global->DELIVERY_SAPHIR_MASK;
135 
136  if (!$mask)
137  {
138  $this->error = 'NotConfigured';
139  return 0;
140  }
141 
142  $numFinal = get_next_value($db, $mask, 'delivery', 'ref', '', $objsoc, $object->delivery_date);
143 
144  return $numFinal;
145  }
146 
147 
155  public function getNumRef($objsoc, $objforref)
156  {
157  return $this->getNextValue($objsoc, $objforref);
158  }
159 
160 
161  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
169  public function delivery_get_num($objsoc = 0, $object = '')
170  {
171  // phpcs:enable
172  return $this->getNextValue($objsoc, $object);
173  }
174 }
get_next_value($db, $mask, $table, $field, $where= '', $objsoc= '', $date= '', $mode= 'next', $bentityon=true, $objuser=null, $forceentity=null)
Return last or next value for a mask (according to area we should not reset)
getExample()
Return an example of number.
getNumRef($objsoc, $objforref)
Return next free value.
Class to manage generation of HTML components Only common components must be here.
info()
Returns the description of the numbering model.
getNextValue($objsoc, $object)
Return next value.
delivery_get_num($objsoc=0, $object= '')
Return next free ref.
Classe du modele de numerotation de reference de livraison Saphir.
Classe mere des modeles de numerotation des references de bon de livraison.