summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2008-07-29 20:00:33 +0000
committerjeff <jeff>2008-07-29 20:00:33 +0000
commit4b7e4fa4173af6102eeb3fc9c0461f509cd3a36e (patch)
tree7ad1171ff4a34fcbf9f09fbab12cc172a9a273db
parent16cf87848aa132c0a6d8c4195f422fe74f498009 (diff)
correct amount for new charges total on sectioned invoices
-rw-r--r--FS/FS/cust_bill.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index 52692174e..c09d547cd 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -2161,8 +2161,8 @@ sub print_generic {
)
);
if ( $multisection ) {
- $adjust_section->{'pretotal'} = 'New charges total '.
- $total->{'total_amount'};
+ $adjust_section->{'pretotal'} = 'New charges total '. $other_money_char.
+ sprintf('%.2f', $self->charged );
}else{
push @total_items, $total;
}