summaryrefslogtreecommitdiff
path: root/FS/FS/cust_bill.pm
diff options
context:
space:
mode:
authorivan <ivan>2011-02-05 04:49:36 +0000
committerivan <ivan>2011-02-05 04:49:36 +0000
commite65d6d5ac9f5183b511990dcfc45063aac002293 (patch)
treefeff3e068bade1d678c7cbf0bfe371fdd259aae3 /FS/FS/cust_bill.pm
parentdb1db76632bb68748b25c8b81106de0787974010 (diff)
add more debug tracing to invoice generation, RT#11452
Diffstat (limited to 'FS/FS/cust_bill.pm')
-rw-r--r--FS/FS/cust_bill.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index 7170d3b..856b0e2 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -4278,6 +4278,9 @@ sub _items_cust_bill_pkg {
if ( $cust_bill_pkg->setup != 0 && (!$type || $type eq 'S') ) {
+ warn "$me _items_cust_bill_pkg adding setup\n"
+ if $DEBUG > 1;
+
my $description = $desc;
$description .= ' Setup' if $cust_bill_pkg->recur != 0;
@@ -4326,6 +4329,9 @@ sub _items_cust_bill_pkg {
)
{
+ warn "$me _items_cust_bill_pkg adding recur/usage\n"
+ if $DEBUG > 1;
+
my $is_summary = $display->summary;
my $description = ($is_summary && $type && $type eq 'U')
? "Usage charges" : $desc;