@@ -, +, @@ --- C4/Members.pm | 1 + 1 file changed, 1 insertion(+) --- a/C4/Members.pm +++ a/C4/Members.pm @@ -1026,6 +1026,7 @@ sub GetMemberAccountRecords { $total += sprintf "%.0f", 1000*$data->{amountoutstanding}; # convert float to integer to avoid round-off errors } $total /= 1000; + $total = 0 + sprintf "%.6f", $total; # fix rounding error return ( $total, \@acctlines,$numlines); } --