dolibarr/htdocs/admin/reception_setup.php

479 lines
16 KiB
PHP
Raw Normal View History

2018-10-03 12:22:41 +02:00
<?php
/* Copyright (C) 2018 Quentin Vial-Gouteyron <quentin.vial-gouteyron@atm-consulting.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-10-03 12:22:41 +02:00
*/
/**
2019-05-09 17:26:06 +02:00
* \file htdocs/admin/reception_setup.php
* \ingroup reception
2018-10-03 12:22:41 +02:00
* \brief Page to setup reception module
*/
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/reception.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
require_once DOL_DOCUMENT_ROOT.'/reception/class/reception.class.php';
2019-05-09 17:26:06 +02:00
$langs->loadLangs(array("admin", "receptions", 'other'));
2018-10-03 12:22:41 +02:00
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
2018-10-03 12:22:41 +02:00
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
$value = GETPOST('value', 'alpha');
$label = GETPOST('label', 'alpha');
$scandir = GETPOST('scan_dir', 'alpha');
$type = 'reception';
2018-10-03 12:22:41 +02:00
/*
* Actions
*/
2021-02-26 22:04:03 +01:00
if (!empty($conf->reception->enabled) && empty($conf->global->MAIN_SUBMODULE_RECEPTION)) {
// This option should always be set to on when module is on.
dolibarr_set_const($db, "MAIN_SUBMODULE_RECEPTION", "1", 'chaine', 0, '', $conf->entity);
2018-10-03 12:22:41 +02:00
}
2021-02-26 22:04:03 +01:00
if (empty($conf->global->RECEPTION_ADDON_NUMBER)) {
$conf->global->RECEPTION_ADDON_NUMBER = 'mod_reception_beryl';
2018-10-03 12:22:41 +02:00
}
/*
* Actions
*/
include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
2021-02-26 22:04:03 +01:00
if ($action == 'updateMask') {
$maskconst = GETPOST('maskconstreception', 'alpha');
$maskvalue = GETPOST('maskreception', 'alpha');
2021-02-26 22:04:03 +01:00
if (!empty($maskconst)) {
$res = dolibarr_set_const($db, $maskconst, $maskvalue, 'chaine', 0, '', $conf->entity);
2021-02-26 22:04:03 +01:00
}
2018-10-03 12:22:41 +02:00
2021-02-26 22:04:03 +01:00
if (isset($res)) {
if ($res > 0) {
2018-10-03 12:22:41 +02:00
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
2021-02-26 22:04:03 +01:00
} else {
setEventMessages($langs->trans("Error"), null, 'errors');
}
2018-10-03 12:22:41 +02:00
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'set_param') {
2020-09-18 01:29:17 +02:00
$freetext = GETPOST('RECEPTION_FREE_TEXT', 'restricthtml'); // No alpha here, we want exact string
$res = dolibarr_set_const($db, "RECEPTION_FREE_TEXT", $freetext, 'chaine', 0, '', $conf->entity);
2021-02-26 22:04:03 +01:00
if ($res <= 0) {
2018-10-03 12:22:41 +02:00
$error++;
setEventMessages($langs->trans("Error"), null, 'errors');
}
$draft = GETPOST('RECEPTION_DRAFT_WATERMARK', 'alpha');
$res = dolibarr_set_const($db, "RECEPTION_DRAFT_WATERMARK", trim($draft), 'chaine', 0, '', $conf->entity);
2021-02-26 22:04:03 +01:00
if ($res <= 0) {
2018-10-03 12:22:41 +02:00
$error++;
setEventMessages($langs->trans("Error"), null, 'errors');
}
2021-02-26 22:04:03 +01:00
if (!$error) {
2018-10-03 12:22:41 +02:00
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'specimen') {
$modele = GETPOST('module', 'alpha');
2018-10-03 12:22:41 +02:00
$exp = new Reception($db);
$exp->initAsSpecimen();
// Search template files
$file = ''; $classname = ''; $filefound = 0;
$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
$file = dol_buildpath($reldir."core/modules/reception/doc/pdf_".$modele.".modules.php", 0);
2021-02-26 22:04:03 +01:00
if (file_exists($file)) {
$filefound = 1;
2018-10-03 12:22:41 +02:00
$classname = "pdf_".$modele;
break;
}
}
2021-02-26 22:04:03 +01:00
if ($filefound) {
2018-10-03 12:22:41 +02:00
require_once $file;
$module = new $classname($db);
2021-02-26 22:04:03 +01:00
if ($module->write_file($exp, $langs) > 0) {
2018-10-03 12:22:41 +02:00
header("Location: ".DOL_URL_ROOT."/document.php?modulepart=reception&file=SPECIMEN.pdf");
return;
2020-05-21 09:35:30 +02:00
} else {
2018-10-03 12:22:41 +02:00
setEventMessages($module->error, $module->errors, 'errors');
dol_syslog($module->error, LOG_ERR);
}
2020-05-21 09:35:30 +02:00
} else {
2018-10-03 12:22:41 +02:00
setEventMessages($langs->trans("ErrorModuleNotFound"), null, 'errors');
dol_syslog($langs->trans("ErrorModuleNotFound"), LOG_ERR);
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'set') {
// Activate a model
2018-10-03 12:22:41 +02:00
$ret = addDocumentModel($value, $type, $label, $scandir);
2021-02-26 22:04:03 +01:00
} elseif ($action == 'del') {
2018-10-03 12:22:41 +02:00
$ret = delDocumentModel($value, $type);
2021-02-26 22:04:03 +01:00
if ($ret > 0) {
if ($conf->global->RECEPTION_ADDON_PDF == "$value") {
dolibarr_del_const($db, 'RECEPTION_ADDON_PDF', $conf->entity);
}
2018-10-03 12:22:41 +02:00
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'setdoc') {
// Set default model
if (dolibarr_set_const($db, "RECEPTION_ADDON_PDF", $value, 'chaine', 0, '', $conf->entity)) {
2018-10-03 12:22:41 +02:00
// La constante qui a ete lue en avant du nouveau set
// on passe donc par une variable pour avoir un affichage coherent
$conf->global->RECEPTION_ADDON_PDF = $value;
}
// On active le modele
$ret = delDocumentModel($value, $type);
2021-02-26 22:04:03 +01:00
if ($ret > 0) {
2018-10-03 12:22:41 +02:00
$ret = addDocumentModel($value, $type, $label, $scandir);
}
2021-02-26 22:04:03 +01:00
} elseif ($action == 'setmodel') {
dolibarr_set_const($db, "RECEPTION_ADDON_NUMBER", $value, 'chaine', 0, '', $conf->entity);
2018-10-03 12:22:41 +02:00
}
/*
* View
*/
$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
2018-10-03 12:22:41 +02:00
$form = new Form($db);
2018-10-03 12:22:41 +02:00
llxHeader("", $langs->trans("ReceptionsSetup"));
2018-10-03 12:22:41 +02:00
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("ReceptionsSetup"), $linkback, 'title_setup');
2018-10-03 12:22:41 +02:00
print '<br>';
$head = reception_admin_prepare_head();
2021-05-10 15:24:07 +02:00
print dol_get_fiche_head($head, 'reception', $langs->trans("Receptions"), -1, 'reception');
2018-10-03 12:22:41 +02:00
// Reception numbering model
print load_fiche_titre($langs->trans("ReceptionsNumberingModules"));
2021-05-24 19:05:25 +02:00
print '<div class="div-table-responsive-no-min">';
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
2018-10-03 12:22:41 +02:00
print '<tr class="liste_titre">';
print '<td width="100">'.$langs->trans("Name").'</td>';
print '<td>'.$langs->trans("Description").'</td>';
print '<td>'.$langs->trans("Example").'</td>';
print '<td class="center" width="60">'.$langs->trans("Status").'</td>';
print '<td class="center" width="80">'.$langs->trans("ShortInfo").'</td>';
print "</tr>\n";
clearstatcache();
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
2020-01-20 01:05:30 +01:00
$dir = dol_buildpath($reldir."core/modules/reception");
2019-05-09 17:26:06 +02:00
2021-02-26 22:04:03 +01:00
if (is_dir($dir)) {
2018-10-03 12:22:41 +02:00
$handle = opendir($dir);
2021-02-26 22:04:03 +01:00
if (is_resource($handle)) {
while (($file = readdir($handle)) !== false) {
if (substr($file, 0, 14) == 'mod_reception_' && substr($file, dol_strlen($file) - 3, 3) == 'php') {
$file = substr($file, 0, dol_strlen($file) - 4);
2018-10-03 12:22:41 +02:00
2020-02-05 13:03:43 +01:00
require_once $dir.'/'.$file.'.php';
2018-10-03 12:22:41 +02:00
$module = new $file;
2021-02-26 22:04:03 +01:00
if ($module->isEnabled()) {
2018-10-03 12:22:41 +02:00
// Show modules according to features level
2021-02-26 22:04:03 +01:00
if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
continue;
}
if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
continue;
}
2018-10-03 12:22:41 +02:00
print '<tr><td>'.$module->nom."</td>\n";
print '<td>';
print $module->info();
print '</td>';
// Show example of numbering module
print '<td class="nowrap">';
$tmp = $module->getExample();
if (preg_match('/^Error/', $tmp)) {
$langs->load("errors");
print '<div class="error">'.$langs->trans($tmp).'</div>';
2021-02-26 22:04:03 +01:00
} elseif ($tmp == 'NotConfigured') {
print $langs->trans($tmp);
} else {
print $tmp;
}
print '</td>'."\n";
2018-10-03 12:22:41 +02:00
2019-12-12 10:31:08 +01:00
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($conf->global->RECEPTION_ADDON_NUMBER == "$file") {
print img_picto($langs->trans("Activated"), 'switch_on');
2020-05-21 09:35:30 +02:00
} else {
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setmodel&amp;token='.newToken().'&amp;value='.urlencode($file).'&amp;scan_dir='.$module->scandir.'&amp;label='.urlencode($module->name).'">';
print img_picto($langs->trans("Disabled"), 'switch_off');
2018-10-03 12:22:41 +02:00
print '</a>';
}
print '</td>';
$reception = new Reception($db);
2018-10-03 12:22:41 +02:00
$reception->initAsSpecimen();
// Info
$htmltooltip = '';
$htmltooltip .= ''.$langs->trans("Version").': <b>'.$module->getVersion().'</b><br>';
$nextval = $module->getNextValue($mysoc, $reception);
if ("$nextval" != $langs->trans("NotAvailable")) { // Keep " on nextval
$htmltooltip .= ''.$langs->trans("NextValue").': ';
if ($nextval) {
2021-02-26 22:04:03 +01:00
if (preg_match('/^Error/', $nextval) || $nextval == 'NotConfigured') {
$nextval = $langs->trans($nextval);
2021-02-26 22:04:03 +01:00
}
$htmltooltip .= $nextval.'<br>';
} else {
$htmltooltip .= $langs->trans($module->error).'<br>';
}
}
2018-10-03 12:22:41 +02:00
2019-12-12 10:31:08 +01:00
print '<td class="center">';
print $form->textwithpicto('', $htmltooltip, 1, 0);
2018-10-03 12:22:41 +02:00
print '</td>';
print '</tr>';
}
}
}
closedir($handle);
}
}
}
2021-05-24 19:05:25 +02:00
print '</table>';
print '</div>';
2018-10-03 12:22:41 +02:00
2021-05-24 19:05:25 +02:00
print '<br>';
2018-10-03 12:22:41 +02:00
/*
* Documents models for Receptions Receipt
*/
print load_fiche_titre($langs->trans("ReceptionsReceiptModel"));
// Defini tableau def de modele invoice
$type = "reception";
2018-10-03 12:22:41 +02:00
$def = array();
$sql = "SELECT nom";
$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
2020-09-19 23:11:38 +02:00
$sql .= " WHERE type = '".$db->escape($type)."'";
$sql .= " AND entity = ".$conf->entity;
2018-10-03 12:22:41 +02:00
$resql = $db->query($sql);
2021-02-26 22:04:03 +01:00
if ($resql) {
2018-10-03 12:22:41 +02:00
$i = 0;
$num_rows = $db->num_rows($resql);
2021-02-26 22:04:03 +01:00
while ($i < $num_rows) {
2018-10-03 12:22:41 +02:00
$array = $db->fetch_array($resql);
array_push($def, $array[0]);
$i++;
}
2020-05-21 09:35:30 +02:00
} else {
2018-10-03 12:22:41 +02:00
dol_print_error($db);
}
2021-05-24 19:05:25 +02:00
print '<div class="div-table-responsive-no-min">';
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
2018-10-03 12:22:41 +02:00
print '<tr class="liste_titre">';
print '<td width="140">'.$langs->trans("Name").'</td>';
print '<td>'.$langs->trans("Description").'</td>';
print '<td align="center" width="60">'.$langs->trans("Status").'</td>';
print '<td align="center" width="60">'.$langs->trans("Default").'</td>';
print '<td align="center" width="80" class="nowrap">'.$langs->trans("ShortInfo").'</td>';
print '<td align="center" width="80" class="nowrap">'.$langs->trans("Preview").'</td>';
print "</tr>\n";
clearstatcache();
2021-02-26 22:04:03 +01:00
foreach ($dirmodels as $reldir) {
foreach (array('', '/doc') as $valdir) {
$realpath = $reldir."core/modules/reception".$valdir;
$dir = dol_buildpath($realpath);
2021-02-26 22:04:03 +01:00
if (is_dir($dir)) {
$handle = opendir($dir);
2021-02-26 22:04:03 +01:00
if (is_resource($handle)) {
while (($file = readdir($handle)) !== false) {
$filelist[] = $file;
}
closedir($handle);
arsort($filelist);
2021-02-26 22:04:03 +01:00
foreach ($filelist as $file) {
if (preg_match('/\.modules\.php$/i', $file) && preg_match('/^(pdf_|doc_)/', $file)) {
if (file_exists($dir.'/'.$file)) {
$name = substr($file, 4, dol_strlen($file) - 16);
$classname = substr($file, 0, dol_strlen($file) - 12);
require_once $dir.'/'.$file;
$module = new $classname($db);
$modulequalified = 1;
2021-02-26 22:04:03 +01:00
if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
$modulequalified = 0;
}
if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
$modulequalified = 0;
}
2021-02-26 22:04:03 +01:00
if ($modulequalified) {
print '<tr><td width="100">';
print (empty($module->name) ? $name : $module->name);
print "</td><td>\n";
2021-02-26 22:04:03 +01:00
if (method_exists($module, 'info')) {
print $module->info($langs);
} else {
print $module->description;
}
print '</td>';
// Active
2021-02-26 22:04:03 +01:00
if (in_array($name, $def)) {
print '<td class="center">'."\n";
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=del&amp;token='.newToken().'&amp;value='.$name.'">';
print img_picto($langs->trans("Enabled"), 'switch_on');
print '</a>';
print '</td>';
} else {
print '<td class="center">'."\n";
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=set&amp;token='.newToken().'&amp;value='.$name.'&amp;scan_dir='.$module->scandir.'&amp;label='.urlencode($module->name).'">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
print "</td>";
}
// Defaut
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($conf->global->RECEPTION_ADDON_PDF == $name) {
print img_picto($langs->trans("Default"), 'on');
} else {
print '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=setdoc&amp;token='.newToken().'&amp;value='.$name.'&amp;scan_dir='.$module->scandir.'&amp;label='.urlencode($module->name).'" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"), 'off').'</a>';
}
print '</td>';
// Info
$htmltooltip = ''.$langs->trans("Name").': '.$module->name;
$htmltooltip .= '<br>'.$langs->trans("Type").': '.($module->type ? $module->type : $langs->trans("Unknown"));
2021-02-26 22:04:03 +01:00
if ($module->type == 'pdf') {
$htmltooltip .= '<br>'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur;
}
$htmltooltip .= '<br>'.$langs->trans("Path").': '.preg_replace('/^\//', '', $realpath).'/'.$file;
$htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
$htmltooltip .= '<br>'.$langs->trans("Logo").': '.yn($module->option_logo, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("PaymentMode").': '.yn($module->option_modereg, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("PaymentConditions").': '.yn($module->option_condreg, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("MultiLanguage").': '.yn($module->option_multilang, 1, 1);
$htmltooltip .= '<br>'.$langs->trans("WatermarkOnDraftOrders").': '.yn($module->option_draft_watermark, 1, 1);
print '<td class="center">';
print $form->textwithpicto('', $htmltooltip, 1, 0);
print '</td>';
// Preview
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($module->type == 'pdf') {
2020-12-03 13:19:35 +01:00
print '<a href="'.$_SERVER["PHP_SELF"].'?action=specimen&module='.$name.'&amp;scan_dir='.$module->scandir.'&amp;label='.urlencode($module->name).'">'.img_object($langs->trans("Preview"), 'pdf').'</a>';
} else {
print img_object($langs->trans("PreviewNotAvailable"), 'generic');
}
print '</td>';
print "</tr>\n";
}
}
}
}
}
}
}
2018-10-03 12:22:41 +02:00
}
print '</table>';
2021-05-24 19:05:25 +02:00
print '</div>';
2018-10-03 12:22:41 +02:00
print '<br>';
/*
* Other options
*
*/
/*
print load_fiche_titre($langs->trans("OtherOptions"));
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
print '<input type="hidden" name="token" value="'.newToken().'">';
2018-10-03 12:22:41 +02:00
print '<input type="hidden" name="action" value="set_param">';
print "<table class=\"noborder\" width=\"100%\">";
print "<tr class=\"liste_titre\">";
print "<td>".$langs->trans("Parameter")."</td>\n";
print "</tr>";
$substitutionarray=pdf_getSubstitutionArray($langs);
$substitutionarray['__(AnyTranslationKey)__']=$langs->trans("Translation");
$htmltext = '<i>'.$langs->trans("AvailableVariables").':<br>';
foreach($substitutionarray as $key => $val) $htmltext.=$key.'<br>';
$htmltext.='</i>';
print '<tr><td>';
print $form->textwithpicto($langs->trans("FreeLegalTextOnReceptions"), $langs->trans("AddCRIfTooLong").'<br><br>'.$htmltext).'<br>';
$variablename='RECEPTION_FREE_TEXT';
if (empty($conf->global->PDF_ALLOW_HTML_FOR_FREE_TEXT))
{
2021-02-26 22:04:03 +01:00
print '<textarea name="'.$variablename.'" class="flat" cols="120">'.$conf->global->$variablename.'</textarea>';
2018-10-03 12:22:41 +02:00
}
else
{
2021-02-26 22:04:03 +01:00
include_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
$doleditor=new DolEditor($variablename, $conf->global->$variablename,'',80,'dolibarr_notes');
print $doleditor->Create();
2018-10-03 12:22:41 +02:00
}
print "</td></tr>\n";
print '<tr><td>';
print $form->textwithpicto($langs->trans("WatermarkOnDraftContractCards"), $htmltext).'<br>';
2021-06-13 01:27:04 +02:00
print '<input class="flat minwidth200" type="text" name="RECEPTION_DRAFT_WATERMARK" value="'.$conf->global->RECEPTION_DRAFT_WATERMARK.'">';
2018-10-03 12:22:41 +02:00
print "</td></tr>\n";
*/
print '</table>';
2020-08-17 14:08:52 +02:00
//print '<div class="center"><input type="submit" class="button" value="'.$langs->trans("Modify").'"></div>';
2018-10-03 12:22:41 +02:00
print '</form>';
llxFooter();
$db->close();