View | Details | Raw Unified | Return to bug 15741
Collapse All | Expand All

(-)a/C4/Members.pm (-2 / +1 lines)
Lines 1062-1068 sub GetMemberAccountRecords { Link Here
1062
        }
1062
        }
1063
        $acctlines[$numlines] = $data;
1063
        $acctlines[$numlines] = $data;
1064
        $numlines++;
1064
        $numlines++;
1065
        $total += int(1000 * $data->{'amountoutstanding'}); # convert float to integer to avoid round-off errors
1065
        $total += sprintf "%.0f", 1000*$data->{amountoutstanding}; # convert float to integer to avoid round-off errors
1066
    }
1066
    }
1067
    $total /= 1000;
1067
    $total /= 1000;
1068
    return ( $total, \@acctlines,$numlines);
1068
    return ( $total, \@acctlines,$numlines);
1069
- 

Return to bug 15741