From f744f630c2a76e892e3d3201b4d0ac9a1dcbc673 Mon Sep 17 00:00:00 2001
From: Baptiste Wojtkowski <baptiste.wojtkowski@biblibre.com>
Date: Tue, 21 Mar 2017 10:13:06 +0000
Subject: [PATCH] BUG 12310: Modified the tooltips

Modified the tooltips helping the users entering monrtary information in the right format.

BUG 12310: Corrected the RegExp
---
 koha-tmpl/intranet-tmpl/prog/en/includes/prices.inc              | 2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt | 7 ++++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/prices.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/prices.inc
index 8952845..561ae06 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/prices.inc
+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/prices.inc
@@ -17,7 +17,7 @@ function Price_from_string(string){
         return false;
     }
     string = string.replace(/[^0-9[% Koha.Preference('DigitSeparator') %]]/g, '');
-    string = string.replace(/[% Koha.Preference('DigitSeparator') %]/g, '.');
+    string = string.replace(/[[% Koha.Preference('DigitSeparator') %]]/g, '.');
     return string;
 }
 
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt
index abcb27e..15e285a 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt
@@ -378,7 +378,12 @@
         <label for="budget_period_total">Total amount: </label>
         <input type="text" id="budget_period_total" name="budget_period_total"
         size="10" maxlength="80" value="[% budget_period_total | $Price on_editing => 1 %]" onchange="CheckTot(budget_period_total)" />
-        Please use the "[% Koha.Preference('DigitSeparator').substr(0,1) %]" as separator : ex "XX[% Koha.Preference('DigitSeparator').substr(0,1) %]XX"
+    [% IF Koha.Preference('DigitSeparator') %]
+        Please use the "[% Koha.Preference('DigitSeparator').substr(0,1) %]" as separator : ex "XX[% Koha.Preference('DigitSeparator').substr(0,1) %]XX", if you want to change it, click here <a href="/cgi-bin/koha/admin/preferences.pl?tab=&op=search&searchfield=DigitSeparator">here
+</a>
+    [% ELSE %]
+        Please chose a digit separator by clicking <a href="/cgi-bin/koha/admin/preferences.pl?tab=&op=search&searchfield=DigitSeparator">here </a>
+    [% END %]
     </li>
 
     <li>
-- 
2.7.4