123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <?php
- /* <one line to give the program's name and a brief idea of what it does.>
- * Copyright (C) 2015 ATM Consulting <support@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
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file admin/multicurrency.php
- * \ingroup multicurrency
- * \brief Page to setup multicurrency module
- */
- // Dolibarr environment
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/multicurrency.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/multicurrency/class/multicurrency.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('admin', 'multicurrency'));
- // Access control
- if (!$user->admin || !isModEnabled('multicurrency')) {
- accessforbidden();
- }
- // Parameters
- $action = GETPOST('action', 'aZ09');
- /*
- * Actions
- */
- $reg = array();
- if (preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) {
- $code = $reg[1];
- $value = GETPOST($code, 'alpha');
- if (dolibarr_set_const($db, $code, $value, 'chaine', 0, '', $conf->entity) > 0) {
- setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
- } else {
- setEventMessages($langs->trans("Error"), null, 'errors');
- }
- }
- if (preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) {
- $code = $reg[1];
- if (dolibarr_del_const($db, $code, 0) > 0) {
- setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
- } else {
- setEventMessages($langs->trans("Error"), null, 'errors');
- }
- }
- if ($action == 'add_currency') {
- $error = 0;
- $langs->loadCacheCurrencies('');
- $code = GETPOST('code', 'alpha');
- $rate = price2num(GETPOST('rate', 'alpha'));
- $currency = new MultiCurrency($db);
- $currency->code = $code;
- $currency->name = !empty($langs->cache_currencies[$code]['label']) ? $langs->cache_currencies[$code]['label'].' ('.$langs->getCurrencySymbol($code).')' : $code;
- if (empty($currency->code) || $currency->code == '-1') {
- setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Currency")), null, 'errors');
- $error++;
- }
- if (empty($rate)) {
- setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Rate")), null, 'errors');
- $error++;
- }
- if (!$error) {
- if ($currency->create($user) > 0) {
- if ($currency->addRate($rate)) {
- setEventMessages($langs->trans('RecordSaved'), array());
- } else {
- setEventMessages($langs->trans('ErrorAddRateFail'), array(), 'errors');
- }
- } else {
- setEventMessages($langs->trans('ErrorAddCurrencyFail'), $currency->errors, 'errors');
- }
- }
- } elseif ($action == 'update_currency') {
- $error = 0;
- if (GETPOST('updatecurrency', 'alpha')) {
- $fk_multicurrency = GETPOST('fk_multicurrency', 'int');
- $rate = price2num(GETPOST('rate', 'alpha'));
- $currency = new MultiCurrency($db);
- if (empty($rate)) {
- setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Rate")), null, 'errors');
- $error++;
- }
- if (!$error) {
- if ($currency->fetch($fk_multicurrency) > 0) {
- $result = $currency->updateRate($rate);
- if ($result < 0) {
- setEventMessages(null, $currency->errors, 'errors');
- }
- }
- }
- } elseif (GETPOST('deletecurrency', 'alpha')) {
- $fk_multicurrency = GETPOST('fk_multicurrency', 'int');
- $currency = new MultiCurrency($db);
- if ($currency->fetch($fk_multicurrency) > 0) {
- if ($currency->delete() > 0) {
- setEventMessages($langs->trans('RecordDeleted'), array());
- } else {
- setEventMessages($langs->trans('ErrorDeleteCurrencyFail'), array(), 'errors');
- }
- }
- }
- } elseif ($action == 'setapilayer') {
- if (GETPOSTISSET('modify_apilayer')) {
- dolibarr_set_const($db, 'MULTICURRENCY_APP_ID', GETPOST('MULTICURRENCY_APP_ID', 'alpha'));
- dolibarr_set_const($db, 'MULTICURRENCY_APP_SOURCE', GETPOST('MULTICURRENCY_APP_SOURCE', 'alpha'));
- //dolibarr_set_const($db, 'MULTICURRENCY_ALTERNATE_SOURCE', GETPOST('MULTICURRENCY_ALTERNATE_SOURCE', 'alpha'));
- } else {
- $multiurrency = new MultiCurrency($db);
- $result = $multiurrency->syncRates(getDolGlobalString('MULTICURRENCY_APP_ID'));
- if ($result > 0) {
- setEventMessages($langs->trans("CurrencyRateSyncSucceed"), null, "mesgs");
- }
- }
- }
- $TAvailableCurrency = array();
- $sql = "SELECT code_iso, label, unicode, active FROM ".MAIN_DB_PREFIX."c_currencies";
- $resql = $db->query($sql);
- if ($resql) {
- while ($obj = $db->fetch_object($resql)) {
- $TAvailableCurrency[$obj->code_iso] = array('code'=>$obj->code_iso, 'active'=>$obj->active);
- }
- }
- $TCurrency = array();
- $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."multicurrency WHERE entity = ".((int) $conf->entity);
- $resql = $db->query($sql);
- if ($resql) {
- while ($obj = $db->fetch_object($resql)) {
- $currency = new MultiCurrency($db);
- $currency->fetch($obj->rowid);
- $TCurrency[] = $currency;
- }
- }
- /*
- * View
- */
- $form = new Form($db);
- $page_name = "MultiCurrencySetup";
- $help_url = '';
- llxHeader('', $langs->trans($page_name), $help_url);
- // Subheader
- $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
- print load_fiche_titre($langs->trans($page_name), $linkback);
- // Configuration header
- $head = multicurrencyAdminPrepareHead();
- print dol_get_fiche_head($head, 'settings', $langs->trans($page_name), -1, "multicurrency");
- print '<div class="div-table-responsive-no-min">';
- print '<table class="noborder centpercent">';
- print '<tr class="liste_titre">';
- print '<td>'.$langs->trans("Parameters").'</td>'."\n";
- print '<td class="center">'.$langs->trans("Status").'</td>'."\n";
- print '</tr>';
- print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE").'</td>';
- print '<td class="center">';
- if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE');
- } else {
- $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
- print $form->selectarray("MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE", $arrval, $conf->global->MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE);
- }
- print '</td></tr>';
- print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("multicurrency_useOriginTx").'</td>';
- print '<td class="center">';
- if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('MULTICURRENCY_USE_ORIGIN_TX', null, null, 0, 0, 0, 2, 0, 1);
- } else {
- $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
- print $form->selectarray("MULTICURRENCY_USE_ORIGIN_TX", $arrval, $conf->global->MULTICURRENCY_USE_ORIGIN_TX);
- }
- print '</td></tr>';
- // Online payment with currency on document. This option should be on by default.
- if (getDolGlobalInt('MAIN_FEATURES_LEVEL') >= 2) {
- print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT").'</td>';
- print '<td class="center">';
- if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT');
- } else {
- $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
- print $form->selectarray("MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT", $arrval, $conf->global->MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT);
- }
- print '</td></tr>';
- }
- /* TODO uncomment when the functionality will integrated
- print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("multicurrency_buyPriceInCurrency").'</td>';
- print '<td class="right">';
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="set_MULTICURRENCY_BUY_PRICE_IN_CURRENCY">';
- print $form->selectyesno("MULTICURRENCY_BUY_PRICE_IN_CURRENCY",$conf->global->MULTICURRENCY_BUY_PRICE_IN_CURRENCY,1);
- print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
- print '</form>';
- print '</td></tr>';
- */
- /* TODO uncomment when the functionality will integrated
- print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("multicurrency_modifyRateApplication").'</td>';
- print '<td class="right">';
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="set_MULTICURRENCY_MODIFY_RATE_APPLICATION">';
- print $form->selectarray('MULTICURRENCY_MODIFY_RATE_APPLICATION', array('PU_DOLIBARR' => 'PU_DOLIBARR', 'PU_CURRENCY' => 'PU_CURRENCY'), $conf->global->MULTICURRENCY_MODIFY_RATE_APPLICATION);
- print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
- print '</form>';
- print '</td></tr>';
- */
- print '</table>';
- print '</div>';
- print '<div class="div-table-responsive-no-min">';
- print '<table class="noborder centpercent nomarginbottom">';
- print '<tr class="liste_titre">';
- print '<td>'.$form->textwithpicto($langs->trans("CurrenciesUsed"), $langs->transnoentitiesnoconv("CurrenciesUsed_help_to_add")).'</td>'."\n";
- print '<td class="right">'.$langs->trans("Rate").' / '.$langs->getCurrencySymbol($conf->currency).'</td>'."\n";
- print '</tr>';
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="add_currency">';
- print '<tr class="oddeven">';
- print '<td>'.$form->selectCurrency('', 'code', 1, '1').'</td>';
- print '<td class="right">';
- print '<input type="text" name="rate" value="" class="width75 right" placeholder="'.$langs->trans('Rate').'" /> ';
- print '<input type="submit" class="button button-add smallpaddingimp" value="'.$langs->trans("Add").'">';
- print '</td>';
- print '</tr>';
- print '</form>';
- // Main currency
- print '<tr class="oddeven">';
- print '<td>'.$conf->currency;
- print ' ('.$langs->getCurrencySymbol($conf->currency).')';
- print $form->textwithpicto(' ', $langs->trans("BaseCurrency"));
- if (!empty($TAvailableCurrency[$conf->currency]) && empty($TAvailableCurrency[$conf->currency]['active'])) {
- print img_warning('Warning: This code has been disabled into Home - Setup - Dictionaries - Currencies');
- }
- print '</td>';
- print '<td class="right">1</td>';
- print '</tr>';
- foreach ($TCurrency as &$currency) {
- if ($currency->code == $conf->currency) {
- continue;
- }
- print '<tr class="oddeven">';
- print '<td>'.$currency->code.' - '.$currency->name;
- if (!empty($TAvailableCurrency[$currency->code]) && empty($TAvailableCurrency[$currency->code]['active'])) {
- print img_warning('Warning: The code '.$currency->code.' has been disabled into Home - Setup - Dictionaries - Currencies');
- }
- print '</td>';
- print '<td class="right">';
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="update_currency">';
- print '<input type="hidden" name="fk_multicurrency" value="'.$currency->id.'">';
- print '1 '.$conf->currency.' = ';
- print '<input type="text" name="rate" class="width75 right" value="'.($currency->rate->rate ? $currency->rate->rate : '').'" size="13"> '.$currency->code.' ';
- print '<input type="submit" name="updatecurrency" class="button button-edit smallpaddingimp" value="'.$langs->trans("Modify").'"> ';
- print '<input type="submit" name="deletecurrency" class="button smallpaddingimp" value="'.$langs->trans("Delete").'">';
- print '</form>';
- print '</td></tr>';
- }
- print '</table>';
- print '</div>';
- print '
- <script type="text/javascript">
- function getRates()
- {
- $("#bt_sync").attr("disabled", true);
- return true;
- }
- </script>
- ';
- print '<br>';
- if (!getDolGlobalString('MULTICURRENCY_DISABLE_SYNC_CURRENCYLAYER')) {
- print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'" id="form_sync">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="setapilayer">';
- print '<div class="div-table-responsive-no-min">';
- print '<table class="noborder centpercent">';
- $urlforapilayer = 'https://currencylayer.com'; //https://apilayer.net
- print '<tr class="liste_titre">';
- print '<td>'.$form->textwithpicto($langs->trans("CurrencyLayerAccount"), $langs->trans("CurrencyLayerAccount_help_to_synchronize", $urlforapilayer)).'</td>'."\n";
- print '<td class="right">';
- print '<textarea id="response" class="hideobject" name="response"></textarea>';
- print '<input type="submit" name="modify_apilayer" class="button buttongen" value="'.$langs->trans("Modify").'">';
- print '<input type="submit" id="bt_sync" name="bt_sync_apilayer" class="button buttongen" value="'.$langs->trans('Synchronize').'" />';
- print '</td></tr>';
- print '<tr class="oddeven">';
- print '<td class="fieldrequired"><a target="_blank" rel="noopener noreferrer external" href="'.$urlforapilayer.'">'.$langs->transnoentitiesnoconv("multicurrency_appId").'</a></td>';
- print '<td class="right">';
- print '<input type="text" name="MULTICURRENCY_APP_ID" value="' . getDolGlobalString('MULTICURRENCY_APP_ID').'" size="28" /> ';
- print '</td></tr>';
- print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("multicurrency_appCurrencySource").'</td>';
- print '<td class="right">';
- print '<input type="text" name="MULTICURRENCY_APP_SOURCE" value="' . getDolGlobalString('MULTICURRENCY_APP_SOURCE').'" size="10" placeholder="USD" /> '; // Default: USD
- print '</td></tr>';
- /*print '<tr class="oddeven">';
- print '<td>'.$langs->transnoentitiesnoconv("multicurrency_alternateCurrencySource").'</td>';
- print '<td class="right">';
- print '<input type="text" name="MULTICURRENCY_ALTERNATE_SOURCE" value="'.$conf->global->MULTICURRENCY_ALTERNATE_SOURCE.'" size="10" placeholder="EUR" /> '; // Example: EUR
- print '</td></tr>';*/
- print '</table>';
- print '</div>';
- print '<br>';
- print '</form>';
- }
- // End of page
- llxFooter();
- $db->close();
|