dolibarr/htdocs/admin/loan.php

138 lines
3.6 KiB
PHP
Raw Permalink Normal View History

2014-09-21 17:42:38 +02:00
<?php
2019-01-28 21:39:22 +01:00
/* Copyright (C) 2014-2017 Alexandre Spangaro <aspangaro@open-dsi.fr>
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
add baseline exclude for phpstan (#31632) * add baseline exclude for phpstan * update * update * update * update * update * merge * restore one filter * delete old errors * fix * fix * fix * $moreforfilter can t be empty * fix * enable check * refresh baseline * add phpdoc * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
2024-11-04 23:53:20 +01:00
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
2014-09-21 17:42:38 +02:00
*
* 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/>.
2014-09-21 17:42:38 +02:00
*
*/
/**
* \file htdocs/admin/loan.php
* \ingroup loan
* \brief Setup page to configure loan module
*/
2022-09-07 20:08:59 +02:00
// Load Dolibarr environment
2014-09-21 17:42:38 +02:00
require '../main.inc.php';
2014-09-21 17:42:38 +02:00
// Class
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
2022-08-24 10:22:06 +02:00
if (isModEnabled('accounting')) {
2021-02-26 22:04:03 +01:00
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php';
}
2014-09-21 17:42:38 +02:00
add baseline exclude for phpstan (#31632) * add baseline exclude for phpstan * update * update * update * update * update * merge * restore one filter * delete old errors * fix * fix * fix * $moreforfilter can t be empty * fix * enable check * refresh baseline * add phpdoc * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
2024-11-04 23:53:20 +01:00
/**
* @var Conf $conf
* @var DoliDB $db
* @var HookManager $hookmanager
* @var Translate $langs
* @var User $user
*/
2018-05-26 18:41:16 +02:00
// Load translation files required by the page
$langs->loadLangs(array('admin', 'loan'));
2014-09-21 17:42:38 +02:00
// Security check
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
2021-02-26 22:04:03 +01:00
}
2014-09-21 17:42:38 +02:00
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
2014-09-21 17:42:38 +02:00
// Other parameters LOAN_*
$list = array(
2014-09-21 17:42:38 +02:00
'LOAN_ACCOUNTING_ACCOUNT_CAPITAL',
'LOAN_ACCOUNTING_ACCOUNT_INTEREST',
'LOAN_ACCOUNTING_ACCOUNT_INSURANCE'
);
/*
* Actions
*/
2021-02-26 22:04:03 +01:00
if ($action == 'update') {
$error = 0;
foreach ($list as $constname) {
$constvalue = GETPOST($constname, 'alpha');
if (!dolibarr_set_const($db, $constname, $constvalue, 'chaine', 0, '', $conf->entity)) {
$error++;
}
}
2021-02-26 22:04:03 +01:00
if (!$error) {
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
} else {
setEventMessages($langs->trans("Error"), null, 'errors');
}
2014-09-21 17:42:38 +02:00
}
/*
* View
*/
llxHeader('', '', '', '', 0, 0, '', '', '', 'mod-admin page-loan');
2014-09-21 17:42:38 +02:00
$form = new Form($db);
2022-08-24 10:22:06 +02:00
if (isModEnabled('accounting')) {
2021-02-26 22:04:03 +01:00
$formaccounting = new FormAccounting($db);
} else {
$formaccounting = null;
2021-02-26 22:04:03 +01:00
}
2014-09-21 17:42:38 +02:00
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans('ConfigLoan'), $linkback, 'title_setup');
2014-09-21 17:42:38 +02:00
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
print '<input type="hidden" name="token" value="'.newToken().'">';
2014-09-21 17:42:38 +02:00
print '<input type="hidden" name="action" value="update">';
/*
* Params
*/
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
2014-09-21 17:42:38 +02:00
print '<tr class="liste_titre">';
print '<td colspan="3">'.$langs->trans('Options').'</td>';
2014-09-21 17:42:38 +02:00
print "</tr>\n";
2021-02-26 22:04:03 +01:00
foreach ($list as $key) {
2017-04-25 11:59:18 +02:00
print '<tr class="oddeven value">';
2014-09-21 17:42:38 +02:00
// Param
$label = $langs->trans($key);
2022-08-24 10:22:06 +02:00
print '<td><label for="' . $key . '">' . $label . '</label></td>';
2014-09-21 17:42:38 +02:00
// Value
print '<td>';
if ($formaccounting instanceof FormAccounting) {
print $formaccounting->select_account(getDolGlobalString($key), $key, 1, array(), 1, 1);
2020-05-21 09:35:30 +02:00
} else {
2022-08-24 10:22:06 +02:00
print '<input type="text" size="20" id="' . $key . '" name="' . $key . '" value="' . getDolGlobalString($key) . '">';
}
2014-09-21 17:42:38 +02:00
print '</td></tr>';
}
print '</tr>';
print '</form>';
print "</table>\n";
print '<br><div style="text-align:center"><input type="submit" class="button button-edit" name="button" value="'.$langs->trans('Modify').'"></div>';
2014-09-21 17:42:38 +02:00
2018-07-28 18:03:14 +02:00
// End of page
2014-09-21 17:42:38 +02:00
llxFooter();
2018-05-26 18:41:16 +02:00
$db->close();