dolibarr 24.0.0-beta
mod_sn_advanced.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2008 Raphael Bertrand (Resultic) <raphael.bertrand@resultic.fr>
6 * Copyright (C) 2019-2025 Frédéric France <frederic.france@free.fr>
7 * Copyright (C) 2021 Christophe Battarel <christophe@altairis.fr>
8 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 * or see https://www.gnu.org/
23 */
24
31require_once DOL_DOCUMENT_ROOT.'/core/modules/product_batch/modules_product_batch.class.php';
32
33
38{
43 public $version = 'dolibarr'; // 'development', 'experimental', 'dolibarr'
44
48 public $error = '';
49
53 public $name = 'sn_advanced';
54
55
62 public function info($langs)
63 {
64 global $conf, $langs, $db;
65
66 $langs->load("bills");
67
68 $form = new Form($db);
69
70 // We get cursor rule
71 $mask = getDolGlobalString('SN_ADVANCED_MASK');
72
73 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
74 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
75 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
76 $texte .= '<input type="hidden" name="action" value="updateMaskSN">';
77 $texte .= '<input type="hidden" name="maskconstSN" value="SN_ADVANCED_MASK">';
78 $texte .= '<input type="hidden" name="page_y" value="">';
79
80 $texte .= '<table class="nobordernopadding centpercent">';
81
82 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Batch"), $langs->transnoentities("Batch"));
83 $tooltip .= $langs->trans("GenericMaskCodes1");
84 $tooltip .= '<br>';
85 $tooltip .= $langs->trans("GenericMaskCodes2");
86 $tooltip .= '<br>';
87 $tooltip .= $langs->trans("GenericMaskCodes3");
88 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Batch"), $langs->transnoentities("Batch"));
89 $tooltip .= $langs->trans("GenericMaskCodes5");
90 //$tooltip .= '<br>'.$langs->trans("GenericMaskCodes5b");
91
92 // Setting of prefix
93 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
94 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskSN" value="'.$mask.'">', $tooltip, 1, 'help', 'valignmiddle', 0, 3, $this->name).'</td>';
95
96 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans("Save").'"></td>';
97
98 // Option to enable custom masks per product
99 $texte .= '<td class="right">';
100 if (getDolGlobalString('PRODUCTBATCH_SN_USE_PRODUCT_MASKS')) {
101 $texte .= '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmaskssn&token='.newToken().'&value=0">'.img_picto($langs->trans("Enabled"), 'on').'</a>';
102 } else {
103 $texte .= '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmaskssn&token='.newToken().'&value=1">'.img_picto($langs->trans("Disabled"), 'off').'</a>';
104 }
105 $texte .= ' '.$langs->trans('CustomMasks')."\n";
106 $texte .= '</td>';
107
108 $texte .= '</tr>';
109
110 $texte .= '</table>';
111 $texte .= '</form>';
112
113 return $texte;
114 }
115
121 public function getExample()
122 {
123 global $db, $langs;
124
125 require_once DOL_DOCUMENT_ROOT . '/societe/class/societe.class.php';
126
127 $thirdparty = new Societe($db);
128 $thirdparty->initAsSpecimen();
129
130 $numExample = $this->getNextValue($thirdparty, null);
131
132 if (!$numExample) {
133 $numExample = $langs->trans('NotConfigured');
134 }
135 return $numExample;
136 }
137
145 public function getNextValue($objsoc, $object)
146 {
147 global $db, $conf;
148
149 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
150
151 // We get cursor rule
152 $mask = getDolGlobalString('SN_ADVANCED_MASK');
153
154 $filter = '';
155 if (getDolGlobalString('PRODUCTBATCH_SN_USE_PRODUCT_MASKS') && !empty($object->fk_product)) {
156 $product = new Product($db);
157 $res = $product->fetch($object->fk_product);
158 if ($res > 0 && !empty($product->batch_mask)) {
159 $mask = $product->batch_mask;
160 $filter = '';
161 }
162 }
163
164 if (!$mask) {
165 $this->error = 'NotConfigured';
166 return 0;
167 }
168
169 $date = dol_now();
170
171 $numFinal = get_next_value($db, $mask, 'product_lot', 'batch', $filter, null, $date);
172
173 return $numFinal;
174 }
175}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Class to manage generation of HTML components Only common components must be here.
Parent class to manage numbering of batch products.
Class to manage products or services.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Batch numbering rules advanced.
info($langs)
Returns the description of the numbering model.
getNextValue($objsoc, $object)
Return next free value.
getExample()
Return an example of numbering.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
get_next_value($db, $mask, $table, $field, $where='', $objsoc='', $date='', $mode='next', $bentityon=true, $objuser=null, $forceentity=null, $objbookkeeping=null)
Return last or next value for a mask (according to area we should not reset)
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.