26require
'../../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/product/stock/class/productlot.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/product.lib.php';
32$langs->loadLangs(array(
"admin",
"products",
"productbatch"));
35if (!$user->admin || (empty($conf->productbatch->enabled))) {
39$action =
GETPOST(
'action',
'alpha');
40$value =
GETPOST(
'value',
'alpha');
41$label =
GETPOST(
'label',
'alpha');
42$scandir =
GETPOST(
'scan_dir',
'alpha');
43$type =
'product_batch';
52include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
54if ($action ==
'updateMaskLot') {
55 $maskconstbatch =
GETPOST(
'maskconstLot',
'aZ09');
56 $maskbatch =
GETPOST(
'maskLot',
'alpha');
58 if ($maskconstbatch && preg_match(
'/_MASK$/', $maskconstbatch)) {
59 $res =
dolibarr_set_const($db, $maskconstbatch, $maskbatch,
'chaine', 0,
'', $conf->entity);
70} elseif ($action ==
'updateMaskSN') {
71 $maskconstbatch =
GETPOST(
'maskconstSN',
'aZ09');
72 $maskbatch =
GETPOST(
'maskSN',
'alpha');
74 if ($maskconstbatch && preg_match(
'/_MASK$/', $maskconstbatch)) {
75 $res =
dolibarr_set_const($db, $maskconstbatch, $maskbatch,
'chaine', 0,
'', $conf->entity);
86} elseif ($action ==
'setmodlot') {
87 dolibarr_set_const($db,
"PRODUCTBATCH_LOT_ADDON", $value,
'chaine', 0,
'', $conf->entity);
88} elseif ($action ==
'setmodsn') {
89 dolibarr_set_const($db,
"PRODUCTBATCH_SN_ADDON", $value,
'chaine', 0,
'', $conf->entity);
90} elseif ($action ==
'setmaskslot') {
91 dolibarr_set_const($db,
"PRODUCTBATCH_LOT_USE_PRODUCT_MASKS", $value,
'bool', 0,
'', $conf->entity);
92 if ($value ==
'1' &&
getDolGlobalString(
'PRODUCTBATCH_LOT_ADDONS') !==
'mod_lot_advanced') {
93 dolibarr_set_const($db,
"PRODUCTBATCH_LOT_ADDON",
'mod_lot_advanced',
'chaine', 0,
'', $conf->entity);
95} elseif ($action ==
'setmaskssn') {
96 dolibarr_set_const($db,
"PRODUCTBATCH_SN_USE_PRODUCT_MASKS", $value,
'bool', 0,
'', $conf->entity);
97 if ($value ==
'1' &&
getDolGlobalString(
'PRODUCTBATCH_SN_ADDONS') !==
'mod_sn_advanced') {
98 dolibarr_set_const($db,
"PRODUCTBATCH_SN_ADDON",
'mod_sn_advanced',
'chaine', 0,
'', $conf->entity);
100} elseif ($action ==
'set') {
103} elseif ($action ==
'del') {
106 if ($conf->global->FACTURE_ADDON_PDF ==
"$value") {
110} elseif ($action ==
'specimen') {
111 $modele =
GETPOST(
'module',
'alpha');
114 $product_batch->initAsSpecimen();
119 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
120 foreach ($dirmodels as $reldir) {
121 $file =
dol_buildpath($reldir .
"core/modules/product_batch/doc/pdf_" . $modele .
".modules.php", 0);
122 if (file_exists($file)) {
123 $classname =
"pdf_" . $modele;
128 if ($classname !==
'') {
131 $module =
new $classname($db);
133 '@phan-var-force ModelePDFProductBatch $module';
135 if ($module->write_file($product_batch, $langs) > 0) {
136 header(
"Location: " . DOL_URL_ROOT .
"/document.php?modulepart=product_batch&file=SPECIMEN.pdf");
144 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
146} elseif ($action ==
'setdoc') {
148 if (
dolibarr_set_const($db,
"PRODUCT_BATCH_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
151 $conf->global->PRODUCT_BATCH_ADDON_PDF = $value;
165$form =
new Form($db);
167$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
169llxHeader(
"", $langs->trans(
"ProductLotSetup"),
'',
'', 0, 0,
'',
'',
'',
'mod-product page-admin_product_lot');
171$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
172print
load_fiche_titre($langs->trans(
"ProductLotSetup"), $linkback,
'title_setup');
184 print $langs->trans(
"NothingToSetup");
192 print
'<table class="noborder centpercent">';
193 print
'<tr class="liste_titre">';
194 print
'<td>'.$langs->trans(
"Name").
'</td>';
195 print
'<td>'.$langs->trans(
"Description").
'</td>';
196 print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
197 print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
198 print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
203 foreach ($dirmodels as $reldir) {
207 $handle = opendir($dir);
208 if (is_resource($handle)) {
209 while (($file = readdir($handle)) !==
false) {
210 if (substr($file, 0, 8) ==
'mod_lot_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
211 $file = substr($file, 0,
dol_strlen($file) - 4);
213 require_once $dir.$file.
'.php';
215 $module =
new $file($db);
216 '@phan-var-force ModeleNumRefBatch $module';
219 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
222 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
226 if ($module->isEnabled()) {
227 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
228 print $module->info($langs);
232 print
'<td class="nowrap">';
233 $tmp = $module->getExample();
234 if (preg_match(
'/^Error/', $tmp)) {
235 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
236 } elseif ($tmp ==
'NotConfigured') {
237 print $langs->trans($tmp);
243 print
'<td class="center">';
244 if ($conf->global->PRODUCTBATCH_LOT_ADDON == $file) {
245 print
img_picto($langs->trans(
"Activated"),
'switch_on');
247 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmodlot&token='.
newToken().
'&value='.urlencode($file).
'">';
248 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
254 $batch->initAsSpecimen();
258 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
259 $nextval = $module->getNextValue($mysoc, $batch);
260 if ((
string) $nextval != $langs->trans(
"NotAvailable")) {
261 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
263 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
264 $nextval = $langs->trans($nextval);
266 $htmltooltip .= $nextval.
'<br>';
268 $htmltooltip .= $langs->trans($module->error).
'<br>';
272 print
'<td class="center">';
273 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
285 print
"</table><br>\n";
292 print
load_fiche_titre($langs->trans(
"BatchSerialNumberingModules"),
'',
'');
294 print
'<table class="noborder centpercent">';
295 print
'<tr class="liste_titre">';
296 print
'<td>'.$langs->trans(
"Name").
'</td>';
297 print
'<td>'.$langs->trans(
"Description").
'</td>';
298 print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
299 print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
300 print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
305 foreach ($dirmodels as $reldir) {
309 $handle = opendir($dir);
310 if (is_resource($handle)) {
311 while (($file = readdir($handle)) !==
false) {
312 if (substr($file, 0, 7) ==
'mod_sn_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
313 $file = substr($file, 0,
dol_strlen($file) - 4);
315 require_once $dir.$file.
'.php';
317 $module =
new $file($db);
318 '@phan-var-force ModeleNumRefBatch $module';
321 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
324 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
328 if ($module->isEnabled()) {
329 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
330 print $module->info($langs);
334 print
'<td class="nowrap">';
335 $tmp = $module->getExample();
336 if (preg_match(
'/^Error/', $tmp)) {
337 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
338 } elseif ($tmp ==
'NotConfigured') {
339 print $langs->trans($tmp);
345 print
'<td class="center">';
346 if ($conf->global->PRODUCTBATCH_SN_ADDON == $file) {
347 print
img_picto($langs->trans(
"Activated"),
'switch_on');
349 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmodsn&token='.
newToken().
'&value='.urlencode($file).
'">';
350 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
356 $batch->initAsSpecimen();
360 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
361 $nextval = $module->getNextValue($mysoc, $batch);
362 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
363 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
365 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
366 $nextval = $langs->trans($nextval);
368 $htmltooltip .= $nextval.
'<br>';
370 $htmltooltip .= $langs->trans($module->error).
'<br>';
374 print
'<td class="center">';
375 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
387 print
"</table><br>\n";
393$sql .=
" FROM " . MAIN_DB_PREFIX .
"document_model";
394$sql .=
" WHERE type = '" . $db->escape($type) .
"'";
395$sql .=
" AND entity = " . $conf->entity;
396$resql = $db->query($sql);
399 $num_rows = $db->num_rows($resql);
400 while ($i < $num_rows) {
401 $array = $db->fetch_array($resql);
402 if (is_array($array)) {
403 array_push($def, $array[0]);
413print
load_fiche_titre($langs->trans(
"ProductBatchDocumentTemplates"),
'',
'');
415print
'<div class="div-table-responsive-no-min">';
416print
'<table class="noborder centpercent">';
417print
'<tr class="liste_titre">';
418print
'<td>' . $langs->trans(
"Name") .
'</td>';
419print
'<td>' . $langs->trans(
"Description") .
'</td>';
420print
'<td class="center" width="60">' . $langs->trans(
"Status") .
"</td>\n";
421print
'<td class="center" width="60">' . $langs->trans(
"Default") .
"</td>\n";
422print
'<td class="center"></td>';
423print
'<td class="center" width="80">' . $langs->trans(
"Preview") .
'</td>';
429foreach ($dirmodels as $reldir) {
430 foreach (array(
'',
'/doc') as $valdir) {
431 $dir =
dol_buildpath($reldir .
"core/modules/product_batch" . $valdir);
433 $handle = opendir($dir);
434 if (is_resource($handle)) {
435 while (($file = readdir($handle)) !==
false) {
441 foreach ($filelist as $file) {
442 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
443 if (file_exists($dir .
'/' . $file)) {
444 $name = substr($file, 4,
dol_strlen($file) - 16);
445 $classname = substr($file, 0,
dol_strlen($file) - 12);
447 require_once $dir .
'/' . $file;
448 $module =
new $classname($db);
449 '@phan-var-force ModelePDFProductBatch $module';
451 $modulequalified = 1;
452 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
453 $modulequalified = 0;
455 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
456 $modulequalified = 0;
459 if ($modulequalified) {
460 print
'<tr class="oddeven"><td width="100">';
461 print(empty($module->name) ? $name : $module->
name);
463 if (method_exists($module,
'info')) {
464 print $module->info($langs);
466 print $module->description;
471 if (in_array($name, $def)) {
472 print
'<td class="center">' .
"\n";
473 print
'<a href="' . $_SERVER[
"PHP_SELF"] .
'?action=del&token=' .
newToken() .
'&value=' . urlencode($name) .
'">';
474 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
478 print
'<td class="center">' .
"\n";
479 print
'<a href="' . $_SERVER[
"PHP_SELF"] .
'?action=set&token=' .
newToken() .
'&value=' . urlencode($name) .
'&scan_dir=' . urlencode($module->scandir) .
'&label=' . urlencode($module->name) .
'">' .
img_picto($langs->trans(
"Disabled"),
'switch_off') .
'</a>';
484 print
'<td class="center">';
486 print
img_picto($langs->trans(
"Default"),
'on');
488 print
'<a href="' . $_SERVER[
"PHP_SELF"] .
'?action=setdoc&token=' .
newToken() .
'&value=' . urlencode($name) .
'&scan_dir=' . urlencode($module->scandir) .
'&label=' . urlencode($module->name) .
'" alt="' . $langs->trans(
"Default") .
'">' .
img_picto($langs->trans(
"Disabled"),
'off') .
'</a>';
493 $htmltooltip =
'' . $langs->trans(
"Name") .
': ' . $module->name;
494 $htmltooltip .=
'<br>' . $langs->trans(
"Type") .
': ' . ($module->type ? $module->type : $langs->trans(
"Unknown"));
495 if ($module->type ==
'pdf') {
496 $htmltooltip .=
'<br>' . $langs->trans(
"Width") .
'/' . $langs->trans(
"Height") .
': ' . $module->page_largeur .
'/' . $module->page_hauteur;
498 $htmltooltip .=
'<br><br><u>' . $langs->trans(
"FeaturesSupported") .
':</u>';
499 $htmltooltip .=
'<br>' . $langs->trans(
"Logo") .
': ' .
yn($module->option_logo, 1, 1);
500 $htmltooltip .=
'<br>' . $langs->trans(
"MultiLanguage") .
': ' .
yn($module->option_multilang, 1, 1);
503 print
'<td class="center">';
504 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
508 print
'<td class="center">';
509 if ($module->type ==
'pdf') {
510 print
'<a href="' . $_SERVER[
"PHP_SELF"] .
'?action=specimen&module=' . $name .
'">' .
img_object($langs->trans(
"Preview"),
'contract') .
'</a>';
512 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
addDocumentModel($name, $type, $label='', $description='')
Add document model used by doc generator.
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
delDocumentModel($name, $type)
Delete document model used by doc generator.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class with list of lots and properties.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
product_lot_admin_prepare_head()
Return array head with list of tabs to view object information.
$conf db name
Only used if Module[ID]Name translation string is not found.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.