dolibarr 24.0.0-beta
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-2025 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 (getDolGlobalString('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="'.dolBuildUrl(DOL_URL_ROOT.'/admin/modules.php', ['restore_lastsearch_values' => 1]).'">'.img_picto($langs->trans("BackToModuleList"), 'back', 'class="pictofixedwidth"').'<span class="hideonsmartphone">'.$langs->trans("BackToModuleList").'</span></a>';
189
190print load_fiche_titre($langs->trans("MrpSetupPage"), $linkback, 'title_setup');
191
192$head = mrpAdminPrepareHead();
193
194print dol_get_fiche_head($head, 'settings', $langs->trans("MOs"), -1, 'mrp');
195
196/*
197 * MOs Numbering model
198 */
199
200print load_fiche_titre($langs->trans("MOsNumberingModules"), '', '');
201
202print '<table class="noborder centpercent">';
203print '<tr class="liste_titre">';
204print '<td>'.$langs->trans("Name").'</td>';
205print '<td>'.$langs->trans("Description").'</td>';
206print '<td class="nowrap">'.$langs->trans("Example").'</td>';
207print '<td class="center" width="60">'.$langs->trans("Status").'</td>';
208print '<td class="center" width="16">'.$langs->trans("ShortInfo").'</td>';
209print '</tr>'."\n";
210
211clearstatcache();
212
213foreach ($dirmodels as $reldir) {
214 $dir = dol_buildpath($reldir."core/modules/mrp/");
215
216 if (is_dir($dir)) {
217 $handle = opendir($dir);
218 if (is_resource($handle)) {
219 while (($file = readdir($handle)) !== false) {
220 if (substr($file, 0, 7) == 'mod_mo_' && substr($file, dol_strlen($file) - 3, 3) == 'php') {
221 $file = substr($file, 0, dol_strlen($file) - 4);
222
223 require_once $dir.$file.'.php';
224
225 $module = new $file($db);
226
227 '@phan-var-force ModeleNumRefMos $module';
228
229 // Show modules according to features level
230 if ($module->version == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
231 continue;
232 }
233 if ($module->version == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
234 continue;
235 }
236
237 if ($module->isEnabled()) {
238 print '<tr class="oddeven"><td>'.$module->name."</td><td>\n";
239 print $module->info($langs);
240 print '</td>';
241
242 // Show example of numbering model
243 print '<td class="nowrap">';
244 $tmp = $module->getExample();
245 if (preg_match('/^Error/', $tmp)) {
246 $langs->load("errors");
247 print '<div class="error">'.$langs->trans($tmp).'</div>';
248 } elseif ($tmp == 'NotConfigured') {
249 print '<span class="opacitymedium">'.$langs->trans($tmp).'</span>';
250 } else {
251 print $tmp;
252 }
253 print '</td>'."\n";
254
255 print '<td class="center">';
256 if (getDolGlobalString('MRP_MO_ADDON') == $file) {
257 print img_picto($langs->trans("Activated"), 'switch_on');
258 } else {
259 print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmod&token='.newToken().'&value='.urlencode($file).'">';
260 print img_picto($langs->trans("Disabled"), 'switch_off');
261 print '</a>';
262 }
263 print '</td>';
264
265 $mrp = new Mo($db);
266 $mrp->initAsSpecimen();
267 $product = new Product($db);
268 $product->initAsSpecimen();
269
270 // Info
271 $htmltooltip = '';
272 $htmltooltip .= ''.$langs->trans("Version").': <b>'.$module->getVersion().'</b><br>';
273 $mrp->type = 0;
274 $nextval = $module->getNextValue($product, $mrp);
275 if ((string) $nextval != $langs->trans("NotAvailable")) {
276 $htmltooltip .= ''.$langs->trans("NextValue").': ';
277 if ($nextval) {
278 if (preg_match('/^Error/', $nextval) || $nextval == 'NotConfigured') {
279 $nextval = $langs->trans($nextval);
280 }
281 $htmltooltip .= $nextval.'<br>';
282 } else {
283 $htmltooltip .= $langs->trans($module->error).'<br>';
284 }
285 }
286
287 print '<td class="center">';
288 print $form->textwithpicto('', $htmltooltip, 1, 'info');
289 print '</td>';
290
291 print "</tr>\n";
292 }
293 }
294 }
295 closedir($handle);
296 }
297 }
298}
299print "</table><br>\n";
300
301
302/*
303 * Document templates generators
304 */
305
306print load_fiche_titre($langs->trans("MOsModelModule"), '', '');
307
308// Load array def with activated templates
309$def = array();
310$sql = "SELECT nom";
311$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
312$sql .= " WHERE type = '".$db->escape($type)."'";
313$sql .= " AND entity = ".((int) $conf->entity);
314$resql = $db->query($sql);
315if ($resql) {
316 $i = 0;
317 $num_rows = $db->num_rows($resql);
318 while ($i < $num_rows) {
319 $array = $db->fetch_array($resql);
320 if (is_array($array)) {
321 array_push($def, $array[0]);
322 }
323 $i++;
324 }
325} else {
327}
328
329
330print "<table class=\"noborder\" width=\"100%\">\n";
331print "<tr class=\"liste_titre\">\n";
332print '<td>'.$langs->trans("Name").'</td>';
333print '<td>'.$langs->trans("Description").'</td>';
334print '<td class="center" width="60">'.$langs->trans("Status")."</td>\n";
335print '<td class="center" width="60">'.$langs->trans("Default")."</td>\n";
336print '<td class="center" width="38">'.$langs->trans("ShortInfo").'</td>';
337print '<td class="center" width="38">'.$langs->trans("Preview").'</td>';
338print "</tr>\n";
339
340clearstatcache();
341
342foreach ($dirmodels as $reldir) {
343 foreach (array('', '/doc') as $valdir) {
344 $realpath = $reldir."core/modules/mrp".$valdir;
345 $dir = dol_buildpath($realpath);
346
347 if (is_dir($dir)) {
348 $handle = opendir($dir);
349 if (is_resource($handle)) {
350 $filelist = array();
351 while (($file = readdir($handle)) !== false) {
352 $filelist[] = $file;
353 }
354 closedir($handle);
355 arsort($filelist);
356
357 foreach ($filelist as $file) {
358 if (preg_match('/\.modules\.php$/i', $file) && preg_match('/^(pdf_|doc_)/', $file)) {
359 if (file_exists($dir.'/'.$file)) {
360 $name = substr($file, 4, dol_strlen($file) - 16);
361 $classname = substr($file, 0, dol_strlen($file) - 12);
362
363 require_once $dir.'/'.$file;
364 $module = new $classname($db);
365
366 '@phan-var-force ModelePDFMo $module';
367
368 $modulequalified = 1;
369 if ($module->version == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
370 $modulequalified = 0;
371 }
372 if ($module->version == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
373 $modulequalified = 0;
374 }
375
376 if ($modulequalified) {
377 print '<tr class="oddeven"><td width="100">';
378 print(empty($module->name) ? $name : $module->name);
379 print "</td><td>\n";
380 if (method_exists($module, 'info')) {
381 print $module->info($langs); // @phan-suppress-current-line PhanUndeclaredMethod
382 } else {
383 print $module->description;
384 }
385 print '</td>';
386
387 // Active
388 if (in_array($name, $def)) {
389 print '<td class="center">'."\n";
390 print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=del&token='.newToken().'&value='.urlencode($name).'">';
391 print img_picto($langs->trans("Enabled"), 'switch_on');
392 print '</a>';
393 print '</td>';
394 } else {
395 print '<td class="center">'."\n";
396 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>';
397 print "</td>";
398 }
399
400 // Default
401 print '<td class="center">';
402 if (getDolGlobalString("MRP_MO_ADDON_PDF") == $name) {
403 print img_picto($langs->trans("Default"), 'on');
404 } else {
405 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>';
406 }
407 print '</td>';
408
409 // Info
410 $htmltooltip = ''.$langs->trans("Name").': '.$module->name;
411 $htmltooltip .= '<br>'.$langs->trans("Type").': '.($module->type ? $module->type : $langs->trans("Unknown"));
412 if ($module->type == 'pdf') {
413 $htmltooltip .= '<br>'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur;
414 }
415 $htmltooltip .= '<br>'.$langs->trans("Path").': '.preg_replace('/^\//', '', $realpath).'/'.$file;
416
417 $htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
418 $htmltooltip .= '<br>'.$langs->trans("MultiLanguage").': '.yn($module->option_multilang, 1, 1);
419 $htmltooltip .= '<br>'.$langs->trans("WatermarkOnDraftMOs").': '.yn($module->option_draft_watermark, 1, 1);
420
421
422 print '<td class="center">';
423 print $form->textwithpicto('', $htmltooltip, 1, 'info');
424 print '</td>';
425
426 // Preview
427 print '<td class="center">';
428 if ($module->type == 'pdf') {
429 print '<a href="'.$_SERVER["PHP_SELF"].'?action=specimen&module='.$name.'">'.img_object($langs->trans("Preview"), 'pdf').'</a>';
430 } else {
431 print img_object($langs->transnoentitiesnoconv("PreviewNotAvailable"), 'generic');
432 }
433 print '</td>';
434
435 print "</tr>\n";
436 }
437 }
438 }
439 }
440 }
441 }
442 }
443}
444
445print '</table>';
446print "<br>";
447
448/*
449 * Other options
450 */
451
452print load_fiche_titre($langs->trans("OtherOptions"), '', '');
453print '<table class="noborder centpercent">';
454print '<tr class="liste_titre">';
455print '<td>'.$langs->trans("Parameter").'</td>';
456print '<td class="center" width="60"></td>';
457print "<td>&nbsp;</td>\n";
458print "</tr>\n";
459
460$substitutionarray = pdf_getSubstitutionArray($langs, null, null, 2);
461$substitutionarray['__(AnyTranslationKey)__'] = $langs->trans("Translation");
462$htmltext = '<i>'.$langs->trans("AvailableVariables").':<br>';
463foreach ($substitutionarray as $key => $val) {
464 $htmltext .= $key.'<br>';
465}
466$htmltext .= '</i>';
467
468print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
469print '<input type="hidden" name="token" value="'.newToken().'">';
470print '<input type="hidden" name="action" value="set_MRP_MO_FREE_TEXT">';
471print '<tr class="oddeven"><td colspan="2">';
472print $form->textwithpicto($langs->trans("FreeLegalTextOnMOs"), $langs->trans("AddCRIfTooLong").'<br><br>'.$htmltext, 1, 'help', '', 0, 2, 'freetexttooltip').'<br>';
473$variablename = 'MRP_MO_FREE_TEXT';
474if (!getDolGlobalString('PDF_ALLOW_HTML_FOR_FREE_TEXT')) {
475 print '<textarea name="'.$variablename.'" class="flat" cols="120">'.getDolGlobalString($variablename).'</textarea>';
476} else {
477 include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
478 $doleditor = new DolEditor($variablename, getDolGlobalString($variablename), '', 80, 'dolibarr_notes');
479 print $doleditor->Create();
480}
481print '</td><td class="right">';
482print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
483print "</td></tr>\n";
484print '</form>';
485
486//Use draft Watermark
487
488print "<form method=\"post\" action=\"".$_SERVER["PHP_SELF"]."\">";
489print '<input type="hidden" name="token" value="'.newToken().'">';
490print "<input type=\"hidden\" name=\"action\" value=\"set_MRP_MO_DRAFT_WATERMARK\">";
491print '<tr class="oddeven"><td>';
492print $form->textwithpicto($langs->trans("WatermarkOnDraftMOs"), $htmltext, 1, 'help', '', 0, 2, 'watermarktooltip').'<br>';
493print '</td><td>';
494print '<input class="flat minwidth200" type="text" name="MRP_MO_DRAFT_WATERMARK" value="'.dol_escape_htmltag(getDolGlobalString('MRP_MO_DRAFT_WATERMARK')).'">';
495print '</td><td class="right">';
496print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
497print "</td></tr>\n";
498print '</form>';
499
500print '</table>';
501print '<br>';
502
503
504// End of page
505llxFooter();
506$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.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
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.
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
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.
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:1135
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.