diff options
author | ivan <ivan> | 2002-08-30 23:48:43 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-08-30 23:48:43 +0000 |
commit | 249c7b31d464d2f3fe436623cd3ae84f2ce12915 (patch) | |
tree | e2b6ba7cf3819191050fd5c7d54a5b139b7ba574 | |
parent | 10adfb99055cc684f96cf446da34a7423cac3459 (diff) |
oops, missing charged column in csv exports
-rw-r--r-- | FS/FS/cust_bill.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index a10a6c41a..fd79f238c 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -490,6 +490,7 @@ sub send_csv { $self->invnum, $self->custnum, time2str("%x", $self->_date), + sprintf("%.2f", $self->charged), ( map { $cust_main->getfield($_) } qw( first last company address1 address2 city state zip country ) ), map { '' } (1..5), @@ -1100,7 +1101,7 @@ sub print_text { =head1 VERSION -$Id: cust_bill.pm,v 1.39 2002-08-30 23:42:47 ivan Exp $ +$Id: cust_bill.pm,v 1.40 2002-08-30 23:48:43 ivan Exp $ =head1 BUGS |