From 8d35ad022838f4cc56a3caaaf3d6689aa905c167 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 23 Aug 2018 14:44:31 +0000 Subject: [PATCH] Bug 21262: Do not format numbers for editing if too big This patch copies the code from bug 15770 to the format_for_editing sub. It also corrects schema issue, listing the purpose for two acq columns instead of claing unused To test: 1 - Edit a fund 2 - Set warning at amount to: 100000000000000 3 - Save budget 4 - Try to edit - internal server error 5 - Apply patch 6 - Should be able to edit budget 7 - Number should appear unformatted --- Koha/Number/Price.pm | 5 +++++ installer/data/mysql/kohastructure.sql | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Koha/Number/Price.pm b/Koha/Number/Price.pm index f549d8a..64c9dfe 100644 --- a/Koha/Number/Price.pm +++ b/Koha/Number/Price.pm @@ -61,6 +61,11 @@ sub format_for_editing { mon_decimal_point => '.', }; + # To avoid the system to crash, we will not format big number + # We divide per 100 because we want to keep the default DECIMAL_DIGITS (2) + # error - round() overflow. Try smaller precision or use Math::BigFloat + return $self->value if $self->value > Number::Format::MAX_INT/100; + return Number::Format->new(%$format_params)->format_price($self->value); } diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 92b8635..a5b052d 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -2859,8 +2859,8 @@ CREATE TABLE `aqbudgets` ( -- information related to Funds `budget_name` varchar(80) default NULL, -- name assigned to the fund by the user `budget_branchcode` varchar(10) default NULL, -- branch that this fund belongs to (branches.branchcode) `budget_amount` decimal(28,6) NULL default '0.00', -- total amount for this fund - `budget_encumb` decimal(28,6) NULL default '0.00', -- not used in the code - `budget_expend` decimal(28,6) NULL default '0.00', -- not used in the code + `budget_encumb` decimal(28,6) NULL default '0.00', -- budget warning at percentage + `budget_expend` decimal(28,6) NULL default '0.00', -- budget warning at amount `budget_notes` LONGTEXT, -- notes related to this fund `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this fund was last touched (created or modified) `budget_period_id` int(11) default NULL, -- id of the budget that this fund belongs to (aqbudgetperiods.budget_period_id) -- 2.1.4