[Koha-bugs] [Bug 12844] Introduce a centralized way to display prices

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Oct 14 16:18:16 CEST 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12844

--- Comment #32 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Created attachment 32314
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=32314&action=edit
[PASSED QA] Bug 12844: New module to manage prices into Koha

This patch introduces a new module to manage prices into Koha and
especially the acquisition module.

How to use is:
1/ You can use it in a perl script/module:
  my $price = Koha::Number::Price->new(3);
  $price->format; # Will display 3.00 (or 3,00 depending on the CurrencyFormat
syspref).
  $price->format({with_symbol => 1}); # Will display €3.00 (or [$]3,00
depending on the CurrencyFormat syspref).

2/ But this module is usefull to display the price from a template file.
  [% my_price | Price %]

Signed-off-by: Paola Rossi <paola.rossi at cineca.it>

Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list