Bugzilla – Attachment 98228 Details for
Bug 24454
currency formatting from JS
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24454: Add Currencies.pm template plugin and currency.inc files
Bug-24454-Add-Currenciespm-template-plugin-and-cur.patch (text/plain), 5.47 KB, created by
Tomás Cohen Arazi (tcohen)
on 2020-01-31 13:16:46 UTC
(
hide
)
Description:
Bug 24454: Add Currencies.pm template plugin and currency.inc files
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2020-01-31 13:16:46 UTC
Size:
5.47 KB
patch
obsolete
>From 547aa43a9af3efb03969a794862438eb797b96da Mon Sep 17 00:00:00 2001 >From: Agustin Moyano <agustinmoyano@theke.io> >Date: Thu, 16 Jan 2020 19:22:28 -0300 >Subject: [PATCH] Bug 24454: Add Currencies.pm template plugin and currency.inc > files > >This patch adds a new TT plugin called Currencies which retrieves information about the active currency. > >It also adds a currency.inc file in both opac and intranet, which if included in your TT, you will have the $currency function available in JS. > >The $currency function formats numbers into the configured active currency format. > >For example: > >$currency(12322.4532) //Returns '$12,322.45' if currency format is 'US' and active currency has '$' symbol and no space separation. > >To test you must implement and test bug 20212, where it will be used > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > Koha/Template/Plugin/Currencies.pm | 47 +++++++++++++++++++ > .../prog/en/includes/currency.inc | 35 ++++++++++++++ > .../bootstrap/en/includes/currency.inc | 35 ++++++++++++++ > 3 files changed, 117 insertions(+) > create mode 100644 Koha/Template/Plugin/Currencies.pm > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/currency.inc > create mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/includes/currency.inc > >diff --git a/Koha/Template/Plugin/Currencies.pm b/Koha/Template/Plugin/Currencies.pm >new file mode 100644 >index 0000000000..f032da56a0 >--- /dev/null >+++ b/Koha/Template/Plugin/Currencies.pm >@@ -0,0 +1,47 @@ >+package Koha::Template::Plugin::Currencies; >+ >+# Copyright 2020 Theke Solutions >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Template::Plugin; >+use base qw( Template::Plugin ); >+ >+use Koha::Acquisition::Currencies; >+ >+=head1 NAME >+ >+Koha::Template::Plugin::Currencies - TT Plugin for currencies >+ >+=head1 SYNOPSIS >+ >+[% USE Currencies %] >+ >+[% Currencies.get_active() %] >+ >+=head1 ROUTINES >+ >+=head2 get_active >+ >+In a template, you can get the active currency with >+the following TT code: [% Currencies.get_active() %] >+ >+=cut >+sub get_active { >+ return Koha::Acquisition::Currencies->get_active; >+} >+ >+1; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/currency.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/currency.inc >new file mode 100644 >index 0000000000..eadf7f78d6 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/currency.inc >@@ -0,0 +1,35 @@ >+[% USE Koha %] >+[% USE Currencies %] >+ >+<script> >+ (function() { >+ var symbol = '[% Currencies.get_active.symbol | html %]'; >+ var space = '[% Currencies.get_active.p_sep_by_space ? ' ' : '' | html %]'; >+ var currency_format = '[% Koha.Preference('CurrencyFormat') | html %]'; >+ >+ var options = { >+ decimal_fill: 2, >+ decimal_point: '.', >+ thousands_sep: ',' >+ }; >+ if(currency_format == 'FR') { >+ options = { >+ decimal_fill: 2, >+ decimal_point: ',', >+ thousands_sep: ' ' >+ }; >+ } else if (currency_format == 'CH') { >+ options = { >+ decimal_fill: 2, >+ decimal_point: '.', >+ thousands_sep: '\\' >+ }; >+ } >+ window.$currency = function(value) { >+ return symbol+space+value >+ .toFixed(options.decimal_fill) >+ .replace(/\d(?=(\d{3})+\.)/g, '$&'+options.thousands_sep) >+ .replace(/\./, options.decimal_point); >+ } >+ })(); >+</script> >\ No newline at end of file >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/currency.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/currency.inc >new file mode 100644 >index 0000000000..eadf7f78d6 >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/currency.inc >@@ -0,0 +1,35 @@ >+[% USE Koha %] >+[% USE Currencies %] >+ >+<script> >+ (function() { >+ var symbol = '[% Currencies.get_active.symbol | html %]'; >+ var space = '[% Currencies.get_active.p_sep_by_space ? ' ' : '' | html %]'; >+ var currency_format = '[% Koha.Preference('CurrencyFormat') | html %]'; >+ >+ var options = { >+ decimal_fill: 2, >+ decimal_point: '.', >+ thousands_sep: ',' >+ }; >+ if(currency_format == 'FR') { >+ options = { >+ decimal_fill: 2, >+ decimal_point: ',', >+ thousands_sep: ' ' >+ }; >+ } else if (currency_format == 'CH') { >+ options = { >+ decimal_fill: 2, >+ decimal_point: '.', >+ thousands_sep: '\\' >+ }; >+ } >+ window.$currency = function(value) { >+ return symbol+space+value >+ .toFixed(options.decimal_fill) >+ .replace(/\d(?=(\d{3})+\.)/g, '$&'+options.thousands_sep) >+ .replace(/\./, options.decimal_point); >+ } >+ })(); >+</script> >\ No newline at end of file >-- >2.25.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24454
:
97573
| 98228 |
125193
|
125194
|
125195
|
125196
|
125197
|
125198
|
125199