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

(-)a/C4/Members.pm (-2 / +1 lines)
Lines 1172-1178 sub GetMemberAccountRecords { Link Here
1172
        }
1172
        }
1173
        $acctlines[$numlines] = $data;
1173
        $acctlines[$numlines] = $data;
1174
        $numlines++;
1174
        $numlines++;
1175
        $total += int(1000 * $data->{'amountoutstanding'}); # convert float to integer to avoid round-off errors
1175
        $total += sprintf "%.0f", 1000*$data->{amountoutstanding}; # convert float to integer to avoid round-off errors
1176
    }
1176
    }
1177
    $total /= 1000;
1177
    $total /= 1000;
1178
    return ( $total, \@acctlines,$numlines);
1178
    return ( $total, \@acctlines,$numlines);
1179
- 

Return to bug 15741