[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [149] trunk/LedgerSMB/Form.pm
- Subject: SF.net SVN: ledger-smb: [149] trunk/LedgerSMB/Form.pm
- From: ..hidden..
- Date: Mon, 25 Sep 2006 14:00:45 -0700
Revision: 149
http://svn.sourceforge.net/ledger-smb/?rev=149&view=rev
Author: tetragon
Date: 2006-09-25 14:00:43 -0700 (Mon, 25 Sep 2006)
Log Message:
-----------
Fix and simplify rounding in round_amount using Math::BigFloat
Modified Paths:
--------------
trunk/LedgerSMB/Form.pm
Modified: trunk/LedgerSMB/Form.pm
===================================================================
--- trunk/LedgerSMB/Form.pm 2006-09-25 19:50:09 UTC (rev 148)
+++ trunk/LedgerSMB/Form.pm 2006-09-25 21:00:43 UTC (rev 149)
@@ -33,6 +33,7 @@
#
#======================================================================
+use Math::BigFloat lib=>'GMP';
package Form;
@@ -489,21 +490,15 @@
my ($self, $amount, $places) = @_;
- # $places = 4 if $places == 2;
- my ($null, $dec) = split /\./, $amount;
- $dec = length $dec;
- $dec = ($dec > $places) ? $dec : $places;
- my $adj = ($amount < 0) ? (1/10**($dec+2)) * -1 : (1/10**($dec+2));
+ # These rounding rules follow from the previous implementation.
+ # They should be changed to allow different rules for different accounts.
+ Math::BigFloat->round_mode('+inf') if $amount >= 0;
+ Math::BigFloat->round_mode('-inf') if $amount < 0;
- if (($places * 1) >= 0) {
- $amount = sprintf("%.${places}f", $amount + $adj) * 1;
- } else {
- $places *= -1;
- $amount = sprintf("%.0f", $amount);
- $amount = sprintf("%.f", $amount / (10 ** $places)) * (10 ** $places);
- }
+ $amount = Math::BigFloat->new($amount)->ffround(-$places) if $places >= 0;
+ $amount = Math::BigFloat->new($amount)->ffround(-($places-1)) if $places < 0;
- $amount;
+ return $amount;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.