31require_once DOL_DOCUMENT_ROOT.
'/core/modules/product_batch/modules_product_batch.class.php';
43 public $version =
'dolibarr';
53 public $name =
'lot_advanced';
62 public function info($langs)
64 global
$conf, $langs, $db;
66 $langs->load(
"bills");
68 $form =
new Form($db);
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 .=
'<input type="hidden" name="page_y" value="">';
80 $texte .=
'<table class="nobordernopadding centpercent">';
82 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Batch"), $langs->transnoentities(
"Batch"));
83 $tooltip .= $langs->trans(
"GenericMaskCodes1");
85 $tooltip .= $langs->trans(
"GenericMaskCodes2");
87 $tooltip .= $langs->trans(
"GenericMaskCodes3");
88 $tooltip .= $langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Batch"), $langs->transnoentities(
"Batch"));
89 $tooltip .= $langs->trans(
"GenericMaskCodes5");
93 $texte .=
'<tr><td>'.$langs->trans(
"Mask").
':</td>';
94 $texte .=
'<td class="right">'.$form->textwithpicto(
'<input type="text" class="flat minwidth175" name="maskLot" value="'.$mask.
'">', $tooltip, 1,
'help',
'valignmiddle', 0, 3, $this->name).
'</td>';
96 $texte .=
'<td class="left" rowspan="2"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans(
"Save").
'"></td>';
99 $texte .=
'<td class="right">';
101 $texte .=
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmaskslot&token='.
newToken().
'&value=0">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
103 $texte .=
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmaskslot&token='.
newToken().
'&value=1">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
105 $texte .=
' '.$langs->trans(
'CustomMasks').
"\n";
110 $texte .=
'</table>';
123 global $langs, $mysoc;
125 $old_code_client = $mysoc->code_client;
126 $old_code_type = $mysoc->typent_code;
127 $mysoc->code_client =
'CCCCCCCCCC';
128 $mysoc->typent_code =
'TTTTTTTTTT';
130 $mysoc->code_client = $old_code_client;
131 $mysoc->typent_code = $old_code_type;
134 $numExample = $langs->trans(
'NotConfigured');
150 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
157 $res = $product->fetch(
$object->fk_product);
158 if ($res > 0 && !empty($product->batch_mask)) {
159 $mask = $product->batch_mask;
165 $this->error =
'NotConfigured';
171 $numFinal =
get_next_value($db, $mask,
'product_lot',
'batch', $filter,
null, $date);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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, $objbookkeeping=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, $allowothertags=array())
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 a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...