dolibarr  16.0.5
mod_delivery_saphir.php
Go to the documentation of this file.
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 minwidth175" 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 button-edit" name="Button"value="'.$langs->trans("Modify").'"></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  $numExample = $langs->trans('NotConfigured');
114  }
115  return $numExample;
116  }
117 
118 
126  public function getNextValue($objsoc, $object)
127  {
128  global $db, $conf;
129 
130  require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
131 
132  // On defini critere recherche compteur
133  $mask = $conf->global->DELIVERY_SAPHIR_MASK;
134 
135  if (!$mask) {
136  $this->error = 'NotConfigured';
137  return 0;
138  }
139 
140  $numFinal = get_next_value($db, $mask, 'delivery', 'ref', '', $objsoc, $object->delivery_date);
141 
142  return $numFinal;
143  }
144 
145 
153  public function getNumRef($objsoc, $objforref)
154  {
155  return $this->getNextValue($objsoc, $objforref);
156  }
157 
158 
159  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
167  public function delivery_get_num($objsoc = 0, $object = '')
168  {
169  // phpcs:enable
170  return $this->getNextValue($objsoc, $object);
171  }
172 }
mod_delivery_saphir\getExample
getExample()
Return an example of number.
Definition: mod_delivery_saphir.php:103
mod_delivery_saphir\delivery_get_num
delivery_get_num($objsoc=0, $object='')
Return next free ref.
Definition: mod_delivery_saphir.php:167
mod_delivery_saphir\info
info()
Returns the description of the numbering model.
Definition: mod_delivery_saphir.php:63
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
mod_delivery_saphir\getNumRef
getNumRef($objsoc, $objforref)
Return next free value.
Definition: mod_delivery_saphir.php:153
ModeleNumRefDeliveryOrder
Classe mere des modeles de numerotation des references de bon de livraison.
Definition: modules_delivery.php:73
mod_delivery_saphir
Classe du modele de numerotation de reference de livraison Saphir.
Definition: mod_delivery_saphir.php:32
get_next_value
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)
Definition: functions2.lib.php:970
mod_delivery_saphir\getNextValue
getNextValue($objsoc, $object)
Return next value.
Definition: mod_delivery_saphir.php:126
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52