dolibarr 22.0.5
mrp.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2019 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26// Load Dolibarr environment
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.'/mrp/class/mo.class.php';
31require_once DOL_DOCUMENT_ROOT.'/mrp/lib/mrp_mo.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/mrp/lib/mrp.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
34
43// Load translation files required by the page
44$langs->loadLangs(array('admin', 'errors', 'mrp', 'other'));
45
46if (!$user->admin) {
48}
49
50$action = GETPOST('action', 'aZ09');
51$value = GETPOST('value', 'alpha');
52$modulepart = GETPOST('modulepart', 'aZ09'); // Used by actions_setmoduleoptions.inc.php
53
54$label = GETPOST('label', 'alpha');
55$scandir = GETPOST('scan_dir', 'alpha');
56$type = 'mrp';
57
58
59/*
60 * Actions
61 */
62$error = 0;
63
64include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
65
66if ($action == 'updateMask') {
67 $maskconstmrp = GETPOST('maskconstMo', 'aZ09');
68 $maskmrp = GETPOST('maskMo', 'alpha');
69
70 $res = 0;
71
72 if ($maskconstmrp && preg_match('/_MASK$/', $maskconstmrp)) {
73 $res = dolibarr_set_const($db, $maskconstmrp, $maskmrp, 'chaine', 0, '', $conf->entity);
74 }
75
76 if (!($res > 0)) {
77 $error++;
78 }
79
80 if (!$error) {
81 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
82 } else {
83 setEventMessages($langs->trans("Error"), null, 'errors');
84 }
85} elseif ($action == 'specimen') {
86 $modele = GETPOST('module', 'alpha');
87
88 $mo = new Mo($db);
89 $mo->initAsSpecimen();
90
91 // Search template files
92 $file = '';
93 $classname = '';
94 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
95 foreach ($dirmodels as $reldir) {
96 $file = dol_buildpath($reldir."core/modules/mrp/doc/pdf_".$modele.".modules.php", 0);
97 if (file_exists($file)) {
98 $classname = "pdf_".$modele;
99 break;
100 }
101 }
102
103 if ($classname !== '') {
104 require_once $file;
105
106 $module = new $classname($db);
107 '@phan-var-force ModelePDFMo $module';
108
109 if ($module->write_file($mo, $langs) > 0) {
110 header("Location: ".DOL_URL_ROOT."/document.php?modulepart=mrp&file=SPECIMEN.pdf");
111 return;
112 } else {
113 setEventMessages($module->error, null, 'errors');
114 dol_syslog($module->error, LOG_ERR);
115 }
116 } else {
117 setEventMessages($langs->trans("ErrorModuleNotFound"), null, 'errors');
118 dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR);
119 }
120} elseif ($action == 'set') {
121 // Activate a model
122 $ret = addDocumentModel($value, $type, $label, $scandir);
123} elseif ($action == 'del') {
124 $ret = delDocumentModel($value, $type);
125 if ($ret > 0) {
126 if ($conf->global->MRP_MO_ADDON_PDF == "$value") {
127 dolibarr_del_const($db, 'MRP_MO_ADDON_PDF', $conf->entity);
128 }
129 }
130} elseif ($action == 'setdoc') {
131 // Set default model
132 if (dolibarr_set_const($db, "MRP_MO_ADDON_PDF", $value, 'chaine', 0, '', $conf->entity)) {
133 // The constant that was read before the new set
134 // We therefore requires a variable to have a coherent view
135 $conf->global->MRP_MO_ADDON_PDF = $value;
136 }
137
138 // On active le modele
139 $ret = delDocumentModel($value, $type);
140 if ($ret > 0) {
141 $ret = addDocumentModel($value, $type, $label, $scandir);
142 }
143} elseif ($action == 'setmod') {
144 // TODO Check if numbering module chosen can be activated
145 // by calling method canBeActivated
146
147 dolibarr_set_const($db, "MRP_MO_ADDON", $value, 'chaine', 0, '', $conf->entity);
148} elseif ($action == 'set_MRP_MO_DRAFT_WATERMARK') {
149 $draft = GETPOST("MRP_MO_DRAFT_WATERMARK");
150 $res = dolibarr_set_const($db, "MRP_MO_DRAFT_WATERMARK", trim($draft), 'chaine', 0, '', $conf->entity);
151
152 if (!($res > 0)) {
153 $error++;
154 }
155
156 if (!$error) {
157 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
158 } else {
159 setEventMessages($langs->trans("Error"), null, 'errors');
160 }
161} elseif ($action == 'set_MRP_MO_FREE_TEXT') {
162 $freetext = GETPOST("MRP_MO_FREE_TEXT", 'restricthtml'); // No alpha here, we want exact string
163
164 $res = dolibarr_set_const($db, "MRP_MO_FREE_TEXT", $freetext, 'chaine', 0, '', $conf->entity);
165
166 if (!($res > 0)) {
167 $error++;
168 }
169
170 if (!$error) {
171 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
172 } else {
173 setEventMessages($langs->trans("Error"), null, 'errors');
174 }
175}
176
177
178/*
179 * View
180 */
181
182$form = new Form($db);
183
184$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
185
186llxHeader("", $langs->trans("MrpSetupPage"), '', '', 0, 0, '', '', '', 'mod-admin page-mrp');
187
188$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
189print load_fiche_titre($langs->trans("MrpSetupPage"), $linkback, 'title_setup');
190
191$head = mrpAdminPrepareHead();
192
193print dol_get_fiche_head($head, 'settings', $langs->trans("MOs"), -1, 'mrp');
194
195/*
196 * MOs Numbering model
197 */
198
199print load_fiche_titre($langs->trans("MOsNumberingModules"), '', '');
200
201print '<table class="noborder centpercent">';
202print '<tr class="liste_titre">';
203print '<td>'.$langs->trans("Name").'</td>';
204print '<td>'.$langs->trans("Description").'</td>';
205print '<td class="nowrap">'.$langs->trans("Example").'</td>';
206print '<td class="center" width="60">'.$langs->trans("Status").'</td>';
207print '<td class="center" width="16">'.$langs->trans("ShortInfo").'</td>';
208print '</tr>'."\n";
209
210clearstatcache();
211
212foreach ($dirmodels as $reldir) {
213 $dir = dol_buildpath($reldir."core/modules/mrp/");
214
215 if (is_dir($dir)) {
216 $handle = opendir($dir);
217 if (is_resource($handle)) {
218 while (($file = readdir($handle)) !== false) {
219 if (substr($file, 0, 7) == 'mod_mo_' && substr($file, dol_strlen($file) - 3, 3) == 'php') {
220 $file = substr($file, 0, dol_strlen($file) - 4);
221
222 require_once $dir.$file.'.php';
223
224 $module = new $file($db);
225
226 '@phan-var-force ModeleNumRefMos $module';
227
228 // Show modules according to features level
229 if ($module->version == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
230 continue;
231 }
232 if ($module->version == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
233 continue;
234 }
235
236 if ($module->isEnabled()) {
237 print '<tr class="oddeven"><td>'.$module->name."</td><td>\n";
238 print $module->info($langs);
239 print '</td>';
240
241 // Show example of numbering model
242 print '<td class="nowrap">';
243 $tmp = $module->getExample();
244 if (preg_match('/^Error/', $tmp)) {
245 $langs->load("errors");
246 print '<div class="error">'.$langs->trans($tmp).'</div>';
247 } elseif ($tmp == 'NotConfigured') {
248 print '<span class="opacitymedium">'.$langs->trans($tmp).'</span>';
249 } else {
250 print $tmp;
251 }
252 print '</td>'."\n";
253
254 print '<td class="center">';
255 if ($conf->global->MRP_MO_ADDON == $file) {
256 print img_picto($langs->trans("Activated"), 'switch_on');
257 } else {
258 print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmod&token='.newToken().'&value='.urlencode($file).'">';
259 print img_picto($langs->trans("Disabled"), 'switch_off');
260 print '</a>';
261 }
262 print '</td>';
263
264 $mrp = new Mo($db);
265 $mrp->initAsSpecimen();
266 $product = new Product($db);
267 $product->initAsSpecimen();
268
269 // Info
270 $htmltooltip = '';
271 $htmltooltip .= ''.$langs->trans("Version").': <b>'.$module->getVersion().'</b><br>';
272 $mrp->type = 0;
273 $nextval = $module->getNextValue($product, $mrp);
274 if ((string) $nextval != $langs->trans("NotAvailable")) {
275 $htmltooltip .= ''.$langs->trans("NextValue").': ';
276 if ($nextval) {
277 if (preg_match('/^Error/', $nextval) || $nextval == 'NotConfigured') {
278 $nextval = $langs->trans($nextval);
279 }
280 $htmltooltip .= $nextval.'<br>';
281 } else {
282 $htmltooltip .= $langs->trans($module->error).'<br>';
283 }
284 }
285
286 print '<td class="center">';
287 print $form->textwithpicto('', $htmltooltip, 1, 'info');
288 print '</td>';
289
290 print "</tr>\n";
291 }
292 }
293 }
294 closedir($handle);
295 }
296 }
297}
298print "</table><br>\n";
299
300
301/*
302 * Document templates generators
303 */
304
305print load_fiche_titre($langs->trans("MOsModelModule"), '', '');
306
307// Load array def with activated templates
308$def = array();
309$sql = "SELECT nom";
310$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
311$sql .= " WHERE type = '".$db->escape($type)."'";
312$sql .= " AND entity = ".$conf->entity;
313$resql = $db->query($sql);
314if ($resql) {
315 $i = 0;
316 $num_rows = $db->num_rows($resql);
317 while ($i < $num_rows) {
318 $array = $db->fetch_array($resql);
319 if (is_array($array)) {
320 array_push($def, $array[0]);
321 }
322 $i++;
323 }
324} else {
325 dol_print_error($db);
326}
327
328
329print "<table class=\"noborder\" width=\"100%\">\n";
330print "<tr class=\"liste_titre\">\n";
331print '<td>'.$langs->trans("Name").'</td>';
332print '<td>'.$langs->trans("Description").'</td>';
333print '<td class="center" width="60">'.$langs->trans("Status")."</td>\n";
334print '<td class="center" width="60">'.$langs->trans("Default")."</td>\n";
335print '<td class="center" width="38">'.$langs->trans("ShortInfo").'</td>';
336print '<td class="center" width="38">'.$langs->trans("Preview").'</td>';
337print "</tr>\n";
338
339clearstatcache();
340
341foreach ($dirmodels as $reldir) {
342 foreach (array('', '/doc') as $valdir) {
343 $realpath = $reldir."core/modules/mrp".$valdir;
344 $dir = dol_buildpath($realpath);
345
346 if (is_dir($dir)) {
347 $handle = opendir($dir);
348 if (is_resource($handle)) {
349 $filelist = array();
350 while (($file = readdir($handle)) !== false) {
351 $filelist[] = $file;
352 }
353 closedir($handle);
354 arsort($filelist);
355
356 foreach ($filelist as $file) {
357 if (preg_match('/\.modules\.php$/i', $file) && preg_match('/^(pdf_|doc_)/', $file)) {
358 if (file_exists($dir.'/'.$file)) {
359 $name = substr($file, 4, dol_strlen($file) - 16);
360 $classname = substr($file, 0, dol_strlen($file) - 12);
361
362 require_once $dir.'/'.$file;
363 $module = new $classname($db);
364
365 '@phan-var-force ModelePDFMo $module';
366
367 $modulequalified = 1;
368 if ($module->version == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
369 $modulequalified = 0;
370 }
371 if ($module->version == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
372 $modulequalified = 0;
373 }
374
375 if ($modulequalified) {
376 print '<tr class="oddeven"><td width="100">';
377 print(empty($module->name) ? $name : $module->name);
378 print "</td><td>\n";
379 if (method_exists($module, 'info')) {
380 print $module->info($langs); // @phan-suppress-current-line PhanUndeclaredMethod
381 } else {
382 print $module->description;
383 }
384 print '</td>';
385
386 // Active
387 if (in_array($name, $def)) {
388 print '<td class="center">'."\n";
389 print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=del&token='.newToken().'&value='.urlencode($name).'">';
390 print img_picto($langs->trans("Enabled"), 'switch_on');
391 print '</a>';
392 print '</td>';
393 } else {
394 print '<td class="center">'."\n";
395 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>';
396 print "</td>";
397 }
398
399 // Default
400 print '<td class="center">';
401 if (getDolGlobalString("MRP_MO_ADDON_PDF") == $name) {
402 print img_picto($langs->trans("Default"), 'on');
403 } else {
404 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>';
405 }
406 print '</td>';
407
408 // Info
409 $htmltooltip = ''.$langs->trans("Name").': '.$module->name;
410 $htmltooltip .= '<br>'.$langs->trans("Type").': '.($module->type ? $module->type : $langs->trans("Unknown"));
411 if ($module->type == 'pdf') {
412 $htmltooltip .= '<br>'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur;
413 }
414 $htmltooltip .= '<br>'.$langs->trans("Path").': '.preg_replace('/^\//', '', $realpath).'/'.$file;
415
416 $htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
417 $htmltooltip .= '<br>'.$langs->trans("MultiLanguage").': '.yn($module->option_multilang, 1, 1);
418 $htmltooltip .= '<br>'.$langs->trans("WatermarkOnDraftMOs").': '.yn($module->option_draft_watermark, 1, 1);
419
420
421 print '<td class="center">';
422 print $form->textwithpicto('', $htmltooltip, 1, 'info');
423 print '</td>';
424
425 // Preview
426 print '<td class="center">';
427 if ($module->type == 'pdf') {
428 print '<a href="'.$_SERVER["PHP_SELF"].'?action=specimen&module='.$name.'">'.img_object($langs->trans("Preview"), 'pdf').'</a>';
429 } else {
430 print img_object($langs->transnoentitiesnoconv("PreviewNotAvailable"), 'generic');
431 }
432 print '</td>';
433
434 print "</tr>\n";
435 }
436 }
437 }
438 }
439 }
440 }
441 }
442}
443
444print '</table>';
445print "<br>";
446
447/*
448 * Other options
449 */
450
451print load_fiche_titre($langs->trans("OtherOptions"), '', '');
452print '<table class="noborder centpercent">';
453print '<tr class="liste_titre">';
454print '<td>'.$langs->trans("Parameter").'</td>';
455print '<td class="center" width="60"></td>';
456print "<td>&nbsp;</td>\n";
457print "</tr>\n";
458
459$substitutionarray = pdf_getSubstitutionArray($langs, null, null, 2);
460$substitutionarray['__(AnyTranslationKey)__'] = $langs->trans("Translation");
461$htmltext = '<i>'.$langs->trans("AvailableVariables").':<br>';
462foreach ($substitutionarray as $key => $val) {
463 $htmltext .= $key.'<br>';
464}
465$htmltext .= '</i>';
466
467print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
468print '<input type="hidden" name="token" value="'.newToken().'">';
469print '<input type="hidden" name="action" value="set_MRP_MO_FREE_TEXT">';
470print '<tr class="oddeven"><td colspan="2">';
471print $form->textwithpicto($langs->trans("FreeLegalTextOnMOs"), $langs->trans("AddCRIfTooLong").'<br><br>'.$htmltext, 1, 'help', '', 0, 2, 'freetexttooltip').'<br>';
472$variablename = 'MRP_MO_FREE_TEXT';
473if (!getDolGlobalString('PDF_ALLOW_HTML_FOR_FREE_TEXT')) {
474 print '<textarea name="'.$variablename.'" class="flat" cols="120">'.getDolGlobalString($variablename).'</textarea>';
475} else {
476 include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
477 $doleditor = new DolEditor($variablename, getDolGlobalString($variablename), '', 80, 'dolibarr_notes');
478 print $doleditor->Create();
479}
480print '</td><td class="right">';
481print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
482print "</td></tr>\n";
483print '</form>';
484
485//Use draft Watermark
486
487print "<form method=\"post\" action=\"".$_SERVER["PHP_SELF"]."\">";
488print '<input type="hidden" name="token" value="'.newToken().'">';
489print "<input type=\"hidden\" name=\"action\" value=\"set_MRP_MO_DRAFT_WATERMARK\">";
490print '<tr class="oddeven"><td>';
491print $form->textwithpicto($langs->trans("WatermarkOnDraftMOs"), $htmltext, 1, 'help', '', 0, 2, 'watermarktooltip').'<br>';
492print '</td><td>';
493print '<input class="flat minwidth200" type="text" name="MRP_MO_DRAFT_WATERMARK" value="'.dol_escape_htmltag(getDolGlobalString('MRP_MO_DRAFT_WATERMARK')).'">';
494print '</td><td class="right">';
495print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
496print "</td></tr>\n";
497print '</form>';
498
499print '</table>';
500print '<br>';
501
502
503// End of page
504llxFooter();
505$db->close();
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.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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.
Definition wrapper.php:73
Class to manage a WYSIWYG editor.
Class to manage generation of HTML components Only common components must be here.
Class for Mo.
Definition mo.class.php:35
Class to manage products or services.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
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, $allowothertags=array())
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, $morecssdiv='')
Show tabs of a record.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
mrpAdminPrepareHead()
Prepare admin pages header.
Definition mrp.lib.php:31
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
Definition pdf.lib.php:778
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:161
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.