35 require
'../main.inc.php';
36 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
37 require_once DOL_DOCUMENT_ROOT.
'/core/lib/multicurrency.lib.php';
40 $langs->loadLangs(array(
'multicurrency'));
42 $action =
GETPOST(
'action',
'alpha');
43 $massaction =
GETPOST(
'massaction',
'alpha');
44 $show_files =
GETPOST(
'show_files',
'int');
45 $confirm =
GETPOST(
'confirm',
'alpha');
46 $toselect =
GETPOST(
'toselect',
'array');
47 $id_rate_selected =
GETPOST(
'id_rate',
'int');
48 $sall = trim((
GETPOST(
'search_all',
'alphanohtml') !=
'') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml'));
49 $search_date_sync =
dol_mktime(0, 0, 0,
GETPOST(
'search_date_syncmonth',
'int'),
GETPOST(
'search_date_syncday',
'int'),
GETPOST(
'search_date_syncyear',
'int'));
50 $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'));
51 $search_rate =
GETPOST(
'search_rate',
'alpha');
52 $search_code =
GETPOST(
'search_code',
'alpha');
53 $multicurrency_code =
GETPOST(
'multicurrency_code',
'alpha');
56 $optioncss =
GETPOST(
'optioncss',
'alpha');
57 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
58 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
59 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
62 if (empty($page) || $page == -1) {
65 $offset = $limit * $page;
66 $pageprev = $page - 1;
67 $pagenext = $page + 1;
68 if (!$sortfield) $sortfield =
"cr.date_sync";
69 if (!$sortorder) $sortorder =
"DESC";
78 $hookmanager->initHooks(array(
'EditorRatelist',
'globallist'));
85 $fieldstosearchall = array(
86 'cr.date_sync'=>
"date_sync",
93 'cr.date_sync'=>array(
'label'=>
'Date',
'checked'=>1),
94 'cr.rate'=>array(
'label'=>
'Rate',
'checked'=>1),
95 'm.code'=>array(
'label'=>
'Code',
'checked'=>1),
105 if (!$user->admin || empty($conf->multicurrency->enabled)) {
116 if ($action ==
"create") {
117 if (empty($multicurrency_code) || $multicurrency_code ==
'-1') {
118 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Currency")), null,
"errors");
121 if ($rateinput ===
'0') {
124 } elseif (empty($rateinput)) {
125 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Rate")), null,
"errors");
132 $fk_currency = $currency_static->getIdFromCode($db, $multicurrency_code);
134 $currencyRate_static->fk_multicurrency = $fk_currency;
135 $currencyRate_static->entity = $conf->entity;
136 $currencyRate_static->date_sync = $dateinput;
137 $currencyRate_static->rate = $rateinput;
139 $result = $currencyRate_static->create(intval($fk_currency));
141 setEventMessages($langs->trans(
'successRateCreate', $multicurrency_code), null);
143 dol_syslog(
"currencyRate:createRate", LOG_WARNING);
144 setEventMessages($currencyRate_static->error, $currencyRate_static->errors,
'errors');
149 if ($action ==
'update') {
151 $result = $currencyRate->fetch($id_rate_selected);
154 $fk_currency = $currency_static->getIdFromCode($db, $multicurrency_code);
155 $currencyRate->date_sync = $dateinput;
156 $currencyRate->fk_multicurrency = $fk_currency;
157 $currencyRate->rate = $rateinput;
158 $res = $currencyRate->update();
169 if ($action ==
"deleteRate") {
171 $current_rate->fetch(intval($id_rate_selected));
175 $current_currency->fetch($current_rate->fk_multicurrency);
176 if ($current_currency) {
177 $delayedhtmlcontent =
$form->formconfirm(
178 $_SERVER[
"PHP_SELF"].
'?id_rate='.$id_rate_selected,
179 $langs->trans(
'DeleteLineRate'),
180 $langs->trans(
'ConfirmDeleteLineRate', $current_rate->rate, $current_currency->name, $current_rate->date_sync),
187 dol_syslog(
"Multicurrency::fetch", LOG_WARNING);
194 if ($action ==
"confirm_delete") {
196 $current_rate->fetch(intval($id_rate_selected));
198 $result = $current_rate->delete();
205 setEventMessages($langs->trans(
'NoCurrencyRateSelected'), null,
"warnings");
206 dol_syslog($langs->trans(
'NoCurrencyRateSelected'), LOG_WARNING);
211 if (
GETPOST(
'cancel',
'alpha')) { $action =
'list'; $massaction =
''; }
212 if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') { $massaction =
''; }
214 $parameters = array();
215 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
216 if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors,
'errors');
217 if (empty($reshook)) {
219 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
222 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
224 $search_date_sync =
"";
225 $search_date_sync_end=
"";
228 $search_array_options = array();
232 $objectclass =
"CurrencyRate";
233 $uploaddir = $conf->multicurrency->multidir_output;
234 $permtoread = $user->admin;
235 $permtodelete = $user->admin;
236 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
246 $title = $langs->trans(
"CurrencyRate");
247 $page_name =
"MultiCurrencySetup";
252 $linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
257 print
dol_get_fiche_head($head,
'ratelist', $langs->trans(
"ModuleSetup"), -1,
"multicurrency");
261 if (!in_array($action, array(
"updateRate",
"deleteRate"))) {
262 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post" name="formulaire">';
263 print
'<input type="hidden" name="token" value="'.newToken().
'">';
265 print
'<div class="div-table-responsive-no-min">';
266 print
'<table class="noborder centpercent"><tr>';
268 print
' <td>'.$langs->trans(
'Date').
'</td>';
270 print
$form->selectDate($dateinput,
'dateinput', 0, 0, 1);
273 print
'<td> '.$langs->trans(
'Currency').
'</td>';
274 print
'<td>'.$form->selectMultiCurrency((
GETPOSTISSET(
'multicurrency_code') ?
GETPOST(
'multicurrency_code',
'alpha') : $multicurrency_code),
'multicurrency_code', 1,
" code != '".$db->escape($conf->currency).
"'",
true).
'</td>';
276 print
' <td>'.$langs->trans(
'Rate').
' / '.$langs->getCurrencySymbol($conf->currency).
'</td>';
277 print
' <td><input type="text" min="0" step="any" class="maxwidth75" name="rateinput" value="'.dol_escape_htmltag($rateinput).
'"></td>';
280 print
'<input type="hidden" name="action" value="create">';
281 print
'<input type="submit" class="button button-add small" name="btnCreateCurrencyRate" value="'.$langs->trans(
'CreateRate').
'">';
284 print
'</tr></table>';
295 $sql =
'SELECT cr.rowid, cr.date_sync, cr.rate, cr.entity, m.code, m.name';
297 $parameters = array();
298 $reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters);
299 $sql .= $hookmanager->resPrint;
300 $sql .=
' FROM '.MAIN_DB_PREFIX.
'multicurrency_rate as cr ';
301 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"multicurrency AS m ON cr.fk_multicurrency = m.rowid";
302 if ($sall) $sql .=
natural_search(array_keys($fieldstosearchall), $sall);
303 if ($search_date_sync && $search_date_sync_end ) {
304 $sql .=
" AND (cr.date_sync BETWEEN '".$db->idate($search_date_sync).
"' AND '".$db->idate($search_date_sync_end).
"')";
305 } elseif ($search_date_sync && !$search_date_sync_end) {
306 $sql .=
natural_search(
'cr.date_sync', $db->idate($search_date_sync));
308 if ($search_rate) $sql .=
natural_search(
'cr.rate', $search_rate);
310 $sql .=
" WHERE m.code <> '".$db->escape($conf->currency).
"'";
313 $parameters = array();
314 $reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters);
315 $sql .= $hookmanager->resPrint;
316 $sql .=
" GROUP BY cr.rowid, cr.date_sync, cr.rate, m.code, cr.entity, m.code, m.name";
319 $parameters = array();
320 $reshook = $hookmanager->executeHooks(
'printFieldSelect', $parameters);
321 $sql .= $hookmanager->resPrint;
323 $sql .= $db->order($sortfield, $sortorder);
326 $nbtotalofrecords =
'';
327 if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
328 $result = $db->query($sql);
331 $nbtotalofrecords = $db->num_rows($result);
332 if (($page * $limit) > $nbtotalofrecords) {
337 setEventMessage($langs->trans(
'No_record_on_multicurrency_rate'),
'warnings');
341 $sql .= $db->plimit($limit + 1, $offset);
343 $resql = $db->query($sql);
345 $num = $db->num_rows(
$resql);
346 $arrayofselected = is_array($toselect) ? $toselect : array();
349 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
350 $param .=
'&contextpage='.urlencode($contextpage);
352 if ($limit > 0 && $limit != $conf->liste_limit) {
353 $param .=
'&limit='.urlencode($limit);
356 $param .=
"&sall=".urlencode($sall);
359 if ($search_date_sync) $param =
"&search_date_sync=".$search_date_sync;
360 if ($search_date_sync_end) $param=
"&search_date_sync_end=".$search_date_sync_end;
361 if ($search_rate) $param =
"&search_rate=".urlencode($search_rate);
362 if ($search_code !=
'') $param.=
"&search_code=".urlencode($search_code);
365 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
368 $arrayofmassactions[
'predelete'] = $langs->trans(
"Delete");
370 if (in_array($massaction, array(
'presend',
'predelete'))) {
371 $arrayofmassactions = array();
373 $massactionbutton =
$form->selectMassAction(
'', $arrayofmassactions);
375 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" name="formulaire">';
376 if ($optioncss !=
'') {
377 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
379 print
'<input type="hidden" name="token" value="'.newToken().
'">';
380 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
381 print
'<input type="hidden" name="action" value="list">';
382 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
383 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
384 print
'<input type="hidden" name="page" value="'.$page.
'">';
385 print
'<input type="hidden" name="type" value="'.$type.
'">';
387 print_barre_liste($texte, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'title_currency.png', 0, $newcardbutton,
'', $limit);
389 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
392 foreach ($fieldstosearchall as $key => $val) {
393 $fieldstosearchall[$key] = $langs->trans($val);
395 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $sall).join(
', ', $fieldstosearchall).
'</div>';
402 $parameters = array();
403 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters);
404 if (empty($reshook)) {
405 $moreforfilter .= $hookmanager->resPrint;
407 $moreforfilter = $hookmanager->resPrint;
410 if ($moreforfilter) {
411 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
412 print $moreforfilter;
416 $varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
417 $selectedfields =
$form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage);
418 if ($massactionbutton) {
419 $selectedfields .=
$form->showCheckAddButtons(
'checkforselect', 1);
422 print
'<div class="div-table-responsive">';
423 print
'<table class="tagtable centpercent nomarginbottom liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
426 print
'<tr class="liste_titre_filter">';
429 if (!empty($arrayfields[
'cr.date_sync'][
'checked'])) {
430 print
'<td class="liste_titre" align="left">';
431 print
$form->selectDate(
dol_print_date($search_date_sync,
"%Y-%m-%d"),
'search_date_sync', 0, 0, 1);
432 print
$form->selectDate(
dol_print_date($search_date_sync_end,
"%Y-%m-%d"),
'search_date_sync_end', 0, 0, 1);
436 if (!empty($arrayfields[
'm.code'][
'checked'])) {
437 print
'<td class="liste_titre" align="left">';
438 print
$form->selectMultiCurrency($multicurrency_code,
'search_code', 1,
" code != '".$conf->currency.
"'",
true);
442 if (!empty($arrayfields[
'cr.rate'][
'checked'])) {
443 print
'<td class="liste_titre" align="left">';
444 print
'<input class="flat maxwidth75" type="text" name="search_rate" value="'.dol_escape_htmltag($search_rate).
'">';
449 $parameters = array(
'arrayfields'=>$arrayfields);
450 $reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters);
451 print $hookmanager->resPrint;
453 print
'<td class="liste_titre" align="middle">';
454 $searchpicto =
$form->showFilterButtons();
460 print
'<tr class="liste_titre">';
461 if (!empty($arrayfields[
'cr.date_sync'][
'checked'])) {
462 print_liste_field_titre($arrayfields[
'cr.date_sync'][
'label'], $_SERVER[
"PHP_SELF"],
"cr.date_sync",
"", $param,
"", $sortfield, $sortorder);
464 if (!empty($arrayfields[
'm.code'][
'checked'])) {
465 print_liste_field_titre($arrayfields[
'm.code'][
'label'], $_SERVER[
"PHP_SELF"],
"m.code",
"", $param,
"", $sortfield, $sortorder);
467 if (!empty($arrayfields[
'cr.rate'][
'checked'])) {
468 print_liste_field_titre($arrayfields[
'cr.rate'][
'label'], $_SERVER[
"PHP_SELF"],
"cr.rate",
"", $param,
"", $sortfield, $sortorder);
472 $parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder);
473 $reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters);
474 print $hookmanager->resPrint;
476 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'align="center"', $sortfield, $sortorder,
'maxwidthsearch ');
480 $totalarray = array();
481 while ($i < min($num, $limit)) {
482 $obj = $db->fetch_object(
$resql);
484 print
'<tr class="oddeven">';
487 if ($action ==
"updateRate" && $obj->rowid == $id_rate_selected) {
489 print
' <td><input class="minwidth200" name="dateinput" value="'. date(
'Y-m-d',
dol_stringtotime($obj->date_sync)) .
'" type="date"></td>';
490 print
'<td>' .
$form->selectMultiCurrency($obj->code,
'multicurrency_code', 1,
" code != '".$conf->currency.
"'",
true) .
'</td>';
491 print
' <td><input type="text" min ="0" step="any" class="minwidth200" name="rateinput" value="' .
dol_escape_htmltag($obj->rate) .
'"></td>';
493 print
'<td class="center nowrap ">';
494 print
'<input type="hidden" name="page" value="'.dol_escape_htmltag($page).
'">';
495 print
'<input type="hidden" name="id_rate" value="'.dol_escape_htmltag($obj->rowid).
'">';
496 print
'<button type="submit" class="button" name="action" value="update">'.$langs->trans(
"Modify").
'</button>';
497 print
'<button type="submit" class="button" name="action" value="cancel">'.$langs->trans(
"Cancel").
'</button>';
501 if (!empty($arrayfields[
'cr.date_sync'][
'checked'])) {
502 print
'<td class="tdoverflowmax200">';
503 print $obj->date_sync;
505 if (!$i) $totalarray[
'nbfield']++;
509 if (! empty($arrayfields[
'm.code'][
'checked'])) {
510 print
'<td class="tdoverflowmax200">';
512 print
' - <span class="opacitymedium">'.$obj->name.
'</span>';
515 if (! $i) $totalarray[
'nbfield']++;
519 if (! empty($arrayfields[
'cr.rate'][
'checked'])) {
520 print
'<td class="tdoverflowmax200">';
523 if (! $i) $totalarray[
'nbfield']++;
528 $parameters = array(
'arrayfields' => $arrayfields,
'obj' => $obj);
529 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters);
530 print $hookmanager->resPrint;
533 print
'<td class="nowrap" align="center">';
534 if ($massactionbutton || $massaction) {
536 if (in_array($obj->rowid, $arrayofselected)) {
539 print
'<a class="editfielda marginleftonly marginrightonly" href="'.$_SERVER[
"PHP_SELF"].
'?action=updateRate&token='.
newToken().
'&id_rate='.$obj->rowid.
'">'.
img_picto(
'edit',
'edit').
'</a>';
540 print
'<a class="marginleftonly marginrightonly" href="'.$_SERVER[
"PHP_SELF"].
'?action=deleteRate&token='.
newToken().
'&id_rate='.$obj->rowid.
'">'.
img_picto(
'delete',
'delete').
'</a>';
541 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect marginleftonly" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
545 $totalarray[
'nbfield']++;
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if($cancel &&!$id) if($action== 'add'&&!$cancel) if($action== 'delete') if($id) $form
Actions.
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...
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
setEventMessage($mesgs, $style= 'mesgs')
Set event message in dol_events session object.
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_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...
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.
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages 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...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
price2num($amount, $rounding= '', $option=0)
Function that return a number with universal decimal format (decimal separator is '...
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_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename= '', $restricttologhandler= '', $logcontext=null)
Write log message into outputs.
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
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...
if(isModEnabled('facture')&&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur')&&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD)&&$user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice')&&$user->rights->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->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
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...
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
multicurrencyAdminPrepareHead()
Prepare array with list of tabs.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
newToken()
Return the value of token currently saved into session with name 'newtoken'.