36 require
'../main.inc.php';
37 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
38 require_once DOL_DOCUMENT_ROOT.
'/core/lib/multicurrency.lib.php';
42 $langs->loadLangs(array(
'multicurrency'));
45 $action =
GETPOST(
'action',
'alpha');
46 $massaction =
GETPOST(
'massaction',
'alpha');
47 $show_files =
GETPOST(
'show_files',
'int');
48 $confirm =
GETPOST(
'confirm',
'alpha');
49 $toselect =
GETPOST(
'toselect',
'array');
50 $id_rate_selected =
GETPOST(
'id_rate',
'int');
51 $sall = trim((
GETPOST(
'search_all',
'alphanohtml') !=
'') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml'));
52 $search_date_sync =
dol_mktime(0, 0, 0,
GETPOST(
'search_date_syncmonth',
'int'),
GETPOST(
'search_date_syncday',
'int'),
GETPOST(
'search_date_syncyear',
'int'));
53 $search_date_sync_end =
dol_mktime(0, 0, 0,
GETPOST(
'search_date_sync_endmonth',
'int'),
GETPOST(
'search_date_sync_endday',
'int'),
GETPOST(
'search_date_sync_endyear',
'int'));
54 $search_rate =
GETPOST(
'search_rate',
'alpha');
55 $search_code =
GETPOST(
'search_code',
'alpha');
56 $multicurrency_code =
GETPOST(
'multicurrency_code',
'alpha');
59 $optioncss =
GETPOST(
'optioncss',
'alpha');
60 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
61 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
62 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
65 if (empty($page) || $page == -1) {
68 $offset = $limit * $page;
69 $pageprev = $page - 1;
70 $pagenext = $page + 1;
71 if (!$sortfield) $sortfield =
"cr.date_sync";
72 if (!$sortorder) $sortorder =
"DESC";
82 $hookmanager->initHooks(array(
'EditorRatelist',
'globallist'));
89 $fieldstosearchall = array(
90 'cr.date_sync'=>
"date_sync",
97 'cr.date_sync'=>array(
'label'=>
'Date',
'checked'=>1),
98 'cr.rate'=>array(
'label'=>
'Rate',
'checked'=>1),
99 'm.code'=>array(
'label'=>
'Code',
'checked'=>1),
120 if ($action ==
"create") {
121 if (empty($multicurrency_code) || $multicurrency_code ==
'-1') {
122 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Currency")),
null,
"errors");
125 if ($rateinput ===
'0') {
128 } elseif (empty($rateinput)) {
129 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Rate")),
null,
"errors");
136 $fk_currency = $currency_static->getIdFromCode($db, $multicurrency_code);
138 $currencyRate_static->fk_multicurrency = $fk_currency;
139 $currencyRate_static->entity = $conf->entity;
140 $currencyRate_static->date_sync = $dateinput;
141 $currencyRate_static->rate = $rateinput;
143 $result = $currencyRate_static->create(intval($fk_currency));
145 setEventMessages($langs->trans(
'successRateCreate', $multicurrency_code),
null);
147 dol_syslog(
"currencyRate:createRate", LOG_WARNING);
148 setEventMessages($currencyRate_static->error, $currencyRate_static->errors,
'errors');
153 if ($action ==
'update') {
155 $result = $currencyRate->fetch($id_rate_selected);
158 $fk_currency = $currency_static->getIdFromCode($db, $multicurrency_code);
159 $currencyRate->date_sync = $dateinput;
160 $currencyRate->fk_multicurrency = $fk_currency;
161 $currencyRate->rate = $rateinput;
162 $res = $currencyRate->update();
173 if ($action ==
"deleteRate") {
175 $current_rate->fetch(intval($id_rate_selected));
179 $current_currency->fetch($current_rate->fk_multicurrency);
180 if ($current_currency) {
181 $delayedhtmlcontent =
$form->formconfirm(
182 $_SERVER[
"PHP_SELF"].
'?id_rate='.$id_rate_selected,
183 $langs->trans(
'DeleteLineRate'),
184 $langs->trans(
'ConfirmDeleteLineRate', $current_rate->rate, $current_currency->name, $current_rate->date_sync),
191 dol_syslog(
"Multicurrency::fetch", LOG_WARNING);
198 if ($action ==
"confirm_delete") {
200 $current_rate->fetch(intval($id_rate_selected));
202 $result = $current_rate->delete();
209 setEventMessages($langs->trans(
'NoCurrencyRateSelected'),
null,
"warnings");
210 dol_syslog($langs->trans(
'NoCurrencyRateSelected'), LOG_WARNING);
215 if (
GETPOST(
'cancel',
'alpha')) { $action =
'list'; $massaction =
''; }
216 if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') { $massaction =
''; }
218 $parameters = array();
219 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
220 if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors,
'errors');
221 if (empty($reshook)) {
223 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
226 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
228 $search_date_sync =
"";
229 $search_date_sync_end=
"";
232 $search_array_options = array();
236 $objectclass =
"CurrencyRate";
237 $uploaddir = $conf->multicurrency->multidir_output;
238 $permissiontoread = $user->admin;
239 $permissiontodelete = $user->admin;
240 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
250 $title = $langs->trans(
"CurrencyRate");
251 $page_name =
"MultiCurrencySetup";
256 $linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
261 print
dol_get_fiche_head($head,
'ratelist', $langs->trans(
"ModuleSetup"), -1,
"multicurrency");
265 if (!in_array($action, array(
"updateRate",
"deleteRate"))) {
266 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post" name="formulaire">';
267 print
'<input type="hidden" name="token" value="'.newToken().
'">';
269 print
'<div class="div-table-responsive-no-min">';
270 print
'<table class="noborder centpercent"><tr>';
272 print
' <td>'.$langs->trans(
'Date').
'</td>';
274 print
$form->selectDate($dateinput,
'dateinput', 0, 0, 1,
'', 1, 1);
277 print
'<td> '.$langs->trans(
'Currency').
'</td>';
278 print
'<td>'.$form->selectMultiCurrency((
GETPOSTISSET(
'multicurrency_code') ?
GETPOST(
'multicurrency_code',
'alpha') : $multicurrency_code),
'multicurrency_code', 1,
" code != '".$db->escape($conf->currency).
"'",
true).
'</td>';
280 print
' <td>'.$langs->trans(
'Rate').
' / '.$langs->getCurrencySymbol($conf->currency).
'</td>';
281 print
' <td><input type="text" min="0" step="any" class="maxwidth75" name="rateinput" value="'.dol_escape_htmltag($rateinput).
'"></td>';
284 print
'<input type="hidden" name="action" value="create">';
285 print
'<input type="submit" class="button button-add small" name="btnCreateCurrencyRate" value="'.$langs->trans(
'CreateRate').
'">';
288 print
'</tr></table>';
299 $sql =
'SELECT cr.rowid, cr.date_sync, cr.rate, cr.entity, m.code, m.name';
301 $parameters = array();
302 $reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters);
303 $sql .= $hookmanager->resPrint;
304 $sql .=
' FROM '.MAIN_DB_PREFIX.
'multicurrency_rate as cr ';
305 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"multicurrency AS m ON cr.fk_multicurrency = m.rowid";
306 if ($sall) $sql .=
natural_search(array_keys($fieldstosearchall), $sall);
307 if ($search_date_sync && $search_date_sync_end ) {
308 $sql .=
" AND (cr.date_sync BETWEEN '".$db->idate($search_date_sync).
"' AND '".$db->idate($search_date_sync_end).
"')";
309 } elseif ($search_date_sync && !$search_date_sync_end) {
310 $sql .=
natural_search(
'cr.date_sync', $db->idate($search_date_sync));
312 if ($search_rate) $sql .=
natural_search(
'cr.rate', $search_rate);
314 $sql .=
" WHERE m.code <> '".$db->escape($conf->currency).
"'";
317 $parameters = array();
318 $reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters);
319 $sql .= $hookmanager->resPrint;
320 $sql .=
" GROUP BY cr.rowid, cr.date_sync, cr.rate, m.code, cr.entity, m.code, m.name";
323 $parameters = array();
324 $reshook = $hookmanager->executeHooks(
'printFieldSelect', $parameters);
325 $sql .= $hookmanager->resPrint;
327 $sql .= $db->order($sortfield, $sortorder);
331 if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
332 $result = $db->query($sql);
341 setEventMessage($langs->trans(
'No_record_on_multicurrency_rate'),
'warnings');
345 $sql .= $db->plimit($limit + 1, $offset);
347 $resql = $db->query($sql);
349 $num = $db->num_rows(
$resql);
350 $arrayofselected = is_array($toselect) ? $toselect : array();
353 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
354 $param .=
'&contextpage='.urlencode($contextpage);
356 if ($limit > 0 && $limit != $conf->liste_limit) {
357 $param .=
'&limit='.urlencode($limit);
360 $param .=
"&sall=".urlencode($sall);
363 if ($search_date_sync) $param =
"&search_date_sync=".$search_date_sync;
364 if ($search_date_sync_end) $param=
"&search_date_sync_end=".$search_date_sync_end;
365 if ($search_rate) $param =
"&search_rate=".urlencode($search_rate);
366 if ($search_code !=
'') $param.=
"&search_code=".urlencode($search_code);
369 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
372 $arrayofmassactions[
'predelete'] = $langs->trans(
"Delete");
374 if (in_array($massaction, array(
'presend',
'predelete'))) {
375 $arrayofmassactions = array();
377 $massactionbutton =
$form->selectMassAction(
'', $arrayofmassactions);
379 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" name="formulaire">';
380 if ($optioncss !=
'') {
381 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
383 print
'<input type="hidden" name="token" value="'.newToken().
'">';
384 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
385 print
'<input type="hidden" name="action" value="list">';
386 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
387 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
388 print
'<input type="hidden" name="page" value="'.$page.
'">';
389 print
'<input type="hidden" name="type" value="'.$type.
'">';
391 print_barre_liste($texte, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num,
$nbtotalofrecords,
'title_currency.png', 0, $newcardbutton,
'', $limit);
393 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
396 foreach ($fieldstosearchall as $key => $val) {
397 $fieldstosearchall[$key] = $langs->trans($val);
399 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $sall).join(
', ', $fieldstosearchall).
'</div>';
406 $parameters = array();
407 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters);
408 if (empty($reshook)) {
409 $moreforfilter .= $hookmanager->resPrint;
411 $moreforfilter = $hookmanager->resPrint;
414 if ($moreforfilter) {
415 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
416 print $moreforfilter;
420 $varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
421 $selectedfields =
$form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage);
422 if ($massactionbutton) {
423 $selectedfields .=
$form->showCheckAddButtons(
'checkforselect', 1);
426 print
'<div class="div-table-responsive">';
427 print
'<table class="tagtable centpercent nomarginbottom liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
430 print
'<tr class="liste_titre_filter">';
433 if (!empty($arrayfields[
'cr.date_sync'][
'checked'])) {
434 print
'<td class="liste_titre" align="left">';
435 print
$form->selectDate(
dol_print_date($search_date_sync,
"%Y-%m-%d"),
'search_date_sync', 0, 0, 1);
436 print
$form->selectDate(
dol_print_date($search_date_sync_end,
"%Y-%m-%d"),
'search_date_sync_end', 0, 0, 1);
440 if (!empty($arrayfields[
'm.code'][
'checked'])) {
441 print
'<td class="liste_titre" align="left">';
442 print
$form->selectMultiCurrency($multicurrency_code,
'search_code', 1,
" code != '".$conf->currency.
"'",
true);
446 if (!empty($arrayfields[
'cr.rate'][
'checked'])) {
447 print
'<td class="liste_titre" align="left">';
448 print
'<input class="flat maxwidth75" type="text" name="search_rate" value="'.dol_escape_htmltag($search_rate).
'">';
453 $parameters = array(
'arrayfields'=>$arrayfields);
454 $reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters);
455 print $hookmanager->resPrint;
457 print
'<td class="liste_titre" align="middle">';
458 $searchpicto =
$form->showFilterButtons();
464 print
'<tr class="liste_titre">';
465 if (!empty($arrayfields[
'cr.date_sync'][
'checked'])) {
466 print_liste_field_titre($arrayfields[
'cr.date_sync'][
'label'], $_SERVER[
"PHP_SELF"],
"cr.date_sync",
"", $param,
"", $sortfield, $sortorder);
468 if (!empty($arrayfields[
'm.code'][
'checked'])) {
469 print_liste_field_titre($arrayfields[
'm.code'][
'label'], $_SERVER[
"PHP_SELF"],
"m.code",
"", $param,
"", $sortfield, $sortorder);
471 if (!empty($arrayfields[
'cr.rate'][
'checked'])) {
472 print_liste_field_titre($arrayfields[
'cr.rate'][
'label'], $_SERVER[
"PHP_SELF"],
"cr.rate",
"", $param,
"", $sortfield, $sortorder);
476 $parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder);
477 $reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters);
478 print $hookmanager->resPrint;
480 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'align="center"', $sortfield, $sortorder,
'maxwidthsearch ');
484 $totalarray = array();
485 while ($i < min($num, $limit)) {
486 $obj = $db->fetch_object(
$resql);
488 print
'<tr class="oddeven">';
491 if ($action ==
"updateRate" && $obj->rowid == $id_rate_selected) {
493 print
' <td><input class="minwidth200" name="dateinput" value="'. date(
'Y-m-d',
dol_stringtotime($obj->date_sync)) .
'" type="date"></td>';
494 print
'<td>' .
$form->selectMultiCurrency($obj->code,
'multicurrency_code', 1,
" code != '".$conf->currency.
"'",
true) .
'</td>';
495 print
' <td><input type="text" min ="0" step="any" class="minwidth200" name="rateinput" value="' .
dol_escape_htmltag($obj->rate) .
'"></td>';
497 print
'<td class="center nowrap ">';
498 print
'<input type="hidden" name="page" value="'.dol_escape_htmltag($page).
'">';
499 print
'<input type="hidden" name="id_rate" value="'.dol_escape_htmltag($obj->rowid).
'">';
500 print
'<button type="submit" class="button" name="action" value="update">'.$langs->trans(
"Modify").
'</button>';
501 print
'<button type="submit" class="button" name="action" value="cancel">'.$langs->trans(
"Cancel").
'</button>';
505 if (!empty($arrayfields[
'cr.date_sync'][
'checked'])) {
506 print
'<td class="tdoverflowmax200">';
507 print $obj->date_sync;
509 if (!$i) $totalarray[
'nbfield']++;
513 if (!empty($arrayfields[
'm.code'][
'checked'])) {
514 print
'<td class="tdoverflowmax200">';
516 print
' - <span class="opacitymedium">'.$obj->name.
'</span>';
519 if (! $i) $totalarray[
'nbfield']++;
523 if (!empty($arrayfields[
'cr.rate'][
'checked'])) {
524 print
'<td class="tdoverflowmax200">';
527 if (! $i) $totalarray[
'nbfield']++;
532 $parameters = array(
'arrayfields' => $arrayfields,
'obj' => $obj);
533 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters);
534 print $hookmanager->resPrint;
537 print
'<td class="nowrap" align="center">';
538 if ($massactionbutton || $massaction) {
540 if (in_array($obj->rowid, $arrayofselected)) {
543 print
'<a class="editfielda marginleftonly marginrightonly" href="'.$_SERVER[
"PHP_SELF"].
'?action=updateRate&token='.
newToken().
'&id_rate='.$obj->rowid.
'">'.
img_picto(
'edit',
'edit').
'</a>';
544 print
'<a class="marginleftonly marginrightonly" href="'.$_SERVER[
"PHP_SELF"].
'?action=deleteRate&token='.
newToken().
'&id_rate='.$obj->rowid.
'">'.
img_picto(
'delete',
'delete').
'</a>';
545 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect marginleftonly" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
549 $totalarray[
'nbfield']++;
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
dol_stringtotime($string, $gm=1)
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not s...
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
newToken()
Return the value of token currently saved into session with name 'newtoken'.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessage($mesgs, $style='mesgs')
Set event message in dol_events session object.
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
multicurrencyAdminPrepareHead()
Prepare array with list of tabs.
$nbtotalofrecords
Count total nb of records.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.