diff options
author | levinse <levinse> | 2011-02-21 18:29:50 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-02-21 18:29:50 +0000 |
commit | af8d12534b60f600c023153a1c25d4c990360b93 (patch) | |
tree | 50f74eb29fdffb2f41326890fc61e4cd6a7236f0 | |
parent | 21b0d1fe1f7126cae50c880a736c733e3529d28f (diff) |
invoice customizations, RT11467
-rw-r--r-- | FS/FS/cust_bill.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 81d60bf4c..95a3a991d 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -4199,7 +4199,7 @@ sub _items_svc_phone_sections { section => $newsection, duration => $section->{'duration'}, description => $newdesc, - amount => $section->{'amount'}, + amount => sprintf("%.2f",$section->{'amount'}), product_code => 'N/A', }; push @newlines, $line; |