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

(-)a/C4/Members.pm (-1 / +1 lines)
Lines 1026-1031 sub GetMemberAccountRecords { Link Here
1026
        $total += sprintf "%.0f", 1000*$data->{amountoutstanding}; # convert float to integer to avoid round-off errors
1026
        $total += sprintf "%.0f", 1000*$data->{amountoutstanding}; # convert float to integer to avoid round-off errors
1027
    }
1027
    }
1028
    $total /= 1000;
1028
    $total /= 1000;
1029
    $total = 0 + sprintf "%.6f", $total; # fix rounding error
1029
    return ( $total, \@acctlines,$numlines);
1030
    return ( $total, \@acctlines,$numlines);
1030
}
1031
}
1031
1032
1032
- 

Return to bug 17140