dolibarr  20.0.0-beta
mod_lot_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 Frédéric France <frederic.france@netlogic.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 
31 require_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 = 'lot_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('LOT_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="updateMaskLot">';
77  $texte .= '<input type="hidden" name="maskconstLot" value="LOT_ADVANCED_MASK">';
78  $texte .= '<table class="nobordernopadding" width="100%">';
79 
80  $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Batch"), $langs->transnoentities("Batch"));
81  $tooltip .= $langs->trans("GenericMaskCodes2");
82  $tooltip .= $langs->trans("GenericMaskCodes3");
83  $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Batch"), $langs->transnoentities("Batch"));
84  $tooltip .= $langs->trans("GenericMaskCodes5");
85 
86  // Parametrage du prefix
87  $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
88  $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskLot" value="'.$mask.'">', $tooltip, 1, 1).'</td>';
89 
90  $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans("Modify").'"></td>';
91 
92  // Option to enable custom masks per product
93  $texte .= '<td class="right">';
94  if (getDolGlobalString('PRODUCTBATCH_LOT_USE_PRODUCT_MASKS')) {
95  $texte .= '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmaskslot&token='.newToken().'&value=0">'.img_picto($langs->trans("Enabled"), 'on').'</a>';
96  } else {
97  $texte .= '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmaskslot&token='.newToken().'&value=1">'.img_picto($langs->trans("Disabled"), 'off').'</a>';
98  }
99  $texte .= ' '.$langs->trans('CustomMasks')."\n";
100  $texte .= '</td>';
101 
102  $texte .= '</tr>';
103 
104  $texte .= '</table>';
105  $texte .= '</form>';
106 
107  return $texte;
108  }
109 
115  public function getExample()
116  {
117  global $conf, $langs, $mysoc;
118 
119  $old_code_client = $mysoc->code_client;
120  $old_code_type = $mysoc->typent_code;
121  $mysoc->code_client = 'CCCCCCCCCC';
122  $mysoc->typent_code = 'TTTTTTTTTT';
123  $numExample = $this->getNextValue($mysoc, '');
124  $mysoc->code_client = $old_code_client;
125  $mysoc->typent_code = $old_code_type;
126 
127  if (!$numExample) {
128  $numExample = $langs->trans('NotConfigured');
129  }
130  return $numExample;
131  }
132 
140  public function getNextValue($objsoc, $object)
141  {
142  global $db, $conf;
143 
144  require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
145 
146  // We get cursor rule
147  $mask = getDolGlobalString('LOT_ADVANCED_MASK');
148  $filter = '';
149  if (getDolGlobalString('PRODUCTBATCH_LOT_USE_PRODUCT_MASKS') && !empty($object->fk_product)) {
150  $product = new Product($db);
151  $res = $product->fetch($object->fk_product);
152  if ($res > 0 && !empty($product->batch_mask)) {
153  $mask = $product->batch_mask;
154  $filter = '';
155  }
156  }
157 
158  if (!$mask) {
159  $this->error = 'NotConfigured';
160  return 0;
161  }
162 
163  $date = dol_now();
164 
165  $numFinal = get_next_value($db, $mask, 'product_lot', 'batch', $filter, null, $date);
166 
167  return $numFinal;
168  }
169 }
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
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 Batch numbering rules advanced.
getNextValue($objsoc, $object)
Return next free value.
getExample()
Return an example of numbering.
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)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_now($mode='auto')
Return date for now.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.