27require
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/bom/class/bom.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/bom/lib/bom.lib.php';
34$langs->loadLangs(array(
'admin',
'errors',
'mrp',
'other'));
40$action =
GETPOST(
'action',
'aZ09');
41$value =
GETPOST(
'value',
'alpha');
42$modulepart =
GETPOST(
'modulepart',
'aZ09');
44$label =
GETPOST(
'label',
'alpha');
45$scandir =
GETPOST(
'scan_dir',
'alpha');
53include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
55if ($action ==
'updateMask') {
56 $maskconstbom =
GETPOST(
'maskconstBom',
'aZ09');
57 $maskbom =
GETPOST(
'maskBom',
'alpha');
61 if ($maskconstbom && preg_match(
'/_MASK$/', $maskconstbom)) {
62 $res =
dolibarr_set_const($db, $maskconstbom, $maskbom,
'chaine', 0,
'', $conf->entity);
74} elseif ($action ==
'specimen') {
75 $modele =
GETPOST(
'module',
'alpha');
78 $bom->initAsSpecimen();
83 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
84 foreach ($dirmodels as $reldir) {
85 $file =
dol_buildpath($reldir.
"core/modules/bom/doc/pdf_".$modele.
".modules.php", 0);
86 if (file_exists($file)) {
87 $classname =
"pdf_".$modele;
92 if ($classname !==
'') {
95 $module =
new $classname($db);
96 '@phan-var-force ModelePDFBom $module';
98 if ($module->write_file($bom, $langs) > 0) {
99 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=bom&file=SPECIMEN.pdf");
107 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
109} elseif ($action ==
'set') {
112} elseif ($action ==
'del') {
115 if ($conf->global->BOM_ADDON_PDF ==
"$value") {
119} elseif ($action ==
'setdoc') {
121 if (
dolibarr_set_const($db,
"BOM_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
124 $conf->global->BOM_ADDON_PDF = $value;
132} elseif ($action ==
'setmod') {
137} elseif ($action ==
'set_BOM_DRAFT_WATERMARK') {
138 $draft =
GETPOST(
"BOM_DRAFT_WATERMARK");
139 $res =
dolibarr_set_const($db,
"BOM_DRAFT_WATERMARK", trim($draft),
'chaine', 0,
'', $conf->entity);
150} elseif ($action ==
'set_BOM_FREE_TEXT') {
151 $freetext =
GETPOST(
"BOM_FREE_TEXT",
'restricthtml');
153 $res =
dolibarr_set_const($db,
"BOM_FREE_TEXT", $freetext,
'chaine', 0,
'', $conf->entity);
171$form =
new Form($db);
173$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
175llxHeader(
"", $langs->trans(
"BOMsSetup"),
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-bom');
177$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
178print
load_fiche_titre($langs->trans(
"BOMsSetup"), $linkback,
'title_setup');
190print
'<div class="div-table-responsive-no-min">';
191print
'<table class="noborder centpercent">';
192print
'<tr class="liste_titre">';
193print
'<td>'.$langs->trans(
"Name").
'</td>';
194print
'<td>'.$langs->trans(
"Description").
'</td>';
195print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
196print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
197print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
202foreach ($dirmodels as $reldir) {
206 $handle = opendir($dir);
207 if (is_resource($handle)) {
208 while (($file = readdir($handle)) !==
false) {
209 if (substr($file, 0, 8) ==
'mod_bom_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
210 $file = substr($file, 0,
dol_strlen($file) - 4);
213 require_once $dir.$file.
'.php';
215 $module =
new $classname($db);
217 '@phan-var-force ModeleNumRefBoms $module';
220 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
223 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
227 if ($module->isEnabled()) {
228 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
229 print $module->info($langs);
233 print
'<td class="nowrap">';
234 $tmp = $module->getExample();
235 if (preg_match(
'/^Error/', $tmp)) {
236 $langs->load(
"errors");
237 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
238 } elseif ($tmp ==
'NotConfigured') {
239 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
245 print
'<td class="center">';
246 if ($conf->global->BOM_ADDON == $file) {
247 print
img_picto($langs->trans(
"Activated"),
'switch_on');
249 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.
newToken().
'&value='.urlencode($file).
'">';
250 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
256 $bom->initAsSpecimen();
260 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
262 $nextval = $module->getNextValue($mysoc, $bom);
263 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
264 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
266 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
267 $nextval = $langs->trans($nextval);
269 $htmltooltip .= $nextval.
'<br>';
271 $htmltooltip .= $langs->trans($module->error).
'<br>';
275 print
'<td class="center">';
276 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
301$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
302$sql .=
" WHERE type = '".$db->escape($type).
"'";
303$sql .=
" AND entity = ".$conf->entity;
304$resql = $db->query($sql);
307 $num_rows = $db->num_rows($resql);
308 while ($i < $num_rows) {
309 $array = $db->fetch_array($resql);
310 if (is_array($array)) {
311 array_push($def, $array[0]);
320print
'<div class="div-table-responsive-no-min">';
321print
'<table class="noborder centpercent">';
322print
'<tr class="liste_titre">';
323print
'<td>'.$langs->trans(
"Name").
'</td>';
324print
'<td>'.$langs->trans(
"Description").
'</td>';
325print
'<td class="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
326print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
327print
'<td class="center" width="38">'.$langs->trans(
"ShortInfo").
'</td>';
328print
'<td class="center" width="38">'.$langs->trans(
"Preview").
'</td>';
333foreach ($dirmodels as $reldir) {
334 foreach (array(
'',
'/doc') as $valdir) {
335 $realpath = $reldir.
"core/modules/bom".$valdir;
339 $handle = opendir($dir);
340 if (is_resource($handle)) {
342 while (($file = readdir($handle)) !==
false) {
348 foreach ($filelist as $file) {
349 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
350 if (file_exists($dir.
'/'.$file)) {
351 $name = substr($file, 4,
dol_strlen($file) - 16);
352 $classname = substr($file, 0,
dol_strlen($file) - 12);
354 require_once $dir.
'/'.$file;
355 $module =
new $classname($db);
356 '@phan-var-force ModelePDFBom $module';
358 $modulequalified = 1;
359 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
360 $modulequalified = 0;
362 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
363 $modulequalified = 0;
366 if ($modulequalified) {
367 print
'<tr class="oddeven"><td width="100">';
368 print(empty($module->name) ? $name : $module->
name);
370 if (method_exists($module,
'info')) {
371 print $module->info($langs);
373 print $module->description;
378 if (in_array($name, $def)) {
379 print
'<td class="center">'.
"\n";
380 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'">';
381 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
385 print
'<td class="center">'.
"\n";
386 print
'<a class="reposition" 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>';
391 print
'<td class="center">';
392 if ($conf->global->BOM_ADDON_PDF == $name) {
393 print
img_picto($langs->trans(
"Default"),
'on');
395 print
'<a class="reposition" 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>';
400 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
401 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
402 if ($module->type ==
'pdf') {
403 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
405 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
407 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
408 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
409 $htmltooltip .=
'<br>'.$langs->trans(
"WatermarkOnDraftBOMs").
': '.
yn($module->option_draft_watermark, 1, 1);
412 print
'<td class="center">';
413 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
417 print
'<td class="center">';
418 if ($module->type ==
'pdf') {
419 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
421 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
445print
'<div class="div-table-responsive-no-min">';
446print
'<table class="noborder centpercent">';
447print
'<tr class="liste_titre">';
448print
'<td>'.$langs->trans(
"Parameter").
'</td>';
449print
'<td class="center" width="60">'.$langs->trans(
"Value").
'</td>';
450print
"<td> </td>\n";
454$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
455$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
456foreach ($substitutionarray as $key => $val) {
457 $htmltext .= $key.
'<br>';
461print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
462print
'<input type="hidden" name="token" value="'.newToken().
'">';
463print
'<input type="hidden" name="action" value="set_BOM_FREE_TEXT">';
464print
'<tr class="oddeven"><td colspan="2">';
465print $form->textwithpicto($langs->trans(
"FreeLegalTextOnBOMs"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
466$variablename =
'BOM_FREE_TEXT';
468 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
470 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
472 print $doleditor->Create();
474print
'</td><td class="right">';
475print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
481print
'<form method="post" action="'.$_SERVER[
"PHP_SELF"].
'">';
482print
'<input type="hidden" name="token" value="'.newToken().
'">';
483print
'<input type="hidden" name="action" value="set_BOM_DRAFT_WATERMARK">';
484print
'<tr class="oddeven"><td>';
485print $form->textwithpicto($langs->trans(
"WatermarkOnDraftBOMs"), $htmltext, 1,
'help',
'', 0, 2,
'watermarktooltip').
'<br>';
487print
'<input class="flat minwidth200" type="text" name="BOM_DRAFT_WATERMARK" value="'.dol_escape_htmltag(
getDolGlobalString(
'BOM_DRAFT_WATERMARK')).
'">';
488print
'</td><td class="right">';
489print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
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.
bomAdminPrepareHead()
Prepare admin pages header.
Class to manage a WYSIWYG editor.
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.
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
$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.