28require
'../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/multicurrency.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/multicurrency/class/multicurrency.class.php';
42$langs->loadLangs(array(
'admin',
'multicurrency'));
45if (!$user->admin || !isModEnabled(
'multicurrency')) {
50$action =
GETPOST(
'action',
'aZ09');
58if (preg_match(
'/set_([a-z0-9_\-]+)/i', $action, $reg)) {
60 $value =
GETPOST($code,
'alpha');
68if (preg_match(
'/del_([a-z0-9_\-]+)/i', $action, $reg)) {
77if ($action ==
'add_currency') {
80 $langs->loadCacheCurrencies(
'');
82 $code =
GETPOST(
'code',
'alpha');
85 $currency->code = $code;
86 $currency->name = !empty($langs->cache_currencies[$code][
'label']) ? $langs->cache_currencies[$code][
'label'].
' ('.$langs->getCurrencySymbol($code).
')' : $code;
88 if (empty($currency->code) || $currency->code ==
'-1') {
89 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Currency")),
null,
'errors');
93 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Rate")),
null,
'errors');
98 if ($currency->create($user) > 0) {
99 if ($currency->addRate($rate)) {
105 setEventMessages($langs->trans(
'ErrorAddCurrencyFail'), $currency->errors,
'errors');
108} elseif ($action ==
'update_currency') {
111 if (
GETPOST(
'updatecurrency',
'alpha')) {
112 $fk_multicurrency =
GETPOSTINT(
'fk_multicurrency');
117 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Rate")),
null,
'errors');
121 if ($currency->fetch($fk_multicurrency) > 0) {
122 $result = $currency->updateRate($rate);
128 } elseif (
GETPOST(
'deletecurrency',
'alpha')) {
129 $fk_multicurrency =
GETPOSTINT(
'fk_multicurrency');
132 if ($currency->fetch($fk_multicurrency) > 0) {
133 if ($currency->delete($user) > 0) {
136 setEventMessages($langs->trans(
'ErrorDeleteCurrencyFail'), array(),
'errors');
140} elseif ($action ==
'setapilayer') {
141 if (GETPOSTISSET(
'modify_apilayer')) {
155$TAvailableCurrency = array();
156$sql =
"SELECT code_iso, label, unicode, active FROM ".MAIN_DB_PREFIX.
"c_currencies";
157$resql = $db->query($sql);
159 while ($obj = $db->fetch_object($resql)) {
160 $TAvailableCurrency[$obj->code_iso] = array(
'code' => $obj->code_iso,
'active' => $obj->active);
165$sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"multicurrency WHERE entity = ".((int)
$conf->entity);
166$resql = $db->query($sql);
168 while ($obj = $db->fetch_object($resql)) {
170 $currency->fetch($obj->rowid);
171 $TCurrency[] = $currency;
180$form =
new Form($db);
182$page_name =
"MultiCurrencySetup";
185llxHeader(
'', $langs->trans($page_name), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-multicurrency');
188$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
193print
dol_get_fiche_head($head,
'settings', $langs->trans($page_name), -1,
"multicurrency");
196print
'<div class="div-table-responsive-no-min">';
197print
'<table class="noborder centpercent">';
198print
'<tr class="liste_titre">';
199print
'<td>'.$langs->trans(
"Parameters").
'</td>'.
"\n";
200print
'<td class="center">'.$langs->trans(
"Status").
'</td>'.
"\n";
203print
'<tr class="oddeven">';
204print
'<td>'.$langs->transnoentitiesnoconv(
"MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE").
'</td>';
205print
'<td class="center">';
206if (
$conf->use_javascript_ajax) {
207 print ajax_constantonoff(
'MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE');
209 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
210 print $form->selectarray(
"MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE", $arrval,
$conf->global->MULTICURRENCY_USE_RATE_ON_DOCUMENT_DATE);
215print
'<tr class="oddeven">';
216print
'<td>'.$langs->transnoentitiesnoconv(
"multicurrency_useOriginTx").
'</td>';
217print
'<td class="center">';
218if (
$conf->use_javascript_ajax) {
219 print ajax_constantonoff(
'MULTICURRENCY_USE_ORIGIN_TX', array(),
null, 0, 0, 0, 2, 0, 1);
221 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
222 print $form->selectarray(
"MULTICURRENCY_USE_ORIGIN_TX", $arrval,
$conf->global->MULTICURRENCY_USE_ORIGIN_TX);
228 print
'<tr class="oddeven">';
229 print
'<td>'.$langs->transnoentitiesnoconv(
"MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT").
'</td>';
230 print
'<td class="center">';
231 if (
$conf->use_javascript_ajax) {
232 print ajax_constantonoff(
'MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT');
234 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
235 print $form->selectarray(
"MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT", $arrval,
$conf->global->MULTICURRENCY_USE_CURRENCY_ON_DOCUMENT);
273print
'<div class="div-table-responsive-no-min">';
274print
'<table class="noborder centpercent nomarginbottom">';
276print
'<tr class="liste_titre">';
277print
'<td>'.$form->textwithpicto($langs->trans(
"CurrenciesUsed"), $langs->transnoentitiesnoconv(
"CurrenciesUsed_help_to_add")).
'</td>'.
"\n";
278print
'<td class="right">'.$langs->trans(
"Rate").
' / '.$langs->getCurrencySymbol(
$conf->currency).
'</td>'.
"\n";
281print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'">';
282print
'<input type="hidden" name="token" value="'.newToken().
'">';
283print
'<input type="hidden" name="action" value="add_currency">';
285print
'<tr class="oddeven">';
286print
'<td>'.$form->selectCurrency(
'',
'code', 1,
'1').
'</td>';
287print
'<td class="right">';
288print
'<input type="text" name="rate" value="" class="width75 right" placeholder="'.$langs->trans(
'Rate').
'" /> ';
289print
'<input type="submit" class="button button-add smallpaddingimp" value="'.$langs->trans(
"Add").
'">';
296print
'<tr class="oddeven">';
297print
'<td>'.$conf->currency;
298print
' ('.$langs->getCurrencySymbol(
$conf->currency).
')';
299print $form->textwithpicto(
' ', $langs->trans(
"BaseCurrency"));
300if (!empty($TAvailableCurrency[
$conf->currency]) && empty($TAvailableCurrency[
$conf->currency][
'active'])) {
301 print
img_warning(
'Warning: This code has been disabled into Home - Setup - Dictionaries - Currencies');
304print
'<td class="right">1</td>';
307foreach ($TCurrency as &$currency) {
308 if ($currency->code ==
$conf->currency) {
312 print
'<tr class="oddeven">';
313 print
'<td>'.$currency->code.
' - '.$currency->name;
314 if (!empty($TAvailableCurrency[$currency->code]) && empty($TAvailableCurrency[$currency->code][
'active'])) {
315 print
img_warning(
'Warning: The code '.$currency->code.
' has been disabled into Home - Setup - Dictionaries - Currencies');
318 print
'<td class="right">';
319 print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'">';
320 print
'<input type="hidden" name="token" value="'.newToken().
'">';
321 print
'<input type="hidden" name="action" value="update_currency">';
322 print
'<input type="hidden" name="fk_multicurrency" value="'.$currency->id.
'">';
323 print
'1 '.$conf->currency.
' = ';
324 print
'<input type="text" name="rate" class="width75 right" value="'.($currency->rate->rate ? $currency->rate->rate :
'').
'" size="13"> '.$currency->code.
' ';
325 print
'<input type="submit" name="updatecurrency" class="button button-edit smallpaddingimp" value="'.$langs->trans(
"Modify").
'"> ';
326 print
'<input type="submit" name="deletecurrency" class="button smallpaddingimp" value="'.$langs->trans(
"Delete").
'">';
335 <script type="text/javascript">
338 $("#bt_sync").attr("disabled", true);
348 print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'" id="form_sync">';
349 print
'<input type="hidden" name="token" value="'.newToken().
'">';
350 print
'<input type="hidden" name="action" value="setapilayer">';
352 print
'<div class="div-table-responsive-no-min">';
353 print
'<table class="noborder centpercent">';
355 $urlforapilayer =
'https://currencylayer.com';
357 print
'<tr class="liste_titre">';
358 print
'<td>'.$form->textwithpicto($langs->trans(
"CurrencyLayerAccount"), $langs->trans(
"CurrencyLayerAccount_help_to_synchronize", $urlforapilayer)).
'</td>'.
"\n";
359 print
'<td class="right">';
360 print
'<textarea id="response" class="hideobject" name="response"></textarea>';
361 print
'<input type="submit" name="modify_apilayer" class="button buttongen" value="'.$langs->trans(
"Modify").
'">';
362 print
'<input type="submit" id="bt_sync" name="bt_sync_apilayer" class="button buttongen" value="'.$langs->trans(
'Synchronize').
'" />';
365 print
'<tr class="oddeven">';
366 print
'<td class="fieldrequired"><a target="_blank" rel="noopener noreferrer external" href="'.$urlforapilayer.
'">'.$langs->transnoentitiesnoconv(
"multicurrency_appId").
'</a></td>';
367 print
'<td class="right">';
368 print
'<input type="text" name="MULTICURRENCY_APP_ID" value="' .
getDolGlobalString(
'MULTICURRENCY_APP_ID').
'" size="28" /> ';
371 print
'<tr class="oddeven">';
372 print
'<td>'.$langs->transnoentitiesnoconv(
"multicurrency_appCurrencySource").
'</td>';
373 print
'<td class="right">';
374 print
'<input type="text" name="MULTICURRENCY_APP_SOURCE" value="' .
getDolGlobalString(
'MULTICURRENCY_APP_SOURCE').
'" size="10" placeholder="USD" /> ';
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.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.