Bug 15770: Do not format numbers if too big
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 20 Dec 2017 23:29:29 +0000 (20:29 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Tue, 23 Jan 2018 02:33:07 +0000 (02:33 +0000)
commit937237a1f29192c8be73fbcc3cd7e29c40468831
treeddb5a28592e110281d64b27cdc2c080fece5c624
parent431d315534c9f41d4418b528bf9b78970f235a46
Bug 15770: Do not format numbers if too big

At several places we got the following error if we use numbers too big
for Number::Format
Template process failed: undef error - round() overflow. Try smaller
precision or use Math::BigFloat at /home/koha/src/Koha/Number/Price.pm line 44

It make the app explodes.
The goal here is to handle these errors gracefully and easily.

Test plan:
- Add a manual fine to a patron of 100000000000000
- Create a patron category with an enrolment fee of 123456789012345

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Koha/Number/Price.pm
t/Number/Price.t