Merge branch '3.5' of git@github.com:Dolibarr/dolibarr.git into 3.5
This commit is contained in:
commit
efa171819a
@ -703,7 +703,7 @@ class Translate
|
|||||||
*/
|
*/
|
||||||
function getCurrencyAmount($currency_code, $amount)
|
function getCurrencyAmount($currency_code, $amount)
|
||||||
{
|
{
|
||||||
$symbol=$this->getCurrencSymbol($currency_code);
|
$symbol=$this->getCurrencySymbol($currency_code);
|
||||||
|
|
||||||
if (in_array($currency_code, array('USD'))) return $symbol.$amount;
|
if (in_array($currency_code, array('USD'))) return $symbol.$amount;
|
||||||
else return $amount.$symbol;
|
else return $amount.$symbol;
|
||||||
|
|||||||
@ -95,9 +95,18 @@ if ($action == 'confirm_execute' && $confirm == "yes" && $user->rights->cron->ex
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($object->lastresult > 0) setEventMessage($langs->trans("JobFinished"),'warnings');
|
$res = $object->reprogram_jobs($user->login);
|
||||||
else setEventMessage($langs->trans("JobFinished"),'mesgs');
|
if ($res > 0)
|
||||||
$action='';
|
{
|
||||||
|
if ($object->lastresult > 0) setEventMessage($langs->trans("JobFinished"),'warnings');
|
||||||
|
else setEventMessage($langs->trans("JobFinished"),'mesgs');
|
||||||
|
$action='';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
setEventMessage($object->error,'errors');
|
||||||
|
$action='';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -100,6 +100,21 @@ if ($action == 'confirm_execute' && $confirm == "yes" && $user->rights->cron->ex
|
|||||||
if ($result < 0) {
|
if ($result < 0) {
|
||||||
setEventMessage($object->error,'errors');
|
setEventMessage($object->error,'errors');
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$res = $object->reprogram_jobs($user->login);
|
||||||
|
if ($res > 0)
|
||||||
|
{
|
||||||
|
if ($object->lastresult > 0) setEventMessage($langs->trans("JobFinished"),'warnings');
|
||||||
|
else setEventMessage($langs->trans("JobFinished"),'mesgs');
|
||||||
|
$action='';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
setEventMessage($object->error,'errors');
|
||||||
|
$action='';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
header("Location: ".DOL_URL_ROOT.'/cron/list.php?status=-1'); // Make a call to avoid to run twice job when using back
|
header("Location: ".DOL_URL_ROOT.'/cron/list.php?status=-1'); // Make a call to avoid to run twice job when using back
|
||||||
exit;
|
exit;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user