dolibarr 19.0.3
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
26require_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
64 public function info($langs)
65 {
66 global $langs, $db;
67
68 $langs->load("bills");
69
70 $form = new Form($db);
71
72 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
73 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
74 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
75 $texte .= '<input type="hidden" name="action" value="updateMask">';
76 $texte .= '<input type="hidden" name="maskconstdelivery" value="DELIVERY_SAPHIR_MASK">';
77 $texte .= '<table class="nobordernopadding" width="100%">';
78
79 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Delivery"), $langs->transnoentities("Delivery"));
80 $tooltip .= $langs->trans("GenericMaskCodes2");
81 $tooltip .= $langs->trans("GenericMaskCodes3");
82 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Delivery"), $langs->transnoentities("Delivery"));
83 $tooltip .= $langs->trans("GenericMaskCodes5");
84
85 // Parametrage du prefix
86 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
87 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskdelivery" value="'.getDolGlobalString('DELIVERY_SAPHIR_MASK').'">', $tooltip, 1, 1).'</td>';
88
89 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans("Modify").'"></td>';
90
91 $texte .= '</tr>';
92
93 $texte .= '</table>';
94 $texte .= '</form>';
95
96 return $texte;
97 }
98
104 public function getExample()
105 {
106 global $conf, $langs, $mysoc;
107
108 $old_code_client = $mysoc->code_client;
109 $mysoc->code_client = 'CCCCCCCCCC';
110 $numExample = $this->getNextValue($mysoc, '');
111 $mysoc->code_client = $old_code_client;
112
113 if (!$numExample) {
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 = getDolGlobalString('DELIVERY_SAPHIR_MASK');
135
136 if (!$mask) {
137 $this->error = 'NotConfigured';
138 return 0;
139 }
140
141 $numFinal = get_next_value($db, $mask, 'delivery', 'ref', '', $objsoc, $object->delivery_date);
142
143 return $numFinal;
144 }
145
146
154 public function getNumRef($objsoc, $objforref)
155 {
156 return $this->getNextValue($objsoc, $objforref);
157 }
158
159
160 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
168 public function delivery_get_num($objsoc = 0, $object = '')
169 {
170 // phpcs:enable
171 return $this->getNextValue($objsoc, $object);
172 }
173}
Class to manage generation of HTML components Only common components must be here.
Classe mere des modeles de numerotation des references de bon de livraison.
Classe du modele de numerotation de reference de livraison Saphir.
getNextValue($objsoc, $object)
Return next value.
delivery_get_num($objsoc=0, $object='')
Return next free ref.
getExample()
Return an example of number.
getNumRef($objsoc, $objforref)
Return next free value.
info($langs)
Returns the description of the numbering model.
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)
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.