dolibarr 21.0.0-alpha
multicurrency.php
Go to the documentation of this file.
1<?php
2/* <one line to give the program's name and a brief idea of what it does.>
3 * Copyright (C) 2015 ATM Consulting <support@atm-consulting.fr>
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Dolibarr environment
26require '../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
28require_once DOL_DOCUMENT_ROOT.'/core/lib/multicurrency.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/multicurrency/class/multicurrency.class.php';
30
31
32// Load translation files required by the page
33$langs->loadLangs(array('admin', 'multicurrency'));
34
35// Access control
36if (!$user->admin || !isModEnabled('multicurrency')) {
38}
39
40// Parameters
41$action = GETPOST('action', 'aZ09');
42
43
44/*
45 * Actions
46 */
47
48$reg = array();
49if (preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) {
50 $code = $reg[1];
51 $value = GETPOST($code, 'alpha');
52 if (dolibarr_set_const($db, $code, $value, 'chaine', 0, '', $conf->entity) > 0) {
53 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
54 } else {
55 setEventMessages($langs->trans("Error"), null, 'errors');
56 }
57}
58
59if (preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) {
60 $code = $reg[1];
61 if (dolibarr_del_const($db, $code, 0) > 0) {
62 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
63 } else {
64 setEventMessages($langs->trans("Error"), null, 'errors');
65 }
66}
67
68if ($action == 'add_currency') {
69 $error = 0;
70
71 $langs->loadCacheCurrencies('');
72
73 $code = GETPOST('code', 'alpha');
74 $rate = price2num(GETPOST('rate', 'alpha'));
75 $currency = new MultiCurrency($db);
76 $currency->code = $code;
77 $currency->name = !empty($langs->cache_currencies[$code]['label']) ? $langs->cache_currencies[$code]['label'].' ('.$langs->getCurrencySymbol($code).')' : $code;
78
79 if (empty($currency->code) || $currency->code == '-1') {
80 setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Currency")), null, 'errors');
81 $error++;
82 }
83 if (empty($rate)) {
84 setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Rate")), null, 'errors');
85 $error++;
86 }
87
88 if (!$error) {
89 if ($currency->create($user) > 0) {
90 if ($currency->addRate($rate)) {
91 setEventMessages($langs->trans('RecordSaved'), array());
92 } else {
93 setEventMessages($langs->trans('ErrorAddRateFail'), array(), 'errors');
94 }
95 } else {
96 setEventMessages($langs->trans('ErrorAddCurrencyFail'), $currency->errors, 'errors');
97 }
98 }
99} elseif ($action == 'update_currency') {
100 $error = 0;
101
102 if (GETPOST('updatecurrency', 'alpha')) {
103 $fk_multicurrency = GETPOSTINT('fk_multicurrency');
104 $rate = price2num(GETPOST('rate', 'alpha'));
105 $currency = new MultiCurrency($db);
106
107 if (empty($rate)) {
108 setEventMessages($langs->trans('ErrorFieldRequired', $langs->transnoentitiesnoconv("Rate")), null, 'errors');
109 $error++;
110 }
111 if (!$error) {
112 if ($currency->fetch($fk_multicurrency) > 0) {
113 $result = $currency->updateRate($rate);
114 if ($result < 0) {
115 setEventMessages(null, $currency->errors, 'errors');
116 }
117 }
118 }
119 } elseif (GETPOST('deletecurrency', 'alpha')) {
120 $fk_multicurrency = GETPOSTINT('fk_multicurrency');
121 $currency = new MultiCurrency($db);
122
123 if ($currency->fetch($fk_multicurrency) > 0) {
124 if ($currency->delete($user) > 0) {
125 setEventMessages($langs->trans('RecordDeleted'), array());
126 } else {
127 setEventMessages($langs->trans('ErrorDeleteCurrencyFail'), array(), 'errors');
128 }
129 }
130 }
131} elseif ($action == 'setapilayer') {
132 if (GETPOSTISSET('modify_apilayer')) {
133 dolibarr_set_const($db, 'MULTICURRENCY_APP_ID', GETPOST('MULTICURRENCY_APP_ID', 'alpha'));
134 dolibarr_set_const($db, 'MULTICURRENCY_APP_SOURCE', GETPOST('MULTICURRENCY_APP_SOURCE', 'alpha'));
135 //dolibarr_set_const($db, 'MULTICURRENCY_ALTERNATE_SOURCE', GETPOST('MULTICURRENCY_ALTERNATE_SOURCE', 'alpha'));
136 } else {
137 $multiurrency = new MultiCurrency($db);
138 $result = $multiurrency->syncRates(getDolGlobalString('MULTICURRENCY_APP_ID'));
139 if ($result > 0) {
140 setEventMessages($langs->trans("CurrencyRateSyncSucceed"), null, "mesgs");
141 }
142 }
143}
144
145
146$TAvailableCurrency = array();
147$sql = "SELECT code_iso, label, unicode, active FROM ".MAIN_DB_PREFIX."c_currencies";
148$resql = $db->query($sql);
149if ($resql) {
150 while ($obj = $db->fetch_object($resql)) {
151 $TAvailableCurrency[$obj->code_iso] = array('code'=>$obj->code_iso, 'active'=>$obj->active);
152 }
153}
154
155$TCurrency = array();
156$sql = "SELECT rowid FROM ".MAIN_DB_PREFIX."multicurrency WHERE entity = ".((int) $conf->entity);
157$resql = $db->query($sql);
158if ($resql) {
159 while ($obj = $db->fetch_object($resql)) {
160 $currency = new MultiCurrency($db);
161 $currency->fetch($obj->rowid);
162 $TCurrency[] = $currency;
163 }
164}
165
166
167/*
168 * View
169 */
170
171$form = new Form($db);
172
173$page_name = "MultiCurrencySetup";
174$help_url = '';
175
176llxHeader('', $langs->trans($page_name), $help_url, '', 0, 0, '', '', '', 'mod-admin page-multicurrency');
177
178// Subheader
179$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
180print load_fiche_titre($langs->trans($page_name), $linkback);
181
182// Configuration header
184print dol_get_fiche_head($head, 'settings', $langs->trans($page_name), -1, "multicurrency");
185
186
187print '<div class="div-table-responsive-no-min">';
188print '<table class="noborder centpercent">';
189print '<tr class="liste_titre">';
190print '<td>'.$langs->trans("Parameters").'</td>'."\n";
191print '<td class="center">'.$langs->trans("Status").'</td>'."\n";
192print '</tr>';
193
194print '<tr class="oddeven">';
195print '<td>'.$langs->transnoentitiesnoconv("MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE").'</td>';
196print '<td class="center">';
197if ($conf->use_javascript_ajax) {
198 print ajax_constantonoff('MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE');
199} else {
200 $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
201 print $form->selectarray("MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE", $arrval, $conf->global->MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE);
202}
203print '</td></tr>';
204
205
206print '<tr class="oddeven">';
207print '<td>'.$langs->transnoentitiesnoconv("multicurrency_useOriginTx").'</td>';
208print '<td class="center">';
209if ($conf->use_javascript_ajax) {
210 print ajax_constantonoff('MULTICURRENCY_USE_ORIGIN_TX', null, null, 0, 0, 0, 2, 0, 1);
211} else {
212 $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
213 print $form->selectarray("MULTICURRENCY_USE_ORIGIN_TX", $arrval, $conf->global->MULTICURRENCY_USE_ORIGIN_TX);
214}
215print '</td></tr>';
216
217// Online payment with currency on document. This option should be on by default.
218if (getDolGlobalInt('MAIN_FEATURES_LEVEL') >= 2) {
219 print '<tr class="oddeven">';
220 print '<td>'.$langs->transnoentitiesnoconv("MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT").'</td>';
221 print '<td class="center">';
222 if ($conf->use_javascript_ajax) {
223 print ajax_constantonoff('MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT');
224 } else {
225 $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
226 print $form->selectarray("MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT", $arrval, $conf->global->MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT);
227 }
228 print '</td></tr>';
229}
230
231/* TODO uncomment when the functionality will integrated
232
233print '<tr class="oddeven">';
234print '<td>'.$langs->transnoentitiesnoconv("multicurrency_buyPriceInCurrency").'</td>';
235print '<td class="right">';
236print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
237print '<input type="hidden" name="token" value="'.newToken().'">';
238print '<input type="hidden" name="action" value="set_MULTICURRENCY_BUY_PRICE_IN_CURRENCY">';
239print $form->selectyesno("MULTICURRENCY_BUY_PRICE_IN_CURRENCY",$conf->global->MULTICURRENCY_BUY_PRICE_IN_CURRENCY,1);
240print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
241print '</form>';
242print '</td></tr>';
243*/
244
245/* TODO uncomment when the functionality will integrated
246
247print '<tr class="oddeven">';
248print '<td>'.$langs->transnoentitiesnoconv("multicurrency_modifyRateApplication").'</td>';
249print '<td class="right">';
250print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
251print '<input type="hidden" name="token" value="'.newToken().'">';
252print '<input type="hidden" name="action" value="set_MULTICURRENCY_MODIFY_RATE_APPLICATION">';
253print $form->selectarray('MULTICURRENCY_MODIFY_RATE_APPLICATION', array('PU_DOLIBARR' => 'PU_DOLIBARR', 'PU_CURRENCY' => 'PU_CURRENCY'), $conf->global->MULTICURRENCY_MODIFY_RATE_APPLICATION);
254print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
255print '</form>';
256print '</td></tr>';
257
258*/
259
260print '</table>';
261print '</div>';
262
263
264print '<div class="div-table-responsive-no-min">';
265print '<table class="noborder centpercent nomarginbottom">';
266
267print '<tr class="liste_titre">';
268print '<td>'.$form->textwithpicto($langs->trans("CurrenciesUsed"), $langs->transnoentitiesnoconv("CurrenciesUsed_help_to_add")).'</td>'."\n";
269print '<td class="right">'.$langs->trans("Rate").' / '.$langs->getCurrencySymbol($conf->currency).'</td>'."\n";
270print '</tr>';
271
272print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
273print '<input type="hidden" name="token" value="'.newToken().'">';
274print '<input type="hidden" name="action" value="add_currency">';
275
276print '<tr class="oddeven">';
277print '<td>'.$form->selectCurrency('', 'code', 1, '1').'</td>';
278print '<td class="right">';
279print '<input type="text" name="rate" value="" class="width75 right" placeholder="'.$langs->trans('Rate').'" />&nbsp;';
280print '<input type="submit" class="button button-add smallpaddingimp" value="'.$langs->trans("Add").'">';
281print '</td>';
282print '</tr>';
283
284print '</form>';
285
286// Main currency
287print '<tr class="oddeven">';
288print '<td>'.$conf->currency;
289print ' ('.$langs->getCurrencySymbol($conf->currency).')';
290print $form->textwithpicto(' ', $langs->trans("BaseCurrency"));
291if (!empty($TAvailableCurrency[$conf->currency]) && empty($TAvailableCurrency[$conf->currency]['active'])) {
292 print img_warning('Warning: This code has been disabled into Home - Setup - Dictionaries - Currencies');
293}
294print '</td>';
295print '<td class="right">1</td>';
296print '</tr>';
297
298foreach ($TCurrency as &$currency) {
299 if ($currency->code == $conf->currency) {
300 continue;
301 }
302
303 print '<tr class="oddeven">';
304 print '<td>'.$currency->code.' - '.$currency->name;
305 if (!empty($TAvailableCurrency[$currency->code]) && empty($TAvailableCurrency[$currency->code]['active'])) {
306 print img_warning('Warning: The code '.$currency->code.' has been disabled into Home - Setup - Dictionaries - Currencies');
307 }
308 print '</td>';
309 print '<td class="right">';
310 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
311 print '<input type="hidden" name="token" value="'.newToken().'">';
312 print '<input type="hidden" name="action" value="update_currency">';
313 print '<input type="hidden" name="fk_multicurrency" value="'.$currency->id.'">';
314 print '1 '.$conf->currency.' = ';
315 print '<input type="text" name="rate" class="width75 right" value="'.($currency->rate->rate ? $currency->rate->rate : '').'" size="13">&nbsp;'.$currency->code.'&nbsp;';
316 print '<input type="submit" name="updatecurrency" class="button button-edit smallpaddingimp" value="'.$langs->trans("Modify").'">&nbsp;';
317 print '<input type="submit" name="deletecurrency" class="button smallpaddingimp" value="'.$langs->trans("Delete").'">';
318 print '</form>';
319 print '</td></tr>';
320}
321
322print '</table>';
323print '</div>';
324
325print '
326 <script type="text/javascript">
327 function getRates()
328 {
329 $("#bt_sync").attr("disabled", true);
330 return true;
331 }
332 </script>
333';
334
335
336print '<br>';
337
338if (!getDolGlobalString('MULTICURRENCY_DISABLE_SYNC_CURRENCYLAYER')) {
339 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'" id="form_sync">';
340 print '<input type="hidden" name="token" value="'.newToken().'">';
341 print '<input type="hidden" name="action" value="setapilayer">';
342
343 print '<div class="div-table-responsive-no-min">';
344 print '<table class="noborder centpercent">';
345
346 $urlforapilayer = 'https://currencylayer.com'; //https://apilayer.net
347
348 print '<tr class="liste_titre">';
349 print '<td>'.$form->textwithpicto($langs->trans("CurrencyLayerAccount"), $langs->trans("CurrencyLayerAccount_help_to_synchronize", $urlforapilayer)).'</td>'."\n";
350 print '<td class="right">';
351 print '<textarea id="response" class="hideobject" name="response"></textarea>';
352 print '<input type="submit" name="modify_apilayer" class="button buttongen" value="'.$langs->trans("Modify").'">';
353 print '<input type="submit" id="bt_sync" name="bt_sync_apilayer" class="button buttongen" value="'.$langs->trans('Synchronize').'" />';
354 print '</td></tr>';
355
356 print '<tr class="oddeven">';
357 print '<td class="fieldrequired"><a target="_blank" rel="noopener noreferrer external" href="'.$urlforapilayer.'">'.$langs->transnoentitiesnoconv("multicurrency_appId").'</a></td>';
358 print '<td class="right">';
359 print '<input type="text" name="MULTICURRENCY_APP_ID" value="' . getDolGlobalString('MULTICURRENCY_APP_ID').'" size="28" />&nbsp;';
360 print '</td></tr>';
361
362 print '<tr class="oddeven">';
363 print '<td>'.$langs->transnoentitiesnoconv("multicurrency_appCurrencySource").'</td>';
364 print '<td class="right">';
365 print '<input type="text" name="MULTICURRENCY_APP_SOURCE" value="' . getDolGlobalString('MULTICURRENCY_APP_SOURCE').'" size="10" placeholder="USD" />&nbsp;'; // Default: USD
366 print '</td></tr>';
367
368 /*print '<tr class="oddeven">';
369 print '<td>'.$langs->transnoentitiesnoconv("multicurrency_alternateCurrencySource").'</td>';
370 print '<td class="right">';
371 print '<input type="text" name="MULTICURRENCY_ALTERNATE_SOURCE" value="'.$conf->global->MULTICURRENCY_ALTERNATE_SOURCE.'" size="10" placeholder="EUR" />&nbsp;'; // Example: EUR
372 print '</td></tr>';*/
373
374 print '</table>';
375 print '</div>';
376 print '<br>';
377
378 print '</form>';
379}
380
381
382// End of page
383llxFooter();
384$db->close();
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.
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:70
Class to manage generation of HTML components Only common components must be here.
Class Currency.
llxFooter()
Footer empty.
Definition document.php:107
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
multicurrencyAdminPrepareHead()
Prepare array with list of tabs.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.